About HIDE memory area

Hi friends,
         I need some information about HIDE area.
         1) Is there any specific memory size for HIDE memory area.
         2) what are the values will be saved into HIDE memeoy area, like only the    values that are followed by HIDE area or the total output list will be saved.
Sathish Reddy.

Hi
  HIDE
The HIDE statement is one of the fundamental statements for interactive reporting.
You use the HIDE technique when creating a basic list.
It defines the information that can be passed to subsequent detail lists.
The example below presents some of the essential features of interactive reporting. The basic list contains summarized information. With the HIDE technique, it is possible to branch to more detailed information on subsequent lists.
The following program is connected to the logical database F1S.
REPORT demo_list_hide NO STANDARD PAGE HEADING.
TABLES: spfli, sbook.
DATA: num TYPE i,
      dat TYPE d.
START-OF-SELECTION.
  num = 0.
  SET PF-STATUS 'FLIGHT'.
GET spfli.
  num = num + 1.
  WRITE: / spfli-carrid, spfli-connid,
           spfli-cityfrom, spfli-cityto.
  HIDE:    spfli-carrid, spfli-connid, num.
END-OF-SELECTION.
  CLEAR num.
TOP-OF-PAGE.
  WRITE 'List of Flights'.
  ULINE.
  WRITE 'CA  CONN FROM                 TO'.
  ULINE.
TOP-OF-PAGE DURING LINE-SELECTION.
  CASE sy-pfkey.
    WHEN 'BOOKING'.
      WRITE sy-lisel.
      ULINE.
    WHEN 'WIND'.
      WRITE:  'Booking', sbook-bookid,
           /  'Date   ', sbook-fldate.
      ULINE.
  ENDCASE.
AT USER-COMMAND.
  CASE sy-ucomm.
    WHEN 'SELE'.
      IF num NE 0.
        SET PF-STATUS 'BOOKING'.
        CLEAR dat.
        SELECT * FROM sbook WHERE carrid = spfli-carrid
                            AND   connid = spfli-connid.
          IF sbook-fldate NE dat.
            dat = sbook-fldate.
            SKIP.
            WRITE / sbook-fldate.
            POSITION 16.
          ELSE.
            NEW-LINE.
            POSITION 16.
          ENDIF.
          WRITE sbook-bookid.
          HIDE: sbook-bookid, sbook-fldate, sbook-custtype,
                sbook-smoker, sbook-luggweight, sbook-class.
        ENDSELECT.
        IF sy-subrc NE 0.
          WRITE / 'No bookings for this flight'.
        ENDIF.
        num = 0.
        CLEAR sbook-bookid.
      ENDIF.
    WHEN 'INFO'.
      IF NOT sbook-bookid IS INITIAL.
        SET PF-STATUS 'WIND'.
        SET TITLEBAR 'BKI'.
        WINDOW STARTING AT 30 5 ENDING AT  60 10.
        WRITE: 'Customer type   :', sbook-custtype,
             / 'Smoker          :', sbook-smoker,
             / 'Luggage weigtht :', sbook-luggweight UNIT 'KG',
             / 'Class           :', sbook-class.
      ENDIF.
  ENDCASE.
Regards
Swathi

