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 |
1) What is the difference between TYPE and LIKE ?
Can you transport variants of multiple programs in one step?
what is the use of control_form?
****THANK YOU ALL ABAP EXPERTS**** I got a JOB as ABAP Consultant in Infosys.I cleared the interview.The question posted here are really good.I cleared interview based on this material only.It really works.I thank all members who posted que&ans here. Those who are in search of job in MNC study this question set only you will get sucess. Thanks once again allinterview.com and members of this community. tulika20021@rediffmail.com
0 Answers AC Tech, Accenture, IBM,
how to debug a screen without using /h,break-point,debuging,stop.
what is data structure and data table
How do you do Recording and what will you do?
How will you add colour in a row using ALV ?
What are logical data bases used in hr module? : abap hr
What are pooled tables?
What happens Update command is used without where clause ?
What are the FM you used in Session method?