How to tigger next screen in screen painter?

Hi friends i want to know how can i go to my next screen that is i want to know what should me my code in flow logic.
I have one screen say 1000 in which i have entered my Empid- and password then it should go to next screen say 100 where i will have
2 radio buttons after enter one say functional or technical then next screen 101 like this i want the procedure please can anybody help me in this..what should be the code in flow logic.
Helping answer will be rewarded

Hi thanks for the answer and my code is..
DATA:  EMP_ID TYPE ZRIF_TABLE-EMP_ID,
            NAME TYPE ZRIF_TABLE-NAME,
            EMP_MODULE TYPE ZRIF_TABLE-EMP_MODULE,
           DISPLAY TYPE C,
           EXIT TYPE C,
           BACK TYPE C,
           CLEAR TYPE C,
           OK_CODE LIKE SY-UCOMM.
CALLING SCREEN.
CALL SCREEN 1000.
*&      Module  STATUS_0100  OUTPUT
      text
MODULE STATUS_1000 OUTPUT.
SET PF-STATUS 'ZMENU'.
SET TITLEBAR 'ZMENU_PAINTER'.
CASE SY-UCOMM.
    WHEN 'EXIT'.
      LEAVE PROGRAM.
    WHEN 'BACK'.
      LEAVE PROGRAM.
    WHEN 'DISPLAY'.
      SELECT SINGLE NAME EMP_MODULE FROM ZRIF_TABLE
           INTO (ZRIF_TABLE-NAME, ZRIF_TABLE-EMP_MODULE)
      WHERE EMP_ID = ZRIF_TABLE-EMP_ID.
      WHEN 'CLEAR'.
      CLEAR ZRIF_TABLE.
  ENDCASE.
with the above code i am getting the output
In this where i have call my another screen(0100) ..i am not getting the right path..please can you suggest me

