How to determine the screen structure of the detail area of a screen...

Hi all,
          How to determine the screen structure of the detail area of a screen?

Hi,
go to se38,
loop at SCREEN.
endloop.
put the cursor on SCREEN and press F1, then u can seee it.
Regards,
Pavan
Edited by: vishnu Pavan on Mar 23, 2009 11:03 AM

Similar Messages

  • How to append S950 Info structure with the structure ZS950

    I have created Info structure ,now How to append S950 Info structure with the structure ZS950

    Refer this link:
    Addition of a new field to a standard table .
    Regards,
    ravi

  • How to get the document structure with the document number"?"

    Hello experts,
    I have now a big trouble. There is a document with the number '?' in our syste. And for this document a document structure was builded. Now I can't acess the document structure, because the system doesn't accept '?' as a document number...
    Can you help me?
    Thanks a lot!
    best regards,
    Ying

    Hi Sarita,
    thank you very much! My problem is now solved, and the documents in the structure are free again _
    best regards,
    Ying

  • The row structure of the table BANFTAB is incorrect

    Dear Experts,
    I get right here the error message
    The row structure of the table BANFTAB is incorrect
    ZBANFN is a table type and has the line tab BANFN.
    Can you pls tell me what is wrong here ?
    FUNCTION Z_CHANGE_EBAKZ_FLAG.
    *"*"Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(BANFTAB) TYPE  ZBANFN
      data lt_eban type table of eban.
      data ls_eban type eban.
      SELECT * FROM eban into table lt_eban where BANFN IN BANFTAB AND EBAKZ EQ 'X'.
      IF SY-SUBRC IS INITIAL.
        LOOP AT lt_eban INTO ls_eban .
          ls_eban-EBAKZ = ' '.
          modify eban from ls_eban.
        ENDLOOP.
      ENDIF.
    ENDFUNCTION.

    Hello,
    You have to use a ranges table in this case.
    FUNCTION Z_CHANGE_EBAKZ_FLAG.
    *"*"Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(BANFTAB) TYPE  ZBANFN
      data:lt_eban type table of eban.
      data:ls_eban type eban.
    data:
    l_r_banfn type range of banfn,
    l_wa_banfn like line of l_r_banfn,
    l_wa_banftab like likne of BANFTAB.
    loop at banftab into l_wa_banftab.
    l_wa_banfn-sign = 'I'.
    l_wa_banfn-option = 'EQ'.
    l_wa_banfn-low = l_wa_banftab-banfn.
    append l_wa_banfn into l_r_banfn.
    clear l_wa_banfn.
    endloop.
      SELECT * FROM eban into table lt_eban
      where
      BANFN IN L_R_BANFN "BANFN IN BANFTAB
    AND EBAKZ EQ 'X'.
      IF SY-SUBRC IS INITIAL.
        LOOP AT lt_eban INTO ls_eban .
          ls_eban-EBAKZ = ' '.
          modify eban from ls_eban.
        ENDLOOP.
      ENDIF.
    ENDFUNCTION.
    or you can use FOR ALL ENTRIES :
    FUNCTION Z_CHANGE_EBAKZ_FLAG.
    *"*"Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(BANFTAB) TYPE  ZBANFN
      data lt_eban type table of eban.
      data ls_eban type eban.
      SELECT * FROM eban into table lt_eban
      FOR ALL ENTRIES IN BANFTAB "--> Add this
      where BANFN = BANFTAB-BANFN
      AND EBAKZ EQ 'X'.
      IF SY-SUBRC IS INITIAL.
        LOOP AT lt_eban INTO ls_eban .
          ls_eban-EBAKZ = ' '.
          modify eban from ls_eban.
        ENDLOOP.
      ENDIF.
    ENDFUNCTION.
    Try this & let me know in case of any issues.
    BR,
    Suhas
    Edited by: Suhas Saha on Feb 10, 2009 5:43 PM

  • Reveal the full structure of the organization for one-click

    Hi!
    structure of our organization consists of 5 levels of hierarchy. I know that in Nakisa has the opportunity to discover the structure of only one level in one press on u201CExpand this branchu201D
    We need to reveal the full structure of the organization for one-click.
    is it possible?

    Hi Aleksandr,
    This question was already asked and answered recently, including a useful tip to workaround this:
    [Ability to expand all;
    Best regards,
    Luke

  • Why do we de-activate the extract structure  in the LO extraction?

    Hi,
      plz let me know
    why do we de-activate the extract structure  in the LO extraction?
    what are preventive steps to be taken for duplicate records?
    Regards,
    Madhavi

    Hi,
    Why do you think that the deactivation is necessary step. Generally we donot activate the unrequired Extraction structures to avoid collecting of data in queues(in case of LO ). But we never deactivate the ES in any process intentionally. Ya, the ES turns into yellow(inactive) if we modify the ES in LBWE, but we make it active immediately as the part of process.
    With rgds,
    Anil Kumar Sharma .P

  • [svn:fx-trunk] 11378: Rearrange exisiting TLF sources to be in the same structure as the new drop we 're about to take so that we can maintain the change history.

    Revision: 11378
    Author:   [email protected]
    Date:     2009-11-02 12:43:46 -0800 (Mon, 02 Nov 2009)
    Log Message:
    Rearrange exisiting TLF sources to be in the same structure as the new drop we're about to take so that we can maintain the change history.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer:
    Tests run: checkintests, TextArea
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/manifest.xml
        flex/sdk/trunk/frameworks/projects/textLayout/src/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flash/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/BuildInfo.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/CoreClasses.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/EditClasses.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/acc/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/compose/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/container/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/container/TextContain erManager.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/debug/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/EditManager.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/ElementRange.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/IEditManager.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/IMEClient.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/Mark.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/ParaEdit.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/SelectionFormatS tate.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/SelectionManager .as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/TextClipboard.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/TextFlowEdit.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/TextScrap.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/elements/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/events/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/events/FlowOperationE vent.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/events/SelectionEvent .as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/external/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/factory/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/formats/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/operations/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/property/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/tlf_internal.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/utils/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/utils/NavigationUtil. as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/undo/
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_conversion/
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_core/
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_edit/

    Revision: 11378
    Author:   [email protected]
    Date:     2009-11-02 12:43:46 -0800 (Mon, 02 Nov 2009)
    Log Message:
    Rearrange exisiting TLF sources to be in the same structure as the new drop we're about to take so that we can maintain the change history.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer:
    Tests run: checkintests, TextArea
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/manifest.xml
        flex/sdk/trunk/frameworks/projects/textLayout/src/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flash/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/BuildInfo.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/CoreClasses.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/EditClasses.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/acc/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/compose/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/container/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/container/TextContain erManager.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/debug/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/EditManager.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/ElementRange.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/IEditManager.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/IMEClient.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/Mark.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/ParaEdit.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/SelectionFormatS tate.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/SelectionManager .as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/TextClipboard.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/TextFlowEdit.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/edit/TextScrap.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/elements/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/events/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/events/FlowOperationE vent.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/events/SelectionEvent .as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/external/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/factory/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/formats/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/operations/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/property/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/tlf_internal.as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/utils/
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/textLayout/utils/NavigationUtil. as
        flex/sdk/trunk/frameworks/projects/textLayout/src/flashx/undo/
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_conversion/
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_core/
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_edit/

  • Will Apple improve the earbud structure? The current ones kill my ears. For the price consumers pay for these products, we should receive top notch earbuds that fit the ear.

    Will Apple improve the earbud structure? The current ones kill my ears. For the price consumers pay for these products, we should receive top notch earbuds that fit the ear.

    Some phones that you can buy do not come with headphones at all.
    http://apple.com/feedback

  • Hello - I live in the UAE and my itunes account is regsitered here. Unfortunately the choice of music is not as good as when my account was registered in the UK. I cannot register my account in the UK as my bank details are all in the UAE now. HELP!

    Hello - I live in the UAE and my itunes account is regsitered here. Unfortunately the choice of music is not as good as when my account was registered in the UK. I cannot register my account in the UK as my bank details are all in the UAE now. HELP!

    Sorry, but no help is possible. You can only use the UAE iTunes Store, and Apple can only offer what content they are able to license for sale in that country. You'll have to look elsewhere for content. Whether there are any other download stores able to sell in the UAE I don't know. You may need to purchased CDs and import them into iTunes.
    Regards.

  • How to determine most recent date from the date column of internal table

    Dear friends
    would you like to tell me. how i determine the most recently changed record by looking at date and time from internal table i am not supposed to sort the table by date and time... I must check date and time with other records date and time to determine which record is most recently changed...
    here the scenario is.
    id idnumber chdate chtime
    1 123456 20060606 135312
    2 123456 20060606 135900
    3 123456 20060606 132300
    4 123457 20060606 140000
    5 123457 20060606 142500
    in the above scenario i must keep in my mind that the most recently changed record is identical to its idnumber i can say that:
    the record should be fetched this way
    id idnumber chdate chtime
    3 123456 20060606 132300
    5 123457 20060606 142500
    because here the id 3 is the most recently changed in the idnumber 123456
    where id 5 is the most recently changed in the idnumber 123457
    please help me to determin how i am supposed to carry out this task any suggestion, code will be great help of mine.
    regards
    Naim

    After testing my suggestion above, I realized that it doesn't work because the delete adjacent actually will keep the first one and delete the rest.  I'm working with Srinivas's code a bit now,  I think it is almost what you want.  I am under the impression that you dont' want to HIGHest date/time, but just the last record of the sequence, if this is the case, then this code will help.  Here we will assign an index to each record per the idnumber, that way we can sort it and get the lastest record.
    report zrich_0001.
    types: begin of itab_type,
            id       type i,
            idnumber type i,
            chdate   like sy-datum,
            chtime   like sy-uzeit.
    types: end of itab_type.
    types: begin of itab_type2,
            id       type i,
            idnumber type i,
            index    type i,
            chdate   like sy-datum,
            chtime   like sy-uzeit.
    types: end of itab_type2.
    data: itab     type table of itab_type with header line,
          itab2    type table of itab_type2 with header line,
          prev_rec type itab_type.
    data: v_id type i.
    start-of-selection.
      itab-id       = 1.
      itab-idnumber = 123456.
      itab-chdate   = '20060606'.
      itab-chtime   = '135312'.
      append itab. clear itab.
      itab-id       = 2.
      itab-idnumber = 123456.
      itab-chdate   = '20060606'.
      itab-chtime   = '135900'.
      append itab. clear itab.
      itab-id       = 3.
      itab-idnumber = 123456.
      itab-chdate   = '20060606'.
      itab-chtime   = '142500'.
      append itab. clear itab.
      itab-id       = 4.
      itab-idnumber = 123457.
      itab-chdate   = '20060606'.
      itab-chtime   = '140000'.
      append itab. clear itab.
      itab-id       = 5.
      itab-idnumber = 123457.
      itab-chdate   = '20060606'.
      itab-chtime   = '120000'.
      append itab.
      clear itab.
    <b>  data: counter type i.
    * Assign an index to each row per idnumber
      loop at itab.
        on change of itab-idnumber.
        if sy-tabix > 1.
          clear counter.
          endif.
        endon.
        clear itab2.
        move-corresponding itab to itab2.
        counter = counter + 1.
        itab2-index = counter.
        append itab2.
      endloop.
    * Sort it and get rid of older records.
      sort itab2  by idnumber ascending
                     index descending.
      delete adjacent duplicates from itab2 comparing idnumber.</b>
      read table itab2 with key idnumber = '123456'.
      write:/ itab2-chdate, itab2-chtime.
      read table itab2 with key idnumber = '123457'.
      write:/ itab2-chdate, itab2-chtime.
    Regards,
    Rich Heilman

  • How can i reuse a structure in the query designer in 3.5

    Hi all,
    we are using the version BW 3.5,  now how can i reuse a structure made int he query designer, because i need it in another query, i did the structure and put it a technical name and save, help guys

    HI Richard,
    Create a Structure in Rows/columns and save As it, then in the left Panel of the Query Designer you can see three Folders
    1) Structures
    2) Keyfigures
    3) Dimensions
    then Expand the structures Folder, there you can find your saved structure, Structures are 2 types
    1) With Key figures
    2) Without Key Figures
    If you have the key figures in your saved structure, then you can find it in the subfolder of with Keyfigures, else in the other folder.
    Now you can use this structure by draging in all the queries which are on the same InfoProvider (CUbe. MultiProvider)
    Regards
    ReddY A

  • How to create a project structure with the Business Bluprint transaction S

    Hi
    How to create a project structure and add the required scenarios for your SAP system to your project structure with the Business Bluprint transaction SOLAR01.
    Also how to add your SAP system configuration structures to your project structure with the configuration transaction SOLAR02
    Thanks,

    Dear fr
    Have u already created a project?
    select the same in solar01 and click the structure tab
    On the left side select business scenarios and on the right side select the structure tab
    Press F4 here and check the Busines process repository is selected
    Nw you hav all the standard business process
    For non-standard just type there name and press save button.
    Add the relevant one's
    Once added here in solar01 reflected in solar02 automatically with relevant data for standard business process.
    you hav to add manually for non stand scean you have added.
    Hope it clarifies.
    Pls assign pts.

  • How to determine which Aperature Library is the original?

    I purchased an Imac a couple of years ago and switched to Aperature to help eliminate duplicates.  I spent time bringing them in a little at a time as not to duplicate.  I have moved what I thought was the master copy to an external drive so that it would not take up all the space.  I show eight copies of Aperature when I click option & then Aperature.  Please help me determine which is the main copy as they all have different version and original numbers.  I am so confused and was just trying to break it down so that I could manage it in even years at a time so that I could organize faces.  Not even really sure what version means as opposed to original.  I hope with some guidence I can finally get this right.  Thank you in advance if you understand where I am coming from

    My short guide here may help you understand the parts of Aperture better, which in turn will help you ask specific questions.
    I advise all users of Aperture to read and understand the first seven chapters of the User Manual -- it's available on-line, as well as via "Help➞Aperture Help" -- as they provide a tour of the interface.
    You are going to have to do some work.  I can tell that you are confused -- Aperture, assuredly, is confusing at first -- but I can't tell what you are asking.  You need to distinguish, in your questions, between the files you imported (Aperture calls these "Originals" after you've imported them) and the Images in Aperture (Aperture refers to these as both Images and as Versions).  Every Image has an Original.  The Original (remember, it's a file) can be stored inside the Aperture Library package, or outside the Library package.  These distinctions are covered in both of the resources mentioned above.
    If nothing makes sense, post back and we'll see how we can help you.
    --Kirby.

  • How to determine via SQL who created the sales order

    Hello I am trying to determine via SQL who created the Sales Order.  I'm looking at the ADOC table but having a hard time determining which record points to the sales order creation.

    Hi Jimmy,
    Try this:
    select
         T0.[DocNum], T2.[DocDate], T2.[CardCode], T2.[CardName],
         T1.U_NAME as [User Name], T2.UpdateDate as [Cancelled Date]
    from
         ORDR T0
         inner join OUSR T1 on T0.UserSign = T1.UserID
         inner join ADOC T2 on T0.DocNum = T2.DocNum
    where
         T2.LogInstanc = (select min(LogInstanc) from ADOC T3 where T3.ObjType = 17 and T3.DocNum = T0.DocNum and T3.CANCELED = 'Y')
         and T2.CANCELED = 'Y'
         and T2.ObjType = 17
    group by
         T0.DocNum, T2.DocDate, T2.CardCode, T2.CardName, T1.U_NAME, T2.UpdateDate
    Kind Regards,
    Owen

  • Editing Chart legends: How to change the line structure within the legend?

    Hi,
    I have one problem: I have several charts in Numbers and since I need to print them in black/white, colors cannot be used to differentiate between the lines. So if I have a dotted line and a solid line, the legend only shows me solid lines as line symbols, so the line structure is not reflected within the legend. Can I change that?

    _This question was already asked and responded._
    Put a text box with the true kind of line above the one displayed automatically.
    Yvan KOENIG (VALLAURIS, France) samedi 1 mai 2010 16:52:44

Maybe you are looking for

  • Open links to documents with Office Web Apps

    Hi, I am trying to configure SharePoint 2013 and Office Web Apps Server 2013 in a Multi Tenant environment for a client that has specific requirements when it comes to document handling. They have a number of document libraries where the majority of

  • Spry Vert Menu - Submenu position in IE

    Hi - I've waited for a week for an answer from the Spry Framework discussion forum and no answer, so hope to get one here. I've searched through numerous posts, but none of the solutions seemed to work. The problem: Spry vertical menu, when a seconda

  • Checking sender and receiver queries after setting up in rsbbs

    Hi, After setting up sender and receiver queries in RSBBS, how can we find out which query is sender and receiver query, If we know any query, can we know whether it is sender or receiver query. then, based on this can we find out sender query if it

  • PB 12" 867 The battery is in, but the indicator in the menu bar says no

    Hi, My alubook has a strange problem. It is 2,5 years old and I had no battery problem during a long time. For the past 2 or 3 weeks, I have to use the powerbook with the power connected, the PB seems not to "see" that a battery is plugged whatever i

  • PO details missing after updating SQL

    Hi all, I encountered this problem of a client of ours after updating MSSql 2008 where some of the PO details were missing and also affects the amount of the POs. Although the document is still 'Open-Printed', but the printout details which was print