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

Similar Messages

  • Calling Sub screen

    Hi all,
          Iam getting a problem in calling a sub screen.
    Iam getting error as below:
    <b>"." or "ID .....FIELD..." expected after "SUBSCREEN".</b>
    Please go through this code and suggest me
    *& Module pool       Y_MP_SUB_03
    PROGRAM  Y_MP_SUB_03.
    tables : kna1.
    data : begin of itab occurs 0,
            name1 like kna1-name1,
            land1 like kna1-land1,
           end of itab.
    CALL SCREEN 100.
    *&      Module  USER_COMMAND_0100  INPUT
          text
    module STATUS_0100 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'TT'.
    CALL SUBSCREEN SUB 'Y_MP_SUB_03' '110' .
    endmodule.                 " STATUS_0100  OUTPUT
    module USER_COMMAND_0100 input.
      case sy-ucomm.
           when 'DISP'.
              SELECT NAME1 LAND1 FROM KNA1 INTO ITAB WHERE
               KUNNR = KNA1-KUNNR.
               APPEND ITAB.
              ENDSELECT.
          WHEN 'EXIT'.
             LEAVE PROGRAM.
      ENDCASE.
    endmodule.                 " USER_COMMAND_0100  INPUT
    *&      Module  STATUS_0100  OUTPUT
          text

    HI,
    u shouldn't use that in module.u have to call that in flow logic.
    PROGRAM ZBHTSTRIP.
    DATA:OKCODE LIKE SY-UCOMM.
    DATA: N1 TYPE I, N2 TYPE I, R1 TYPE I, R2 TYPE I.
    DATA SCRNO(4) TYPE N VALUE 2001.
    CONTROLS TABS TYPE TABSTRIP.
    MODULE USER_COMMAND_1001 INPUT.
       CASE OKCODE.
         WHEN 'ADD'.
           R1 = N1 + N2.
           SCRNO = 2001.
           TABS-ACTIVETAB = OKCODE.
         WHEN 'MUL'.
           R2 = N1 * N2.
           SCRNO = 2002.
           TABS-ACTIVETAB = OKCODE.
         WHEN 'BACK'.
           SET SCREEN 0.
         WHEN 'CLEA'.
           CLEAR: N1,N2.
       ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1001  INPUT
    FORM ON_CTMENU_FORM1 USING MENU1 TYPE REF TO CL_CTMENU.
      CALL METHOD MENU1->LOAD_GUI_STATUS
        EXPORTING
          PROGRAM = 'ZBHTSTRIP'
          STATUS = 'MENU1'
          MENU = MENU1.
      CALL METHOD MENU1->ADD_FUNCTION
        EXPORTING
           FCODE = 'EXIT'
           TEXT = 'EXIT'.
    ENDFORM.
    MODULE STATUS_1001 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
      SET TITLEBAR 'TIT1001'.
    ENDMODULE.                 " STATUS_1001  OUTPUT
    FLOW LOGIC:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_1001.
    <b>CALL SUBSCREEN SUBA INCLUDING 'ZBHTSTRIP' SCRNO.</b>
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_1001.
    CALL SUBSCREEN SUBA.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_2001.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_2001.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_2002.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_2002.
    rgds,
    bharat.

  • Regarding calling required screen

    hai ,
       can anyone tell me how to comeback to my screen after calling a transaction other than going to easy access in module pool programming .
    Thanks & Regards,
    Syam.

    Hi,
    If this is what you require to do then, you need to look for any Exits that will be used to feed your functionality into the Standard SAP Code. Your requirement is an enhancement to the standard SAP Code as you will navigate back to your own Module Pool Code.
    Below is the link that will give you some clue on Modification and Enhancements.
    Link1 : http://help.sap.com/saphelp_nw2004s/helpdata/EN/94/9cdc40132a8531e10000000a1550b0/frameset.htm
    Link2 : http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    Link3 : http://www.sap-img.com/abap/what-is-user-exits.htm
    Thanks,
    Samantak.

  • How to call a sub screen from abap report

    Hellow friends,
    how to call sub screen 1001 prog name SAPLMGD1
    and main program SAPLMGMM screen 4000 of tcode MM02.
    i need to call the sub screen from abap report

    Hi Rajesh,
    You can use FM MATERIAL_MAINTAIN_DIALOGUE to go to subcreen MRP1 in MM02.
    Please check this sample code from other thread and enter 'MRP 1' for p_dytxt.
    REPORT zsritest.
    TABLES mara.
    DATA: lv_bilds LIKE t133a-bilds,
    ls_t130m LIKE t130m,
    ls_rmmg1 LIKE rmmg1,
    lwa_view TYPE mbildtab,
    lwa_auswg TYPE mgauswg,
    lt_views TYPE STANDARD TABLE OF mbildtab INITIAL SIZE 0,
    lt_auswg TYPE STANDARD TABLE OF mgauswg INITIAL SIZE 0.
    PARAMETERS: p_matnr LIKE mara-matnr,
    p_werks LIKE marc-werks,
    p_dytxt LIKE mbildtab-dytxt.
    SELECT SINGLE * FROM mara WHERE matnr EQ p_matnr.
    CHECK sy-subrc EQ 0.
    CALL FUNCTION 'T130M_SINGLE_READ'
    EXPORTING
    tcode = 'MM02'
    kzrfb = 'X'
    IMPORTING
    wt130m = ls_t130m
    EXCEPTIONS
    not_found = 1
    wrong_call = 2
    OTHERS = 3.
    CALL FUNCTION 'BILDSEQUENZ_IDENTIFY'
    EXPORTING
    branche = mara-mbrsh
    materialart = mara-mtart
    tcode_ref = ls_t130m-trref
    * KZRFB = ' '
    IMPORTING
    bildsequenz = lv_bilds
    * KZ_BILDS_CHANGED =
    EXCEPTIONS
    wrong_call = 1
    not_found = 2
    OTHERS = 3.
    CALL FUNCTION 'SELECTION_VIEWS_FIND'
    EXPORTING
    bildsequenz = lv_bilds
    pflegestatus = mara-pstat
    TABLES
    bildtab = lt_views[]
    EXCEPTIONS
    call_wrong = 1
    empty_selection = 2
    OTHERS = 3.
    ls_rmmg1-matnr = mara-matnr.
    ls_rmmg1-werks = p_werks.
    READ TABLE lt_views INTO lwa_view WITH KEY dytxt = p_dytxt.
    CHECK sy-subrc EQ 0.
    lwa_auswg-auswg = lwa_view-auswg.
    APPEND lwa_auswg TO lt_auswg.
    CALL FUNCTION 'MATERIAL_MAINTAIN_DIALOGUE'
    EXPORTING
    irmmg1 = ls_rmmg1
    * IRMMG1_REF = ' '
    KZ_EIN_DARK = 'X'
    t_tcode = 'MM02'
    * FLG_MATNR_RES = ' '
    p_pstat = mara-pstat
    * FLG_STAT_ALL = ' '
    * CALL_MODE2 = ' '
    * IMPORTING
    * MATERIAL_NO =
    * UPDATE_OK =
    TABLES
    iauswg = lt_auswg[]
    EXCEPTIONS
    no_authority = 1
    OTHERS = 2.
    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,
    Ferry Lianto

  • Regarding field and screen exits

    Hi,
         plz. send me the step-by-step procedure to create Field and Screen exit.

    Screen Exits:
    Screen exits are provided by SAP to allow the programmer to add his own sub screen in the already available standard SAP screen. The standard screen will have a sub screen area defined especially for this purpose. The call to this sub screen will also be present already in the standard code.
    For example, there is an enhancement RVEXAKK1 available for foreign trade transactions.
    As you see in the above screen in screen areas block the calling screen, its number, sub screen area and the called screen with its number are defined. Here the main screen 101 in program SAPMV86E is having a sub screen area ZUSATZ and the screen 100 from program SAPLXAKK will be the sub screen for that area.
    It is mandatory for the called screen to be in a function group that starts with X. Here the function group is XAKK.
    Also, if you see the above enhancement, it also has two FM exits. These two FM exits will be used to pass data to & from the sub screen. These FM calls will be in PBO & PAI modules of the main screen. These FMs are also part of the above said function group.
    And the function group will not have that sub screen 100 defined. The programmer can create his own screen with the number 100(or whatever is called).
    Calling of the sub screen.
    sub screen call     in PBO of main screen 101          this module has the FM exit call
    Sub screen call in PAI block of main screen          this module has FM exit call
    Create the screen 101 in program SAPLXAKK from transaction CMOD.
    Double click here to create the screen
    Once screen creation is done, use the two FM exits present in the enhancement to pass data to the sub screen and get data from the sub screen.
    Field Exits
    1. Field exit was created with CMOD, but is not processed when calling the screen.
       o  Since the field exit is not processed until PAI, an action must be
          triggered on the screen (Return, Save, ...).
       o  Set profile parameter abap/fieldexit to YES and restart the
          system. Setting the profile can be done by a BASIS person.
    o     To check if the parameter is set or not use transaction RZ10.
       o  After activating the function module FIELD_EXIT... and the field
          exit, leave the transaction on whose screen the field exit is to
          be executed. The screen is not generated until the transaction is
          started.
       o  Do not work on different application servers since there may be
          some delay before the field exit is activated.
       o  The profile parameter must be set on all or none of the
          application servers.
       o  If the field exit is to only be active on specific screens, check
          whether you chose the correct program and the correct screen
          number (take care with subscreens).
       o  Using SE51 -> Field list, check that the screen field does have a
          reference to a data element. In the name of the field exit use the
          name of the data element and not the field name.
       o  After transport, field exits are marked as active but will not be
          processed. Tip: First try deactivating the field exit once more
          and then afterwards, activate it again.

  • Calling custom screen inside a function module

    This is regarding calling a screen as a pop up from a function module.How do I capture the values that would be entered in the fields of that pop up screen?Do I use ABAP memory or SAP memory or is there any other alternative?Please suggest.

    Hi savitha,
    When you create the Custom Screen, you can attach that custom screen to the main program of the function module itslef.
    The TOP Include variables can be used as screen fields and hence you don't need to store the data entered in the screen, anywhere else.
    The data will be readily available in the global variables itself in the whole function group..
    Thanks and Regards,
    Kunjal Patel

  • 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

  • Dynamically calling selection screens with obligatory

    TABLES :
    ******selection-screen: begin of block bal with frame title txt3.
    ******parameters: RB1  radiobutton group rd1 user-command abc default 'X'.
    ******parameters: RB2  radiobutton group rd1.
    ******selection-screen: end of block bal.
    ******selection-screen: begin of block B1 with frame title txt1.
    ******SELECT-OPTIONS  : s_cust  FOR KNA1-kunnr OBLIGATORY  MODIF ID r1.
    ******SELECT-OPTIONS  : s_plant  FOR plko-werks OBLIGATORY MODIF ID r1 .
    ******selection-screen: end of block val.
    ******selection-screen: begin of block upd with frame title txt2.
    ******SELECT-OPTIONS:  s_vend  FOR lfa1-lifnr OBLIGATORY modif id r2.
    ******SELECT-OPTIONS: s_plan  FOR plko-werks OBLIGATORY modif id r2.
    ******selection-screen: end of block upd.
    Here i need to call these two selection screens dynamically depends on radio buttion selection.
    But
    Problem is a arising when when both are obligatory in selection screen ( with out obligatory , it is working fine)
    I need to call screens dynamically, ecen though we have obligatory
    Let me know procedure , the possibility of same funcationality in tabstips & selection screen.
    Madhu

    Hi Madhu,
    You have to write code in AT SELECTION-SCREEN OUTPUT event.
    First of all remove obligatory from select-options declaration. Do it dynamically in AT SELECTION-SCREEN OUTPUT event.
    You enable or disable the block depending upon the rediobutton selected. Then in the venet AT SELECTION-SCREEN ON field, you can check whethere user has entered data into that field or not depending upon the radiobutton selected.
    TABLES : kna1,
             plko,
             lfa1.
    SELECTION-SCREEN: BEGIN OF BLOCK bal WITH FRAME TITLE txt3.
    PARAMETERS: rb1 RADIOBUTTON GROUP rd1 USER-COMMAND abc DEFAULT 'X'.
    PARAMETERS: rb2 RADIOBUTTON GROUP rd1.
    SELECTION-SCREEN: END OF BLOCK bal.
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE txt1.
    SELECT-OPTIONS : s_cust FOR kna1-kunnr  MODIF ID r1.
    SELECT-OPTIONS : s_plant FOR plko-werks MODIF ID r1 .
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN: BEGIN OF BLOCK upd WITH FRAME TITLE txt2.
    SELECT-OPTIONS: s_vend FOR lfa1-lifnr MODIF ID r2.
    SELECT-OPTIONS: s_plan FOR plko-werks MODIF ID r2.
    SELECTION-SCREEN: END OF BLOCK upd.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF rb1 EQ 'X'.
          IF ( screen-name EQ 'S_CUST-LOW'
            OR screen-name EQ 'S_CUST-HIGH'
            OR screen-name EQ 'S_PLANT-LOW'
            OR screen-name EQ 'S_PLANT-HIGH') .
            screen-active = '1' .
          ENDIF.
          IF ( screen-name EQ 'S_VEND-LOW'
            OR screen-name EQ 'S_VEND-HIGH'
            OR screen-name EQ 'S_PLAN-LOW'
            OR screen-name EQ 'S_PLAN-HIGH') .
            screen-active = '0' .
          ENDIF.
        ELSEIF rb2 EQ 'X'.
          IF ( screen-name EQ 'S_VEND-LOW'
            OR screen-name EQ 'S_VEND-HIGH'
            OR screen-name EQ 'S_PLAN-LOW'
            OR screen-name EQ 'S_PLAN-HIGH') .
            screen-active = '1' .
          ENDIF.
          IF ( screen-name EQ 'S_CUST-LOW'
            OR screen-name EQ 'S_CUST-HIGH'
            OR screen-name EQ 'S_PLANT-LOW'
            OR screen-name EQ 'S_PLANT-HIGH') .
            screen-active = '0' .
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    Regards,
    Anil Salekar

  • Dynamic variant calling multiple screens

    Hi all,
    The concerned issue is that i am trying to execute a report( which on execution throws a selection screen) from a program using 'submit' statement passing a variant. along with it iam creating a dynamic varinat using FM RS_CREATE_VARIANT, the variant is being made, but on execution , the program throws an error meassage " invalid variant called'.
    This is because the varinat is calling multiple screens , although only one screen number is passed in teh FM,( screen no 0170).
    Please tell me the possible solution fr this .
    Cheers,
    Thanks in advance.

    Hi,
    first try to pass only the static variant with the submit statement and c whether its working properly.
    and than check for dynamic variant..
    c the difference and let me know what happens ??
    thanks
    ravi aswani

  • Regarding Sub Screen Moving problem

    Dear All,
    I created 9 subscreen and assigned to different tabs.
    Each and every sub screen have 3 to 4 text blocks (i.e. Custom Controls).
    after moving one tab to another tab scroll the sub screen down , all  text blocks also moving with scroll bar.
    how to resolve this problem. Due to this problem saving also not working..when text blocks are study text save in ibject id and text id..But when moving saving not happend.
    Regards,
    Reddy Nara

    Hai,
           Please check the fct code for BACK button. if the fctcode is exist then use the following code.
            if sy-ucomm = 'BACK'.       " USE CAPITAL LETTERS ONLY
                 LEAVE TO SCREEN 0.

  • Encapsulated transaction call from a (sub) screen

    Hi all,
    i want to built a customer transaction what calls an amodal window movable over the calling session and i want to display a standard transaction in the underlying original session, e.g. FB03.
    My problem is, that when i have opened the amodal window and i call FB03 afterwards, the amodal window is closed. If i leave FB03 i run trough the PBO of my calling screen and i reopen the amodal window again.
    So: Is there any chance, to encapsulate the called transaction, so that it is displayed in my calling window without terminating the transaction what has called it? From a subscreen? From a container?
    I remember that similar standard functionality may exist in workflows, but i am not sure.
    Thanks in advance for any hints.
    Axel

    HI,
       It is not possible to call a sub screen from a sub screen.
    Rgds
    Umakanth

  • SELECT-OPTIONS in Module Pool Sub-Screen

    Hi,
    I have been working on a Module-Pool Development, in the header portion of the Screen, I have provided a Selection-Screen as a Sub-Screen because the requirement specifies to display a SELECT-OPTION in the Header Area.
    Now the problem is that, when working with the Screen, as soon as I press <ENTER> the Main Screen re-calls the Selection-Screen in the Sub-Screen area and all the entries made in the Selection-Screen are reset/erased.
    Kindly provide a solution either to stop the <ENTER> action to re-call the sub-screen. Or on any alternate method(s) to  provide a SELECT-OPTION on a Module Pool based Screen UI.
    MAIN SCREEN Code:
    *  PROCESS BEFORE OUTPUT
    PROCESS BEFORE OUTPUT.
    *~  Set PF-STATUS and TiTLE for Screen 100
      MODULE status_0100.
    *~  Call the Subscreen Dynamically
      CALL SUBSCREEN subscr1 INCLUDING sy-cprog gv_dynnr1.
      CALL SUBSCREEN subscr2 INCLUDING sy-cprog gv_dynnr2.
    *  PROCESS AFTER INPUT
    PROCESS AFTER INPUT.
    *~  Handle the Exit Commands of Screen 100
      MODULE user_command_0100 AT EXIT-COMMAND.
    *~  Handle the User Command(s) for screen 100
      MODULE user_action_0100.
      CALL SUBSCREEN subscr1.
      CALL SUBSCREEN subscr2.
    So whenever <ENTER> is pressed, the PBO re-calls:
    CALL SUBSCREEN subscr1 INCLUDING sy-cprog gv_dynnr1.
    and the Selection-Screen is reset.
    Regards,
    Nishant Nayyar.

    Haii Nishant,
    This problem was earlier solved by one of the members and after going through it i have now created a select-option in the Subscreen. Just create two input fields, name them as if they were low and high (for convinience as in case of select-option).
    U now need to create a table of type rstabfield.
    Ex: gt_rstab_bukrs type rstabfield.
    Now create a button and assign a Fcode for it. When you click on this button then u need to implement the ranges functionality as in select-option. For that use the following function module:
    CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
    EXPORTING
      TITLE                   = ' '
       TEXT                    = ''
       SIGNED                  = 'X'
       SEARCH_HELP             = 'H_T001'
       TAB_AND_FIELD           = gt_rstab_bukrs
      TABLES
        RANGE                   = rg_bukrs1.
    Hope it helps.
    Best Regards,
    rama

  • Resizing of Sub screen

    hi,
    I have  created a screen from which i call a subscreen.
    I am using
    call screen<scr number > starting at x1y1 ending at x2 y2
    Is there any option where i am able to resize the sub screen?
    Thanks.

    Hi,
    call screen<scr number > starting at x1y1 ending at x2 y2.
    hi using the above one itself you can do that.
    dynamically pass the varaibles...this way you can resize the screen..
    Regards
    vijay

  • Sub screen: Handling the Radio button selection?

    Hi,
    Scenario:
    I have a Main screen and a sub screen. From the main screen I am calling the sub screen. On the Sub screen, I have 2 radio button. On the selection of the Radio buttons, I am activating/deactivating few of the screen elements on the sub screen.
    I have grouped the radio button and also tried assigning Function code to it, but in vain..:(
    Issue
    I am not able to handle the event triggered by the selection of the radio buttons?
    Kindly suggest.
    Regards
    s@k

    Hi,
    Are you still have any Issue, Let us know
    In the Main Screen Element List there is a field OK_CODE pass an entry into it
    in the TOP Include
    DATA : OK_CODE type SY-UCOMM. " This captures the OK_CODE from the Screen.
    Since SUb Screen cant have their Own OK_CODE this can be handled in the Main Screen only
    Try in PAI of Sub Screen using OK_CODE if it is not working then Implement the same in PAI of Main Screen
    The system will generate UCOMM for Radio Button since they are in One Group only. Each Radio button cannt have a separate UCOMM assigned. In Screen Painter (if It is Module Pool) assign a FCode for the Radio Button.
    Even if try changing the FCODe Value they still will have the New Changed Value but cannot be changed.
    This automatically triggers PAI . only way to capture it is check
    case ok_code. " Optionally you can omit this
    when  ok_code = 'RAD'.  " This is common for all the Radio BUttons but cant be different
    if r1 = 'X'.
    elseif r2 'X' " Etc.
    endif.
    endcase.
    Ram
    Edited by: Ramchander Krishnamraju on Feb 26, 2010 10:37 AM

  • The display of sub screen exceeds the sub screen area

    Hi Experts,
      I have a requirement, that i need to make changes to one of the screens in the standard transaction. I found there is a screen exit exist for this. This screen is called in the tab strip(In the standard transaction). I have done the screen changes in the sub screen. When calling the standard transaction this sub screen exceeds the sub screen area of the standard transaction tab strip. I know if the sub screen size is more than the sub screen area then scroll bars will be displayed automatically. But i am facing a strange problem that the display of sub screen exceeds the sub screen area. I need scrol bar instead of exceeding the sub screen.
      Please help me to solve this problem
    Regards,
    Bujji

    Anyone has any suggestions for my question. Any help is much appreciated. Thanks.

Maybe you are looking for

  • Import OLAP Metadata in OBIEE 11.1.1.5 failing

    We are in the process of integrating our existing Oracle OLAP infrastructure with OBIEE 11.1.1.5. We are currently on 11.2.0.1 DB with our 11g cubes in 11.2.0.0.0 compatibility mode. We have two AWs within the same schema that are tightly integrated

  • IPad video out to HDMI mystery

    I hope we can shed some light upon this. I was wondering, what exactly Apple does with the video out feature while the iPad is connected to a 16:9 flatscreen TV via HDMI (digital AV adapter). What I found out: The nominal iPad 3 resolution is 2048 x

  • Standard text from SO10 - smartform

    Hi Folks, I need to print a document with some standard text and the vendor address. 1.For this I had created the standard text in S010,how to call this standard text in the text editor of the main window? This standard text will be the same for all

  • Using BI Bean in JSP

    Hi, Can anyone please provider some pointers on using BIBeans in a JSP page. There are few options in my knowledge. 1)Using BI-Beans API for writing our own JSP tags. 2)In Jdev(10g) there seems to be some support for Graphs through ADF. 3)JSP and UIX

  • Dreamweaver TEmplate

    I created a webpage using the dreamweaver template when I open it in the browser in a maximize screen its perfect but when I adjust the size the content on the middle 'div' is going to the bottom at the page. How can I do it like if I resize the page