Similar Messages

  • How to run the query in  screen painter

    i am using the patch 36 in business one so pls give information  about 
       how to run the query in  screen painter 
    regard
      sandip adhav

    Hope u have reached Screen painter interface,
    1. Click 'Add Grid' from tool bar.
    2. Go to 'Collections' tab in 'Properties' window.
    3. Choose 'Data Tables' from the Drop down list.
    4. Click 'New' found at the bottom of the Properties Window(same window)
    5. U'll find the place to insert ur query.
    6. U can rename the table name from 'DT_0'
    7. Choose type as 'Query'
    8. Clear content from box 'Query'
    9. Enter ur query there. Dont forget to Click 'SET'
    10. Go to Preview option from tool bar.
    now ur query will be displayed as table format.
    Note: First try with simple query b4 going for linking option.
    Regards,
    Dhana.

  • How to continue the screen in Screen -painter?

    Hi friends can anybody help me out in knowing how to continue the fields in screen painter. For clear explanation i have got 20 fields to be entered in my form, but when i am going to layout of screen painter i have been able to accomadate only 12 the rest 8 i want to be in continuation.
    hope you can under stand.
    suppose if this is the layout
                                     Registration
    01. ......
    02. ,,,,,,
    12. ,,,,,,,,
    i have accomadated in one single screen
    i want to accomadate the rest 8 in continuation can i know how?
    please its urgent for me.

    hi
    increase the window size.
    regards
    sreelatha gullapalli

  • How to design select-option through screen painter

    I am new to screen painter. I want to make a screen having range of values high/low (just like select-option)......How can I do this using screen painter?

    Hi!
    Method 1
    a) Create a subscreen area in your screen layout where you want to create the select options.
    b) In the top include of  your module pool program declare a selection screen as a subscreen e.g.
           SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
                 select-options s_matnr for mara-matnr.
           SELECTION-SCREEN END OF SCREEN.
    c) In the PBO and PAI of the main screen where the select options needs to be created do a call subscreen of the above screen (100).
           CALL SUBCREEN sub_area INCLUDING    
      This call subscreen statement is necessary for transport of values between screen and program.
    Note: All validations of the selection screen fields e.g. the s_matnr field created above should be done in selection screen events like AT SELECTION-SCREEN etc and not in PAI. These selection screen validations etc should be done in the top include only.
    Method 2
    a) Create 2 separate fields in your screen layout - one for the low value and one for the high value. Insert an icon beside the high value which will call the multiple selections popup screen on user command. Use function module COMPLEX_SELECTIONS_DIALOG to achieve this.
    struc_tab_and_field-fieldname   = con_cust.      " 'KUNNR'
    struc_tab_and_field-tablename = con_kna1.     " 'KNA1'.
    CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
              EXPORTING
              TITLE                   = ' '
                text                         = g_titl1                                " 'Customers'
                tab_and_field     = struc_tab_and_field
              TABLES
                RANGE                   = rng_kunnr
              EXCEPTIONS
                NO_RANGE_TAB          = 1
                CANCELLED                    = 2
                INTERNAL_ERROR     = 3
                INVALID_FIELDNAME = 4
                OTHERS                           = 5.
    IF NOT rng_kunnr[] IS INITIAL.
             Read the very first entry of the range table and pass it to
             dynpro screen field
               READ TABLE rng_kunnr INDEX 1.
               IF sy-subrc = 0.
                  g_cust = rng_kunnr-low.
               ENDIF.
    You can use the return table rng_kunnr to populate your own internal range table with the values entered by the user. Basically here you are just simulating the work of a select-options parameter by module pool screen elements
    You can go with it also ....
    Re: Select-options in dynpro
    Regards....

  • How to freeze the entry in screen painter?

    Hi Friends i am facing one problem with my task like i am having one field called EMPID as text name and name of the INPUT/OUTPUT field is ZCOMPANY-EMPID in screen number 100.
    And the same field is copied to another screen of number 200.
    Here my requirement is when the user passes from 100 to 200 screen the EMPID entered in screen 100 should display in 200 screen it is displaying since we have used the same INPUT/OUTPUT name, but my PROBLEM is i want to freeze the field in the 200 screen i mean the user should not be able to edit empid simply it shpuld be display mode.
    Thks

    Hi,
    You can make that field non editable by two ways. One is by Static Method - changing the attributes in the ELEMENT list. Or you can change the same dynamically using the following lines of code.
    In the PBO of the screen 200, Try to write the following code.
    LOOP AT SCREEN.
      IF SCREEN-NAME = ( screen field name )
         SCREEN-INPUT = 0.
         MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Hope this will help.
    Thanks,
    Samantak.
    Rewards points for useful answers.

  • How to add new column in screen painter

    Hi
             I have try to add new column on existing screen and test screen in se51, the column is added in position correctly. But when I run program call this screen, the added column is placed as the last column.
    Please help.
    Thanks

    Thank for your replied.
              I have check the table control, it has fix column. So, I set fix column to 0 at table control but when execution by program call it's still not update what I have changed. (On test screen in se51, it come out correctly and updated)
    So, I don't know why I use program call this screen, the screen is not updated what I have try to change but, when execute in test screen it come out correctly
    PS. I have check attribute, it's numbered right.
    Please help !!
    Edited by: VerdamFK on Oct 4, 2010 8:11 AM

  • How to display contact person full screen photo in making a call or receive call

    How to display contact person full screen photo in making a call or receive call

    Apple have removed the full screen contact image calling in 7.1, they come with default icon. Hope they bring back that option in next, you can also leave feedback @http://www.apple.com/feedback/

  • How to use 'Find' menu in Screens

    Hi all,
    I wanted to know how to use 'Find' menu in screens.
    Actually I have created a screen through SE51 and used the pushbutton to assign the function 'Find' ( one with binoculars ). The screen uses a table control to bring all the data from the DB table in the PBO module. When the user uses FIND button the system should prompt a search pop up screen onto which he will enter the search parameter and when he enter that the corresponding line item should be displayed on the tablecontrol. I wanted to know what logic should be incorporated in the program if that pushbutton is used. Please reply immediately. Its urgent.
    Regards,
    Bhavani.
    Edited by: BHAVANI MADIREDDY on Apr 1, 2008 12:31 PM

    Hello,
    In the PAI under a module (user_command for example) when the user click the button you should use the command READ TABLE (if you look at the help, there's some options to do the READ dynamically - [http://help.sap.com/saphelp_nw04/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm]) to get the line index and with it you set the TOP_LINE of the table control ( tc_table-top_line = sy-index for example).
    Doing this the selected line will be the first in the table control on the next step (PAI/PBO).
    Regards,

  • How do I fix the gray screen and non responsive cursor after iMac sleeping?

    How do I fix the gray screen and non responsive cursor after iMac sleeping?

    If you're running OS X 10.8.5 or earlier, then from the menu bar, select
     ▹ System Preferences... ▹ Accessibility
    If the checkbox at the bottom marked
    Enable access for assistive devices
    is checked, uncheck it and test.
    If you're running OS X 10.9 or later, select
     ▹ System Preferences... ▹ Security & Privacy ▹ Privacy ▹ Accessibility
    If any applications are listed on the right and have a checked box next to them, uncheck all the boxes and test. You may first have to click the padlock icon in the lower left corner of the window and authenticate as an administrator to unlock the settings.

  • How much apple charge for broken screen iPhone 5

    How much charge iPhone 5 broken screen replace

    Apple reportedly now will replace the screen in an iPhone 5 for US $149. Availabllity of repair services may vary by country, and I'm not sure if other models of iPhone also can be repaired, so call Apple Support or visit an Apple Store and ask for information. For other problems Apple at this time does not at this time repair iPhones, but will replace the entire iPhone for a flat fee. If you have AppleCare+ coverage, the cost will low; in the US it's $49. If you do not have AppleCare+ on your iPhone, see the Service Pricing section here:
    http://www.apple.com/support/iphone/service/faq/
    There are independent iPhone repair services that may be able to do the repair for less than Apple's out-of-warranty charge. Do a web search for "iPhone repair". Note, though, that if you elect to have the iPhone serviced by an unauthorized shop, all further warranty and support from Apple will be voided.
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.
    Regards.

  • How do i get the black screen to go back on when im on a call to stop me cutting them on? x

    When i am on a call, my iphone 4 used to black when i put my ear to the phone, this mechanism was to stop you touching buttons on your touch screen key pad, however mine no longer does this and i keep cutting people off on the touch screen how do i get the black screen back on when im on a call? x

    I'm not sure what you are referring about.
    Do you mean the orange Firefox menu button?
    In current Firefox releases (29 and later) the orange Firefox menu button has been replaced by the three-bar Firefox Menu button at the far right end of the Navigation Toolbar and this button is always visible whether the Menu Bar is visible or hidden.
    You can no longer hide the Navigation Toolbar.
    *There is a star like button next to the search bar on the Navigation Toolbar to bookmark the current web page and a "Show your bookmarks" button next to it to open the Bookmarks in a drop down menu.
    *You can find "Show All Bookmarks" to open the Bookmarks Manager (Library) at near the top of the drop-down list.
    *If you bookmark a page then "Bookmark This Page" in the Bookmarks menu as well as the tooltip of the star changes to "Edit This Bookmark".
    *You can toggle the title bar on/off via the "Title Bar" button at the bottom left in the Customize palette window.
    You can still have the Menu Bar visible via the right-click context menu of a toolbar to have menus like the File menu with Print (Ctrl+P) and Print Preview and the Bookmarks and History and Tools menus.
    See also:
    *https://support.mozilla.org/kb/learn-more-about-the-design-of-new-firefox
    *https://support.mozilla.org/kb/common-questions-after-updating-to-new-firefox

  • How do you create a slpit screen

    how do you create a split screen to use two document opened at the same time?

    Hi iKappa,
    Open the two documents and drag them by their title bars next to each other on the screen.
    Regards,
    Ian.

  • The bookmarks menu is next to the screen when I open Mozilla Firefox and I want to get rid of it.

    When I was using the computer a couple of days ago, I pushed some random keys on accident on a list of all my bookmarks showed up next to the screen. I would like to get rid of it but cannot figure out how.

    You can open the <b>about:config</b> page via the location bar and do a search for <i>jzip</i> via the Filter at the top of the about:config page.<br />
    You can reset all <i>jzip</i> related prefs that appear bold (user set) via the right-click context menu to their default values.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • Development Steps for addon after design the screen in screen painter

    Dear All,
               I am new to SDK Development.Now am developing an screen for Sub contracting.Basically am not a B1 technical conultant but I have some knowledge in development. i was developed a screen in screen painter but i dont know how to intergrate and develop the coding in VS2005.
    Regards,
    Vijay

    Hi
    There are many samples in SDK folder in C driveProgram filesSAPSAp business one SDKSamples
    Have a look at them they will give you a good start..
    Thanks

  • How to define our own selection screen for logical database  in abap-hr?

    Hi Friends,
    Can u please help me
    How to define your own selection screens for  logical database.
    we use to do like(goto->attributes-HRReportcatagerious ).but How to desin using  customer table like t599c, t599f and how to add to my logical database?
    Thanks in advance
    charan

    check out this online help
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dba65c35c111d1829f0000e829fbfe/frameset.htm
    Regards
    Raja

Maybe you are looking for

  • Update multiple iphones to 5.1.1 on 1 iMac.

    Update multiple iphones to 5.1.1 on one iMac. My daughter runs her business email through MobileMe. She updated to iCloud and no longer receives mail on her iPhone. We understand that she needs to upgrade to iOS 5.1.1 is this correct? My daughter's M

  • Identifying which library you are in

    HI All I run two libraries on my windows 7  pc, all was well with this until Apple upgraded..yuk!  In the old, and Oh so much better, version of itunes you could see which library you were working in as its name was at the top of the screen.  Not any

  • Can't connect itunes to my remote speakers thru airport express

    After having updated the latest itunes 7.3 my itunes does not recognize anymore my remote speakers and does not connect to them. Have resetted my airport, to no avail. still, itunes does not recognize it. please advise what to do as it is very annoyi

  • Like operator  query

    i want example about like operator AND N.user_je_category_name LIKE'PAS_%' and i want to said AND N.user_je_category_name LIKE'PAS_%' and 'BS_'% HOW MAKE THAT

  • Final Output DILEMMAS!!!!

    Hi everyone! I'm about to finish a rough cut of about 90minutes video and I have a couple of DILEMMAS!!! Please HELP. original footage was shot HDV 16:9 NTSC (with a Sony HDR FX1), then imported in SD for sake of space and render time. Timeline setti