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

Need to find the text of the fields and in which table it stores IN (Pm)

Former Member
0 Kudos
230

Hi ,

Just could any buddy let me know the field CALL_STATUS in transaction IP03 get stored .

just help me out to fine the table where that gets stored .

For refference u can fine the field in transaction IP03 In strip schedule call item

field lable name : Date Type Status

Thanks ,

Vinay

4 REPLIES 4
Read only

Former Member
0 Kudos
158

Hi,

I dont have SAP in front of me.

But do one thing:-

1. go to st05

2. Activate Trace

3. Start your transaction IP03

4. Deactivate Trace

5. Display it.

Summerize it by SQL statements.

You will get all the tables related with IP03.

Reward if useful!

Read only

0 Kudos
158

Boss ,

I have almost got near to it ,i can able view the field name in table

AMHIS-TSABR , but cant able to find any values in it ie its get getting stored as single char 'X' ,i want to know where the text of the field is getting stored .

Copuld u kindly help me out to find that .

Thanks ,

vinay

Read only

Former Member
0 Kudos
158

Just i want to know in which table it gets stored

Read only

Former Member
0 Kudos
158

Hi,

Directly if u want to get value of call_status from table, u need to combine many tables, instead u can use any call function which will return the status.

example:

CALL FUNCTION 'STATUS_TEXT_EDIT'

EXPORTING

client = sy-mandt

flg_user_stat = 'X'

objnr = wa_orderno-objnr

spras = sy-langu

IMPORTING

user_line = v_status

EXCEPTIONS

object_not_found = 1

OTHERS = 2.