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

Re: Vofm abap routine about

0
0

Hi Mustafa,

 

Ok what about your Item Category copy control setting for "Pricing type". Please note if the Pricing type is can be set(Copy from Order or PO ) as such that your routine will have no effect.

 

R


Re: Error in Proxy generation:message part refers a type not an element

0
0

Suparna,

 

Make sure all the XSDs related to the External definitions are imported.

Re: Redeploy Analytic view Error on BW DSO

0
0

Hello Sree,

 

If you change the DSO itself then re-importing is the only safe way I know to be in sync with the structures in BW.

 

On the other hand, re-import will drop/create in order to recreate the information model on HANA (Analytic View in your case). Changing the model generated by BW directly could lead to modeling losses (you change the model directly and later on you recreate it from BW... changes you applied are now gone).

 

I think a better approach would be to leave the Analytic Views the way the are (as much as possible) and wrap them with Graphical Calculation View, thus leaving the modeling enrichment part outside the generated Analytic View itself. 

 

Later on, if for any reason you change the DSO Structure, then you'll have better chances to activate your models without issues. I say better chances because you might have a field removed from the DSO and the same filed used in a calculation column on your Graphical Calc View. In that case, of course, you'll face activaion issues.

 

BRs,

Lucas de Oliveira

Re: Wage type not Generated in Payslip and RT during Payroll.

0
0

Dear Sankarsan,

 

Please find attached the image of Processing Classes for the WT 1000.. PC08 is not available there..

 

and pls guide me further

Re: Service Request Header & item level duration values are inconsistency ....

0
0

Hi Ramu

 

What Date Profiles and Date Types are associated with your Header and Item Levels.

 

Are the Date Rules in Sync?

 

Regards

 

Arden

Re: How to make mandatory the account group in Vendor change request

0
0

Hello,

 

Check this BADI USMD_ACC_FLD_PROP_CUST_DEP_SET

 

Regards,

Raghu

Re: SAP IDM 7.2 - Suspending provisioning to a specific repository for a short period

0
0

Hi Ranjit,

 

thanks for your help. The statement provides no information.

I have opened a SAP call, maybe the supoport can help us.

 

Thanks and best wishes

Michael

Re: Subqueries not supported error

0
0

Hi Charles,

 

2) Delete from the actual table by using the temp table id's

DELETE FROM "EPM_PCM"."IQ_PP_ACTIVITYDRIVERVALUE"

WHERE "EPM_PCM"."IQ_PP_ACTIVITYDRIVERVALUE"."VERSIONID" IN (SELECT VERSIONID FROM :lt_del);

As it seems that the subquery is not supported, I guess it will not make a difference if you do a SELECT on a temp table. That's why I suggested to Loop over the results of the inner query and concatenate the version IDs to a String which then can be used for the outer statement.

 

First call the inner select:

SELECT "VERSIONID" FROM "EPM_PCM"."SDA_PP_ACTIVITYDRIVERVALUE"

WHERE "PERIOD_NAME" = "MARCH_YTD"

Then use the results to concatenate them into the delete statement where condition. Then it should look like this at the end:

                    DELETE FROM "EPM_PCM"."IQ_PP_ACTIVITYDRIVERVALUE"

                    WHERE "EPM_PCM"."IQ_PP_ACTIVITYDRIVERVALUE"."VERSIONID" IN (xxx, yyy, zzz)

 

This delete statement should work because it does not use a subquery.


Re: Script to wrap text in a text field available?

0
0

Hello

 

Is there a new feature in 1.5 which can do a new line in textcontrol?

 

Beat

Re: BAPI_PRODORDCONF_CREATE_HDR

0
0

pls help me,

Abaper development a program use this bapi, and i also do the  same customizing in OPKC,

but it also have cogi if unrestricted stock is not enough after confirm process order use our program

is there any code need to write in program, or I need to more customizing.

QQ图片20151113181520.pngcogi.png

Re: ALV Custom container with Input field

