How to display a screen in selection-screen?

hi friends,
I have a requirement. I have one PNP database SELECTION-SCREEN in my report program. And i have created one more screen using screen painter.
Now i hae to display that screen which i created using screen painter under PNP SELECTION-SCREEN.
For ex:
PNP SELECTION-SCREE.
Pernr Number    _______________
Employe Name _______________
Company Code _______________
Payroll Area     ________________
Now after this i have to display my screen which i designed using screen painter.
As shown below.
  O In rupees
  O In Percentage
   Variance______
Here i specified some fields only. some more fields also there.
For this i did as....
I created a BUTTON in SELECTION-SCREEN. And when the user clicked on this then screen will appear as window.
It's working fine.
It's look like this.
   |More Selections...|                            -
> Button
But,my client required that screen also wants to display directly under PNP SELECTION-SCREEN but not as window and clicking button.
If Any Help.. Plz....
Thanks & Regards,
Shree.

hi prakash,
thanks for ur solution.
but it's not working properly. while changing 1000 screen and activating, it's showing syntax error like this.
while changing:
==> Element PNPS$MCD touches or overlaps other element
==> Selection screen: Report generation makes screen changes ineffective
==> Element PNPS$MCD touches or overlaps other element
While Activating:
Syntax Error in Screen.
Program <myprogram name>
Screen   1000
Position  Flow Logic       Line 95
The include block has been used twice.
But, Here i clicked the button "Activate".
Then It's showing messages as this.
==> Selection screen: Report generation makes screen changes ineffective
==> Element PNPS$MCD touches or overlaps other element.
I checked out that Line 95.
There i am specifying my suscreen as this.
CALL SUBSCREEN subscreen1 INCLUDING sy-repid 106.
at end of PBO.
And in PAI.
CALL SUBSCREEN subscreen1.
Finally when i tried to execute it's giving DUMP.
Any solutions..
Thanks & Regards,
Shree.

