what is field string ?
& where we are using field strings?
Answer Posted / ashutosh rai
A field string is a type of variable, and is the equivalent
of a structure in the DDIC but is defined within an ABAP/4
program. Like a structure, a field string is a series of
fields grouped together under a common name. The difference
lies mainly in where the definition resides. The term
structure in R/3 applies only to a Data Dictionary object
containing a collection of fields. The term field string
applies to a collection of fields defined in an ABAP/4 program.
Two statements are usually used to define field strings in
an ABAP/4 program:
* data
* tables
The following is the syntax for defining a field string
using the data statement.
data: begin of fs1,
f1[(l)] [type t] [decimals d] [value 'xxx'],
f2[(l)] [type t] [decimals d] [value 'xxx'],
...
end of fs1.
Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
How to load data from ms excel sheet to sap by using bdc method ? : abap bdc
What is example class
Can a domain, assigned to a data element be changed?
What are roles and authorization objects?
Reports: Event functionality.
What are pool tables?
How many default tab strips are there? How to insert more tabs in it?
What is an internal table?
What are the different types of view?
What is at exit-command:?
What are the types of indexes in abap?
Differentiate between ooabap and abap?
could anyone tell me what r real time questions been asked in interviews?i am in urgent need..thanks in advance
What is the difference between a pool table and a transparent table and how they are stored at the database level?
What is the Process to transfer IDOC from Outbound System to Inbound system.