‎2006 Jul 24 7:56 AM
Hi all,
In jest table there is a field called STAT.IT contains values like IE00000001000 ,CD5000000000.My requirement is to get for released status ('REL')what is the corresponding values shown in the jest table.
regards ,
alex
‎2006 Jul 24 8:01 AM
‎2006 Jul 24 8:06 AM
Hi,
Its I0002 u can check table TJ02T..
Hope this helps u.
Regards,
Seema.
‎2006 Jul 24 8:23 AM
Hi Alex,
Can use the FM.
<b>STATUS_READ </b> Read Object Status (JSTO and JEST)
CALL FUNCTION 'STATUS_READ'
EXPORTING
CLIENT = SY-MANDT
objnr =
ONLY_ACTIVE = ' '
IMPORTING
OBTYP =
STSMA =
STONR =
TABLES
STATUS =
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.
<b>Input :</b>
objnr = IE00000001000
ONLY_ACTIVE => ' ' --->Active
'X' --->Inactive.Regards,
AS