0
0

Hi,

 

Consider the following code for reference. you can pass each selection-screen parameter into 'WA_LINE-INFO'.

 

Data :  WA_LINE       TYPE SLIS_LISTHEADER,

            GT_LIST_TOP  TYPE  SLIS_T_LISTHEADER.

 

FORM TOP_OF_PAGE .

 

REFRESH GT_LIST_TOP.

 

WA_LINE-TYP = 'H'.

WA_LINE-INFO = 'Lab Report'.

APPEND WA_LINE TO GT_LIST_TOP.

CLEAR WA_LINE.

CONCATENATE 'Sample ID Count :' L_CSAMPCNT  INTO L_CSAMPCNT1 SEPARATED BY SPACE.

   WA_LINE-TYP = 'S'.

   WA_LINE-INFO = L_CSAMPCNT1.

   APPEND WA_LINE TO GT_LIST_TOP.

   CLEAR WA_LINE.

"Report is used only in India

   CONCATENATE 'Date   : '   L_SDATE+4(2) '.' L_SDATE+6(2) '.'  L_SDATE+0(4) INTO L_CDATE.

 

   WA_LINE-TYP = 'S'.

   WA_LINE-INFO = L_CDATE.

   APPEND WA_LINE TO GT_LIST_TOP.

   CLEAR WA_LINE.

 

   CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'

     EXPORTING

       IT_LIST_COMMENTARY = GT_LIST_TOP.

Re: Cross tab extra column

0
0

I am using Crystal 9 and I cant find the Summarized field labels. Also how do I click on column D when it comes form the formulae.

Re: Creation of PR with certain Doc type from MRP

0
0

As a general rule, just one question per thread, the content in the body should have a relation to the subject. If the question is answered, either by a user or by yourself, then the question should be closed. In case you found the answer yourself you should update the discussion with the solution.

If you get new problems then you should open a new question. This is less confusing for the people, as they do not need to read countless replies until they understand the problem or know that the first 50% are not related to the current question at all.

 

To your question: I am not aware of any customizing where a document type could control the appearance of a company code.

This is usually to do with assignments plant to company or purchasing organization to company or plant.

And I expect the same issue for any document type.

Re: Is SAP GUI 64bit available yet (2015-Nov)?

0
0

Hello John

There is no current SAPgui 64-bit version.

 

For Office 64bit, see the restrictions

http://service.sap.com/sap/support/notes/1442028

 

At the end of this note it states:

 

SAP plans to create a 64bit version of SAP GUI for Windows that will be compatible with Office 64bit editions. However since the effort required to create such a version is very high and there are currently higher prioritized developments it is currently not possible to foresee when such a SAP GUI version might become available. As soon as a concrete update is available it will be pulished via this SAP Note.

 

 

Regards,

Jude

Re: Investment support / liability entries

0
0

Hello,

 

I can't. 41 does not post the the main ledger (OL).


Re: How to exclude 0 or null values in a where clause

0
0

Hi Jesus,

 

   You can put the condition:

                  

                        formule [dimension] where [dimension2]!="Null"

 

    will exclude the last row.

 

Thanks and Regards,

Venkata Vinodh Kotha

Re: sap-ABAP-MM-PO Re-Trigger

0
0

Check FM 'ME_REL_STRATEGIE_EKKO'. You can try to make an enhancement to reset for any changes in PO.

Re: Create Popup Window while creating AR Invoice

0
0

Use FMS to display the status of customer whether ISO certified or NOT.

 

SELECT T0.[ISO Certified Field] FROM OCRD T0 WHERE T0.[CardCode] =$[$4.0.0]

 

Best Regards,

MS

Re: custom fiori client development without SMP/HCPMS

Re: RFC Receiver channel: connect to SAP Gateway failed

0
0

Hello Peter,

 

You need to maintain a Unicode connection. You can maintain this through SM59.

 

Regards,

Souvik

Viewing all 8746 articles
Browse latest View live




Latest Images