‎2008 Jul 28 3:04 PM
Hallo, everyone,
I'm reading some SAP source codes and found some data declaration like:
DATA: *resbd TYPE resbd.
Can anyone explain to me what this asterisk is for in the data declaration?
thanks
Yong
‎2008 Jul 28 3:05 PM
hi,
It is nothing but a work area of type resbd ....You can declare it in that way ...You can find such declarations in standard programs ...
Regards,
Santosh
‎2008 Jul 28 3:05 PM
hi,
It is nothing but a work area of type resbd ....You can declare it in that way ...You can find such declarations in standard programs ...
Regards,
Santosh
‎2008 Jul 28 3:06 PM
DATA: *resbd TYPE resbd. "it is a kind of mirror to resbdWe can use that as Work area.
Standard SAP application follows those type of conventions.
‎2008 Jul 28 3:07 PM
You can declare any special characters not '-' character.
Rajasekhar.
‎2008 Jul 28 3:07 PM
It doesn't have any special meaning ..
Just a variable declaration ..
‎2008 Jul 28 3:09 PM
Hi,
This is nothing but the "old way" of declaring a second work area for a table.
Regards
Adil
‎2008 Jul 28 3:12 PM
hi check this..
DATA: *resbd TYPE resbd .
tables:resb .
select rsnum
rspos
from resb
into *resbd .
endselect .