‎2009 Feb 20 5:51 AM
I want the standard bapi for qa32 transaction in which for each material code the inspection lot is checked and quality is accepted or rejected?
‎2009 Feb 20 5:55 AM
hi
check BAPI_BATCH_CHANGE and try exit EXIT_SAPLV01Z_014
hope this helps
regards
Aakash Banga
‎2009 Feb 20 5:59 AM
Find its package first
then go to in se80 and select that package - it would give the list of objects
go in enhancement -> which contains the list of it
Regards
Shashi
‎2009 Feb 20 6:04 AM
Hi,
Use the Business Object BUS2045. In the transactin SWo1 give the business object as BUS2045 and check the list of methods ,click on each method and click on Program tab you can get the Corresponding BAPI . It might help you.
Regards,
Naveen Kumar Pulluri.
Edited by: Naveen Kumar on Feb 20, 2009 7:04 AM
‎2009 Feb 20 6:04 AM
Hi use below bapi..
BAPI_INSPLOT_GETLIST
Example:
DATA: L_INSPLOT_LIST LIKE BAPI2045L1 OCCURS 0 WITH HEADER LINE.
CALL FUNCTION 'BAPI_INSPLOT_GETLIST'
EXPORTING
MATERIAL = 'Y-100'
TABLES
INSPLOT_LIST = L_INSPLOT_LIST.