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: 

Iw32 - Fm for User status

kesavadas_thekkillath
Active Contributor
0 Kudos

Hi i need a fuctional module to get the user status displayed in Iw32 for a order no.

Keshav

3 REPLIES 3

Former Member
0 Kudos

Hi,

Is this the user responsible details. Please provide the field name

Check this function module

BAPI_ALM_ORDER_GET_DETAIL

Regards

Former Member
0 Kudos

find out the status profile for the service order...

then...

SELECT * FROM jest INTO TABLE it_ustat

FOR ALL ENTRIES IN it_qmel

WHERE objnr = it_qmel-objnr "object number for the order

AND stat LIKE 'E%'

AND inact NE 'X'.

SELECT * FROM tj30t INTO TABLE it_tj30t

FOR ALL ENTRIES IN it_ustat

WHERE stsma = 'ZXXX' "status profile

AND estat = it_ustat-stat

AND spras = sy-langu.

TJ30T-TXT04 contains the user status

0 Kudos

Hi TT,

I solved the issue...i wrote the same as u said but that was my probs ...the problem got solved by passing aufk-objnr.