and "I would encourage you to open an OSS problem with SAP when you find something like this" As a workaround, if the symtom happens while you're executing the BAPI in dialog, but it works in background, then the BAPI has been written to allow 2 behaviors, one with SAP GUI, one ...
SAP Managed Tags: ABAP Development Hi Gurus, Can any one please let us know how we can use BAPI_PRICES_CONDITIONS for either creating or changing Price Conditions. Please see my code below for creating Price condition :- Please correct it and send me the code for both changing and creatin...
This blog will not describe how to implement BAdIs. Seehttp://help.sap.com/for more information on implementing a BAdI. The procedure to discover BAdIs by a Performance Trace will be explained by using the example used below. Example case I want to know which BAdIs are called in the tr...
SAP Managed Tags: ABAP Development Hey, My code is for the inbound delivery but it should work the same. Give this a try. REPORT z_delivery_batch_split. DATA:header_data LIKE bapiibdlvhdrchg, header_control LIKE bapiibdlvhdrctrlchg, delivery LIKE bapiibdlvhdrchg-deliv_numb, ls_retur...
I suppose you wrote a wrapper program for the BAPI to be allowed to submit in a background job and also execute the COMMIT WORK (BAPI_TRANSACTION_COMMIT) So you could LOOP AT RETURN looking for error/abort message (TYPE 'E' and 'A') after the BAPI call and the BAPI_TRANSACTION_COMM...
As per standard SAP process, workflow doesn’t trigger for purchase requisitions created through MRP process. Reason: Usually, there is a possibility that the PR’s created through MRP can get deleted again by materials planning and due to this, there will be inconsistencies created between PR’...
SAP Managed Tags: ABAP Development Hi experts, I read some threads about BAPI extension in this forum, but it is still not clear for me hoe to use them. Maybe it would be clearer if someone could explain it to me with my own example: Lets assume, I am in a SRM system. Here I ...
Create a command through transaction SM69 (and execute via FM SXPG_CALL_SYSTEM) Reply Former Member 2008 Jul 16 10:06 PM 0 Kudos 1,310 SAP Managed Tags: ABAP Development All, Thsi interface exists today to a legacy system. They are now moving to SAP. I need to know what ...
You just will have to pass the old and new values. Ignore my comment about the flag, as I was thinking of the PO BAPI, where you need to set a flag for each field you are changing. For Delete - From a SAP perspective, the data is not getting deleted from the database, but it ...
10:53 AM 0 Kudos 316 SAP Managed Tags: ABAP Development Hi . BAPI can be in the same way as ur calling FM in the SE38.. call BAPI_batch_create IMporting exporting tables etc... and u need to call BAPI_COMMIT at end. Reply Former Member 2006 Sep ...