Application Development and Automation 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: 
Read only

BAPI in data upload

Former Member
0 Likes
373

Hi all,

I am using the following BAPI to create equipment mater data, but after execution of the program, i am not finding the uploaded data. BAPI is not giving any return messages too..

CALL FUNCTION 'BAPI_EQUI_CREATE'

EXPORTING

external_number = external_number

data_general = data_general

data_specific = data_specific

valid_date = sy-datum

  • DATA_INSTALL =

IMPORTING

  • EQUIPMENT =

  • DATA_GENERAL_EXP =

  • DATA_SPECIFIC_EXP =

return = return1

.

Please reply & have ur points.!!

1 ACCEPTED SOLUTION
Read only

Sm1tje
Active Contributor
0 Likes
354

After executing this BAPI, did you get an equipment number back?

If so, then equipment was created (since there is no error message in the return table), but before data is stored on database, you have to do a 'BAPI_TRANSACTION_COMMIT' (this is a standard function module for commiting data after BAPI-call.

1 REPLY 1
Read only

Sm1tje
Active Contributor
0 Likes
355

After executing this BAPI, did you get an equipment number back?

If so, then equipment was created (since there is no error message in the return table), but before data is stored on database, you have to do a 'BAPI_TRANSACTION_COMMIT' (this is a standard function module for commiting data after BAPI-call.