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

Re: How to create or set cost to a work order ?

$
0
0

Your order should have this status (GMPS - Goods movement posted).


Re: How to create or set cost to a work order ?

$
0
0

Hi,

 

Below is how the planned and labour cost are calculated.

 

Labor Cost

 

Depends on the activity type maintained in the operation and the work centre cost centre.

 

In KP26, cost is maintained against the Cost Centre / Activity type for the period / year, so based on that labor cost is planned.

 

When you do confirmation, this planned cost will become actual cost.

 

Internal : Cost Center / Activity type = Cost

External : PR - PO - Service Entry Sheet

 

Material Cost

 

Cost is populated from the Material Master under accounting tab.

 

When you create a reservation it will become plan cost of the material.

 

When you do Goods Issue, planned cost will become actual cost.

 

Internal : Reservation - Goods Issue

External: PR - PO - Goods Receipt

 

Regards

Terence

Re: Exit/BADI/Enhancement spots for IW32

$
0
0

Pradeep,

Here is the solution.

 

User-exit IWO10009 (F/Exit  EXIT_SAPLCOIH_009 )

Put the following code in the include ZXWOCU07 of the above exit and the job is done.

DATA: BEGIN OF iviqmel OCCURS 0.

         INCLUDE STRUCTURE viqmel.

DATA: END OF iviqmel.

 

CALL FUNCTION 'READ_NOTIFICATION'

   EXPORTING

     feknz   = space   "keine Po

     maknz   = space   "keine Ma

     qmnum   = caufvd_imp-qmnum

   IMPORTING

     iviqmel = iviqmel.

 

caufvd_imp-equnr = iviqmel-equnr.

caufvd_imp-tplnr = iviqmel-tplnr.

 

CALL FUNCTION 'CO_IH_SET_HEADER'

   EXPORTING

     caufvd_imp = caufvd_imp.

 

PERFORM header_update(saplcoih).

 

I tested this.  IW32 > Went to Notification > Filled Equpiment no  >  Came back to Order > Saved Order. 

Verification: IW32 > I found the Equipment number (and corresponding F/Locn) filled in the Order automatically.

 

Hope your issue has been addressed.

 

 

Regards

KJogeswaraRao

Re: Loading .txt file from local machine to data source in BW

$
0
0

Hi Divya,

 

Here you can take ABAP help to complete your requirement.

 

1. Create Write optimized DSO as per file structure.

 

2. Develop ABAP program to read txt file from an Application server & update file data to Active table of Write Optimized DSO.

 

3. Create transformation to map Write Optimized DSO to Infoobject.

 

4. After update of Data to Info object. Delete data from Write Optimized DSO.

 

Regards,

Pradip

Re: How to solve the issue "currency 0 not defined"

Change the MDSE category of a newly created article.

$
0
0

Hi,

 

How to change the MDSE category of a newly created article.

The user just now created an article "1000001111" with MDSE category "A61xxxxx" instead of "A62xxxxx".

 

The article is not used in any procurement transactions.

 

Regards,

Farrukh

Internal Order Planning

$
0
0

Could anyone tell me when can we settle planned order by T-code KO9E?

 

I understand to settle actual cost by T-code KO88, but to settle planned cost this is very strange to me. what the benefit to settle this kind of cost?

 

Regards,

Ibrahim

Re: gw/cpic_timout value changed but still default value of 20 sec. is considered

$
0
0

Hi,

 

Firstly, please review the following wiki page which I summarized before,I believe you will get a better understanding of external command executation.

 

https://wiki.scn.sap.com/wiki/x/9gpmG

 

 

Second, normally, the RFC destination SAPXPG_DBDEST_<DB-HOST> will be invoided if you try to execute DB related commands on APP server where the DB related commands are located in standalone DB host.  Here, in this case, the external command are copy / list / move, so, I don't think this issue is related to RFC destination SAPXPG_DBDEST_<DB-HOST> and I believe the RFC test for destination SAPXPG_DBDEST_<DB-HOST> is ok.

 

 

*** ERROR => GwIConnectHandle: conversation 60616287 not found

(lu=<App. HostName>  , tp=sapxpg  , host=localhost) [gwxxrd.c     7006].

 

 

For this error, the connection setup to the external program does not succeed( "timeout during allocate" error), then the connection was terminated accordingly, therefore, you got "ERROR => GwIConnectHandle: conversation 60616287 not found" error. this is just a sequence error of RFC setup timeout, but not the root cause.

 

 

Note 948636 should explain the reason on why gw/cpic_timeout doesn't work.

 

 

 

Regarding of this issue,

Did you alway get "Error 1006 occurs when you execute an external command" error when try to execute any external command ?

or

Error 1006 occurs sporadic ?

 

 

 

I think the "Error 1006 occurs when you execute an external command" error occurs sporadic, right ?

 

 

if yes, please refer to 1891781 - error occurs when you execute an external command,

implement following sap notes, then the issue will be fixed.

 

 

    1569335 - Sporadic timeout when executing external commands

    1743472 - Sporadic timeout when executing external commands (2)

    1927940 - Further improvement in retry mechanism

    1896935 - Improvement to retry mechanism from SAP Note 1569335

    1963297 - Improvement to SAP Note 1927940

 

Thanks and best regards,

Shi Feng


Re: Report with formula - Multi results for a same lines - Solve #MULTIVALUE display

$
0
0

Hi Rogerio,

 

My Deski report is OK,

 

But in my WEBI report, I have already done the measure as you mentioned, but the problem is already the same:

