SAP StackFICOHRMMSDPMPSABAPNetWeaverTablesTcodes ☰MENU

ABAP ASSIGN component to a Field Symbol

ASSIGN statement keyword in ABAP is used to assign the values to field symbols. A field symbol is just only a place holder with a symbolic name for other fields. It won’t contain any physical data, it just point to the area where the data is stored (Like pointer in C programming).

Different Syntax variation for the ASSIGN keyword

Here the first variation (ASSIGN f TO .) will store the contents of field f to the field symbol. In the second variation ( ASSIGN (f) TO .) the field symbol will be assigned with the field whose name is stored in the field f.

 

How to store structure components to a filed symbol

If we have structured data object <struct1> and <component1> is one of the subfield (component) of that structure. Now we can use following the statement to store that component in a Field Symbol <FS>

ASSIGN COMPONENT <component1> OF STRUCTURE <struct1> TO <FS>.

 

Normal using additions with ASSIGN

Return Codes

Also Read : View Other ABAP Keywords & Syntax -> ABAP Transaction codes

SAP ALECRMSCMSRMSAP Solutions SAP ReferencesSAP BasicsPP ModuleWMSAP Partners
HomeContact & Privacy PolicyTwitter
All of the product names here are trademarks of their respective companies. The site sapstack.com is not affiliated with SAP AG.
©2024 sapstack.com