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

Hai,

Former Member
0 Likes
355

Hi all,

How to Extract the Production Order System Status Table

Thanks in advanse,

Malini.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
323

Hi,

Try this

tables: aufk "Order master data

jest, "Object status

tj02t. "Status Description

  • Order Status - To Retrieve & Filter

select stat from jest

where objnr = aufk-objnr " objnr means object no

and stat in ('I0012', 'I0045', 'I0074', 'I0076')

and inact ne 'X' "Flag: Status inactive

order by stat.

select single * from tj02t

where istat = jest-stat

and spras = 'E'.

Reward points if found helpfull...

Cheers,

siva.

1 REPLY 1
Read only

Former Member
0 Likes
324

Hi,

Try this

tables: aufk "Order master data

jest, "Object status

tj02t. "Status Description

  • Order Status - To Retrieve & Filter

select stat from jest

where objnr = aufk-objnr " objnr means object no

and stat in ('I0012', 'I0045', 'I0074', 'I0076')

and inact ne 'X' "Flag: Status inactive

order by stat.

select single * from tj02t

where istat = jest-stat

and spras = 'E'.

Reward points if found helpfull...

Cheers,

siva.