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

need bapi

Former Member
0 Likes
736

Hi,

need BAPI for Production order download.

This BAPI is for order n job sequencing functionality.

Reagrds

satya

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
709

hi,

there is no bapi for that but u can use userexit for the download of production order when created

PPCO0001

EXIT_SAPLCOBT_001

6 REPLIES 6
Read only

Former Member
0 Likes
710

hi,

there is no bapi for that but u can use userexit for the download of production order when created

PPCO0001

EXIT_SAPLCOBT_001

Read only

0 Likes
709

Hi Shailaja

Thanks,could you Pl. detail explanation on user-exit.

Read only

Former Member
0 Likes
709

Hi Satya,

refer to the link below, hope this can help you:

http://www.sapbapi.com/bapi-list/

With luck,

Pritam.

Read only

Former Member
0 Likes
709

Pass the plant and get the prodn orders from CAUFV table and pass it to internal table.

  • Extracting from View CAUFV

SELECT aufnr

auart

objnr

plnbez

gamng

aufpl

gsuzs

FROM caufv

INTO TABLE it_caufv

WHERE werks EQ p_plant

AND loekz NE c_x.

Check the status of prodn orders using

lv_objnr = wa_caufv-objnr.

  • for retrieving different status of production orders

CALL FUNCTION 'STATUS_TEXT_EDIT'

EXPORTING

objnr = lv_objnr

only_active = 'X'

spras = sy-langu

IMPORTING

line = lv_status

EXCEPTIONS

object_not_found = 1

OTHERS = 2.

Regards

Mohammed

Read only

bpawanchand
Active Contributor
0 Likes
709

Hi

Find the list of BAPI's

http://www.saptechies.com/sap-bapi-list/

Regards

Pavan

Read only

Former Member
0 Likes
709

Use these

COCI_CONFIRM_ORDER

CO_RU_CONFIRMATION

Fuctionmodules to create production order

Regards ,

Prasad.