Quantcast
Channel: SCN: Message List
Viewing all 8676 articles
Browse latest View live

Function module-FAGL_GET_TT_DATA showing error message -Test Frame

$
0
0

Dear All,

 

I am executing the Function Module FAGL_GET_TT_DATA in T code: SE37 But i get the following error Message

 

Error generating the Test Frame.

 

 

Could you please help me out, how to proceed further




Thanks in Advance

Jose.


Re: Program sapevt return code 156 meaning?

Re: Is it Possible if we can run APP with same vendor at Multiple Locations

$
0
0

Hi Ravi,

 

Yes I agree that there should be workaround.

However we need to understand that this is standard SAP functionality.

 

In SAP we normally use the Head office and branch functionality.

So Head office would make the payment on behalf of branch.

 

Another option is the Payment schedule at each plant can be fixed.

Ex: Branch 1 APP is every tuesday, Branch 2 : APP is every wednesady, so that the issue can be handled differently.

 

Hope this might provide some inputs and resolve your issue.

 

Regards,

Rithin

Re: Authorization Change not available for query XXX

$
0
0

I am facing similar issue. It seems issue with GUI version. In my case I have created query using 740 GUI and user can't change the report if they are on 730 GUI. No OSS Notes found so far.

Re: BOM explosion during prod order creation ...urgent

Re: BPEXT field in BP not replicated to SAP ISU

$
0
0

Hello Anand,

 

You can write a simple migration report using the folllowing BAPI to update this field:

 

BAPI_BUPA_CENTRAL_CHANGE (CENTRALDATA -> PARTNEREXTERNAL) and BUPA_CENTRAL_CHANGE (IS_DATA -> PARTNEREXTERNAL)

 

Hope it helps.

 

Thanks,

Julin Xin

Re: Process to pass field with Currency Type in EM

$
0
0

Hi Ratnakar,

 

Where do you defined currency type? Is it Event Handler or Event Message parameter mapping?

 

Have you maintained value as D - Direct Value mapping in Parameter mapping?

 

Regards


GGOPII

Re: Detailed Sales Report by Whs

$
0
0

Hi!

 

Hope this helps.

 

SELECT

T0.[CardCode], T0.[CardName], T0.[DocDate],

T0.[DocTotal] AS 'TotalAmount', T1.[Dscription], T1.[Quantity],

T0.[DocType], T1.[ItemCode], T2.[ItemName],

T2.[ItmsGrpCod], T3.[ItmsGrpNam] AS ItemGroupName, T1.[WhsCode],

T5.[WhsName], T0.[DocNum], T1.[GrssProfit] AS 'GrossProfit',

T1.[Price], T1.[StockPrice]

 

 

FROM OINV T0

INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry

INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode

INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod

INNER JOIN OWHS T5 ON T1.WhsCode = T5.WhsCode

WHERE T0.[DocType]='i'

 

 

UNION ALL

 

 

SELECT

T0.[CardCode], T0.[CardName], T0.[DocDate],

(T0.[DocTotal]*-1) AS 'TotalAmount', T1.[Dscription], (T1.[Quantity]*-1) Quantity,

T0.[DocType], T1.[ItemCode], T2.[ItemName],

T2.[ItmsGrpCod], T3.[ItmsGrpNam] AS ItemGroupName, T1.[WhsCode],

T5.[WhsName], T0.[DocNum], (T1.[GrssProfit]*-1) AS 'GrossProfit',

(T1.[Price]*-1) Price, T1.[StockPrice]

 

 

FROM ORIN T0

INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry

INNER JOIN OITM T2 ON T1.ItemCode = T2.ItemCode

INNER JOIN OITB T3 ON T2.ItmsGrpCod = T3.ItmsGrpCod

INNER JOIN OWHS T5 ON T1.WhsCode = T5.WhsCode

WHERE T0.[DocType]='i'

 

Regards,


Re: Wrong Down Payment Document in PO History

$
0
0

Dear Jagdeep,

 

Thanks for your message.

We already raise this issue to OSS.

They want to replicate this issue in our development or QA, but the result is not the same with the issue. So we came with second option with create this forum discussion.

Any idea?

Thanks before.

 

