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 |
In which time constraint does the infotype records depend on the subtype ? : abap hr
how do you transport a script and how do you transport a standard texts?
Can we include customizing include or an append structure with pooled or cluster tables?
What are the fields in a bdc_tab table? : abap bdc
What is static attribute
When i Create a custom Table In Client 200 with MANDT Field , How to get the data of the same Table in Testing Client (Say 400) for testing purpose ? How can i do it ?
How to upload more than 2GB file from External Source to SAP?
i have 4 primary keys and i want to use only one primary key for select single.What changes will occur in the system?can i use it?
1. what r the step followed for ALE Idocs ? 2. what is process code ? where it is define ?
18) Difeerence between various BDC method.Which is the best one?
What are the features of abap/4 dictionary? : abap data dictionary
how many pages in sap scripts 00to98 or 00to99 ...?