what is field string ?
& where we are using field strings?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / kartikeya bommuluri
Field strings are a special form of dynamic string, which
have all the capabilities of a dynamic string, but may also
represent a defined part of a random file buffer or a
defined part of a dynamic string.
Field strings must always be declared using LOCAL.They may
be used in the same manner as a dynamic string variable, or
they can be bound to a file buffer for an open random-
access file or a dynamic string using a corresponding FIELD
statement. Each field string occupies sixteen bytes of
memory, and requires slightly more general overhead than a
regular dynamic string variable
The TABLES statement automatically defines a field string .
they are mainly used in screen painter.
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / amith
Field Strings can be used as work areas.
They are similar to structures
We can use field strings In reports .
Field strings can be defined both using the DATA and Tables
statement
Is This Answer Correct ? | 9 Yes | 1 No |
what is the work of buffer in sap ?
Explain the advantage of structures?
visibility section for class level and attributes level
What is the difference between report and script?
8)when u create sales report what u can see in that report ? what rthose field names or data element names? 9)when u create purchase order details report what u can see in that report ?what rthose fieldnames or dataelements? 10)when u create material stock report in material master grouped by material type and plant what u can see in report ?what rthose field names or dataelement ? 11)when u create shipping forecast report what u can see in that report ?what rthose data elements or field names?
how to find Bapi? and Badi?
What are the differences between se01, se09 and se10?
what is backend and frontend in case of sap abap? whom we are supposed to call as backenduser and frontend user.
Importance of PA20, PA30 and PA40
Is der any other criteria for using For All Entries except if not itab is initial?
What are Table control and tab strip control in dialog programming ?
WHAT IS DOCUMENTATION?WHY IT IS USED?