Quantcast
Channel: SCN : All Content - All Communities
Viewing all 8616 articles
Browse latest View live

SAP Cloud for Customer - May 2016 Release - Planned Timeline

$
0
0

Dear Community,


Please find a visual of the planned timeline of solution release for the planned May 2016 release of the SAP Cloud for Customer solution. We will keep updating this space with additional information as we get closer to the planned solution release based on the timeline outlined below.


SNAG-0174.png


Please feel free to reach out to us via comments, observations and questions as a follow up to this post and we will be happy to provide you further guidance on the content presented here.

 

Conference Call Information

Please feel free to access the conference call information once it is available.

(In case you have problems accessing the content,please send us a note viathis linkto allow us to provide you access to this content and many other related broadcast information resources)

 

Some other useful sources of information about, and engagement around, the SAP Cloud for Customer solution portfolio are highlighted below:

SAP Community Network: http://scn.sap.com/community/cloud-for-customer

SAP Cloud for Customer on YouTube: www.youtube.com/SAPCustomerOD

SAP Service Marketplace: http://service.sap.com/cloud4customer

SAP Help Portal: http://help.sap.com/cloud4customer

SAP Store: https://store.sap.com/

SAP Idea Place: https://ideas.sap.com/sapcloudforcustomer

 

We look forward to engaging deeply around this next generation public cloud Customer Engagement / CRM software-as-a-service offering powered by the SAP HANA Cloud Platform.

 

Thank you for your time and attention to this matter.


Abnormal GP % Total in the SAP SalesAnalysis Report

$
0
0

Dear Experts

 

 

I am getting the error in the SAP Sales Analysis Report GP %Total

 

Can anyone advice me with the reason Why it is showing high.

mmmk.png

JMS Queue Message Recovery

$
0
0

Hello!

 

We are currently making use of JMS Queues in our SAP ME 6.1 implementation and a question has been raised to me and I can't seem to find any relevant documentation.

 

In our implementation, any message that encounter an error during processing gets passed on to a custom error queue for investigation and reprocessing at a later time. What happens to the messages should Netweaver AS require a restart? Is there a way to recover the messages should there be some corruption that occurs?

Deploying sapui5 app to ERP with Web IDE

$
0
0

Hello! Thank you all in advance. I'm having some issues with an app I created with SAPUI5 and I'm trying to deploy my app with the Web IDE to the Gateway or ABAP System since my client is not using Hana Cloud Platform (using this link Setup your SAP Web IDE on HANA Cloud Platform Part 5).

 

