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

Released Process Order No

Former Member
0 Likes
508

Hi All,

From which table, We can get the Released PROCESS ORDER NUMBERS.

With what field reference we can fetch.

Please help me in this regards.

Regards

Deekshitha.

3 REPLIES 3
Read only

Former Member
0 Likes
485

Hi DeeK ,

Process Order contains Status called Release , etc .

It may contain 5 - 6 diff types of status,so u have to use this FM.

STATUS_READ by passing OBJNR of thart Order , OBNJR u can get it from AUFK.

Regards

Peram.

Read only

Former Member
0 Likes
485

Hi

Just by joining the tables AUFK and JEST you will get all released process orders.

select aAUFNR bstatus into table ITAB from AUFK as a join JEST as b

on aobjnr = bobjnr

where a~aufnr in s_aufnr and

b~status = 'REL'.

Check the field name in JEST table (status).

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
485

hi

pass objnr to the fm STATUS_TEXT_EDIT...if the string doesn't contain REL, then it's not released

if helpful, reward

Sathish. R