2008 Jan 15 9:44 AM
Hi,
Can anyone explain me the BAPI 'BAPI_NETWORK_CONF_ADD'.
Regards,
Soumya.
2008 Jan 15 9:48 AM
Functionality
Using this method you can enter confirmations for network activities/ activity elements and splits. Goods movements for a confirmation are specified according to the standard logic for retrograde withdrawal and automatic goods receipt for confirmation.
[edit]Notes
Note that directly after you call the BAPI a COMMIT WORK is carried out. This means it is not possible to use multiple write confirmation BAPIs in a row and then carry out a single COMMIT WORK only once after the last BAPI. However, if this does occur, the system will terminate the second BAPI because a chain of calls, such as this, is prevented in a technical way by the system. If you do not carry out a COMMIT WORK, you cannot confirm a network you created and released using a BAPI since it does not exist in the database yet. First carry out the COMMIT WORK to write the activity to the database, and then create your confirmations.
CALL FUNCTION 'BAPI_NETWORK_CONF_ADD'
EXPORTING
NUMBER =
" POST_WRONG_ENTRIES = 0
" TESTRUN =
" IMPORTING
" RETURN =
TABLES
I_CONFIRMATIONS =
" E_MESSAGE_TABLE =
.
Reward points if useful
use FM 'BAPI_NETWORK_CONF_ADD' to update the Actual date for the activity
2008 Feb 01 6:30 AM
2011 May 23 12:36 PM
The reply is copy paste of F1 help.
I am trying to use this FM, but the confirmation is not getting saved.
Do you have a code template for successful execution?