Calling one screen to anther

Hello Experts,
i created 2 screens,in my code i called the first screen like
CALL SCREEN '1000' STARTING AT 10 10
ENDING AT 70 15.
actually the requirement is to disable the first screen and call the second screen.
some conditon check
i write syntax like : leave to screen 2000.
But i am getting second screen size same as the  first screen size .(Like STARTING AT 10 10 ENDING AT 70 15.)
but the requirement is the second screen size may be bigger than first screen..So how can i call the second screen.
If i call second screen  : CALL SCREEN '2000' STARTING AT 20 20 ENDING AT 90 30.
The First Screen(1000) is not disabled.
Only if i call LEAVE to SCREEN '2000' . the first screen will be disabled(not shown)
So how to call the  second screen.
Thanks,
A.Sri.

In a report program this is possible as follows:
START-OF-SELECTION.
  IF my_cond is TRUE.
    CALL SCREEN 2000.
else.
    CALL SCREEN 1000.
  endif.
You would created your screens either with Screen Painter or within the report program if selection parameters are required.
If you are using Dialog Module method, you must create 2 seperate Tran Codes.  One will use start screen of 1000, the other would
start with screen 2000.  Using this method you could have a report program perform the condition testing prior to the call.
Create a 3rd transaction to call the REPORT program.
START-OF-SELECTION.
  IF my_cond is TRUE.
    CALL TRANSACTION 'SCR2'.
else.
    CALL TRANSACTION 'SCR1'.
  endif.