Similar Messages

  • In memory area is enough  ,but table can't  POPULATED in memory  ,cause query in memory slower

    hI
    any expert can take a look this issue, thanks
    SQL>  select * FROM gv$inmemory_area order by 1;
       INST_ID POOL ALLOC_BYTES USED_BYTES POPULATE_STATUS CON_ID
    1 64KB POOL 4278190080   17301504 DONE 0
    1 1MB POOL 17177772032 9377415168 DONE 0
    2 1MB POOL 17177772032 9380560896 DONE 0
    2 64KB POOL 4278190080   17301504 DONE 0
    3 64KB POOL 4278190080   17301504 DONE 0
    3 1MB POOL 17177772032 9385803776 DONE 0
    4 1MB POOL 17177772032 9546235904 DONE 0
    4 64KB POOL 4278190080   17301504 DONE                                0
    8 rows selected
    (IN MEMORY AREA SIZE IS BIG enough)
    SQL> SELECT v.owner, v.segment_name name,v.populate_status status, v.bytes_not_populated FROM  v$im_segments v;
    OWNER                                                                            NAME                                                                             STATUS    BYTES_NOT_POPULATED
    BI                                                                               PERFTABLE5                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE3                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE4                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE2                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE3                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE1                                                                       COMPLETED           165855232
    BI                                                                               PERFTABLE4                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE3                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE1                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE4                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE5                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE3                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE2                                                                       COMPLETED                   0
    BI                                                                               PERFTABLE1                                                                       COMPLETED           165855232
    (table  PERFTABLE1   have NOT_POPULATED data) .
    cause :IO Requests
    select count(*) from perftable1 a, perftable1 b where a.int32_f1 = b.int32_f1.
    SQL Plan Monitoring Details (Plan Hash Value=1965173750)
    Id
    Operation
    Name
    Estimated
    Rows
    Cost
    Active Period
    (100s)
    Execs
    Rows
    Memory
    Temp
    IO Requests
    CPU Activity
    Wait Activity
    Progress
    SELECT STATEMENT
    1
    . SORT AGGREGATE
    1
    1
    .. PX COORDINATOR
    49
    ... PX SEND QC (RANDOM)
    :TQ10000
    1
    48
    .... SORT AGGREGATE
    1
    48
    ..... PX PARTITION HASH ALL
    202M
    81245
    48
    ->
    ...... HASH JOIN
    202M
    81245
    48
    0
    689.9MB
    1.0GB
    3031 (10%)
    32%
    8.2%
    ->
    ....... TABLE ACCESS INMEMORY FULL
    PERFTABLE1
    200M
    36854
    48
    77M
    29926 (105%)
    67%
    91%
    473s
    ....... TABLE ACCESS INMEMORY FULL
    PERFTABLE1
    200M
    36854

    This is the wrong forum for this question. This forum is for the TimesTen In-Memory Database while your question is about the Oracle Database 12c In-Memory Option. Best post this in the main Oracle Database forum.
    Chris

  • Firefox won't start. Everytime I end the process/close the last window, it keeps getting stuck at about 2500k memory in the task manager. (continued)

    Firefox won't start. Everytime I end the process/close the last window, it keeps getting stuck at about 2500k memory in the task manager. The only way I have to fix it is to change some kind of compability settings or try and access it in a new way, and every time it crashes/closed/computer blue screens that setting will no longer work.
    That is a short term solution, but eventually I'll run out of ways to access firefox successfully. I've tried many solutions, and some worked, but only once. I have yet to find a permanent solution for this problem.

    First please update your plugins to make sure you are up to date. Shockwave Flash player has a newer version 16. In order to better manage the memory that Firefox uses please see these troubleshooting steps: [https://support.mozilla.org/en-US/kb/firefox-uses-too-much-memory-ram Firefox Uses too much RAM]
    You also mentioned that Firefox crashes, we're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste those IDs into the "Post a Reply" box.
    ''' Note:''' If a recent Report ID does not start with '''bp-''' click on it and select '''Submit'''.
    (Please don't take a screenshot of your crashes, just copy and paste the IDs. The below image is just an example of what your Firefox screen should look like.)
    ;[[Image:aboutcrashesFx29|width=500]]
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

  • Shared Memory Areas not accessible in background processing

    Hi there
    We're using Shared Memory Areas to share data between an on-line transaction and a background program. The on-line transaction collects the data, creates the Shared Memory Area and submits a background job to process it. So, after the detach_commit, it performs submit program via job_name xxxx number nnnn.
    It works OK in our dev and quality systems, but does not work in our production system. The memory area is created OK, but the job cannot access it. In the background program, we get the message:
    "The read lock on the instance 'ZNNNNNNN' in the client '100' of the shared objects memory area 'ZCL_XXX' cannot be set, since there is no active version of this area instance. However, the area constructor for the automatic construction of the area instance was started."
    On the SMA side, we've tried seemingly every combination, even "propagate_instance".
    The job seems to be running on the same application server as the SMA.
    Any ideas about what we're doing wrong, anyone?
    Thanks
    Ged

    Hello Ged,
    Please remember that SHM is accessible across one App Server(AS) only.
    If your SAP landscape has multiple AS's then it might pose a problem. When you're scheduling the background job, i guess that the Bgd work process is started in a different AS(load balancing ) and hence SHM is no accessible.
    If this is the case, then you've no other option but to store the data persistently in DB clusters viz., INDX-type tables (EXPORT TO/IMPORT FROM DATABASE).
    BR,
    Suhas
    Message was edited by: Suhas Saha

  • Memory areas used in SAP

    Hi Experts,
    I have a big confusion in memory areas used in SAP, can anyone help me to define it.
    I will list out the memory areas used,
    1. Virtual Memory
    2. Local Memory
    3. Shared Memory
    4. Extended Memory
    5. Heap Memory
    6. Roll Memory
    Thanks
    KT

    > Everybody have their own interpretation so they posted what they knew.
    It's more about which terminology you follow. Memory models are not identical implemented across different operating system so all answers here are somewhat correct depending on which OS glasses you wear.
    > If i find any authentic material i will post here. SAP Never gave clear memory model diagram how sap maps its memory model to OS memory but they tells about different memories they named and how they will be used during execution.
    Because it's OS dependent. You e. g. have on Windows a "view" memory model that uses segmented divisions or a "flat" memory model. On Linux you can use an mmap()'ed or a standard shmget() based model etc. etc.
    >  all applications will get memory allocation only from virtual memory. Even ST02 buffers also get memory allocation from OS virtual memory. It is not clearly mentioned any where that ST02 buffers will reside only in RAM.
    http://help.sap.com/saphelp_nw70/helpdata/EN/34/d9c8b3c23c11d188b40000e83539c3/frameset.htm
    <...>
    Virtual memory
    All operating systems (supported by SAP) support virtual memory technology. A process allocates virtual memory using logical (virtual) addresses. Each process has its own virtual address space.
    <...>
    > SAP Local memory: SAP tells that this is the memory reside with workprocess at os level and remains with it until shutdown.
    http://help.sap.com/saphelp_nw70/helpdata/EN/22/5d980297cb48129e663b0d4a3e844d/content.htm
    <...>
    Local process memory
    The operating system differentiates between local process memory and shared memory. For local process memory the operating system keeps both allocation steps transparent. Using an API virtual memory only is requested; the operating system does the other tasks, such as reserving physical memory, loading and unloading virtual memory into and out of the main memory.
    <...>
    Check
    http://help.sap.com/saphelp_nw70/helpdata/EN/d1/80b716dc8111d2ac8f0000e83539c3/frameset.htm
    which describes how this is implemented on the different operating system. So if you want to know how to match the SAP-View to the OS view you need to specify the OS.
    Markus

  • I have my iTunes music folder stored on an external hard drive.  I recently purchased a new Mac.  After attaching the external hard drive, all the songs imported without any problem except my Playlists.  Any clue about where they are or how to revive them

    I have my iTunes music folder stored on an external hard drive.  I recently purchases a new Mac.  After attaching the external hard drive, all songs imported without a problem except my playlists.  Any clue about where they are or how to revive them for use on my new Mac?
    Thanks!

    Rysz wrote:
    To retain your playlists, artwork, play counts, etc, you need to move the entire iTunes folder, not just the music files..
    Correct.
    After that just select the new folder location in iTunes> Advanced settings.
    Incorrect.
    Hold Option and launch iTunes.
    Select Choose library and select the iTunes folder.
    This will read the iTunes library.itl file in this folder and the library as it was previously will be opened.

  • How much memory are actually being used? db_32k_cache_size

    Hi everyone,
    Using Oracle 10g on RHEL 5.3.
    I've been asked to check how much memory are actually being used by our db cache's. Currently we are using the parameters db_32k_cache_size (user-defined) and db_8k_cache_size (default) both allocated with 12gb. Now I want to know if there is any way to find out how much of the 12gb are actually being used by the cache.
    Is this possible?
    Thanks

    Thanks Guys,
    Okay, so it is using the whole 12gb. I guess the next question would be, is 12gb really needed? You see, we are trying to increase memory where possible as this database has performance issues. Now we are thinking of taking some of the 12gb that is allocated to the 32k cache and assign it to the sga for instance.
    Does this make any sense?
    Regards

  • I rcvd an AppleService emaiDue to recent updates we are asking many of our customers to confirm their information this is nothing to worry about. We are making sure we have the correct information on file..." Is this real or a scam?

    I rcvd an AppleService email
    Due to recent updates we are asking many of our customers to confirm their information this is nothing to worry about. We are making sure we have the correct information on file and that you are the rightful account holder. Failure to comply with this may result in your account being suspended.
    Is this real or a scam?

    If you changed your Apple ID, you will not  be able to update any of the content that you used in the past. The worse case scenario here would have been to change the password. Really all you needed to do was go on the Apple site and change the password, unless you provided them with information. This will make it difficult for you to deal with turning off Find My iPhone and other Apple ID related steps. All you really needed to do was delete the email.

  • REG : in which memory area BackGround process will execute??

    hi everyone,
                 in which memory area , background process will be executed ?
    Thanks and Regards,
    Nikhil K

    Hi,
    i want to know if both SAP memory and ABAP memory are not present then in which area Background processes will be executed.
    erm, they are always present. Processes do not execute "in" these 2 memories. I advise you to read some reference documentation: [SAP library: Functions of the SAP Memory Management System|http://help.sap.com/saphelp_nw70/helpdata/en/02/96279d538111d1891b0000e8322f96/frameset.htm]
    The only difference I know between dialog and background is the sequence in which the roll, extended and heap memories are allocated.
    Sandra

  • How to remove an entry from a memory area?

    Hi Experts,
    We are facing an issue where a user has exported some wrong data to ABAP memory through an export statement.
    The export statement that exported the values is:
    EXPORT range_tab_epown
                  range_tab_dpown
                  popnot   TO DATABASE indx(oh) ID indxkey.
    Due to the restrictions in the design of the program, EXPORT statement cannot be executed again for this user.
    All we want is to erase this data somehow from the memory area OH.
    ->We do not want to create a Z report which will erase/replace the data through ABAP statements FREE/DELETE.
    ->Also ,we cannot alter the data through export statement in debugging mode.
    ->Resetting the buffer of this user through SU53 Or Log-in/ Log-off does not erase the data.
    *Please suggest if we can remove the data from ABAP memory (area OH) for a particular user without creating a Z report.
    *Is there any utility program or function module that exists which can help us erase this data?
    *Also, please throw some light on the memory where the data is getting stored through the above EXPORT statement.
    Regards,
    Sid

    >EXPORT range_tab_epown
    >range_tab_dpown
    >popnot TO DATABASE indx(oh) ID indxkey.
    This export doesn't write to any memory area.  As the key words suggest - it writes TO DATABASE.  specifically to cluster table indx, with relid oh.
    As far as I am aware, there are no utility programs - you will have to have some ABAP developed.
    matt

  • How to hide Context Area in CRM 2007

    Hi All
    Is it possible in CRM2007 to hide context area ( header ) in CRM 2007 by clicking on a button.
    For example, when We click on "collapse navigation" button, navigation bar become hidden. I need same functionality for context area too.
    Best Regards
    Bhavishya

    Hi Bhavishya,
    Sorry this is not a standard feature of the Interaction Center. It might be possible to implement this on project base, but it will certainly require coding.
    Regards
    Gert

  • Does anyone know why the delete and hide options are still missing in the crop tool option bar, despite having changed the background layer to a regular layer?  Thanks!

    Does anyone know why the delete and hide options are still missing in the crop tool option bar, despite having changed the background layer to a regular layer?  Thanks!

    "flying blind."
    "You totally lost me there, and I have no clue as to what your last question means."
    "I think I now know what you mean."
    Evidently language is of difficulty for you. 
    Perhaps the Oxford dictionary can provide you with your much needed “sensible, meaningful” content.
    According to the Oxford dictionary, a dialogue is to "Take part in a conversation or discussion to resolve a problem."  It also states that a dialogue is "A discussion between two or more people or groups, especially one directed toward exploration of a particular subject or resolution of a problem.”
    That IS the inherent nature of posts. A conversation is reciprocation.  Questions, followed by more questions.
    It is not difficult to understand.
    "how to ask your questions correctly for quicker and better answers" is best actualized by simply asking.
    Is it a Mac; is it not, etc.
    That IS sufficient.  That IS "quicker and better answers[ing]."  That IS what a dialogue IS.   And that IS actually what is "sensible," "meaningful," and "detailed." 
    The Oxford dictionary can best delineate and elucidate your lack of comprehension in what ACTUALLY “meaning” is.
    As well as what is "sensible" AND "detailed." 
    By the way, am I being repetitive.
    Still confused.  Let the experts that do not require much explanation respond with "quicker and better answers" for both "sensible, complete" responses." They are not "lost," "blind," or provide "incomplete" drivel.

  • Hide navigation area from Shopping Cart window

    Hi All,
    We are facing a strange issue in Shopping Cart Page..
    From the POWL screen when we are clicking on "Display" button it is opening  com.sap.pct.srm.core.iv_shopprof iview in a new window. But all the navigation are still showing in the page.
    We set Launch in New Window property as Display in Separate Headerless Portal Window but still it is showing navigation area in the scree.
    Can any one tell me how to hide navigation area from the screen.
    Regards,
    Sambaran Chakraborty

    Hi Yatin,
    Thanks for your reply.
    I just find a easy way to solve this issue. I changed the Launch in New Window property to Display in Separate Window and it works.
    But now i am facing the same problem for Purchasing iview under Operational Purchaser role. All links in that BI report (Purchasing iview) are opening in a new window with navigation area.
    I am not able to apply the same above idea in this case, as for all BI links there is no such specific iview present, they are jsut a application links coming from backend.
    Can you provide some input on this..?
    Regards
    Sambaran

  • Which of these statements about overhead rates are true?...

    Hello SAP-team!
    Which of these statements about overhead rates are true and which are false?
    - The costing sheet is entered in the master record of the order
    - Costing sheets consists of base, overhead rate, and credit
    - Overhead cost elements of type 41 are entered in the rate
    - The costing sheet is assigned at controlling area level and is determined automatically by the system
    - Only percentage rates are possible for overhead rates
    ps: thanks to SAP-community!
    Eugene

    Hi,
    Which of these statements about overhead rates are true and which are false?
    - The costing sheet is entered in the master record of the order- True
    - Costing sheets consists of base, overhead rate, and credit-True
    - Overhead cost elements of type 41 are entered in the rate-True
    - The costing sheet is assigned at controlling area level and is determined automatically by the system- I think false. Generally cost sheet is defined independently and assigned either thru costing variant or thru orders.
    - Only percentage rates are possible for overhead rates- False. Qty based is also possible
    Regards
    Sudhakar Reddy
    Edited by: Sudhakar Reddy K.V. on Sep 15, 2009 11:27 AM

  • Which two statements about custom catalogs are true

    Which two statements about custom catalogs are true? (Choose two.)
    A. A category cannot contain catalogs.
    B. Catalogs can contain one or more subcatalogs.
    C. A product can only belong to one category.
    D. Each category exists in one and only one catalog.
    thanks

    Hi,
    Which two statements about custom catalogs are true? (Choose two.)
    A. A category cannot contain catalogs. -> FALSE
    B. Catalogs can contain one or more subcatalogs. -> TRUE
    C. A product can only belong to one category.-> FALSE
    D. Each category exists in one and only one catalog.->FALSE
    To my knowledge, it seems only one of these is true.
    Thanks,
    Gopinath Ramasamy

Maybe you are looking for