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

Former Member
0 Likes
515

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?

4 REPLIES 4
Read only

Former Member
0 Likes
475

hi

check BAPI_BATCH_CHANGE and try exit EXIT_SAPLV01Z_014

hope this helps

regards

Aakash Banga

Read only

Former Member
0 Likes
475

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

Read only

Former Member
0 Likes
475

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

Read only

Former Member
0 Likes
475

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.