‎2008 Oct 01 12:08 PM
hi guru's,
I have a query, when i use call transaction in my code with BDCDATA.
After called the call transaction statement and before it loaded the bdc values into the screen fields
Which table or Buffer will hold this BDCDATA.
Regards,
Florian
‎2008 Oct 01 12:16 PM
Hi,
i hope BDCDATA table only holds the data. I mean what ever the table name you are creating by including BDCDATA structure...that table will holds the data.
Regards,
venkat
‎2008 Oct 01 12:17 PM
Hi,
The Buffer memory of your Application server will be holding these values, im not sure about the table.
‎2008 Oct 01 12:41 PM
hi Rajan,
Is there any way to find out the buffer memory or
to get data from that buffer memory.
I want to read that value is it possible??
Regards,
Florian
‎2008 Oct 01 12:44 PM
Your internal table holds the data. So you can loop at that internal table or do a read on that internal table.
But the question is: do you want to read that data from your own program or from another program? In case of the latter, i don't think that is possible.
‎2008 Oct 01 1:06 PM
Hi,
BDCDATA is a Structure ,during Run time it holds the data. You will declare one internal table with BDCDATA that internal table holds the screen and fields and its values after the completion of the program it will cleared.
Regards,
Bharani
‎2008 Oct 01 1:14 PM
hi Maen Anachronos ,
I need to read the BDCDATA outside of my program before loaded into that appropriate program.
Regards,
Florian.
‎2008 Oct 01 1:23 PM
No Florian, you cannot do that.
BDCDATA is a structue which is filled at runtime. Its data are not stored anywhere, so cannot read them in some other program