Hiding a Complete Subscreen in a main Screen

HI All,
         I have a req in which there is 5 subscreens present in one main screen. My issue is i want to hide a complete Subscreen based on 1checkbox present in that mainscreen itself.
After checking that checkbox user will be pressing ENTER. After that i need to hide some of the subscreens.
Thanks in advance,
Shyam

HI,
You can check for the subscreen_area that you use to put the subscreen and in the PBO of the main screen you can avoid calling this subscreen or you can hide the subscreen area by making SCREEN-ACTIVE=0 for the subscreen area.
For the check box you can set some fcode and in the PAI you can set some global flag which you need to check in PBO and then deactive the subscreen area.
PAI module.
if ok_code is <your check box>.
if check_box = 'X'.
global_flag = 'X'.
else.
clear global_flag.
endif.
PBO Module.
if global_flag = 'X'.
loop at screen.
if screen-name = 'SUBSCREEN_AREA'.
screen-active= 0.
modify screen.
endloop.
endif.
Regards,
Sesh

Similar Messages

  • Saving Data from subscreen to main screen on a click of a button

    Hi,
    I have a main screen which has multiple subscreens attached to it.
    My problem is when ever i enter the data on the screen and execute a button, the data on the screen is not being saved. what i observed is when ever there is a button press, the data is cleared. i have checked the same in debugging mode as well still then i am not able to see the data which i am trying to store.
    I have attached the code, please help me in this regards,
    Thanks,
    Shanky.
    Main screen:-
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_9020.
      MODULE MZO_DISABLETABSTRIP.
      MODULE CHECK_MANDATORY_DISABLE.
      CALL SUBSCREEN SUB1 INCLUDING SY-REPID '9030'.
      CALL SUBSCREEN SUB2 INCLUDING SY-REPID '9050'.
      CALL SUBSCREEN SUB3 INCLUDING SY-REPID '9060'.
      CALL SUBSCREEN SUB4 INCLUDING SY-REPID '9080'.
      CALL SUBSCREEN SUB5 INCLUDING SY-REPID '9090'.
      CALL SUBSCREEN SUB6 INCLUDING SY-REPID '9070'.
    PROCESS AFTER INPUT.
    MODULE MZI_USER_COMMAND_9020.
    CALL SUBSCREEN SUB1.
    CALL SUBSCREEN SUB2.
    CALL SUBSCREEN SUB3.
    CALL SUBSCREEN SUB4.
    CALL SUBSCREEN SUB5.
    CALL SUBSCREEN SUB6.
    Subscreen - 1
    PROCESS BEFORE OUTPUT.
    MODULE MZO_STATUS_9030.
      MODULE MZO_INITIALIZATION_9030.
    module mzo_routes_display.
    PROCESS AFTER INPUT.
      MODULE MZI_USER_COMMAND_9030.
    PROCESS ON VALUE-REQUEST.
      FIELD ZTTT001-ZFACTNAME MODULE MZV_ZFACTNAME.
      FIELD ZTTT001-ZTTBASICOBJI1 MODULE MZV_ZTTBASICOBJI1.
      FIELD ZTTT001-ZTTBASICOBJI2 MODULE MZV_ZTTBASICOBJI2.
      FIELD ZTTT001-ZTTBASICOBJI3 MODULE MZV_ZTTBASICOBJI3.
      FIELD ZTTT001-ZTTBASICOBJI4 MODULE MZV_ZTTBASICOBJI4.
      FIELD ZTTT001-ZTTBASICOBJI5 MODULE MZV_ZTTBASICOBJI5.
      FIELD ZTTT001-ZTTBASICOBJI6 MODULE MZV_ZTTBASICOBJI6.
      FIELD ZTTT001-ZTTBASICOBJI7 MODULE MZV_ZTTBASICOBJI7.
      FIELD ZTTT001-ZTTBASICOBJI8 MODULE MZV_ZTTBASICOBJI8.
      FIELD ZTTT001-ZSEASONALPROD MODULE MZV_ZSEASONALPROD.
      FIELD ZTTT001-ZROUTEID MODULE MZV_ZROUTE.
      FIELD ZTTT001-ZFPLANTS MODULE MZV_ZPLANTS.
      FIELD ZTTT001-ZTOPLANTS MODULE MZV_ZTOPLANTS.
      FIELD ZTTT001-ZSTACKCONFIG MODULE MZV_ZSTACKCONFIG.
    G_OKCODE2 = SY-UCOMM.
      CASE G_OKCODE2.
        WHEN 'SAVE'.
          " Write code for save as draft version and saving the existing data.
          PERFORM SAVE_AS_DRAFT_VERSION.
        WHEN 'COMP'.
          ZTTT001-ZDOFCOMMENCT = SY-DATUM.
          PERFORM SAVE_DATA_ORIGINATOR.
          PERFORM F_UPDATENWORKFLOW. " Update the database table and initiate workflow.
          LEAVE PROGRAM.
       WHEN 'ENTER'.
         PERFORM save_temporary_data.
         LEAVE TO SCREEN 9020.
        WHEN 'OTHERS'.
    BREAK-POINT.
      PERFORM TT_GENERATE_NUMBER.
      Wa_ZTTT001-MATNR = ZTTT001-MATNR.
      Wa_ZTTT001-ZTTNO = ZTTT001-ZTTNO.
      Wa_ZTTT001-ZORGNAME = ZTTT001-ZORGNAME.
      Wa_ZTTT001-ZORGCONT = WA_ITZTTT001-ZORGCONT.
      Wa_ZTTT001-ZDECNTNAME = ZTTT001-ZDECNTNAME.
      Wa_ZTTT001-ZFACTNAME = ZTTT001-ZFACTNAME.
      Wa_ZTTT001-ZTTCREDATS = ZTTT001-ZTTCREDATS.
      Wa_ZTTT001-ZTTBASICOBJ1 = ZTTT001-ZTTBASICOBJ1.
      Wa_ZTTT001-ZTTBASICOBJ2 = ZTTT001-ZTTBASICOBJ2.
      Wa_ZTTT001-ZTTBASICOBJ3 = ZTTT001-ZTTBASICOBJ3.
      Wa_ZTTT001-ZTTBASICOBJ4 = ZTTT001-ZTTBASICOBJ4.
      Wa_ZTTT001-ZTTBASICOBJ5 = ZTTT001-ZTTBASICOBJ5.
      Wa_ZTTT001-ZTTBASICOBJ6 = ZTTT001-ZTTBASICOBJ6.
      Wa_ZTTT001-ZTTBASICOBJ7 = ZTTT001-ZTTBASICOBJ7.
      Wa_ZTTT001-ZTTBASICOBJ8 = ZTTT001-ZTTBASICOBJ8.
      Wa_ZTTT001-ZDOFCOMMENCT = ZTTT001-ZDOFCOMMENCT .
      Wa_ZTTT001-ZSEAARSHIPTEXT = ZTTT001-ZSEAARSHIPTEXT.
      Wa_ZTTT001-ZPRODHIERARCHY = ZTTT001-ZPRODHIERARCHY.
      Wa_ZTTT001-ZNEWPRODDEV = ZTTT001-ZNEWPRODDEV.
      Wa_ZTTT001-ZPRODNAME = ZTTT001-ZPRODNAME.
      Wa_ZTTT001-ZNOFPALLETS = ZTTT001-ZNOFPALLETS.
      Wa_ZTTT001-ZSTACKCONFIG = ZTTT001-ZSTACKCONFIG.
      Wa_ZTTT001-ZRATFTT1 = ZTTT001-ZRATFTT1.
      Wa_ZTTT001-ZRATFTT2 = ZTTT001-ZRATFTT2.
      Wa_ZTTT001-ZCOMMENTS = ZTTT001-ZCOMMENTS.
      Wa_ZTTT001-ZROUTEID = ZTTT001-ZROUTEID.
      Wa_ZTTT001-ZTOPLANTS = ZTTT001-ZTOPLANTS.
      Wa_ZTTT001-ZFPLANTS = ZTTT001-ZFPLANTS.
      Wa_ZTTT001-ZSHIPMENTNO = ZTTT001-ZSHIPMENTNO.
      Wa_ZTTT001-ZDELIVERY = ZTTT001-ZDELIVERY.
      Wa_ZTTT001-ZTRAILER = ZTTT001-ZTRAILER .
      Wa_ZTTT001-ZPALLET = ZTTT001-ZPALLET.
      Wa_ZTTT001-ZSTONUM = ZTTT001-ZSTONUM.
      Wa_ZTTT001-ZSTATORG = 'Complete Version'.
      MOVE Wa_ZTTT001 TO ZTTT001.
      MODIFY ZTTT001 FROM Wa_ZTTT001.
      COMMIT WORK.
    endform.

    Let's see... if you call the subscreen9030  after 9020 PBO, then in the 9020 PAI you call it again, and the PBO for 9030 initializes the data, didn't you just wipe out what you have entered?

  • Selection screen as subscreen in module pool main screen

    hello
    i having problem with a module pool  and a selection screen subscreen , i have my main screen 100 in my module pool
    i create a sub screen area , then in my top include i define a seleccion screen as subscreen  150
    i define some paramets and select-options ( for the select-options feature is because i choose use the subscreen )
    so far here is OK , the problem is when i fill the subscreen data and press a pushbutton define in the main screen ( 100 )
    the field are getting cleared ( BTW i call the subscreen in the PBO of the main screen ( 100 ) using call SUBSCREEN SUB_AREA INCLUDING SY-REPID '150'. ) so my question is how i can do for save the data filled in the subscreen ?
    thanks

    i find the solution of my own question:
    in the first line of the PAI event of the main screen ( where you call the subscreen ) need add 'call subscreen SUB_AREA_NAME_HERE.

  • How to save three table control in subscreen from main screen

    hi All,
    I have three table control in subscreen and i want to save the content of all the table control from the save button of Main screen how can i do it.
    Thanks
    Narendra Vikram Vishwakarma

    hi
    in main screen PAI
    when 'SAVE'
    write the code here to save it.
    thanks

  • Call subscreen from main screen

    Dear all,
    I have a subscreen and from that subscreen i am calling another normal screen using 'call screen' statement. After doing some manipulation in the normal screen i want to go back to the subscreen on clicking 'BACK' button. i tried 'leave to screen' and 'call screen' in PAI of normal screen but it is not working. how to come back to the subscreen again?
    Thanks in advance,
    Aswin.

    Dear Friend,
    You include a subscreen screen using the CALL SUBSCREEN statement in the flow logic of the main screen.
    To include a subscreen screen in the subscreen area of the main screen and call its PBO flow logic, use the following statement in the PBO event of the main screen:
    This statement assigns the subscreen screen with number <dynp> to the subscreen area called <area>. With <prog> you must specify the ABAP program in which the subscreen screen is defined. If it does not find a corresponding subscreen screen, a runtime error occurs. The PBO flow logic of the subscreen screen is also included at the same point. This can call PBO modules of the ABAP program in which the subscreen screen is defined. At the end of the subscreen PBO, the global fields from the program are passed to any identically-named screen fields in the subscreen screen. The PBO flow logic of the subscreen screen can itself include further subscreens.
    The name <area> of the subscreen area must be entered directly without inverted commas. You can specify the names <prog> and <dynp> either as literals or variables. If you use variables, you must declare and fill identically-named variables in the ABAP program. The screen number <dynp> must be 4 characters long. If you do not assign a subscreen screen to an area, it remains empty.
    PROCESS BEFORE OUTPUT.
      CALL SUBSCREEN <area> INCLUDING <prog> <dynp>.
    find the Below Example Code.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: number1(4) TYPE n VALUE '0110',
          number2(4) TYPE n VALUE '0130',
          field(10) TYPE c, field1(10) TYPE c, field2(10) TYPE c.
    CALL SCREEN 100.
    MODULE status_100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    MODULE fill_0110 OUTPUT.
      field = 'Eingabe 1'(001).
    ENDMODULE.
    MODULE fill_0120 OUTPUT.
      field = field1.
    ENDMODULE.
    MODULE fill_0130 OUTPUT.
      field = 'Eingabe 2'(002).
    ENDMODULE.
    MODULE fill_0140 OUTPUT.
      field = field2.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE save_ok INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
    ENDMODULE.
    MODULE user_command_0110 INPUT.
      IF save_ok = 'OK1'.
        number1 = '0120'.
        field1 = field.
        CLEAR field.
      ENDIF.
    ENDMODULE.
    MODULE user_command_0130 INPUT.
      IF save_ok = 'OK2'.
        number2 = '0140'.
        field2 = field.
        CLEAR field.
      ENDIF.
    ENDMODULE.
    MODULE user_command_100 INPUT.
      CASE save_ok.
        WHEN 'SUB1'.
          number1 = '0110'.
        WHEN 'SUB2'.
          number1 = '0120'.
          CLEAR field1.
        WHEN 'SUB3'.
          number2 = '0130'.
        WHEN 'SUB4'.
          number2 = '0140'.
          CLEAR field2.
      ENDCASE.
    ENDMODULE.
    The screen flow logic for screen 100 is as follows:
    PROCESS BEFORE OUTPUT.
      MODULE status_100.
      CALL SUBSCREEN: area1 INCLUDING sy-repid number1,
                      area2 INCLUDING sy-repid number2.
    PROCESS AFTER INPUT.
      MODULE cancel AT EXIT-COMMAND.
      MODULE save_ok.
      CALL SUBSCREEN: area1,
                      area2.
      MODULE user_command_100.
    The screen flow logic of subscreen screens 110 and 130 is:
    PROCESS BEFORE OUTPUT.
      MODULE fill_0110|0130.
    PROCESS AFTER INPUT.
      MODULE user_command_0110|0130.
    The screen flow logic of subscreen screens 120 and 140 is:
    PROCESS BEFORE OUTPUT.
      MODULE fill_0120|0150.
    PROCESS AFTER INPUT.
    When you run the program, a screen appears on which subscreens 110 and 130 are displayed. The pushbuttons on the main screen allow you to choose between two subscreen screens for each screen area. The pushbuttons on the subscreens allow you to transfer the data from subscreens 110 and 130 to subscreens 120 and 140.
    Since the same field name FIELD is used on all subscreens, the identically-named ABAP field is transferred more than once in each PBO and PAI event of the main screen. For this reason, the values have to be stored in the auxiliary fields FIELD1 and FIELD2 in the ABAP program.
    The pushbuttons on the subscreen screens have different function codes, and they are handled normally in an ABAP field. If the function codes had had the same names, it would again have been necessary to use auxiliary fields.

  • Keypad freezing and unlock screen freezing also complete freezing in texts and Internet and then kicking me back to main screen

    The keypad an unlock screen will freeze completely and I have to turn off my phone to unfreeze also when in a text or on the Internet it will freeze and kick me out of what I am in and go to the main screen. This happens multiple times a day an the phone is brand new. It's completely updated and I exit out of running apps all the time and hook I up to iTunes

    Try to reset the device by pressing the Sleep/Wake button and Home Button at the same time for ten seconds until the Apple Logo appears. Note: No data will be lost

  • Calling the subscreen into main screen

    Hi Guru's,
          I am having a main screen, which holds 2 radio buttons.
          If I select one radio button it has to call one table control, if I select 2nd radio button it has to call different table control.
          For this I have created two subscreens, each one holds a table control.
    based on the selection of radio button I have to call these subscreens in to the main screen.
       Please help me how to call the subscreen into main screen.

    There is no help text for this dump                                         
    Either the text was inadvertently deleted or the release of                 
    the kernel differs from the release of the database                         
    Refer to the Note system for further information on            this dump.                                                                               
    000160           %_archive TYPE arc_params,                                     
    000170         END   OF COMMON PART.                                            
    000180   *                                                                      
    000190   FIELD-SYMBOLS: <%_1>   %_PREDEFINED.                                   
    000200                                                                          
    000210   DATA: %_repid     TYPE syst-repid   %_PREDEFINED,                      
    000220         %_viaselscr TYPE x VALUE '04' %_PREDEFINED.                      
    000230                                                                          
    000240   SYSTEM-EXIT.                                                           
    000250   PERFORM (sy-xform) IN PROGRAM (sy-xprog).                              
    000260                                                                          
    000270   * Nach Laden des Dynpros                                               
    000280   MODULE %_ctl_init OUTPUT.                                              
    000290     %_repid = sy-repid.                                                  
    000300     PERFORM %_ctl_init IN PROGRAM sapmssyd USING %_repid IF FOUND.       
         >   ENDMODULE.                                                             
    000320                                                                          
    000330   * Um DCO                                                               
    000340   MODULE %_ctl_output OUTPUT.                                            
    000350     %_repid = sy-repid.                                                  
    000360     PERFORM %_ctl_output IN PROGRAM sapmssyd USING %_repid IF FOUND.     
    000370   ENDMODULE.                                                             
    000380                                                                          
    000390   * Um DCI                                                               
    000400   MODULE %_ctl_input INPUT.                                              
    000410     %_repid = sy-repid.                                                  
    000420     PERFORM %_ctl_input IN PROGRAM sapmssyd USING %_repid IF FOUND.      
    000430   ENDMODULE.                                                             
    000440                                                                          
    000450   * Erstes Modul in PAI                                                  
    000460   MODULE %_ctl_pai INPUT.                                                
    000470     %_repid = sy-repid.                                                  
    000480     PERFORM %_ctl_pai IN PROGRAM sapmssyd USING %_repid IF FOUND.        
    000490   ENDMODULE.

  • I have updated Firefox to 8.0.1 but the main screen still says " You're not on the latest version of Firefox. Upgrade today to get the best of the Web!" What is the problem?

    I downloaded Firefox Setup 8.0.1.exe from the website to my desktop and opened it as an administrator. The available choice (once opened) was to upgrade. When the process was complete my version of Firefox was identified as 8.0.1 but the main screen still said - "You're not on the latest version of Firefox. Upgrade today to get the best of the Web!"

    This - http://www.google.com/firefox - is the old Firefox Start Page used by the Firefox 3.6 and earlier versions of Firefox, I don't think it is being maintained.
    Starting with the Firefox 4 version, Firefox is using a "local" Start Page with the address of '''about:home'''. It looks similar to the old Start Page, but it isn't exactly the same.

  • I recently did the iOS 7.0.2 update, now I'm unable to purchase apps. "App could not be purchased at this time. Please try again later. ". I have tried a few of the suggestions and nothing has worked. Reset,change auto lock time on main screen, now what??

    I recently did the iOS 7.0.2 update, now I'm unable to purchase apps. "App could not be purchased at this time. Please try again later. ". I have tried a few of the suggestions and nothing has worked. Reset,change auto lock time on main screen, change language setting. Now what???

    This sorted it for me:
    Backup your iPhone to iCloud (I believe backing up to iTunes will work too). Now go to "Settings --> General --> Reset --> Erase All Content and Settings" to completely restore your iPhone to factory settings. Assuming you've backed up to iCloud, you'll be asked when setting up your iPhone if you want to restore from an iCloud backup. Choose that option and once your iPhone has restored itself from your backup, this annoying problem will finally be gone! (was for me anyway).
    To restore from an iTunes backup, connect your iPhone to your computer, load iTunes. Click the File menu and select Devices > Restore from Back up.

  • Hi, i am having a problem in my ipad 2 , it is not showing main screen just showing a black blank screen in which downloading icon is only shwn which is continously and when i connect to itunes via windows 7 it showing this error (0xE8000065) can any one

    hi, i am having a problem in my ipad 2 , it is not showing main screen just showing a black blank screen in which downloading icon is only shwn which is continously and when i connect to itunes via windows 7 it showing this error (0xE8000065) can any one

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    Finally, if the Restore doesn't work, let the battery drain completely.  Then recharge for at least an hour and Restore again.

  • Thunderbird **Main Screen** Font is WAY TOO small - and there are no provisions to change that text size!

    I see lots and lots of complaints but NO suitable answer! Most answers don't even answer the question but instead tell how to increase MESSAGE font size - not the main screen "message list". Suggestions to change screen resolution are common but are ludicrous. One would have to change resolution every time they went in or out of Thunderbird! CTRL+ is also suggested but does not work on the message list. Creating and inserting CSS into the profile is a ridiculous suggestion for most users. And changing advanced settings is only an option for a guru - from my experience less than 10% of the folks I know would even look at the advanced settings - and less than 10% of those few would actually attempt such changes. This has been an ongoing complaint for a looong time.
    It's time someone stepped up to the plate and provided a reasonable method of changing the size of the text on this screen.
    Or do you want to limit you users to only programmer types?

    I have recently made the switch in the last week to Thunderbird from Apple Mail. I have been a Firefox user for many years. Near enough from the beginning. So far I am impressed with Thunderbird but it is lacking something that I don't get with Firefox. Font size is a big issue for me too and it's straining my already short sighted and possibly making (damaging) my eyesight more by using Thunderbird.
    Though I agree with everything you are saying. I am one of those users who would prefer to change things within thunderbird itself rather than go and install another third party addon. I by no means am a guru but I have a fairly good understanding of things and would like to learn more about the about:config side of things treading carefully. I have tweaked things in Firefox this way. and disabled some items for security reasons. I am having difficulty finding info within the Mozilla site on this side of things and have yet to go down the search engine route for research into this.
    I would like to change not only the main message list as you suggest but also the From, Subject, Reply To, To and Route content along with the Reply, Forward, Archive btns along with any other content etc, above the main message content. As well as my folders.
    I feel Thunderbird is lacking accessibility features for those with bad vision or using smaller screen sizes. What I would like is a + and - with percentage btn like in Firefox that zooms in and out the complete page in a more responsive web like way. This would greatly improve things for many users. I'm sorry Mozilla but being able to zoom in and out with a keyboard shortcut in the main message content is not good enough.

  • Using Cap6, need to create menu screen that allows user to click a button, branch to other screens, and return to main menu. When returning to the main screen the button that was clicked will be grayed out or inactive.  How do I do this?  I created image

    I am trying to emulate a piece of equipment.  I need the user to be able to click on specific buttons that will take the user to another screen(s).  After viewing those screens the user will be directed back to the main screen where the user would know which buttons had been pressed and which still needed to be pressed.  I create image buttons with the 3 states - that worked except when the user returns the slide is reset and so the user does not see the 3rd state of the button.  How can I get that 3rd state to stay after user returns to the main screen? 

    Hi Elizabeth,
    Since I just did this morning what you are currently attempting to do, I thought I'd share my method.  I must provide a disclaimer and tell you that I am not an expert in Captivate advanced actions--like you, I am still figuring them out.  However, I am happy to share here anything I have learned thus far.
    First, here is what my initial slide looks like (see interaction slide below).  I created all of the icons (including the 'grayed out' icon on the second screenshot) in a few minutes using Adobe Illustrator. The icons have been imported as custom multi-state buttons so that I could have the desired effect when the user hovers over the image--the yellow 'explore' flag appears only when the mouse is over the icon. When the learner click either image, they are sent to the corresponding slide.  Once both slides are viewed, a 'continue' button will appear at the base of the screen (something I've not figured out--I sent an email to Lieve begging for some guidance). 
    The initial slide (interaction slide):
    Second, here is a depiction of what happens when the learner returns to the interactive slide from the content slide (see image below):  Once the learner visits the 'Battery Content' slide and then returns to the interaction slide, the images have changed.  The multi-state button is hidden (through the advanced action), the replacement image (the image with the completed banner over it) is shown, and a hidden click box to allow the user to return to the previously visited page (just in case they desire to do that) is "shown" to allow navigation since the button is no longer there (because it is magically hidden).
    Content Slide 1:
    Remember, there may be an easier way to do this in Captivate.  I am using Cp6 for this module.
    1. I created two user variables as follows
    Name: v_batteryExplore
    Value: 0
    Name: v_fuelExplore
    Value: 0
    2. I created an advanced action for each as shown below (showing only one--duplicate the first and change the names to match the content):
    Credit: I learned these steps from @Lilibiri and Dr. Pooja Jaisingh!
    I have also noticed that it matters where the buttons are located on the timeline.  It seems best to have buttons above all other content.  Not sure why, but I have had images not appear when I have not done this.
    And the last step you do not want to forget; you need to remember to tell Captivate to use the action.
    As a final note, remember that the elements you do not want to appear on the initial screen must not be initially visible.  Make sure to set them to invisible by removing the checkmark in the 'Visible in output' box located next to the button name.  In my case, the image of the completed battery and the invisible button to allow a revisit of content was initially hidden.  Here is a final screenshot of my timeline for this interaction.  I hope this information helps you!

  • Main screen OFF, while External Screen ON

    Hi,
    How can I turn my iMac's main screen completely OFF, when I'm watching a movie on my external 1080p TV, so the iMac won't dim annoyingly next to it?
    please skip "cover with", "set background", "lower brightness", "turn iMac", "crackopen iMac" and "why do you get an iMac if.." answers,
    I'd like the main screen absolutely OFF, while the stuff runs on the external screen..
    there has to be a solution for this basic function in OSX, it's 4-5 clicks in Windows, but I'm an Apple newbie..
    Thanks in advance for your answers!
    Steve

    No you can not just turn off the iMac's display.
    Everyone here in the Forum is a Mac user just like you, if you are annoyed or discontented please contact Apple > http://www.apple.com/contact/
    There is a third party Utility called Shades that will independently dim either Display to black in Extended Desktop Mode. > http://www.versiontracker.com/dyn/moreinfo/macosx/31515

  • APO main screen after login

    Hi all,
    I understand APO is  diff. from R/3 .If so,does SAP APO menu has only functionality in APO, or if the main screen after login has all modules (HR accounting etc)?
    Thanks.

    Somnath
    Doesn't SAP Marketing manage to confuse everyone, even those who have been using it for 10 years or more!
    Just to help clarify for Sona:
    Supply Chain Management (or SAP SCM) is split into three parts:
    Planning: which is mainly what us older consultants refer to as SAP APO
    Execution: Mostly the ECC part and includes what used to be referred to in modular terms as SD, MM, PP,etc
    Collaboration: The old ITS server web-portal stuff with suppliers and customers
    The term SCM covers all of the above but requires several different servers and systems to give a complete solution.
    Have a look at the SAP website to give you an overview of how this all fits together.
    [SAP SCM Website|http://www.sap.com/solutions/business-suite/scm/index.epx]
    Regards
    Ian

  • Subscreen Area into a Screen.

    Hi,
    i have a subscreen into a screen. How can i call a transaction or a program into subscreen into screen?
    Can somebody help me please?
    Thanks.

    hi,
    In the main screen in which u want to display two subscreens just add this :
    In PBO of main screen
    CALL SUBSCREEN sub1 INCLUDING SY_REPID 'pie chart screen no'.
    CALL SUBSCREEN sub2 INCLUDING SY-REPID 'bar grph screen no'.
    In PAI of main screen
    CALL SUBSCREEN sub1.
    CALL SUBSCREEN sub2.
    Regards,
    sravan

Maybe you are looking for

  • Powerbook 520c no longer boots?

    Hi, I recently got hold of a PB520c (System 7.1 installed.) Everything booted fine to start with, but now something seems to have gone wrong. When I try to boot it I get the Mac logo for about half a second, then the screen flickers and an picture of

  • GW7 in mixed enviroment - NW and SLES

    Hi All, I might be crazy - but I could've sworn that I read that if WebAccess was run on SLES, then all your POAs must run on SLES. Is this the case? -or- am I confusing this with NetStorage? Thanks, Matt

  • Best way to handle session timeout

    Hello All, oracle 11g, Apex ver 3.1.2 I am bit confused about the sessoin handling mecahnism for the users . Which is the best way to handle session for the users is it programatically or by DBA admin level. What are the pros and cons going DBA Level

  • Moving pins in Place

    In Info map, click on the pin does NOT change the color. I can move it, but it does not stay moved. In full pane Places map, the pin changes color to yellow, but can not be moved. What's up?

  • Exp imp - 10.2.0.1 - 10.2.0.4

    Hello, i want to ask if it is possible to export schema from Oracle DB 10.2.0.1 using exp utility and import it using imp into another Oracle DB 10.2.0.4? Do I have to run some upgrade scripts? What is the best procedure to accomplish this? Thank you