Application Development 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: 

issue in displaying status for process order

former_member342013
Contributor
0 Kudos

Hi

i have a problem in dispalying status in process order

this is my process order status which i have to get

TECO CNF DLV PRC BASC BCRQ GMPS ILAS MACM SETC

bt im getting as

TECO SETC MACM BCRQ ILAS PRC DLV BASC GMPS CNF

how to get this in above order?

1 REPLY 1

Former Member
0 Kudos

Hi Smitha,

The order of the status is settled by standard SAP according to tables TJ02T and TJ04

On table TJ02T you have

System status (ISTAT)

Status (TXT04)

On table TJ04 you have

Position (LINEP)

Priority (STATP)

On Program SAPLBSVA, Form BUILD_JEST_BUF_I

System status are selected and sorted in this way

SORT JEST_BUF_I BY LINEP STATP DESCENDING ITX04.

where ITX04 = TJ02T-TXT04

So you won't be able to change this order in standard.

Regards.