cancel
Showing results for 
Search instead for 
Did you mean: 

Table for System status od Inspection lot

Former Member
0 Kudos

Hi Guys,

Anybody has any idea as to what is the table for the system status of inspection lot?

Where the status is stored??

Would greatly appreciate your inputs.

Thanks

Regards

Saurabh

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello

1. Goto table QALS with PRUEFLOS = inspection lot

2. Goto table JEST with OBJNR = QALS-OBJNR

You will receive one or more records of status. Then - table TJ02T.

Answers (2)

Answers (2)

0 Kudos
The better way is to use the FM:
*-----------------------------------------------*
* Fetch the Inspection Lot Status
CALL FUNCTION 'STATUS_TEXT_EDIT'
EXPORTING
objnr = objnr
spras = sy-langu
IMPORTING
line = sttxt  " Inspection lot status
EXCEPTIONS
object_not_found = 01.
IF sy-subrc NE 0.
CLEAR sttxt.
ENDIF.
*-----------------------------------------------*
Former Member
0 Kudos

Hi,

Check table QALS, TJ02T.

You can visit this wiki also for further requirement.

https://wiki.sdn.sap.com/wiki/display/ERPLO/PM+Tables

Thanks

Nitesh

Former Member
0 Kudos

Hi,

TJ02T does have the system statuses, but how should I link that with the inspection lot. It only contains all the values for the system statuses. How should I find out say for example for the inspection lot 202020 the status is ICCO. ICCO is present in TJ02T but how shld i relate that with insp lot.

Thanks