2007 Jul 19 11:35 AM
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
2007 Jul 19 11:38 AM
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!
2007 Jul 19 11:43 AM
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
2007 Jul 19 11:54 AM
2007 Aug 03 8:28 AM
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.