‎2009 Jul 16 7:40 AM
Hi Gurus,
How to get get material serial number status? Is there any function module?
TCode IQ03 to display the serial number staus, but where i can find the status (AVLB / ESTO / ECUS) of these serial number ?
Pls help.
Regards,
Sankaran
‎2009 Jul 16 9:02 AM
Hi,
Make use of FM STATUS_READ.
From EQUI table get the OBJNR for the material and serial number.
Use this OBJNR in the FM to get the status.
Regards,
Ankur Parab
‎2009 Jul 16 9:02 AM
Hi,
Make use of FM STATUS_READ.
From EQUI table get the OBJNR for the material and serial number.
Use this OBJNR in the FM to get the status.
Regards,
Ankur Parab
‎2009 Jul 16 9:04 AM
hi,
SELECT SINGLE equnr objnr FROM
equi INTO (equnr1 , objnr1)
WHERE sernr = wa_final-sernr
AND matnr = wa_final-matnr.
CALL FUNCTION 'STATUS_TEXT_EDIT'
EXPORTING
client = sy-mandt
flg_user_stat = 'X'
objnr = objnr1
spras = sy-langu
bypass_buffer = 'X'
IMPORTING
line = sttxt
EXCEPTIONS
object_not_found = 1
OTHERS = 2.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Regards
siva
‎2009 Jul 16 9:12 AM