‎2008 Mar 11 2:12 AM
Hi Everyone.
I have a problem, I'm meaking user exit to BW and don't can read the interna table. the function definition is:
*" CHANGING
*" REFERENCE(XTH_DATA) TYPE HASHED TABLE
I used:
FIELD-SYMBOLS: <wa_data> TYPE ANY.
loop at XTH_DATA assigning <wa_data>.
IF <wa_data>-S_CHAS-0CALMONTH = '003'.
endif.
endloop.
But the message say: The data object "<WA_DATA>" has no structure and therefore no component
called "S_CHAS-0CALMONTH". called "S_CHAS-0CALMONTH".
and I debbugin the function and i cant acces the data without problem.
I need acces the datas of XTH_DATA. Eny things for help me.
Thanks.
Fracisco
‎2008 Mar 11 2:25 AM
Hi Juan
Can u jst cross check if the structure XTH_DATA has the component u r giving.
cheers
shivika
‎2008 Mar 11 3:12 AM
Hi,
Declare Field symbol like below and try.....
FIELD-SYMBOLS <wa_data> TYPE ANY TABLE.