Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

BAPI_NETWORK_CONF_ADD

soumya_jose3
Active Contributor
0 Kudos
411

Hi,

Can anyone explain me the BAPI 'BAPI_NETWORK_CONF_ADD'.

Regards,

Soumya.

3 REPLIES 3

Former Member
0 Kudos
157

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

soumya_jose3
Active Contributor
0 Kudos
157

Closing the thread.

0 Kudos
157

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?