Image1PNG.PNG

Image2PNG.PNG

Here variables used with formula in WEBI:

  • MEASURE: Current Budget =[Budget Initial]+[Total movement amount]
  • MEASURE: Committed in Forcast = If ([R/F Committed amount CNT-CT]="F") Then [Committed amount CNT-CT] Else 0
  • MEASURE: Committed in Real = If ([R/F Committed amount CNT-CT]="R") Then [Committed amount CNT-CT] Else 0
  • MEASURE: Not planned =[Current Budget]-[Total Real + Forcast]

 

Regards,

 

Sebastien

SAP Archiving with C4C Cloud

$
0
0

Dear All,

 

We are looking out for an option to explore SAP Archiving option with C4C Cloud computing. Any pointers would be helpful

 

Thanks

Shailesh

Re: java.lang.RuntimeException: java.lang.NoClassDefFoundError:

$
0
0

Hi,

 

Please find the modules.

 

Please note that this is standard content interface

 

module1.PNG

module2.PNG

Best way to use single Composite Script across multiple system clients(Target Systems) e.g. RegressionTest, ReleaseTest?

$
0
0

Hi All,

 

Requirement:-

I want to execute same composite script across different system clients(Target System) with different data.

 

We are using CBTA quite extensively and have already automated quite a large number of end to end test scripts.

Our system landscape for release is as follow-

 

Dev system-->Regression Test system (RT01)-->Release Test System (RX01)-->Production

 

We have developed all our CBTA scripts on "RT01" and now we want to use all of them for "RX01" executions also.

Test Data for "RT01" and "RX01" are different.

 

How to use same scripts across multiple clients with different test data?

 

Solution 1:-

So we have created two variats "RT01" and "RX01" which have respective test data for each scripts.

 

For example below mentioned are variants for one script->

VariantCompany CodeCustomer No.AddressPostal_Code
RT01CH01112233address 011001
RX01CH01998877Address 55552002

 

For individual script execution, i can change the variant and "Target System" and "Variant" in "Start Option" window and I can use same script on multiple clients.

 

  • Issue-> But there is an issue with this approach. If I want to execute in batch there will be a problem.

                    When I want to execute through test plan, while test plan creation I can select the "Target system" at test plan level and not the variant.

                    I didn't find any option where I can select test cases for test plan creation based on Variants.


If anyone has used same scripts for multiple system clients having different test data through Test Plan, please share your view. 

 

Workaround:-

I already know the work around for this. I can create copies of same composite script for each system client with each having unique variant.

But this will cause duplication of scripts and will result into lot of scripts for each system Client.

Also effort to duplicate, maintain will be too much.

Re: BW Split

$
0
0

Historical data from Old to new BW system can be transferred by Export DataSource.

                                               OR

Second approach could be , make the new system as copy of old one and then delete data selectively  from both the systems.

 

This way you would get all historical data . Then you have to take care of delta load from source systems. 

 

Approach would be different based on module and design. For most of the finance related extractor DataSource gives overwrite image. So, you will have at least DSO between a Cube and DataSource.  In that case, after loading historical data, you can re-initialize delta selectively.

 

For LO extraction greater care would be needed.  What are the modules you have in your source systems?

 

Regards

Anindya

Re: Eclipse failed connect to GW system with Network Connection Error

$
0
0

Hi Michael..

 

I get stuck in one issue in eclipse if we want connect to database through SAP NetWeaver Gateway  if i am using UI5 code at front end then what are steps need to be follow in any eclipse to connect to backend if i am using SAP server in backend ..

 

Thanks in advance!!!!

Re: deploy with maven on hana.ondemand.com fails

$
0
0

Hi Anton,

 

yes I am registered as Administrator/Developer on both accounts and I already managed to deploy

it manually via Cockpit to the Factory. But hot-update still fails with same error.

 

Regards,

Stefan


Re: 7.42 Kernel needed for ehp7 upgrade

$
0
0

Hi Benoit,

 

Check the line :

 

Tool: R3trans      Solvable Issue           <<<<<<<<<

 


PS: I have sent the incident back with solution which was created for this same issue.

 

Regards,
Gaurav Pandey
SAP Product Support

Re: FM to change reverse posting date in VL09

$
0
0

Since good issue is a good movement, did you try with BAPI_GOODSMVT_CREATE, option

" GM_Code 06: Reversal of goods movements" ?

Re: How to split a field into multiple fields in Generic Extractor

$
0
0

This would a case for function module based extraction .

 

 

Else you might try not to take the problematic field in the base view definition , i.e create a view based data source without the string field.

Then enhance the data source in CMOD , read the same table for the string field,  but split the string in 5 fields within enhancement code.



What is the table you are working with ?  I want to check in my system . But I have BW 7.4

 

Regards

Anindya

Re: Labour Welfare Fund configuration Node

$
0
0

Hi Praneeth,

 

Thanks for the update.

 

It seems like the circles for PTax & LWF  are almost same.

 

In LWF the Circle / Offices are not available , have to create if i gi ahead with the same kind of circle details available in PTax will it be a foolishness like

 

Maharastra-13.

 

Please guide.

Issue in Exporting Webi 4.0 report in PDF Format

$
0
0

We are facing issue in exporting Webi 4.0 report in PDF format. It is happening for only one report. Other reports are working fine.

Also, Report does not have huge data, just 20-30 pages but when tried to export in PDF it runs continuously and did not complete.

Is there any property should I check?.

Viewing all 8798 articles
Browse latest View live




Latest Images