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
I am uploading 100 records out of which say 59th record has error so what will happen if I am using synchronous or asynchronous method of bdc? Can we update the database using local update mode how? : abap bdc
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain?
What is an evaluation path? : sap abap hr
What is a data class? : abap data dictionary
What are the different function modules used in sapscript?
How can we create callable modules of program code within one abap/4 program?
Suppose there is check box along with the rows. The requirement is, select the require check boxes and press a used defined button to save all these checked row data to another table. How can you do it?
What is the logo in sap script?
Select query optimisation
What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
Cds views
How do you process errors in call transaction method? : abap bdc
What are the components of sapscript?
Name the function module used to convert logical file names to physical file names in abap/4 programs?
What is abap dictionary or data dictionary? What is the transaction to access abap dictionary? : abap data dictionary