Hw to come two boxes in a frame of selection screen

Hi Experts,
hw do  two boxes come in a frame of selection screen.
plz suggest.
with regards.....
sunil

Use SELECTION-SCREEN ..BLOCK
press F1 on SELECTION-SCREEN you'll get syntax..
SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETERS : r1 RADIOBUTTON GROUP grp1.
PARAMETERS : r2 RADIOBUTTON GROUP grp1.
PARAMETERS : r3 RADIOBUTTON GROUP grp1 DEFAULT 'X'.
SELECTION-SCREEN: END OF BLOCK b1.
SELECTION-SCREEN SKIP 2.
SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
PARAMETERS : r3 RADIOBUTTON GROUP grp2.
PARAMETERS : r4 RADIOBUTTON GROUP grp2.
PARAMETERS : r5 RADIOBUTTON GROUP grp2 DEFAULT 'X'.
SELECTION-SCREEN: END OF BLOCK b2.

Similar Messages

  • Two options are required in the Selection Screen

    Hi All,
    I need a selection screen with two option:
    Option 1: Based on Open delivery
    The following are the input fields:
    In which Delivery types and dates are mandatory
    1.     Delivery
    2.     Delivery Type(Mandatory field)
    3.     Shipping Point/Receiving Point
    4.     Material
    5.     Planned goods movement Date(Mandatory Field)
    6.     Total goods movement Stat
    and,
    Option 2: Based on Material
    There are no mandatory fields in this option,
    The following are the input fields:
    1.     Material
    2.     External Material Group
    3.     Plant
    I want to implement the same using Radio buttons,
    In which If i select the radio button 1, option 1 should be triggered,
    and if I select radio button 2, option 2 should be triggered.
    How do I go about this??
    Thanks,
    Debrup.

    Hi,
    Check the following code:
    tables: vbap, mara.
    parameters: p_open radiobutton group grp1 user-command abc,
                p_mat radiobutton group grp1.
    selection-screen: begin of block b1 with frame title text1.
    parameters: p_vbeln like vbap-vbeln modif id opn,
                p_matnr like vbap-matnr modif id opn,
                p_grkor like vbap-grkor modif id opn,
                p_vstel like vbap-vstel modif id opn.
    selection-screen: end of block b1.
    selection-screen: begin of block b2 with frame title text2.
    parameters: p_matel like mara-matnr modif id mat,
                p_matkl like mara-matkl modif id mat,
                p_satnr like mara-satnr modif id mat.
    selection-screen: end of block b2.
    initialization.
    p_open = 'X'.
    at selection-screen output.
    text1 = 'Open orders'.
    text2 = 'Material'.
    if p_open = 'X'.
      loop at screen.
        if screen-group1 = 'OPN'.
          screen-active = 1.
          modify screen.
        endif.
        if screen-group1 = 'MAT'.
          screen-active = 0.
          modify screen.
        endif.
      endloop.
    elseif p_mat = 'X'.
      loop at screen.
        if screen-group1 = 'MAT'.
          screen-active = 1.
          modify screen.
        endif.
        if screen-group1 = 'OPN'.
          screen-active = 0.
          modify screen.
        endif.
      endloop.
    endif.
    Regards,
    Bhaskar

  • How to create text box with multiple lines in selection screen.

    Hi,
    i need to create a text box to capture comment with 300 characters. i want to achive this without using module pool,is there any posibilities to that
    regards
    raja

    Since text on Report screens is limited basically to what's left on a line in the selection screen, you'll have to use Module Pool.
    however, you can call a screen from a report program and use the editor within a Custom Control on the screen.  Not a tough thing to do.

  • Reduction of the frame using selection-screen

    hi frnds,
    can v make changes to the frame using the selection-screen begin of block statement.
    i mean to say suppose i want to display that frame at centre of the screen then how can i do.
    please tell me how to do?
    divya

    Hi
    You can't make changes to the FRAME defined using the selection screen
    where as you can move the fields defined in it.
    Regards
    Anji

  • How to modify the selection screen frame.

    <b>Friends,
    I need to create two separate blocks A | B.
    Using SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME , we can able to create the blocks one below the other.
    How to create two blocks side by side?
    And also how to fix the size for the block
    Example: block with specific height and width
    Please help it
    <b></b></b>

    Hi,
    If you use the WITH FRAME addition, a frame is drawn around the block. You can nest up to five different blocks with frames.
    SELECTION-SCREEN BEGIN OF BLOCK RAD1
                              WITH FRAME TITLE TEXT-002.
      PARAMETERS R1 RADIOBUTTON GROUP GR1.
      PARAMETERS R2 RADIOBUTTON GROUP GR1.
    SELECTION-SCREEN BEGIN OF BLOCK RAD2
                              WITH FRAME TITLE TEXT-002.
      PARAMETERS R3 RADIOBUTTON GROUP GR2.
      PARAMETERS R4 RADIOBUTTON GROUP GR2.
    SELECTION-SCREEN END OF BLOCK RAD2.
    SELECTION-SCREEN END OF BLOCK RAD1.
    Regards
    Sudheer

  • Combo box in a selection screen

    Hi,
    how can I get a combo box with values into s selection screen field.
    Thanks,
    Marian

    Hi..
    just paste this code..
    <b>TYPE-POOLS VRM.
    DATA:
      VRM_VALUE TYPE VRM_VALUE.
    DATA:
      T_DATA TYPE STANDARD TABLE OF VRM_VALUE.
    DATA:
      W_NUM TYPE I.
    PARAMETERS:
      P_LIST AS LISTBOX VISIBLE LENGTH 10
             USER-COMMAND RAM. " DEFAULT 'X'.
    PARAMETERS:
      P_F1(10) TYPE C MODIF ID GR1.
    INITIALIZATION.
      VRM_VALUE-KEY = 'A'.
      VRM_VALUE-TEXT = 'RAM'.
      APPEND VRM_VALUE TO T_DATA.
      VRM_VALUE-KEY = '2'.
      VRM_VALUE-TEXT = 'MOHAN'.
      APPEND VRM_VALUE TO T_DATA.
      VRM_VALUE-KEY = '3'.
      VRM_VALUE-TEXT = 'RAO'.
      APPEND VRM_VALUE TO T_DATA.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          ID              = 'P_LIST'
          VALUES          = T_DATA
        EXCEPTIONS
          ID_ILLEGAL_NAME = 1
          OTHERS          = 2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF P_LIST NE 'A'.
          IF SCREEN-GROUP1 = 'GR1'.
            SCREEN-ACTIVE = '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    AT SELECTION-SCREEN.
    START-OF-SELECTION.
      WRITE: /  P_LIST.</b>

  • Selection screen - two values optional mandatory

    Hello,
    is there a way to make two data fields obligatory in a selection-screen that the user only has to enter either one OR the other value, meaning at least one of these two data fields have to be entered?
    Thanks
    Anne

    Hi anne,
    As you want the message as a pop-up,use type 'I' message
    Try this code;-
    PARAMETERS:
    p_1(20) TYPE c,
    p_2(20) TYPE c.
    AT SELECTION-SCREEN.
    IF p_1 IS INITIAL AND p_2 IS INITIAL.
    CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
      EXPORTING
    *   TITEL              = ' '
        textline1          = 'Enter data'.
    *   TEXTLINE2          = ' '
    *   START_COLUMN       = 25
    *   START_ROW          = 6ENDIF.
    endif.
    -Bhumika

  • While selecting value from combo box in one frame, based on the selection..

    Hi friends,
    can someone help me out on a issue as it follows:-
    iam developing an application where Iam using xsl,html,javascript and xml.
    There is no existense of Database at all. data is read from xml.
    now,
    In a window there are 3 frames. In the 1st frame combo box is there.
    Based on the selection in the combo box data will be displayed in the 2nd frame.
    now onchange or onselect methods not giving the expected result.
    actually,in the the xsl which is having 3 frames,the 1st and 3rd frame
    calling src="abc.xml" and src="abc.xml"which are static.
    but in the 2nd frame the data need to be changed dynamically.
    I have given frame name="frame_ExchangeDetails2" rows="3%" src="cc_marketWatch_02.xml"/>
    usually data dynamically comes from database.but here i have to refer xml file
    something like [window.href.location="abc.xml"]
    but the problem is when you refer supose:-
    <frame name="frame_ExchangeDetails2" rows="3%" src="cc_marketWatch_02.xml"/>
    the frame is having static page,though there are functions in javascript which are called in onload and onchange.which are not working.
    I have tried putting if condition like:-
    if(document.abc.fieldname.value=='6'
    {   window.location.href = "cc_custLookUpData-mobileno.xml";   
    so that it could go to the repective page.
    but it is not working.
    so what should i do if I select from combo box in one frame and based on the selection xml/html page will be displayed in the 2nd frame.
    if anybody has google account i can forward the zip file so it will be easier to understand.
    Regards
    Message was edited by:
    Postqueries
    Message was edited by:
    Postqueries

    If you have rights to modify tabular model then, you can create a measure in your Tabular model which returns previous week and then use this measure in Pivot Table.
    Thanks,
    Sagar K 
    (Blog: http://datamazik.blogspot.in/)

  • The box {cannot use app in safe mode} would you like to temporarily switch, I press continue and it goes to please log in, and these two boxs go back and forth not allowing me to continue the game like farmville etc.

    the dialogue box says {we cannot continue with this app in a secure mode. Would you like to temporarily disable to an unsecured mode and you will be able to use the app at your next log in.} I push the "Continue" button, not the cancel button and it tells me to {Please log in, you are not logged in}. I will then log in and the original window as mentioned above comes back again. These two boxes go back and forth when I try to continue in any of the games on Facebook.

    Hi thanks for all the concern and replies. I've tried all that.
    I had just got it back from the shop last Friday. It was there for around two weeks. It was a faulty GPU (when you see garbled display that's consisten when booting it the GPU). I have a strong feeling it's related to the Lion install 10.7 or 10.7.1 and may be similar to reports of Mac laptops overheating. It's good the GPU is removable, it might have taken 3 week or a month if it had been the whole board.
    It's a blessing in disguise though as with all or most cases because I also got to have the LCD replaced for excessive backlight bleeding (in my opinion), the dead pixel from the previous LCD isn't there anymore (though under the glass there're some smudges but nothing crucial). The backlight bleeding is still the same though in my opinion but at least it's new.
    It's a great thing I bought Applecare. I didn't buy it for the iPhone because that's more durable (my iPhone 3G's 3 years old now and it's still solid. Although there are scratches and a crack at the back at the bottom, got sqeezed under the table I think when I sat). I think Applecare is a good recommend for things that get hot like desktop and laptop Macs(are the iOS considered Macs btw?) which are twice or thrice the price of iOS devices.
    Gbu.

  • WebLogic interrupts in two box cluster

              News group: weblogic.developer.interest.clustering
              Subject: WebLogic interrupts in two box cluster
              Hi,
              We have a production environment configured as a single cluster of four WebLogic
              servers using the Apache Proxy plugin. Two of the servers are located here and
              two are located across town (primary and backup) on Sun e10K boxes.
              In our testing environment we have a single cluster of two WebLogic servers running
              on a single box.
              For some reason when we are running in the production environment processing just
              stops (for about 33 seconds but sometimes over 2 minutes) and causes JTA timeouts.
              I have observed this during the create() of a stateless session bean, but I have
              been "told" that it happens randomly. This has NEVER happend in the test environment.
              Some of the session EJB create() methods are calling 4 other EJBs. I know that
              JNDI look ups are costly (average between 320ms and 550ms) but that doesn't get
              us to 33 seconds.
              Now for the constraints:
              We are not allowed to have an initial pool of EJBs (don't ask).
              We are not allowed to have local interfaces on the EJBs (don't ask).
              I am not allowed to see the source code (don't ask) to find out if a UserTransaction
              has been set.
              Some questions:
              If a UserTransaction has not been set, will WebLogic ALWAYS create the the other
              EJBs that the stateless session bean calls on the same server (collocated) instance
              or will they go across the wire to the next available server (because of the remote
              interfaces and the home objects having the load balancing logic)? (Note: the
              EJB descriptor may have transaction delineation defined on the EJBs participating
              in the transaction and the configuration we are using only provides round robin
              load balancing).
              Will the home objects requested by the session bean be created on the server the
              code is currently running (collocated) on or will any server with the distributed
              JNDI tree be allowed to provide the home object?
              If the above could happen, then paragraph 2 on page 4-10 of "Understanding Object
              Clustering" (Bea WebLogic Server 6.0) might come in to play where we have remote
              replicas adding to network overhead for the duration of the transaction. Since
              the processors on all the boxes appear to be more or less idle and there is loads
              of RAM available... Also I was "told" this only happens under load (100 simultaneous
              hits).
              Could we be falling into a convoying condition? Does the whole cluster stop when
              this condition happens or does just the single instance stop? If we have one
              server participating in the same transaction as another server would that stop
              the whole cluster? If we have 4 EJBs and load balancing decides all servers are
              participating in the same transaction (round robin on 4 servers gets all of them
              in the game), would that stop the whole cluster while data I/O flows across the
              wire?
              When an initial instance of an EJB is created (initial pool size), does the entire
              cluster get informed or does each server independantly manage its own pool? What
              about EJB instances when replica-aware EJBObject stubs are used. Documentation
              states that the stub is free to route any call to any server that hosts the bean,
              could this also bring more than one server into the same transaction?
              Other groups are looking into HTTP Session replication as a possible cause...
              Thanks for any thoughts,
              Ian
              

              Some results:
              The script directly targeted a single weblogic instance within the OT cluster,
              presumably taking the Alteon switch and (perhaps? probably?) the clustering out
              of the equation.
              The test was the bro regle script with 1 concurrent user (same test run in OT
              on October 14 overnight). The results below show weblogic.transaction.internal.TimedOutException
              caught by this application.
              2003-10-15 17:35:52,859
              2003-10-15 18:02:00,433
              2003-10-15 18:27:42,110
              2003-10-15 19:02:22,767
              2003-10-15 19:28:05,193
              2003-10-15 20:28:28,584
              2003-10-15 21:03:07,879
              2003-10-15 21:28:50,622
              2003-10-15 22:03:29,683
              2003-10-15 22:28:51,065
              these timeouts are falling roughly 25 minutes apart.
              Does this help at all?
              Ian
              "Ian Douglas" <[email protected]> wrote:
              >
              >Thanks,
              >
              >Will do.
              >
              >This may be OS related as we have found, that with a single automated
              >user, that
              >it interrupts every 60 minutes for the duration of some process.
              >
              >Ian
              >
              >"Sree Bodapati" <[email protected]> wrote:
              >>Take multiple threaddumps when server appears to have stopped processing.
              >>Threaddumps would tell you whats happening.
              >>
              >>
              >>
              >>
              >>"Ian Douglas" <[email protected]> wrote in message
              >>news:[email protected]...
              >>>
              >>> Any news on this one? A 30 second time out is pretty long...
              >>>
              >>> Ian
              >>>
              >>> "Ian Douglas" <[email protected]> wrote:
              >>> >
              >>> >News group: weblogic.developer.interest.clustering
              >>> >
              >>> >Subject: WebLogic interrupts in two box cluster
              >>> >
              >>> >Hi,
              >>> >
              >>> >We have a production environment configured as a single cluster of
              >>four
              >>> >WebLogic
              >>> >servers using the Apache Proxy plugin. Two of the servers are located
              >>> >here and
              >>> >two are located across town (primary and backup) on Sun e10K boxes.
              >>> >
              >>> >
              >>> >In our testing environment we have a single cluster of two WebLogic
              >>servers
              >>> >running
              >>> >on a single box.
              >>> >
              >>> >For some reason when we are running in the production environment
              >>processing
              >>> >just
              >>> >stops (for about 33 seconds but sometimes over 2 minutes) and causes
              >>> >JTA timeouts.
              >>> > I have observed this during the create() of a stateless session
              >bean,
              >>> >but I have
              >>> >been "told" that it happens randomly. This has NEVER happend in
              >the
              >>> >test environment.
              >>> >
              >>> >Some of the session EJB create() methods are calling 4 other EJBs.
              >> I
              >>> >know that
              >>> >JNDI look ups are costly (average between 320ms and 550ms) but that
              >>doesn't
              >>> >get
              >>> >us to 33 seconds.
              >>> >
              >>> >Now for the constraints:
              >>> >We are not allowed to have an initial pool of EJBs (don't ask).
              >>> >We are not allowed to have local interfaces on the EJBs (don't ask).
              >>> >
              >>> >I am not allowed to see the source code (don't ask) to find out if
              >>a
              >>> >UserTransaction
              >>> >has been set.
              >>> >
              >>> >Some questions:
              >>> >If a UserTransaction has not been set, will WebLogic ALWAYS create
              >>the
              >>> >the other
              >>> >EJBs that the stateless session bean calls on the same server
              >>(collocated)
              >>> >instance
              >>> >or will they go across the wire to the next available server (because
              >>> >of the remote
              >>> >interfaces and the home objects having the load balancing logic)?
              >> (Note:
              >>> >the
              >>> >EJB descriptor may have transaction delineation defined on the EJBs
              >>participating
              >>> >in the transaction and the configuration we are using only provides
              >>round
              >>> >robin
              >>> >load balancing).
              >>> >
              >>> >Will the home objects requested by the session bean be created on
              >>the
              >>> >server the
              >>> >code is currently running (collocated) on or will any server with
              >>the
              >>> >distributed
              >>> >JNDI tree be allowed to provide the home object?
              >>> >
              >>> >If the above could happen, then paragraph 2 on page 4-10 of
              >>"Understanding
              >>> >Object
              >>> >Clustering" (Bea WebLogic Server 6.0) might come in to play where
              >>we
              >>> >have remote
              >>> >replicas adding to network overhead for the duration of the transaction.
              >>> > Since
              >>> >the processors on all the boxes appear to be more or less idle and
              >>there
              >>> >is loads
              >>> >of RAM available... Also I was "told" this only happens under load
              >>(100
              >>> >simultaneous
              >>> >hits).
              >>> >
              >>> >Could we be falling into a convoying condition? Does the whole cluster
              >>> >stop when
              >>> >this condition happens or does just the single instance stop? If
              >>we
              >>> >have one
              >>> >server participating in the same transaction as another server would
              >>> >that stop
              >>> >the whole cluster? If we have 4 EJBs and load balancing decides
              >all
              >>> >servers are
              >>> >participating in the same transaction (round robin on 4 servers gets
              >>> >all of them
              >>> >in the game), would that stop the whole cluster while data I/O flows
              >>> >across the
              >>> >wire?
              >>> >
              >>> >When an initial instance of an EJB is created (initial pool size),
              >>does
              >>> >the entire
              >>> >cluster get informed or does each server independantly manage its
              >>own
              >>> >pool? What
              >>> >about EJB instances when replica-aware EJBObject stubs are used.
              >>Documentation
              >>> >states that the stub is free to route any call to any server that
              >>hosts
              >>> >the bean,
              >>> >could this also bring more than one server into the same transaction?
              >>> >
              >>> >Other groups are looking into HTTP Session replication as a possible
              >>> >cause...
              >>> >
              >>> >Thanks for any thoughts,
              >>> >Ian
              >>>
              >>
              >>
              >
              

  • It keeps trying to update but then says that the program is running and can't update then goes into a loop with these two boxes.

    I tried to Google a topic but when I clicked on the topic I wanted it posted a popup that said it had to update Firefox, followed immediately with a box that says it can't update firefox as it is running. These two boxes keep popping up as soon as you close the other one in one giant loop. I can only turn it off by shutting down the computer. I didn't have Firefox running when I tried to google the topic.

    If there are problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    *Trash the current Firefox application to do a clean (re-)install
    *Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • When I log onto my macbook, my user account isn't showing up. All that shows up is a gray screen with only two boxes saying "Name" and "Password". How do I fix this?

    There was one time where my wi-fi wasn't connecting so I tried to turn it back on. A window popped up but I had alrdy clicked enter before I read it, but it said something like "...will change settings, is that okay...?" And then wi-fi still would not connect. So I tried restarting my computer, but when it turned on, my user account did not show up and all there was on the screen was two boxes that asked for name and password. I was the only person using my macbook so I never set up a password for it. Has anyone had this problem? How do I fix this?

    Since I'm not in front of your computer I can't tell what you see - I can only guess and give a hint. So once again, if the disk name on your Mac is "Macintosh HD", when you boot in Recovery Mode, and start up the Terminal in "Utilities" menu, and then type in the command:
        df -k
    you should see a list of "volumes" - one of which is named "/Volumes/Macintosh HD" (but yours could be anything) and in that folder there is another folder called "Users" and in that folder is the names of the home directories of the user accounts (and the names that you can enter into the login screen) that you are looking for. So if you are not familiar with using the Terminal you should say so and I can give more details. But assuming you're OK with typing in commands to theTerminal this is what I would try:
        ls -l /Volumes/Macintosh HD/Users
    and you should see something like the following (my disk name is "Yosemite" so I typed "ls -l /Volumes/Yosemite/Users")
    ML9Book:~ xxxx$ ls -l /Volumes/Yosemite/Users
    total 0
    drwxr-xr-x+  11 Guest      _guest   374 Oct 25 19:23 Guest
    drwxr-xr-x+  33 Jack       staff   1122 Oct 24 10:49 Jack
    drwxrwxrwt   13 root       wheel    442 Dec 27  2013 Shared
    drwxr-xr-x+  38 admin      staff   1292 Oct 25 16:59 admin
    drwxr-xr-x+  15 x13        staff    510 Oct 23 22:41 x13
    drwxr-xr-x+  12 514        staff    408 Oct 23 12:24 x14
    So now reboot your mac into normal mode - and you will see the login screen with the two empty boxes.
    So the above output tells me that there are 3 users - Jack, x13 and x14 (there is always a Shared user and there might or might not be a Guest user since it depends on how your setup was setup) - and these 3 are the names that I could try and enter into the login screen (in the top or first box). You can try no password, but I don't think you can create accounts without passwords, so this will likely fail. In that case you need to reboot in recovery mode and run the Terminal command again (from the Utilities menu) and do a resetpassword command. Another window will pop up and from there you select the Volume (in my case I selected the Yosemite volume - in your case you would select the "Macintosh HD" if that is what your volume name is). Then select the user account you want to reset the password from the drop-down list of user accounts (it will show you the long and short names, and the short name is what was in the listing above from the "ls -l" command), then enter the new password in the indicated box, and then enter it again in the next box, to make sure you didn't make a typo, and enter a password hint in the last box (optional). Then click the "Save" button and you will see another dialog box pop up telling you that the password was changed but not the Keychain password (hopefully you remember this one) - click the OK button then reboot back in normal mode (click on the Apple logo in the top left corner of the screen and click on Restart).
    Does this help?

  • I am trying to install windows 7 to my Macbook pro with bootcamp but every time I open bootcamp I am only able to check the first two boxes but not the third one saying "install or remove Windows 7", any solutions ?

    Hi, I am trying to install Windows on my MacBook Pro with bootcamp. Every time I open bootcamp I am only able to check the first two boxes but not the third one saying "install or remove Windows 7". I did this before using the same computer and the same hard drive so I am not sure why this is happening now but did´t happen then. Any solutions ?

    Was your Bootcamp info.plist manipulated to change any options?

  • Click a button,a selection-screen box come out

    hi experts:
        when I click one button in the dialog screen,a selection screen come out,I can input the
    parameters.how it come true?thanks!

    this can be achieved using Sub selection screen. steps are following
    define screen fields and function keys.
    SELECTION-SCREEN FUNCTION KEY 1.
    SELECTION-SCREEN FUNCTION KEY 2.
    SELECTION-SCREEN FUNCTION KEY 3.
    define sub screen and give it a number.
    SELECTION-SCREEN BEGIN OF SCREEN 0001 AS WINDOW TITLE I000 .
    SELECTION-SCREEN BEGIN OF BLOCK L001 WITH FRAME TITLE I001 .
    PARAMETERS S001 AS CHECKBOX DEFAULT ' ' .
    PARAMETERS S002 AS CHECKBOX DEFAULT ' ' .
    PARAMETERS S003 AS CHECKBOX DEFAULT ' ' .
    PARAMETERS S004 AS CHECKBOX DEFAULT ' ' .
    PARAMETERS S005 AS CHECKBOX DEFAULT ' ' .
    PARAMETERS S006 AS CHECKBOX DEFAULT ' ' .
    PARAMETERS S007 AS CHECKBOX DEFAULT ' ' .
    SELECTION-SCREEN   END OF BLOCK L001 .
    in the At selection screen event give in the case statements your desired screen
    AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.
           WHEN 'FC01'.
          IF SY-DYNNR = 1000.
            CALL SELECTION-SCREEN 0001 .
          ELSE.
            PERFORM MARK_VARS USING 'X' 'A'.
          ENDIF.
        WHEN 'FC02'.
          IF SY-DYNNR = 1000.
            L_INTERACTIVE = RS_C_FALSE.
            SSCRFIELDS-UCOMM = 'ONLI'.
          ELSE.
    in the At selection screen ouput even give names to your function keys (Logic may be different from what i have shown)
    AT SELECTION-SCREEN OUTPUT.
      IF SY-DYNNR = 1000.
        MOVE 'Fld Selectn for Output' TO SSCRFIELDS-FUNCTXT_01.
        MOVE 'Execute in Bckgrnd' TO SSCRFIELDS-FUNCTXT_02.
        MOVE 'Execute + Debug' TO SSCRFIELDS-FUNCTXT_03.
      ELSE.
        MOVE 'Select all' TO SSCRFIELDS-FUNCTXT_01.
        MOVE 'Deselect all' TO SSCRFIELDS-FUNCTXT_02.
        MOVE 'Highlght all key figs' TO SSCRFIELDS-FUNCTXT_03.
        MOVE 'Select All Characteristics' TO SSCRFIELDS-FUNCTXT_04.
        MOVE 'Select All SID Fields' TO SSCRFIELDS-FUNCTXT_05.
      ENDIF.

  • Adding two boxes in same branch group

    Hi,
    I am new to Java3D. I want to add two boxes in same branch group at different location so that both of them are visible simultaneously. Can i achieve it?
    Thanks and regards,
    Rahul

    Thanks.
    But Still i have problem. Probably i was not clear earlier. My problem is not just to add these boxes. But in addition i want to same behaviours like Rotation, Zooming, Translation etc on all of these boxes. So that they all can be zoommed, translated, rotated by equal factor simulataneously.
    Please help me.
    Thanks lot
    Regards
    Rahul

Maybe you are looking for

  • Add Form Fields using IAC

    Hello, I like to know if anyone lately has successfully added Form Fields (AFORMAUTLib.Fields) to a PDF document using IAC in Visual Studio 2008 and Acrobat 9.3.4 Prof. In this forum it was stated that bug in "AcroForm.api/AFormAUT 1.0 Type Library/I

  • Excel 2003 Macros do not Work After Updates

    After a number of updates, Microsoft Office 2003 can not run macros. The Microsoft updates are  KB2956107, KB890830, KB2956106, and KB2984939. Installed on the machines is the compatibility pack for Office 2007. Most of the updates were applied to th

  • Party (with and with out)

    Dear all, I have two quick questions: 1)In few of our scenario's we used party and for some with out party.what is the difference. In both the cases we used both Business System and service what is the difference. for B2b Scenario's we did not use an

  • Component Portal to Portlet

    Hi: I need to develop some applications that are developed using the component portal to portlet . Are there any tools that make? Is there any documentation that can help me? Best Regards. Maria Elena

  • Collecting Email Addresses in Dreamweaver

    I NEED HELP!!!! Can anyone PLEASE tell me specifically how I can create a f orm and collect email addresses. Actually I kinda know how to create the form, but my problem is once I create it, how do I view the email addresses that have been collected?