Similar Messages

  • Module pool ( call multiple screens )

    hi abapers,
    in module pool program ,
    iam call one screen  into another screen .
    ex : screen no . 100
           iam designed table control  with some column  fields .
    iam call one of column field of table control into another screen,
    at that time last record value of that field will comes to the other screen.
    but i want, what of the selected value of field value comes to the other call screen number.

    Hi Raj,
    Use  GET CURSOR FIELD FNAME  VALUE FVAL.
    Whis is a syntax for system can identify yhe record i.e we can able to select one record from screen 100 is transferred to screen 120.
    FNAME ---> Field Name
    FVAL----->Value Which is selected from that Value (screen 100)..
    Regards
    Ranga

  • One screen presentation problem on calls pass through cube

    hello all,
    may I have your advices about following problem;
    this is flow diagram:  cts codec (site A)  --  >>  cube  -->> cts codec  (site B) 
    if the codec in the site B is one screen as cts 1100 the presentation cant be shared bidirectional.
    however if it is 3 screen as cts 3010 the presentation works fine.
    this is the part of config:
    voice service voip
     ip address trusted list
      ipv4 X.X.X.X
      ipv4 X.X.X.X
     rtp-ssrc multiplex
     address-hiding
     allow-connections sip to sip
     redirect ip2ip
     fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback none
     sip
      session transport tcp
      rel1xx disable
      header-passing
      early-offer forced
      midcall-signaling passthru
      pass-thru headers unsupp
      pass-thru content sdp
      sip-profiles 1
      copy-list 1
    voice class codec 1
     codec preference 1 aacld profile 1
     codec preference 2 g722-64
     codec preference 3 g711ulaw
     video codec h263+
     video codec h264 profile 2
     video codec mpeg4
    voice class sip-profiles 1
     request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=3)" u01 
     request INVITE sip-header Contact modify "$" "\u01" 
    dial-peer voice X voip
     destination-pattern X...
     video codec h264 profile 2
     rtp payload-type cisco-codec-fax-ack 126
     rtp payload-type cisco-codec-fax-ind 110
     rtp payload-type cisco-codec-aacld 96
     rtp payload-type cisco-codec-video-h264 112
     session protocol sipv2
     session target ipv4: X.X.X.X
     voice-class sip bind control source-interface GigabitEthernet0/0xxx
     voice-class sip bind media source-interface GigabitEthernet0/0xxx
     codec aacld profile 1

    hi
    you have any string as
    voice class sip-profiles 1
     request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=3)" u01 
     request INVITE sip-header Contact modify "$" "\u01" 
    change it with 
     request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=*)" u03 
     request INVITE peer-header sip Contact copy "(;video;audio;x-cisco-tip;x-cisco-multiple-screen=(.*))" u03 
     request INVITE sip-header Contact modify "$" "\u03" 
    it will work.

  • Report 2 show all receipts&disbursements in one screen 4 intercompany&Trade

    Hi all,
    i just have to see whether there is any standard report in SAP which pulls to shows all receipts and disbursements in one screen for intercompany and trade, if there is no standard report then they asked me to build a func spec to develop this kind of report.
    so i am trying to find out with the SAP community here, whether we have any standard report on this or not. if no, then how to proceed on this func spec.
    can anyone please put some light on this, i would be verymuch grateful.
    Thankyou
    Jay

    Refer the following:
    REPORT  ZTEST12.
    * Type declarations.....................
    TYPES pict_line(256) TYPE c.
    * data declarations......................
    DATA :init,
          container TYPE REF TO cl_gui_custom_container,
          editor    TYPE REF TO cl_gui_textedit,
          picture   TYPE REF TO cl_gui_picture,
          pict_tab TYPE TABLE OF pict_line,
          url(255) TYPE c.
    CALL SCREEN 100.
    * Dialog modules......................................
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN100'.
      IF init is initial.
        init = 'X'.
        CREATE OBJECT:
               container  EXPORTING container_name = 'PICTURE_CONTAINER',
               picture    EXPORTING parent = container.
      ENDIF.
      IMPORT pict_tab = pict_tab FROM DATABASE abtree(pi) ID 'ENJOY'.
      CALL FUNCTION 'DP_CREATE_URL'
           EXPORTING
                type    = 'IMAGE'
                subtype = 'GIF'
           TABLES
                data    = pict_tab
           CHANGING
                url     = url.
      CALL METHOD picture->load_picture_from_url EXPORTING url = url.
      CALL METHOD picture->set_display_mode
           EXPORTING display_mode = picture->display_mode_fit_center.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE TO SCREEN 0.
    ENDMODULE.

  • How to call a screen in a new session -- Urgent

    Hi all,
    I need to call a screen from another program in a new session, is it possible or not? if possible, please help me. After that when clicked on one button, session should automatically closed. waiting for valuable replies....
    Thanks in Advance.
    Siva Sankar.

    Hi Gourav,
    Thanks for ur quick reply. Actually i'm calling a module pool program from one screen when clicked on one button. My requirement is that module pool program should be opened in seperate session. when clicked on exit button in new session, that session should be closed. is it possible?
    Thanks,
    Siva Sankar.

  • How to call one program from another program

    Hai,
      How to call one program through another program.
    Example.
       I have two programs 1.ZPROG1 2. ZPROG2.
    When i execute ZPROG1 at that time it should call ZPROG2.

    Hi ,
    u can use submit statement to call a program .
    DATA: text       TYPE c LENGTH 10,
          rspar_tab  TYPE TABLE OF rsparams,
          rspar_line LIKE LINE OF rspar_tab,
          range_tab  LIKE RANGE OF text,
          range_line LIKE LINE OF range_tab.
    rspar_line-selname = 'SELCRIT1'.
    rspar_line-kind    = 'S'.
    rspar_line-sign    = 'I'.
    rspar_line-option  = 'EQ'.
    rspar_line-low     = 'ABAP'.
    APPEND rspar_line TO rspar_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'H'.
    APPEND range_line TO range_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'K'.
    APPEND range_line TO range_tab.
    SUBMIT report1 USING SELECTION-SCREEN '1100'
                   WITH SELECTION-TABLE rspar_tab
                   WITH selcrit2 BETWEEN 'H' AND 'K'
                   WITH selcrit2 IN range_tab
                   AND RETURN.
    regards,
    Santosh thorat

  • How to move one screen to another screen Webdynpro ?

    Hi,
    How to move from one screen to another screen Webdypro ?
    Best Regards,
    Kishore

    Hi,
    for this you have to declare in and outbound plugs to your views,
    bind them into the window area of your component and fire the
    outbound plug in your action handler in view one, view2 will be called
    automatically.
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/1f/464941db42f423e10000000a155106/frameset.htm">documentation</a>
    grtz
    Koen

  • How can I unsplit my mozilla screen? I want to see only one screen at a time!

    When I open mozilla only one screen shows up. Then when I open another website from my bookmarks mozilla all of the sudden split the screen into one website and then icloud. Very frustrating. Any help would be appreciated.

    I've called the big guys to help you. Good luck.
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

  • What is the procedure for calling three screens in order?

    Hi friends,
                  Can anyone solve my problem of knowing how to call three screens.
    In one screen i will be give say emp-id and password
    it has to go to next screen have 2 radiobuttons functional and technical after selecting it has to go next screen where employee name timein and timeout will be there where i have to store employee name and timein and out in a table please its urgent can any one help with this. Creation of screens are perfect but only calling the screens in order and storing the data in a table is my problem.
    Solutions will be surely rewarded.

    hi,
    screens can be called by any one of the following methods:
    1.using a t-code
    2.from abap program
    if ur calling it from abap program, make use of CALL SCREEN
    syntax:
    CALL SCREEN <dynnr>.
    statement to call a screen and its subsequent sequence within that program. The flow logic of each screen calls dialog modules in the program that called the screen.
    When the screen sequence ends, control returns to the statement after the original CALL SCREEN statement.
    To termintate the screen sequence, use  LEAVE TO SCREEN.
    These statements exit the current screen and call the defined next screen. If the next screen is screen 0, the entire screen sequence concludes.
    please rewards points if useful.
    regards
    sandhya

  • Transfer field value from one screen to another screen

    hi gurus,
    I am using field exit in mm02, i want to transfer field value from one screen to another screen. I am using Export, Import, Some FM like DYNP.......
    but not getting the value.
    can any one give idea about this.
    Thanks in Advance,
    Sudheer.

    I THINK IN FIELD EXITS SOME RESTRICTION IS THERE YOU CAN NOT USE CALL TRANSACTION OR CALL SCREEN. I DONT KNOW WHAT IS YOUR ACTUAL REQUIREMENT. BUT YOU ARE TRYING TO CALL TRANSACTION USING MEMORY ID OR SOMETHING THEN I THINK IN FIELD EXIT YOU CAN NOT DO THAT. PLS CORRECT ME IF I AM WRONG
    REGARDS
    SHIBA DUTTA

  • Today I get issues with thte device. When I in a phone call, the screen don't auto turn off. There is no a screen protector on there and it seems that the built-in proximity sensor is not responding. I have to press the screen with my face accidently.

    today I get issues with my z10 device. When I in a phone call, the screen don’t auto turn off. There is no a screen protector on there and it seems that the built-in proximity sensor is not responding. I have to press the screen with my face accidently. can anyone help me with this?

    Same issue already several weeks.
    And we are not alone:
    http://forums.crackberry.com/blackberry-z10-f254/proximity-sensors-still-not-working-my-z10-891783/i...
    At all there is, I think, 4 threads in parallel about this issue at CB forums. One of the:
    ms.crackberry.com/blackberry-z10-f254/proximity-sensors-still-not-working-my-z10-891783/index5.html
    I already contacted BB Help at Twitter. Answer:
    Thanks for the information. It seems that you have installed an OS version higher than the one supported by your carrier on your device. Please contact your carrier to get the supported OS version and try the proximity and light sensors. Let us know if you need further assistance. Cheers. ^LFC.
    I did replay:
    You are confused me. Phone got updates over network automatically. On crackberry forum a lot of people from different countries and with Different OS version, but with the same problem. Hi, this is thread at CrackBerry: http://forums.crackberry.com/blackberry-z10-f254/proximity-sensor-906493/index3.html
    This my replay was 22 of march. No more answer from BB.
    I can't contact my operator - 3UK, because I bought my from on Amazon from Amazon. This phone not from operator - seller is Amazon.
    What I already done:
    For last week, I read, how to install OS using Sachesi and Autoloader. I used Sachesi to load 3 UK version, I installed autoloader from this links:
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...
    This
    For Z10 models STL100-1, 2, -3, -4: Download 10.2.1.1925
    Doesn't help
    And this:
    For Z10 models STL100-2, -3, -4: Download the 10.2.0.1803 OS
    No result.
    After install all of them phone wants to update to 10.2.1.2102 by air.
    BBVE in all versions sais: Can not obtain data from sensors.
    Dear BB support, please, can you explain, how to resolve this issue?

  • Document creator cannot add adhoc approver in shop-in one screen

    Hi All,
    We are working with SRM 7.0, SP11 with extended classic implementation. We have observed that while creating a SC with professional view (shop-in-one screen) with purchaser role, user cannot use adhoc approval function as the Button 'Add Approver' is not visible.
    Though this option is visible in shopping wizard and PO screen.
    This is very important function for our business process as we are extensively using shop-on-behalf function and need to use it with Ad-hoc approval functionality.
    Pls suggest.
    Thanks in advance!
    Best Regards,
    Prashant

    Hello Prashant,
    On the SC screen you will have an option called Display or Edit agents. Click that Hyperlink and from there you will get a option to add the adhoc approvers or reviewers.
    This option will be available in the left hand side top display of the sc above the item preview table.
    From the item details --> Approval Process Previe tab you will not have this option  as standard design.
    Hope this helps you here.
    Best Regards,
    Rahul

  • Issue with CALL SELECTION-SCREEN

    Hi experts,
    I am working on a report.
    Here on the selection screen , based on the selection of some radiobuttons ,i want to call a secondary selection screen.
    So i am using the following program code ,
    AT SELECTION-SCREEN on BLOCk blk.
    IF p_abc  =  c_x.
        CALL SELECTION-SCREEN 100 STARTING AT 20 5.
        IF sy-subrc <> 0.
          MESSAGE text-011 TYPE c_e .
        ENDIF.
      ENDIF.
    so currently , once i complete my slection on the screen 100 , the popup screen stays there and rest of the programing logic is executed correctly.
    My issue is that , once i complete my slection on the screen 100, i want that the pop up should be closed
    And then the the rest of the program logic should continue.    
    please guide me how ,this can be done.
    Regards,
    Rajesh Kumar.

    Hi
    The event AT SELECTION-SCREEN and AT SELECTION-SCREEN ON BLOCK  are very similar, only the second event see the part of selection-screen defined in the block.
    This events are triggered as soon as the user does something: so press ENTER, F8,........
    If u want the second-selction screen is shown once and the main selection-screen has to be displayed under the second one, u can try to run the second one only if the report has to run, so if the user has pressed F8, code ONLI.
    AT SELECTION-SCREEN on BLOCk blk.
    CHECK SY-UCOMM = 'ONLI'.
    IF p_abc = c_x.
      CALL SELECTION-SCREEN 100 STARTING AT 20 5.
      IF sy-subrc 0.
         MESSAGE text-011 TYPE c_e .
      ENDIF.
    ENDIF.
    In tihs way the rest of the program will be executed, else u need to move all code of the event START-OF-SELECTION and END-OF-SELECTION in the event AT SELECTION-SCREEN, or, just as I said before, to move the calling of POPUP to event START-OF-SELECTION.
    Max

  • Iam using Iphone4,my problem is while imake a call or when ia attend a incoming call,the screen doesnt lock,while i kept in my ear  to attend a call it automatically gets inside keypad or it on hold tab this makes me uncomfortable pls give a solution

    Iam using Iphone4,my problem is while imake a call or when ia attend a incoming call,the screen doesnt lock,while i kept in my ear  to attend a call it automatically gets inside keypad or it on hold tab this makes me uncomfortable pls give a solution

    This sometimes happens if you have a case or screen protector on the phone.  IF you have one of these remove it and see if it makes any difference

  • To call Selection screen In BSP

    I have written a report "zdemo" in abap editor with some selection screen. I'm desperately looking for <b>_how to call Selection screen In BSP_</b>.
    Any kind of help will be apreciated.
    nikhil

    Hi Nikhil,
    There is no way that, you can call a selection-screen directly or create automatically as in the case of report in ABAP.
    The possible way could be
    Create one more page for holding the selection screen input fields with a submit button.
    On click on submit, do the processing and call the result page.
    Regards,
    Ravi

Maybe you are looking for

  • Can not export my movie from iMovie '09

    Hey there, Have a problem. Been working on a nice clip, wanted to export the movie and I get this error message that sais: Unable to prepare project for publishing. The project could not be prepared for publishing because an error occurred. (-50) Wha

  • URGENT ADVICE NEEDED!-  outputting for iTunes

    I have edited some promo videos for a small record company. They have asked me to supply them edited masters at highest quality to submit to iTunes for sale. They were shot in HDV. What should I give them? Full quality quick time movies? Compress for

  • MM SUS Issues

    Hello Friends, We are implementing MM-SUS functionality and facing some issues. Could be very generic for those who have already worked on it so would need your help to fix these. 1. Once the PO is created and submitted to Supplier , he is able to se

  • Safari HTTP error 403

    I am connected to the internet - email works fine, evernote syncronises etc.  But on ANY web page I am getting a HTTP Error 403: The service you requested is restricted and is not available to your browser. The restriction can be based on your IP add

  • HTML email signature?

    Can anyone tell me the code to insert an image into the webmail email signature? I have been pulling my hair out, and wasting so much time trying to figure this out. I am not a coder. I built the site in Muse, hosted it with Business Catalyst, and th