‎2007 May 09 9:50 AM
I need to define work area for belnr. How I will do that. I havr already created one structure for belnr along with some other table.
‎2007 May 09 10:59 AM
http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb30dd358411d1829f0000e829fbfe/content.htm
see this links if useful award points dear,
thank you
‎2007 May 09 9:52 AM
Hi
Work area can be created for a structure or a table.
Not for individual fields.
Suppose u create the table contains the belnr table and create the work area for that table.
work area will be created for that belnr field also then.
Regards,
Sreeram
‎2007 May 09 9:52 AM
Hi Abhay,
Plz be more clearer.
Do you want any other fields in there along with BELNR. What is the structure do you already have? What exactly is your requirement that you would like to create a work area involving BELNR?
Regards,
Kiran
‎2007 May 09 9:53 AM
a workarea for one field? Can you provide us with more details?
‎2007 May 09 9:59 AM
‎2007 May 09 9:55 AM
DATA: wa_work_area TYPE <b>STRUCTURE_NAME</b>.
Regards,
Sooness.
‎2007 May 09 9:56 AM
Hi ,
You need not create a separate workarea for a field once you have created a structure including that field . you can use the same work area and do the operations .
Regards,
Ranjita
‎2007 May 09 10:05 AM
Hi Abhay,
Refer this code :
If belnr is structure then this work area will be correspoding to that structure.
If it is a field.then it will be correspoding to a temp variable having type belnr.
data : wa_belnr type belnr.
Reward points if helpful.
Regards,
Hemant
‎2007 May 09 10:50 AM
hi,
you can create work area only for tables ............not for single field....
reward with points if helpful.
‎2007 May 09 10:59 AM
http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb30dd358411d1829f0000e829fbfe/content.htm
see this links if useful award points dear,
thank you
‎2007 May 09 11:00 AM
check this too dear,
http://help.sap.com/saphelp_nw2004s/helpdata/en/e5/6bc492bd5d214ba02e173a67d5cba3/content.htm
award points if this is useful dear,
thank you
‎2007 May 09 11:00 AM
U don't need to create a work area for one single field. U can take a variable like belnr and can go ahead with the processing as required using that variable.