Similar Messages

  • How to display a screen in a container ?

    Hi All,
    I have an instance of a container lrc_cont_right type cl_gui_container and
    a screen 0300.
    How do I display this screen in the container ?
    Regards,
    Ashish

    hi
    if gc_container is initial.
          create object gc_container
            exporting
              container_name              = <container_name>.
          create object gc_alv_boq
            exporting
              i_parent          = gc_container.
        endif.
    call method gc_alv_boq->set_table_for_first_display
    exporting
    *    I_BUFFER_ACTIVE               =
    *    I_BYPASSING_BUFFER            =
    *    I_CONSISTENCY_CHECK           =
    *    I_STRUCTURE_NAME              =
    *    IS_VARIANT                    =
    *    I_SAVE                        =
    *    I_DEFAULT                     = 'X'
      is_layout                     = gs_layout_boq
    *    IS_PRINT                      =
    *    IT_SPECIAL_GROUPS             =
      it_toolbar_excluding          = gt_toolbar
    *    IT_HYPERLINK                  =
    *    IT_ALV_GRAPHICS               =
    *    IT_EXCEPT_QINFO               =
        changing
          it_outtab                     = <it_table>
          it_fieldcatalog               = <field_cat>
    *    IT_SORT                       =
    *    IT_FILTER                     =
    *  EXCEPTIONS
    *    INVALID_PARAMETER_COMBINATION = 1
    *    PROGRAM_ERROR                 = 2
    *    TOO_MANY_LINES                = 3
    *    others                        = 4
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    regards
    vivek

  • How to display PSA screen capture on Front Panel

    Any one know how to display screen capture of PSA series specturm analyzer on front panel. I can save the JPEG file in the C drive, but I can't display on the front pannel. Please see my labview code.
    Solved!
    Go to Solution.
    Attachments:
    Capture screen E4446A.vi ‏21 KB
    reading and writing binary number.vi ‏22 KB
    yumg.jpg ‏20 KB

    Do you actually need to save the front panel image?  Or do you want to save a graph of the signal (spectrum) that you acquired?  If the latter will do the trick, you can simply read the waveform over GPIB (or whichever means you control the analyzer) into an array that is plotted to a waveform graph in LabVIEW.  You then save the image of the waveform graph as an image.
    Since you have all the data, you can even save the data which can be viewed later (and not only by LabVIEW).

  • How to display a screen as Popup Dialog box in Module Pool

    Hi All,
    I have a requirement to display a popup dialoge box into module pool.
    i need to display a screen as a popup on the current screen on a button click.I have developed a screen and in atribute tab i have defined the screen type as modal dialog box but  it is displaying previous screen screen is hide i want to display on the same screen as a popup.
    Thanks
    Narendra

    Hi Narendra,
    Try to trigger the popup once it is done with the previous action might be anything.
    i have shown one sample code where after i click on save button when the data is saved successfully
    after that it has to trigger me a popup asking for conformation for the next action.
    A small piece of code
    INSERT INTO ZORMD1 VALUES WA_ZORMD1.
        IF SY-SUBRC = 0.
          G_LOCAL1 = 0.
          MESSAGE S000.  " Data saved successfully and immediately call the popup
    CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
            EXPORTING
      DEFAULTOPTION  = 'Y'
    TEXTLINE1 = 'SUCCESSFULLY SAVED'
              TITEL = 'POPUP FOR conformation'
             START_COLUMN         = 25
             START_ROW            = 10
            CANCEL_DISPLAY       = 'X'
           IMPORTING
    ANSWER  = G_PRINT
    IF G_PRINT = 'J'.
    PERFORM PRINT_OUT.
    ENDIF.
    Do the modification according to your requirement.
    Cheers!!
    VEnk@

  • How to display the current value selected in DDLB of another screen

    hi Experts
    I need some info regarding the dropdownlist in BSP.
    I have two screens . One screen contains the table view which contains a set of records.Each record has two columns.
    Second screen contains 2 drop down list.
    When i select one record and then press the submit button in the first screen .Then i want that the selected value of the selected record will display in the DDLB of the second screen. And then i can again select the value from the drop down list.
    For example:
    1st screen:
    record 1.
    col 1     col 2
    record 2
    col 1     col 2
    2nd screen
    ddlb1...........
    ddlb2...........
    So when i select the record1, then the current value of col1 and col2 should visible on the ddlbs of second screen first time. Then i choose other value from the ddlbs.....
    My Question is how to do the following
    "when i select the record1, then the current value of col1 and col2 should visible on the ddlbs of second screen".
    please provide some suggestions...
    Thanks.

    Hi,
    You can use form with post method
    like
    <htmlb:form method = "post"
                      action = "page2.htm"
                      target = "coding" >
    <htmlb:dropdownListBox id             = "labelAlignment"
                                               selection      = "<%= me->labelAlignment %>"
                                               onClientSelect = "document.forms[0].submit();" >
                          <htmlb:listBoxItem key   = "LEFT"
                                             value = "LEFT" />
                          <htmlb:listBoxItem key   = "RIGHT"
                                             value = "RIGHT" />
                        </htmlb:dropdownListBox>
    So once you select col1 and col2 in your case its value is in page attribute say hold, this attributes needs to be defined in page2.htm also with auto checked. You can get the val selected in page1.htm
    If helpful rewards point.
    Regards,
    Albert

  • How to display list in Agent Selection Screen?

    Hi,
    I am using DISPATCH method in Agent Selection screen ( obj. type WF_TASK ).
    In description it says that this method could display a list of users but
    in reality it displays only one item.
    If anyone was able to display a list would you share how to do it?
    Thank you.

    I think you will need to give more information. What does your binding look like, what are the possible agents for the task you give in the binding? This last one if you get a list or search functionality.
    Regards,
    Martin

  • How to display error documents in selection screen level

    Hi,
      Currently Iam doing Smartforms for journal voucher. Iam taking multiple documents as input and displaying relavent item data for each.
    Now, my requirement is i want to display invalid document numbers at selection screen level. For example there are 30 invalid document number i want to display them before start-of-selection.
    Thanks in advance,
    Regards,
    Chinna..

    i have a query......say i am using a selet-options s_ebeln for ekko-ebeln.
    i want to display error messages for
    1>lower limit cant be greater than upper limit?
    2>for special cahracters given in the select-options fields.....etc...
    now when i am writing the code......
    if s_ebeln-low gt s_ebeln-high.
    message e001.
    it is showing SAP's message not mine.
    but ....if my s_ebeln-high field is 0.
    then my message is showing.
    pls give me the codes for these?

  • How to display a message in Selection Screen

    Hi,
    I am inserting values into a system defined table by using a report.
    For this i have created one selection screen by using all the table fields and i am inserting the values which user has given in selection screen by using Insert statement.
    Now i want a message in status bar of selection screen when Insert command is success.
    Please give me some help on this
    Thanks
    Venkatrami Reddy B

    Hii
    This is the Way...
    AT SELECTION-SCREEN.
      <<FOR VALIDATIONS>>
    <b>START-OF-SELECTION.</b>
    INSERT <<statement>>.
    IF SY-SUBRC EQ 0.
    <b>MESSAGE 'Record inserted'  type 'S'.
    LEAVE LIST-PROCESSING.  "Now the message appears in Selection screen
    </b>
    ENDIF.
    <b>REWARD IF HELPFUL.</b>

  • How to display same screen with two different options!!

    Hi All,
    I have created a new entry form where user can enter a new record by selecting from combo select list or manua entry text fields. The same screen has to be used in two ways.
    New entry screen. and once user enetr data clik on sumbit it will insert into database.
    But when the user click on "View" button i need to display the same screen but with existing data insted of empty fields.
    How to achieve this in teh same screen, insated of creating duplicate screen.
    Thanks,
    Anoo..

    Hi,
    Try to use form on a report with report on page 1 and form on page 2.
    When the user clicks edit icons he will be directed to page to to see the values that are entered, make sure form is not updatable.
    If the user clicks create from page 1 then he will be directed to page 2 where he can enter data to insert new record.
    If you need in more detail, explain the scenario how you want, so that I can create an example for you.
    Thanks,
    Ramesh P.

  • How to display full screen in landing page

    Hi,
    I'd like to create a landing page with own menu bar above, and open the iView in the frame.
    any idea how to do this ?
    ex.
    menu  My Company My Customer
    iView column 1                   iView column 1
    invoices                                  order
    Customers                              material
    when I click on the iView ex. Invoices, the iView shall display in full screen, but the main menu remain,
    layout shall look like this :
    menu  My Company My Customer
    invoice content
    XXXXXXXXXXXXXXXXXXXXXXXXX
    Kr,
    Ben.J.

    no, I have already use this but didn't solve the problem.
    it will open one column in full screen of the column1 iFrame.
    the layout became :
    Menu                      My company                                                  My Customer
                                 column1                                                              column2
    iView                   invoice                                                                 order
                               xxxxxxxxxxxxxxxxxxxxxxxx                              products
    intead of
    Menu                      My company                                                     My Customer
                                 column1                                                          
    iView                   xxxxxxxxxxxxxxxxxxxxxxxx                          
    Kr,

  • How to display different screens when starting the Webdynpro app?

    Hi All,
    When user starting up the Webdynpro app, it will first check some value in the persistent layer. If the check result is ok, it will show the normal app screen to the user; if the check failed, it will show the error screen.
    Now I write the check function in the view controller, But I think it is not a good approach, because there are some initialize code in the component controller, so before my check function reached, the server will waste some resource to execute the initialize code in the component controller.
    Would anyone give me some hints on how to move the check function to component controller and then display the different screen to the end-user?
    Thans and Best regards
    Deyang

    Deyang,
    I've opened <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/webdynpro">Web Dynpro</a> section on SDN and see the featuring article:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/751d003a-0b01-0010-8996-afbaa3fd5339">cross-component Navigation, Explained</a>
    <i>New resources demonstrate <b>how to navigate to certain views from within Web Dynpro components</b>, and fill some gaps in the Sample Application and Tutorial matrix.</i>
    Should be exactly what are yuo looking for
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • How to display the screen in negative?

    Hi,
    Is it possible to easily toggle the display of the screen in negative?
    Someone showed to me that with a Mac he can do that with one shortcut and now I’m jealous, I want the same on my Arch
    My graphics card is a Nvidia (proprietary driver) and I use LXDE with OpenBox, but I don’t really know at which level I have to search.
    Thank you

    You might be able to do this with one of the fancier windows managers (compiz perhaps).
    http://www.google.com/search?hl=en&rls= … =&aql=&oq=

  • How to display 1st screen of movie file as a thumbnail image?

    Hi.
    I have a site that allows registered users to upload a video
    file.
    I would like to display the 1st screen shot from the video
    file as a
    thumbnail image for the file (like YouTube).
    Is there any way of automating this as part of the file
    upload or will I
    have to manually create the thumbnail for each video file?
    Thanks.
    Regards
    Nath.

    I was thinking about this issue some more and realized an error in my thinking. For some reason I believed that when ecards were activated they played right "within" the image within the body of the email that the user clicked on, but now i remember that after the click the movie opens in another window then plays. I've been able to publish the swf file with one of the jpg's in the file. Now i would like to somehow use that jpg, or any image for that matter, as a springboard to the swf flash file (that would play in a new window) without having to create a hyperlink to the swf file. I would like the "open swf and play" command as well as the swf file to "live" within the image in the email so that when a user clicks on the image, a separate window opens and the swf plays. Can this be done?

  • How to display Lov as Multi select dropdown

    Hi
    I am using 11.1.1.6 version.
    I have created a LOV for one attribute, I want to display it as multiselect dropdown.
    Could you please help me how to achieve this ?
    Best Regards,
    Jagadeesh Badri

    @KT there is no such a thing. All the options are related to single selection.
    @JagadeeshBadri as Vinay said, you need to create something by yourself. You can use selectManyChoice component to iterate over the view you want. Then write a selectionListener or something like that that will copy the selected items to your variable. What is your use case anyway?
    Regards

  • How to display a table without selecting the first row as default ?

    Hello All,
      Can someone advise on how I am able to display a table but with no row selected on initial display ? Currently, the table is being displayed with the first entry selected by default (The orange box is selected). Thank you very much.
    from
    Kwok Wei

    Javadoc for IWDNode says:
    public void clearSelection()
        Clears the Node's multiple selection; does not change the lead selection.
    public void setLeadSelection(int index)
        Sets the lead selection to the given index. It may be called with NO_SELECTION to reset (clear) the lead selection.
        Parameters:
            index - the index of the element
        Throws:
            ContextException - if caller tries to reset the selection, but selection is mandatory
            IndexOutOfBoundsException - if the given index is not within the element list
        See Also:
            getLeadSelection()
    Armin

Maybe you are looking for