Best regards,

Rosida

configuration for add re valuate consumption in ckmlcp

$
0
0

hi

 

i want add re valuate consumption in step post closing ckmlcp such as below image  please guide me how can do it 1.jpg

but we have in this step just re valuate material such as this

2.jpg

please tell me how can add re valuate consumption in this step

Re: Authorization change in query designer with EHP1

$
0
0

If query has been modified/created by GUI 740 it seems you can't change using GUI version lower than 740. Check if it happen on only few query if so find out who have GUI 740 in your team.

Re: SMP oData URL in Agentry

$
0
0

Bill thanks for reply.

My question is can we consume oData service develop in IGW.

 

Regard

Manish

Re: Installing .PRI file (Printer Type)

$
0
0

Hello A

 

You use the SAP Standard device type "SWIN" to print in HP Laserjet P3005 printer.

Could you share you Basis SP level?

 

BR

SS

Re: doubt on background number in process chain

$
0
0

Hi,

 

you can check the JOB LOGS SM37 -> give the BI_* now you will get all BI jobs.

 

RSRPCPROCSS is the table find the logs for the process chain

another function module - RSPC_PROCESS_FINISH -> skip the job and making to green.

 

 

-Phani.

Re: Retail Value/Price, Original and Current Price

$
0
0

Hi N S Anis Kumar,

 

I'm trying to change the moving average price as my user entered the wrong figure during conversion.

 

As mentioned, the moving average price can be seen in the Logistics DC/Store view on Accounting Switch. However, it is grey-out thus it can't be change. Is there any other way that I can make changes to the moving average price?


SP TN to block OSCL to change to closed status if solution and resolution tab is empty

$
0
0

Hi,

 

I knew by system behavior, user are allow to close service call if either solution or resolution is fill up.

 

Right now, I need to force the user to fill up both solution and resolution, then only allow to be closed.

 

Can this be done through SP TN?

 

Below are SP TN, but it will not work even I try on update.

 

Thanks

 

If @object_type = '191' and @transaction_type in (U')

  BEGIN

   If EXISTS (SELECT T0.callID

  FROM OSCL T0  INNER JOIN SCL1 T1 ON T0.callID = T1.srvcCallID

  WHERE T0. callID = @list_of_cols_val_tab_del and

  (T0.[resolution] IS NULL or T1.[userSign2] IS NULL))

   Begin

    SELECT @ERROR=9999,@ERROR_MESSAGE=' resolution and solution should be fill up !!!'

  End

END

Re: Transaction Maintained in GUI Connect Parameters is not called in SICF

$
0
0

Hi Arden,

 

Thanks for the info. Can you give brief overview on what Transaction Launcher is and any helpful links? I will search as well. Can you let me know if it can be implemented in SAP ECC?

 

Thanks,

Phani

Re: Relationship betwwen livecache/maxdb and oracle database

$
0
0

Hi Darui,

 

Thanks for your answer, it is helpful for me.

 

And you said  "3) Yes, they're synchronized and if you have any inconsistency you might face errors during simulations, etc."

 

Then:

1) How to backup the data? As I know Oracle hold the whole data, so we only need to backup oracle and not need to backup livecache?

2) If I need to backup Oracle and Livecache independently,  How can I keep the inconsistency when recover data? 


Could you share your experience ?

 

Thanks very much.

Best Regards

Shuai.zhongwei

Re: SAP Lumira Desktop edition could not be able to find existing .UNX Universes

$
0
0

Couple of suggestions:

 

  1. Do you see the UNX when you try to use the query panel extension (To enable: Open Lumira Desktop->Go to File->Extensions->SAP Universe Query Panel)
  2. From your screenshot I see that the entire list is blank (at least you should be seeing the default UNVs), which makes me doubt whether Lumira Desktop made a proper connection with your Platform (though without any errors).
    1. Can you give a try on a different machine?
    2. If the above step works - try to re-install Lumira.

 

Regards,

Naras

Re: Fixed cashed discount

$
0
0

Yes assumed answered is also fine you can mark answers as helpful if you find them helpful for you.

 

All the best with your certification..;let me know if any help needed

Viewing all 8676 articles
Browse latest View live




Latest Images