Call normal screen in subscreen.

hi friends.ı want to call call normal screen in subscreen.
how do ı do?
thanks.

Tried an alternative universe.  Still cant work within the subscreen area although it displays 270 degree symmetry. 
Try managing the action in the subscreen at the main screen level, but then call a new subscreen based on this outcome to reflect what you originally wanted.
Cheers
Gareth

Similar Messages

  • Can we call normal screen from subscreen

    hi,
    can any body tell how to call normal screen from subscreen in Dialog Programming
    thanks in Advance,
    Subodh.

    Hi,
    use stmt like":
    call screen '1001'.
    But this will be diplayed as new screen and not as subscreen.
    Jogdand M B
    Message was edited by:
            Jogdand M B

  • Dialog Programming(module pool):call a screen to subscreen area.

    Hi experts,
    I want to call a screen created in the function group into my
    subscreen area of current screen of main program.
    I have done the below way :
    1. Created a screen 100 in the module pool program z_bpmodule.
    2.created a subscreen area SUB in screen 100.
    3. I hav created function group :zfungroup
    and  a screen 300,a function module Z_EXPORT_FUN for exporting the data to the screen 300 from report.
    Now my prog is lik below :
    PROGRAM  Z_SUBSCREEN1.
    DATA : ZMATNR LIKE MARA-MATNR.
    DATA : DYNNR LIKE SY-DYNNR .
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
      SET TITLEBAR 'TITLE'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  EXPORT_DATA  OUTPUT
          text
    MODULE EXPORT_DATA OUTPUT.
    CALL FUNCTION 'Z_EXPORT_FUN'
                              EXPORTING Z_INPUT = ZMATNR.
    ENDMODULE.                 " EXPORT_DATA  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE USER_COMMAND_0100 INPUT.
    CASE SY-UCOMM.
    WHEN 'EXP'.
    DYNNR = '0300'.
    *ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    and the flow logic is lik this :
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    MODULE EXPORT_DATA.
    CALL SUBSCREEN SUB INCLUDING SY-REPID ' 0300'.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
    CALL SUBSCREEN SUB.
    Now the main problem is i am not able to call the screen from function group to subscreen area...
    kindly provide the solution.....
    Thanks a lot in adv ....
    Brahma.

    I am just getting the main screen and the subscreen is not at all displaying .....
    but when i perform the PAI .. I am getting the dump ..
    Short text
        Dynpro does not exist
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "Z_SUBSCREEN1" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        The system attempted to use dynpro 0000 in program "Z_TX1".
        This dynpro does not exist.
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DYNPRO_NOT_FOUND" " "
        "Z_SUBSCREEN1" or "Z_SUBSCREEN1"
        "EXPORT_DATA"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
       In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    hope i have given the full information.
    Thanks a lot.

  • Selection screen as Subscreen help required

    Hello All,
    I am facing a problem by calling selection screen as subscreen, Here is my problem
    In my main screen i have create a sub screen as search help
    so in my sub-screen i have select-options
    If i click the button to include and exclude some values i don't see  the dailog box for selections is not appearing.
    Please provide help. I need to allow the user to enter some n values?
    Regards,
    Lisa

    Hi,
    There is a small mistake that you are doing..
    In the subscreen donot create the select options... What you need to do is... in the TOP Include write lines like..
    SELECTION-SCREEN BEGIN OF SCREEN 1010 AS SUBSCREEN.
    SELECT-OPTIONS s_proj FOR zimple_crmt_1000-title_part.
    SELECT-OPTIONS s_cr      FOR crmd_orderadm_h-object_id.
    SELECTION-SCREEN END OF SCREEN 1010 .
    Then.. in the screen where you have subscreen to be included write
    PBO
    CALL SUBSCREEN subs_1010 INCLUDING sy-repid '1010'.
    PAI
    CALL SUBSCREEN subs_1010.
    By doing this... the select option will appear on your subscreen with the extension and interval options.
    All the best.

  • Call selection screen from normal screen of modulpool

    Hey gurus,
    I would like to call a selectionscreen when I press a button on my normal screen in modulpool, but it doesn't work.
    I made a modulpool with a normal screen where is that button. In the top include I made a selection screen followingly:
    SELECTION-SCREEN BEGIN OF SCREEN 1001 as SUBSCREEN.
       PARAMETERS: rb1 RADIOBUTTON GROUP ab MODIF ID bl2,
                 rb2 RADIOBUTTON GROUP ab MODIF ID bl2.
    SELECTION-SCREEN END OF SCREEN 1001.
    but it writes out an error when i try to call subscreen 1001.
    What's wrong? How could I achieve my goal?
    Thank you very much.
    Regards,
    Robert

    Hi,
    *& Include ZSELOPT_IN_MP_TOP                                 Module Pool      ZSELOPT_IN_MP
    PROGRAM  zselopt_in_mp.
    TABLES ekko.
    SELECTION-SCREEN BEGIN OF SCREEN 9001 AS SUBSCREEN.
    SELECT-OPTIONS so_ebeln FOR ekko-ebeln.
    SELECTION-SCREEN END OF SCREEN 9001.
    -->Normal Screen(9000) with Subscreen Area 'sub'.
    PROCESS BEFORE OUTPUT.
    * MODULE STATUS_9000.
    call SUBSCREEN sub INCLUDING sy-cprog '9001'.    (Here is your problem, use quotas )
    PROCESS AFTER INPUT.
    * MODULE USER_COMMAND_9000.
    CALL SUBSCREEN sub.

  • Calling a sub screen in an normal screen

    Hi,
    In module pool program i am having a normal screen 9000.
    In this normal screen i have call subscreens depending on the radio buttons the user selects.
    can we do like that. that is if one radio button one sub screen should be triggered and remaining should be deactivated, and if another radio button relavent sub screen should be triggered.
    please do help me its urgent.
    replies with helpful code is much appreciated.
    regards
    Mac

    Hi,
    Try to use this...
    First, put all the objects in the subscreen in the same group number with the same group name.
    Then put a function code to the radio-button that you will use to hide the subscreen.
    And into the PBO of the subscreen,
    insert this code...
      CASE sy-ucomm.
        WHEN <function code>.
          IF <radio_button> = 'X'.
            LOOP AT SCREEN.
              IF screen-group1 = '1'.
                screen-invisible = 1.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
          ENDIF.
      ENDCASE.
    Hope this may help you..
    Enjoy...
    Salem_M

  • Calling Multiple Normal Screens

    Hi All,
            I have 6 Normal Screens. Now I want  to call One by one in sequence. How can it will be possible? In Dialog programing
    Thanks in Advance

    Hi Ravi Narayan Padhi,
    For that also you have to do the same as described above, in PAI of Screen 100 write the following :
    Case SY-UCOMM.
    When ''.
    CALL SCREEN 200.
    ENDCASE.
    In PAI of Screen 200 write the following :
    Case SY-UCOMM.
    When ''.
    CALL SCREEN 300.
    ENDCASE.
    In PAI of Screen 300 write the following :
    Case SY-UCOMM.
    When ''.
    CALL SCREEN 400.
    ENDCASE.
    In PAI of Screen 400 write the following :
    Case SY-UCOMM.
    When ''.
    CALL SCREEN 500.
    ENDCASE.
    In PAI of Screen 500 write the following :
    Case SY-UCOMM.
    When ''.
    CALL SCREEN 600.
    ENDCASE.
    Hope this will help.
    Thanks & Regards,
    Rock.

  • I am using Iphone 5. Since the last 3 weeks the phones has been acting weird. on dialling a call it get hung on disconnecting it stays on the call ending screen only. this happens for atleast 5 to 7 minutes and then it gets to normal

    I am using Iphone 5. SInce the last 3 weeks the phones has been acting weird. on dialling a call it get hung on disconnecting it stays on the call ending screen only. this happens for atleast 5 to 7 minutes and then it gets to normal or the other way is to turn the device off and then turn it on. the phones also running slow and therefore at times becomes very cumbersome. a few of my friends have also been having the same problems.
    I have taken the phone to the service outles but the best they did was to reboot the phone it works fine for a day or two but again the same issue.
    Can anyone share any info on it?

    I'm glad to hear that they replaced your phone. Any experience I have had with Apple customer service and/or Genius bar has been extremely positive. While I have had positive outcomes from trouble with other phones in the past, they are not as quick and  friendly. I had a Motorola phone and a Samsung phone go bad several years ago and warranty work through AT&T required that I wait for a replacement unit and then mail back the original unit to keep from being charged for the device. This usually meant almost a week without a phone. Nice to walk into Apple and walk out with a replacement device. Enjoy your phone.

  • Difference between modal screen and normal screen

    Hi everyone,
      Now,I am developing a dypro. when I create a modal screen ,I found no difference between normal screen and modal screen.
      eg. If I use the statement "call screen" , whatever which type of screen you use, the results look like the same. The same to the statement "call screen start at end at".

    Hi
    Screen type for modal dialog box
    If you activate this attribute, the screen is used as a modal dialog box. In the program, you call the screen with
    CALL SCREEN  STARTING AT  <top left>
                 ENDING   AT  <bottom right>.
    Unlike normal pop-ups, a modal dialog box has its own pushbuttons and title. There is no menu bar and command field entries are not possible.
    Normal screen type
    If you activate this attribute, the screen is flagged as a normal screen. This is the default setting.
    Alternatively, it may have the following special functions:
    Subscreen
    Modal dialog box
    Selection screen
    Class screen
    In the Screen Painter, you can choose between normal, subscreen, and modal dialog box.
    Selection screen and class screen attributes are assigned by the system.

  • Call selection screen on screen.

    hi experts,
    how can i call a selection screen as a subscreen in a normal screen.
    thanks.

    Hi ,
    See this link,
    http://help.sap.com/saphelp_nw04/helpdata/en/e7/deb237b9a9a968e10000009b38f8cf/content.htm
    hope it will help you,
    Regards,
    Vijay

  • Regarding call sub screen dynamically

    hi to all,
    Is it possible to call subscreen dynamically means we are calling subscreen like
    PROCESS BEFORE OUTPUT.
    CALL SUBSCREEN SUB INCLUDING 'YSU_SUBSCREEN' '0120'.
    MODULE STATUS_0100.
    suppose we r coding like calls subscreen at the initially whenever display main screen but my requirement is
    i have edesigned 3 or 4 sub screens for vendor,material ..etc for up dation
    i  place the button regarding vendor whenver i press the button vendor that subscreen will display in that i designed insert delete update operations of vendor data like that all the screens
    for this operation can't use tabstrip control
    please provide solution
    thanks and regards,
    surya.

    Hello Surya,
    Based on a particular function code or click of a button it is possible to bring different subscreens into the normal screen's area reserved for calling subscreen
    ........so in the subscreen we need to give fields and structures required to be displayed on clicking a particular button or recieving a condition
    Please check the following
    declare a variable : loc_dynnr type sy-dynnr,
                                loc_repid  type sy-repid .
    assign a default value:
    loc_dynnr  = 120. "First subscreen being called
    loc_repid   = sy-repid. "report id 'YSU_SUBSCREEN'   
    we will be using the statement
    "CALL SUBSCREEN SUB INCLUDING 'YSU_SUBSCREEN' '0120'.
    CALL SUBSCREEN: SUB INCLUDING loc_repid  loc_dynnr.
    so on clicking the button we will have different function codes captured
    case sy-ucomm.
    when 'Button1'.
    loc_dynnr  = 120. "required subscreen to be called
    loc_repid   = sy-repid. "report id 'YSU_SUBSCREEN'   
    when 'Button2'.
    loc_dynnr  = 130. "required subscreen to be called
    loc_repid   = sy-repid. "report id 'YSU_SUBSCREEN'  
    when 'Button3'.
    loc_dynnr  = 140. "required subscreen to be called
    loc_repid   = sy-repid. "report id 'YSU_SUBSCREEN'  
    endcase.
    and in the calling code use...
    CALL SUBSCREEN: SUB INCLUDING loc_repid  loc_dynnr.
    please remember to put default values for loc_repid ,loc_dynnr..otherwise it may dump
    Pls check and revert..rewards if helpful
    also check the following link
    Re: Module Pool Program : Calling Subscreen in a Normal Screen
    Regards
    Byju

  • How to call table control in subscreen in module pool program

    Hi all,
    I have req,need call table control in subscreen,but have done but when scroll bar value getting changed ,
    please guide how to do it.if its possable send the code.
    regards
    santosh

    Hi,
    The navigation happens like this.
    Consider you have a main screen and 2 subscreens.
    When you click or do some event in the Subscreen 2 (lets say this is the one that has the table control), this will first trigger PAI of the Main Screen. In the flow logic of the Main screen, you would have written call subscreen <subscreen area1> and call subscreen <subscreen area2>.
    Now the subscreens get triggered based on the order in which you have written in the flow logic.
    So, here the modules before the first call subscreen statement in the Main Screen PAI is all executed. Now, it goes to the subscreen on which you have triggered an event and executes the modules in the subscreen.
    This is how the execution goes when you have subscreens.
    So there is no problem with the navigation. You only have to worry about the screen where you have the table control. Just debug and find where data is getting changed or duplicated.

  • ALV Grid works in normal screen but not in modal

    Hi,
    I'm struggling with an alv control I've created.  I need to have it displayed in a modal dialog window.  It works fine in a "normal" window but when I change the screen to be modal nothing displays.
    Anyone have any ideas or hit this issue before.
    Screen is defined in a function group with a custom control.
    Classes exist for model / view and ws.
    A function module creates classes above and passes a container to the view class which creates an instance of CL_GUI_ALV_GRID.  Function module then executes:
    call screen 100 starting at 5 5.    -  ALV doesn't display
    Call screen 100.                        -  Works fine

    Helps if you populate the custom control after you have called the screen not before !

  • Firefox 3.6 starts in taskbar mode, not normal screen mode

    Firefox opens only as an item on the Windows taskbar, instead of in "normal" screen mode. I then have to click on the taskbar item to get Firefox to open in normal screen mode.
    By normal screen mode, I mean the mode where Firefox fills up part of the computer screen and Firefox can then be resized or moved around the screen as one desires. I am not talking about opening Firefox in what is variously called "full screen," F11, or maximized mode --- and I do not want Firefox opening in such a mode.
    I have a wide screen monitor which I use to open and view several software programs at the same time, something which is very handy when you want to compare information from a program on one's computer with information from a Web site, and I need Firefox to open in normal screen mode to permit me to do this multiple program viewing.
    I have tried the following plugins , but they either do not solve my problem, or only allow me to start Firefox in full screen mode:
    - AutoHide
    - Full Fullscreen
    - FullerScreen
    I have tried searching the Firefox help database, and have done a more general internet search using Google, and have not found any information on this problem.
    Is there a Firefox configuration setting I can make to direct Firefox to always open in normal screen mode?

    Reply to Cor-el's June 6th message: I created a desktop shortcut and tested it a few times, both various times during computer sessions and a few times just after I had powered up my desktop computer. The shortcut always opens Firefox in "normal screen mode." I also tested opening Firefox from the Start button menu item I have had for several years. The menu item also always opens Firefox in "normal screen mode."
    It is only when I use the Web/Home button on the Microsoft internet keyboard that Firefox opens in "taskbar mode." Also, this problem has only been occuring for the past 6 or 7 months. Before that, I could always open Firefox 3 in "normal screen mode" using the Web/Home button.
    Note to the other eight people who also indicated they have this problem: My version of the problem seems to be with Firefox's interaction with the software for the Microsoft internet keyboard. I would appreciate it if you could post a reply to this discussion informing everyone whether you have this Firefox startup problem when you use a dedicated keyboard key, or if you have the startup problem when you use just a desktop shortcut or a Start button menu item. Thank you.

  • Calling Selection Screen in Modal dialog box

    Hi Experts.
    I have created screen 9000 having user interface and in tool bar there is create button in the screen 9000
    The create button 9001 will call another screen with different I/O fields (9001 is Modal dialog screen).
    In the 9001 there is push button for which the selection screen is called 9002.
    I have declared 9002 as subscreen and called the screen 9002 in user command.
    In the Screen 9001 when user clicks the push button i need to get pop up screen where the user select some data.
    How i need to do ?
    I am getting error can't call subscreen in modal dialog box.
    Thanks,
    ERPSAP

    HI,
    HOpe this will help you
    How to call table control in subscreen in module pool program
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/reg-tab-strip-control-module-pool-abap-444944
    http://12go.com/sap/search?query=title%3A(calling%20subscreens%20in%20module%20pool)
    Regards,
    Pravin

Maybe you are looking for

  • Recently I am having various problems on various pages.

    In the last few weeks, I have noticed some odd problems. Some of them are. On Google, or any other page where I do a search for images, or there are numerous images, the firts few load fine, but most don't load at all. For instance... If I do an imag

  • Deploying CF 9 Ent 64-bit on Windows 2008 64-bit

    Hello, I'm getting ready to migrate 20 or so websites from CFMX 6.1 Ent (Win 2k3) to CF 9 Ent 64-bit on Windows 2008 64-bit and was wondering if it made sense to tweak the jvm.config file. I looked around on Adobe's site for any guidance regarding "b

  • Motion 4 isn't moving!

    Hi all - I'm having a strange problem this morning that I'm hoping is just an errant keystroke of some sort. I can't get motion to animate. For example, I've set up a ramp on the jitter setting of my shape's stroke... and when I manually drag my mous

  • After 7.0.2 long delay for menù showing up after restart

    Good morning , after upgrading to 7.0.2 my ATV 3 restart with only family sharing and configuration menù....i think it was a fault on the fw upgrade so i reset to default configuration. after restart everythings goes well and i restart configuring AT

  • IPhone 4 White Balance Issue

    Is anyone having the same issue? Indoor pics with florescent light being way too yellow?