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 define selection screen?
How many types of views are there ?
What is the significance of the screen number ‘0’?
What is the difference between rfc and bapi function modules? : abap bdc
Is it possible to bring select option in module pool screens?
what is defference between repository and non repository Object?
Name the special commands of list?
How do you activate a function exit?
Polymorphism real time scenario
From excel to abap - is batch mode possible ? : abap bdc
What is your current client number?
How do you display a data in a detail list?
How do I find the output type of a table or a program?
What is an “on request field” statement?
What are the parameter types for a method?