‎2008 Jul 18 10:55 AM
Hi,
need BAPI for Production order download.
This BAPI is for order n job sequencing functionality.
Reagrds
satya
‎2008 Jul 18 11:03 AM
hi,
there is no bapi for that but u can use userexit for the download of production order when created
PPCO0001
EXIT_SAPLCOBT_001
‎2008 Jul 18 11:03 AM
hi,
there is no bapi for that but u can use userexit for the download of production order when created
PPCO0001
EXIT_SAPLCOBT_001
‎2008 Jul 18 11:43 AM
Hi Shailaja
Thanks,could you Pl. detail explanation on user-exit.
‎2008 Jul 18 11:07 AM
Hi Satya,
refer to the link below, hope this can help you:
http://www.sapbapi.com/bapi-list/
With luck,
Pritam.
‎2008 Jul 18 11:10 AM
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
‎2008 Jul 18 11:47 AM
‎2008 Jul 18 11:59 AM
Use these
COCI_CONFIRM_ORDER
CO_RU_CONFIRMATION
Fuctionmodules to create production order
Regards ,
Prasad.