Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Significance of Hide?

Answer Posted / shreeshaildiggi

Syntax
HIDE SHREE.

Effect
This statement stores the content of a variable SHREE
together with the current list line whose line number is
contained in sy-linno in the hide area of the current list
level. The data type of the variables SHREE must be flat
and no field symbols can be specified that point to rows of
internal tables, and no class attributes can be specified.
The stored values can be read as follows:

For each user action in a displayed screen list that leads
to a list result, all the row values stored using HIDE -
that is, the row on which the screen cursor is positioned
at the time of the event - are assigned to the respective
variables.

If a list row of an arbitrary list level is read or
modified using the statements READ LINE or MODIFY LINE, all
the values of this row stored using HIDE are assigned to
the respective variables.

Example :
Storing square numbers and cubic numbers for a list of
numbers. The example shows that arbitrary variables can be
stored independently of row content. In the real situation,
one would more likely store only the number and execute the
calculation, when required, in the the event block for AT
LINE-SELECTION.

REPORT ...

DATA: square TYPE i,
cube TYPE i.

START-OF-SELECTION.
FORMAT HOTSPOT.
DO 10 TIMES.
square = sy-index ** 2.
cube = sy-index ** 3.
WRITE / sy-index.
HIDE: square, cube.
ENDDO.

AT LINE-SELECTION.
WRITE: square, cube.

Thank's and Regards
Shreeshail Diggi
SAP Technical Consultant Infinite India

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Does SAP has a GUI screen painter or not? If yes what operating systems is it available on? What is the other type of screen painter called?

1075


Define subtype ? : abap hr

1076


While sorting field groups we cannot use more than one key field. State true or false. : abap modularization

1110


What are the merits of its?-

1124


What are the basic objects of the data dictionary? : abap data dictionary

1120


What are the difference between tables and structures? : abap data dictionary

1212


What is the difference between bdc_okcode and bdc_cursor? : abap bdc

1152


Have you set up a back ground job? How to create a background job without a variant ? : abap bdc

1151


What is the use of the raising exception? : abap modularization

1025


What is the full form of spro? : sap abap hr

1385


How do you set up background jobs in sap? What are the steps? What are the events driven batch jobs?

1062


How can we access the correction and transport system? : abap data dictionary

1132


Example of table cluster and cluster tables.

1181


What are the two different ways of building a match code object? : abap data dictionary

1192


Reports: Event functionality.

1406