The troubles are that, firstly, to deploy I need some parameters that I had to create using the cloud connector like this (http://a248.g.akamai.net/n/248/420835/3daf73f06d1ce38b657522a9ce46354e1b5e9c6d8b99922c17992c463b8480fe/sapasset.download… Page 14) but I really dont know where these data came from... I dont know where to find it on my ERP. Plus, I tried to deploy using eclipse and it gave me an error telling me that I'm not authorized.

 

Also, I detected that my app uses sapui 1.32 and my ERP has 1.28....

 

Any advice or recommendations?

 

Thank you so much

Query where statement issues

$
0
0

Experts,

 

I have this query that links the Service Contract and Service Contract Items tab and Sales Data tab, where the recurring Invoices are linked.

 

My initial issue was that there was duplicating lines when there was more than 1 Item line in the Item tab of the Service Contract. I was able to concatenate this successfully.

Then the issue came up that I get errors on the Where statement....

 

Here is the query that works:

declare @contractid varchar(500) = ''

declare @rowsCount INT

declare @i INT = 1

declare @names varchar(max) = ''

DECLARE @MyEngineSerials TABLE

(

  Id int identity,

  Name varchar(500)

)

DECLARE @MyResults TABLE

(

  processed int,

  ContractID varchar(500),

  EndDate varchar(500),

  ObjType varchar(500), 

  DocNum varchar(500),

  DocDate varchar(500),

  Dscription varchar(500),

  Quantity varchar(500),

  LineTotal varchar(500),

  Address2 varchar(500),

  callID varchar(500),

  serials varchar(500)

)

insert into @MyResults

SELECT

  0 as "processed",

  T0.[ContractID],

  T0.[EndDate],

  T4.[ObjType], 

  T4.[DocNum],

  T4.[DocDate],

  T5.[Dscription],

  T5.[Quantity],

  T5.[LineTotal],

  T4.[Address2],

  T7.[callID],

  'not determined' as "serials"

FROM [dbo].[OCTR]  T0

INNER JOIN [dbo].[CTR2]  T1 ON T0.[ContractID] = T1.[ContractID]

INNER JOIN [dbo].[ORCP]  T2 ON T1.[RcpEntry] = T2.[AbsEntry]

INNER JOIN ODRF T3 ON T2.[DraftEntry] = T3.[DocEntry]

INNER JOIN OINV T4 ON T3.[DocEntry] = T4.[draftKey]

INNER JOIN INV1 T5 ON T4.[DocEntry] = T5.[DocEntry]

INNER JOIN OSCL T7 ON T0.[ContractID] = T7.[contractID]

WHERE T4.[DocDate] BETWEEN '01/01/2016 00:00:00.00' AND '11/11/2017 23:59:59.999'

 

While (Select Count(*) From @MyResults Where processed = 0) > 0

Begin

    set @contractid = (Select Top 1 ContractID From @MyResults Where processed = 0)

 

  --DELETE FROM @MyTable

  insert into @MyEngineSerials

  SELECT DISTINCT

  T6.[ManufSN]

  FROM

  [dbo].[OCTR]  T0

  INNER JOIN CTR1 T6 ON T0.[ContractID] = T6.[ContractID]

  WHERE

  T0.[ContractID] = @contractid

 

  set @rowsCount = (select COUNT(Id) from @MyEngineSerials)

  while @i <= @rowsCount

  begin

  set @names = @names + ' ' + (select name from @MyEngineSerials where Id = @i)

  set @i = @i + 1

  end

  --select @names as serial_numbers

 

    --Do some processing here

  Update @MyResults Set serials = @names Where ContractID = @contractid

    Update @MyResults Set processed = 1 Where ContractID = @contractid

 

End

 

select * from @MyResults

 

Here is the query that gives an error on the syntax near T4...

 

declare @contractid varchar(500) = ''

declare @rowsCount INT

declare @i INT = 1

declare @names varchar(max) = ''

 

 

DECLARE @MyEngineSerials TABLE

(

  Id int identity,

  Name varchar(500)

)

DECLARE @MyResults TABLE

(

  processed int,

  ContractID varchar(500),

  EndDate varchar(500),

  ObjType varchar(500), 

  DocNum varchar(500),

  DocDate varchar(500),

  Dscription varchar(500),

  Quantity varchar(500),

  LineTotal varchar(500),

  Address2 varchar(500),

  callID varchar(500),

  serials varchar(500)

)

insert into @MyResults

 

SELECT

  0 as "processed",

  T0.[ContractID],

  T0.[EndDate],

  T4.[ObjType], 

  T4.[DocNum],

  T4.[DocDate],

  T5.[Dscription],

  T5.[Quantity],

  T5.[LineTotal],

  T4.[Address2],

  T7.[callID],

  'not determined' as "serials"

 

FROM [dbo].[OCTR]  T0

INNER JOIN [dbo].[CTR2]  T1 ON T0.[ContractID] = T1.[ContractID]

INNER JOIN [dbo].[ORCP]  T2 ON T1.[RcpEntry] = T2.[AbsEntry]

INNER JOIN ODRF T3 ON T2.[DraftEntry] = T3.[DocEntry]

INNER JOIN OINV T4 ON T3.[DocEntry] = T4.[draftKey]

INNER JOIN INV1 T5 ON T4.[DocEntry] = T5.[DocEntry]

INNER JOIN OSCL T7 ON T0.[ContractID] = T7.[contractID]

WHERE T4.[DocDate] >=[%0] AND  T4.[DocDate] <=[%1]

 

While (Select Count(*) From @MyResults Where processed = 0) > 0

Begin

    set @contractid = (Select Top 1 ContractID From @MyResults Where processed = 0)

 

  --DELETE FROM @MyTable

  insert into @MyEngineSerials

  SELECT DISTINCT

  T6.[ManufSN]

  FROM

  [dbo].[OCTR]  T0

  INNER JOIN CTR1 T6 ON T0.[ContractID] = T6.[ContractID]

  WHERE

  T0.[ContractID] = @contractid

 

set @rowsCount = (select COUNT(Id) from @MyEngineSerials)

  while @i <= @rowsCount

  begin

  set @names = @names + ' ' + (select name from @MyEngineSerials where Id = @i)

  set @i = @i + 1

  end

  --select @names as serial_numbers

 

    --Do some processing here

  Update @MyResults Set serials = @names Where ContractID = @contractid

    Update @MyResults Set processed = 1 Where ContractID = @contractid

 

End

 

select * from @MyResults

 

 

Any help would be appreciated,

Marli

Job definition don't exist

$
0
0

Hi All,

 

The below job definition doesn't exist in CPS. But the job is created in ECC by CPS user. Please advise how this job is getting triggered in ECC without any instances of it in CPS.

Screenshot.jpg

 

Regards,

Tinku

message id for given idoc

$
0
0

we have one IDoc generated in Ecc, how to check the corresponding message id and xml file name for that idoc in PI, thanks

AMT* %200 Is it correct or not..?

$
0
0

Hi Mates,

 

Couple you please correct me whether below logic is correct or not....!

 

Scenario:

 

Over time 200% WT -- 0001

 

Logic would be:

 

Basic+HRA / 26days*No.of working days

 

So I've written like

 

*

****

WGTYP?

****

ADDWT *


0001 (OT WT)

AMT= BASIC

AMT+ HRA

AMT/ 26

MULTI ANA

MULTI* %200

ADDWT *

 

Regards

Mohan


FACTURACION ELECTRONICA SAP BUSINESS ONE 9.1 PL 06

$
0
0

Hola expertos buena tarde.

 

Alguien ha configurado ya la facturación electrónica para SAP B1 9.1 PL06?

 

Si tienen algo de información les agradecería mucho que la compartieran.

 

Saludos cordiales.

 

 

Att. Carlos Baños

The second SAP Lumira Expert Series Webinar of 2016!

$
0
0

A very warm hello!

 

Continuing our series of development-centric webinars in 2016, we, the Product Management, SAP Analytics team, have an upcoming webinar this Wednesday, February the 24th on "Modifying Existing SAP Lumira Extensions to Better Fit Your Needs", presented by myself, Annie Niangneihoi

 

The SAP Lumira Expert Series Webinars are a series of technical webinars hosted by the Product Management, SAP Analytics team, where we present to you different topics on SAP Lumira, how to work with Lumira to get the best out of it.

 

For this particular webinar, I will be presenting, as the title suggests, on how you can tweak an existing SAP Lumira visualization extension from the existing open sourced viz extensions that we have, to have it suitable for a custom use case. The goal of this session is to give you an insight into the practical reusability of open-sourced extensions, with hands-on redevelopment.

Please note: This is a technical deep dive session. We will be touching extension code. It is preferable to have some knowledge of JavaScript, D3.js and CSS.

 

Webinar Agenda:

The webinar will include the following topics of discussion:

  • Open sourced extensions & the developer community
  • A sample extension
  • Demo: Re-developing in Web IDE
  • Deployment in Lumira
  • Exploring other use cases

 

Recommended resources:

Before attending the Webinar, it would be helpful to have gone through the following resources:

 

Webinar Details:

  • Date: Wednesday, February 24th, 7 AM Pacific Time
  • Topic: Modifying Existing SAP Lumira Extensions to Better Fit Your Needs
  • Presenter: Annie Niangneihoi
  • Registration: Click the webinar link on the SAP Lumira Events page in SCN

 

This event will be recorded, and a link to the recording will be posted subsequently on the same page in SCN.

Please feel free to forward this invitation to other interested parties – and we look forward to seeing you online soon !

 

For any further questions, you are more than welcome to reach out to either me or my colleague, Adrian Paul who will be hosting this webinar session.

会话追踪

$
0
0

BO SDK是否可以调用会话追踪,怎么调用?

Technology Product Road Map Series for ASUG

$
0
0

The Technology Product Road Map Series for ASUG offers interactive webinar presentations for each of the SAP technology product road maps. The road maps describe the planned and future direction of SAP products. This series is driven by the Products and Innovation Product Management Customer Services Team and is delivered by the SAP product owners. 

 

These webinars are open to all customers.These road maps are being promoted within the ASUG calendar and are open to ASUG members as well.

 

Want to stay informed on all of the upcoming webinars?  Click the receive email notifications on the right hand side.

 

The complete list of published solution and product road map presentations is available on SAP Service Market Place here: http://service.sap.com/saproadmaps


Note: After registering please make note of the phone details.  A reminder will be sent out 1 week and 1 day prior.

 

For more information contact Stephanie Redivo.


NOTE ABOUT REGISTRATION:Please enter your email address and put in your password.

If you do not know your password select the "Forgot Password" option.

You will need to fill in all the fields for the first time and then subsequent registrations will pre-populate your fields.

The registration team is aware there are too many fields and they are looking into changes.

Thanks for understanding.

 


 

Road Map Webinar/ Description

Date and Time/PresenterRegister

SAP Cloud for Analytics Road Map Webinar: Learn about what's new and coming with Cloud for Analytics

February 25th,2016 8-9am PST

 

Presented by: Terry Penner

Register Here

SAP Gateway Road Map Webinar: This road map session provides an overview of SAP Gateway as well as recently released and planned innovations in 2016 and beyond.

March 3rd, 2016 8-9am PST

 

Presented by: Andre Fischer

Register Here

SAP Road Map for SAP UI Technologies:Learn about what's new and coming within SAP UI Technologies


March 10th, 8-9AM PST

Presented by: Ingo Deck

Register Here

SAP BI Platform Road Map Webinar:Learn about what's new and coming within SAP BI Platform

April 7th, 2016 8-9am PST

Presented by: Maheshwar Singh

Register Here

SAP HANA Cloud Platform Road Map Webinar:Join our SAP product road map webinar and get insights into SAP HANA Cloud Platform, SAP’s open platform-as-a-service offering. You will get a short intro, an update on what is planned and what is coming with a main focus on answering any of your questions around our road map. Please bring your questions and we can address them in this webinar.

May 25th, 2016 8-9am PST

Presented by:

Jenny Lundberg,

Sven Kohlhaas

**NEW**

Register Here

SAP PowerDesigner Road Map Webinar: SAP Solution Manager 7.2 is here! Discover its new and exciting capabilities, such as the new user interfaces and new business process management architecture and graphical process modeling capabilities for simpler business and IT alignment.  See how SAP Solution Manager 7.2 manages SAP Cloud and SAP Hybrid solutions, and understand how it streamlines the implementation and running of SAP S/4HANA with the new SAP Activate methodology.June 23rd, 2015 8-9am PST

**NEW**

Register Here

 

2016 Completed Webinars (Access on Service Marketplace)

DatePresenter

SAP PowerDesigner Recording on Service Marketplace

Access http://service.sap.com/saproadmaps

Click on the Database and Technology Tab and you will find it there.

Jan 14

Matt Creason , SAP
PowerDesigner Product Manager

SAP Fiori Road Map Recording on Service Marketplace

Access http://service.sap.com/saproadmaps

Click on the Cross Topics Tab and you will see it there.

Jan 18Thomas Reiss, SAP Product Manager
SAP Predictive Analytics Recording on Service MarketPlace Access http://service.sap.com/saproadmaps

Click on the Analytics Tab and you will see it there.

Feb 11Ashish Morzaria, SAP Product Manager

 

Access 2015 Road Map Webinar Recordings

Java Mapping adding BOM to a file

$
0
0

Hi Experts,

 

I created a Java mapping jar using NWDS as below, but I applied to my Operation Mapping, but it didn't work, the BOM didn't add to the beginning of the file. Is there anything missing?

 

1. Create the Java project and .java class

 

2. Export the Jar file

 

Thanks

Blue

DBSQL_DUPLICATE_KEY_ERROR (duplication in /SAPTRX/EH_EVMSG)

$
0
0

Hi all,

 

Short dumps are observed in the system with error message "DBSQL_DUPLICATE_KEY_ERROR".

 

Error analysis

    An exception has occurred which is explained in more detail below. The

    exception is assigned to class 'CX_SY_OPEN_SQL_DB' and was not caught in

     procedure

    "UPDATE_DB_TABLE" "(FORM)", nor was it propagated by a RAISING clause.

    Since the caller of the procedure could not have anticipated this

    exception, the current program was terminated.

    The reason for the exception is:

    When an Open SQL array insert is performed, trying to insert a record

    into the database table "/SAPTRX/EH_EVMSG" causes the function to terminate if

     a record with the same key already exists.

 

    (When an Open SQL individual record insert is performed, this situation

    does not cause the function to terminate. SY-SUBRC is set to 4 instead.)

 

May I know, if anyone has earlier observed such kind of issue.

 

N.B : For the table /SAPTRX/EH_EVMSG, primary key is eh_guid and evm_guid and both got generated through the system logic.

 

We are most probably observing this kind of issue for a specific OTC scenario (sales area) where sales order got created prior to EM activation and dump occurs after activation of EM system when system trying to post any update on such sales orders to EM. Also System contains huge volume of data.

 

 

Regards,

Ratnakar

Prompt message in MM inventory

$
0
0

Good Day,

 

Can sap inventory module have a prompt facility if the inventory balance is not sufficient when performing goods issue in MIGO? Example I have 10 pcs of ball pen in my inventory balance and I issued 15pcs, I want to have a message/prompt that my inventory balance is only 10 pcs and your balance is not enough to issue 15 pcs, but the setup of our company is to accept the negative balance that’s why we can issue more than in our inventory balance.

 

Thank you in advance for your response

Jake


Purchase requisition and Purchase Order

$
0
0

hi to all

 

I raised a PR with GBP currency, when the batch run, SAP converted the PR to PO in AUD!?

This was happened for the first time and now I have issue to do goods receipt and finance can't do invoice receipt.

because the exchange rate is different everyday.

could anyone explain :

 

1- why this was happened?

2- how we can sort this issue

 

I do have access to ME22N but the currency is greyed out.

I appreciate your help.

Thanks

Expense form in Expense workflow

$
0
0

Hi All,

 

We have created copy of WS20000040 workflow to Z workflow now we want to have expense form (PTRV_EXPENSE_FORM) in the User decision task ( TS20000131). So is there any configuration for attaching it to Standard Task ? or do I need to follow this Using Workflow Programming Exit for Travel Expense Approval Workflow: Copy attachments of travel expense attachments to …


We have also gone through below thread but didn't find anything as far as configuration is there.

https://scn.sap.com/thread/1255796

 

Expense Workflow - Approver work item to display adobe form

 

Attach PTRV_EXPENSE_FORM to workflow WS20000040

 

Also we are facing issue converting export parameter  E_PDF_FORM of FM PTRM_WEB_FORM_PDF_GET to SOFM for binding it in to Workitem Note_reference.

 

Regards,

Alex

Entry missing for period determination in fiscal year variant

$
0
0

Hi All

 

There is a help file that I can't open on within the troubleshooting area of the help centre for the above message, would anyone be able to assist here?

 

Kind Regards

Grace

how to load vietnamese text in sap bw master data

$
0
0

Dear Expert,

 

I can not load vietnamese description into Dimension beacause in sap bw including character '#' when load vietnamese text.

 

please tell me how to do this.

 

thanks

WEBI prompt times using BICS

$
0
0

Hi all,

 

I have a doubt about what affects the time it takes the WEBI prompt to pop-up.

 

On the same BO server, one WEBI takes 5 seconds to prompt for the variables, while on another document, it takes around a minute.

If I execute the BEx query in RSRT, prompts show up inmediately.

 

What affects this times to vary so much?

 

Thanks in advance for any help!

 

Felix Ortega

Viewing all 8616 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>