‎2008 Nov 05 12:46 PM
Hi ,
I know that BAPI will retrun the errors in an internal table. These are useful, I need to know where these will be stored in the system. So that they will be accessed in the future if something goes wrong.
Thank you,
Surya
‎2008 Nov 05 12:48 PM
They are not stored in any table.
You can only access them during run time.
‎2008 Nov 05 12:48 PM
They are not stored in any table.
You can only access them during run time.
‎2008 Nov 05 12:50 PM
Hi,
As mentioned, errors are only stored in the return table. If you really want to save this info, you could create an application log and enhance the BAPI to write all of the issues to this log.
BR,
Tony.
‎2008 Nov 05 12:56 PM
HI
BAPI will return the errors in RUN time only...if you have a requirement to see the BAPI error log later, you can
format the output message using the FM FORMAT_MESSAGE and download the Error log file.
Regards
R
‎2008 Nov 05 12:57 PM
Hi,
They won't be stored in any table ...u will get them during run time ..U can have all types of messsages 'E' 'S' and 'W' in the bapi return table..
Regards,
Nagaraj
‎2008 Nov 05 1:11 PM
Hi,
If you want them to use in future, then create a Z table and insert the data in this table and use them where you want.