‎2008 Mar 29 9:05 AM
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.!!
‎2008 Mar 29 10:19 AM
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.
‎2008 Mar 29 10:19 AM
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.