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
What are ranges?
What are the system fields you have worked with? Explain?
How is conversion of data types done between abap/4 & external level?
How to create report in SD open sales order which covers all Organization, delivery status, shipping details and partner function details. plz mention the detail coding Tahnks, Rahul
Explain different types of attributes of function module?
What is the difference between data elements and domains?
what are the main technical differences between oracle and sap? it would be more helpful to me if get this answer...
What are the different abap/4 editors?
What is a persistent class?
Explain how is batch input process different from processing on line?
What are pooled tables?
What is meant by search help? : sap abap data dictionary
What are the functional modules used in sequence in bdc? : abap bdc
PROGRAM TO CREATE INQUIRY IN SD USING BAPI 'BAPI_INQUIRY_CREATEFROMDATA'
How can we use multiple transactions by using bdc_insert? : abap bdc