Significance of Hide?
Answers were Sorted based on User's Feedback
Answer / sathish kumar
Hide Statemet temparerly stores the content of field in
system controlled memory,it's usefull for intractive report.
It should mentioned after write statement
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / 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 |
Answer / sravan
HIDE statement is used to place the selected data in an
invisible area called HIDE area. The data placed in the
hide area can be used further.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / himanshu joshi
Hide simply store the clicked value
and display the secondry list.
It temporary store the click value.
syntax
HIDE: WA_ITAB-MATNR.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / aditya
hide statement, it actually hides the contents of the field
that you give.
Is This Answer Correct ? | 0 Yes | 1 No |
How to convert the Unit for 'Distance' (The value from one Unit to another).
What is a report?
How many times we can use At Selection Screen Output and on field event in report?
What is a currency factoring technique?
What is the difference between the function module and a normal abap/4 subroutine?
What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
What are the events in abap/4 language? : abap hr
what is protect and endprotect?
How to run a report in background??and if we try to run in foreground it says"this report sud be run in background".what can be done in this case?? 2-And how sud we stop a report running in background??
How do you do bdc for a table control? : abap bdc
In the MM module for finding out the standard cost what is the view one has to look at?
I have 1 basic list and 9 secondary list in interactive report. If i am in 5th list, how can i come directly to the basic list?