How to avoid incorrect calling screen sequence

Hi Techies,
          I have got to enhance std transaction where I need to call  a custom screen which is defined under different funtion group.
In that screen, I have a command button  to cancel the screen, When I use 'Leave screen' it is calling some screen from other
function group. All I need to do is to terminate the screen on clicking
cancel button, I do not need to call next screen of the same froup where new screen defined
I appreciate any inputs on it
Thanks
Sasnthosh

HI,
Did you try with this
SET SCREEN 100. " Here 100 is the screen you wan to navigate to
LEAVE SCREEN.
It will terminate current screen and leaves to 100.
Regards and Best wishes.

Similar Messages

  • How to avoid default selection screen in HR interfaces(using pnp ldbs)

    How to avoid default selection screen in HR interfaces(using pnp ldbs)

    Dear Rakesh,
    The report category is used to change the selection screen of programs that use the 'PNP' logical database.
    See links bellow:
    http://www.sapdevelopment.co.uk/hr/hr_repcat.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/229357553611d3967f00a0c9306433/frameset.htm
    Report categories for selection screen in HR programming
    Also visit the following blog:
    /people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports
    Regards,
    Naveen.

  • How to avoid the Welcome Screen in WIN7 Starter

    How do I avoid the Welcome Screen in WIN7 Starter? When I bootup, I want the computer to boot to desktop, because I have programs that need to run as soon as I boot up. I managed to get rid of password requests, but I still see the Toshiba Logo that I have to click before a full bootup occurs.
    Thanks
    Chaz

    For ias9041 entreprise, just change your httpd.conf DocumentRoot to somewhere else
    and
    do a
    dcmctl/updateconfig -ct ohs
    opmnctl restartproc type=ohs
    Ken
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/fs/u02/sw_ux/oracle/product/ias904/Apache/Apache/htdocs"

  • How to avoid print configuration screen

    Hi everybody,
    I'm executing a program which has to print two smartforms, one followed by the other, but I don't want the printing configuration screen before printing each one, I want it only to appear in the first one and then inherit printing parameters in the next smartform and avoid the screen.
    How can I do this? I think that is by using output_options parameter but I don't know exactly how.
    Many thanks,
    Cristina.

    hi,
    I understand that you have your own program that triggers both Smartforms, one after the other, right?
    Try this:
    In your program trigger the first smartform (and have the print config screen popup)
    WITHIN that smartform you trigger the second Smartform and suppress the the config screen.
    Since the output options are know at this point you can pass them to the second smartform.
    I hope it helps,
    regards,
    Joris Bots

  • Need urgent help: how to avoid concurrent calls on statefull session beans

    Hi,
    I need a little advice in designing a EJB session facade using JSPs, servlets, session and
    entity beans.
    My current design is:
    - JSP pages: here are only getMethods for the session bean used. All set-methods are handled by a
    - servlet: I have got one servlet handling several JSP pages. The servlet basically takes the
    form fields and stores them in the session bean and than dispatches to the next JSP-page
    - stateful session bean: here is, where all the business logic is conducted. There is one session
    bean per servlet using several
    - CMP entity beans: to talk to the database (Oracle 8i)
    The application server is JBoss 3.0.3.
    My problem is, if a user clicks on a submit button of a JSP page more than once before the next
    page builds up, I may get a "javax.ejb.EJBException: Application Error: no concurrent calls on
    stateful beans" error. I already synchronized (by the "session") the code in the servlet, but
    it happens in the JSP pages as well.
    I know, that Weblogic is able to handle concurrent calls, by JBoss isn't and it's clearly stated
    in the spec, that a user should avoid to have concurrent calls to a stateful bean.
    The big question is now: How can I avoid this? How can I prohibit the user to submit a form several
    times or to ignore anything, which arrives after the first submit?
    Thanks for any help,
    Thorsten.

    Synchronizing on the session is probably your best bet.
    You'll need to do all the data access and manipulation in the servlet. Cache any data you need using request.setAttribute() and then not access the EJB on the JSP page.
    If performance is an issue, you may also want to use create a user transaction to wrap all the EJB access in, otherwise each EJB call from the servlet is a new transaction. Just make sure you use a finally block to properly commit/rollback the transaction before you redirect to the JSP.
    UserTransaction utx    = null;
    synchronized (request.getSession())
      try {
        Context ctx = new InitialContext();
        utx = (UserTransaction) ctx.lookup("javax/transaction/UserTransaction");
        utx.begin();
        // ... Create session bean ...
        request.setAttribute("mydata", sessionBean.getMyData());
        try {
          utx.commit();
        catch (Exception ex) {
          log.warn("Transaction Rolled Back (" + ex.getClass().getName() + "): "
            + ex.getMessage(), ex);
        utx = null;
      } // try
      finally {
        if(utx != null)
          try {
            utx.rollback();
          catch (Exception e) {
            log.warn(e.getMessage(), e);
          } // catch
        } // if
      } // finally
    } // syncrhonized(session)

  • How to avoid multiple call to function:

    In our datawarehouse we have a huge receipt row table where all metrics ar stored in the local currency. On top over that we have views which calculate metrics to the desired currency.
    So basically all views looks like this
    select geo_region,
    product_group,
    customer_group,
    metric1 * (select get_exchange_rate(currency_id) from dual) metric1,
    metric1 * (select get_exchange_rate(currency_id) from dual) metric2,
    metric1 * (select get_exchange_rate(currency_id) from dual) metricx,
    group by..
    As we have about 20 metrics we notices that the function is called 20 times per row.
    Is there really anyway to avoid that? Shouldn't it be it's just the exact same call with the same in-parameters over and over again.
    We've tried with local sys_context and the performance is better but the call to the context is still performed 20 times. Any Ideas?

    Can you avoid multiple function calls? Maybe, if as in your example all the function calls values are computing the same result. If they operate on different columns then you'll have to perform the function call anyway.
    Either way you should be able to eliminate the (near as I can tell) pointless subquery from dual
    You might be able to avoid the repeated function calls if the values are always the same. If every computation you could save the function call (and subquery!) by doing it once and then using assignments after the initial query using variables after the initial query, perhaps using NULL in the query as placeholders to select into a record - something like
    select inital_region,
             product_group,
             customer_group,
             metric1 * exchange_rate(currency_id) metric1,
             null metric2,
    v_metric2 := metric1;
    ...Message was edited by (fixed typo):
    riedelme

  • How to avoid the logon screen after closing the browser

    Im working with annonymous users showing a Iview but when I close the browser, instead of closing the browser the logon of portal appears. I dont want that how can I avoid this ?
    thx

    Hi
    I am not clear with your question. How do you close the browser ? Is it by hitting the cross button on the Top right corner ?
    Murali.

  • How to avoid server call on pageload

    I am working on Jdeveloper11g.
    I have one search page where i entered Search criteria and on click of Search Button i have to display result in table.
    For design the table i Drag and Drop the SearchVo which is the return type of SearchText(SearchFilterVo sfv) method from dataController see below code.
    public List<SearchVO> searchText(SearchFilterVO searchFilterVO) throws BusinessDelegateException {
    List<SearchVO> returnValue = null;
    returnValue = (List<SearchVO>)despatchRequest("searchText", strServiceName,
    searchFilterVO);
    return returnValue;
    As per requiremnts if user click Search Button without entering any Criteria we have to show all records from table.
    Problem is that when first time page is load searchText(SearchFilterVO searchFilterVO) method gets called .And as per requiremnet even searchFilterVO parameter is null i have to show all records in table.
    So on pageload without click on searchbutton user able to see data in table.
    I just want to know can we ristrict  call to searchText(SearchFilterVO searchFilterVO) first time i mean on pageLoad.
    Thanks for all help.

    Hi,
    what about defining a search condition on the iterator binding and read from a requestScope attribute. If it is set - which you do using a setPropertyListener when the button is pressed - then the query is performed. Otherwise not
    Frank

  • Screen Sequence:  REBDPR

    Hello All,
    The SAP standard screen sequence is REPR. However based on my client's requirement we have created an additional screen sequence called ZREPR.
    Now when I am trying to assign this screen sequence under the node Screen Sequence Category -> Screen Sequence, the system is giving an error message "Specify the key within the work area".
    Can someone please help us with how to assign the custom screen sequence and assign it as the standard screen sequence.
    Regards,
    Suvarghya Dutta

    (FOR RE-FX) Please use following steps to make the new screen sequence as default one:
    1. Use transaction REBDPR0006.
    2. Select Screen sequence categories from the navigation pane.
    3. Select the SAP delivered Screen sequence category (with description as Standard) and press Screen Sequence Category -> Screen Sequence from navigation pane.
    4. In new screen you will find the ZREPR screen sequence listed.
    5. Click on the radio button in front of the ZREPR screen sequence. This will set the ZREPR screen sequence as default.
    6. Save the selection.
    I have used this and its working fine for me.. Hope it helps you as well..
    Regards
    Rohit

  • Screen Sequence Group in Sales Document

    Hi!!
    Can anyone please help me on how can I configure the screen sequence group? I want to create a new one and assign it to a sales document.
    For example I want to enhance AU (Sales Order). Can this be done as part of config??
    Super Thank You!!

    hi
    This should be done by ABAP consultants. They are authorized for such modification
    IF i understand your question correctly you want a particular screen to ABAPar and not the standard default screen to appear
    for example if a user wants to create a sales order thru VA01. If this is what you are looking for go to V0V8 (doc Type) and there is setting for screen sequence and you can choose which screen you want to appear as VA01 is given, for example if you choose UBST here you can go to the Item detail screen where in you can see the customer material information record if any maintained for that customer.

  • How to avoid Sequence Gapping in ODI Interface

    I have an employee table and a job map table in oracle based on the employee type/group and job type/group I need to pick up the sequence, generate id
    and update employee id of employee table using ODI
    employee table job table
    name type group id type group sequencename seqmin seqmax
    pat 1 1 1 1 seq1 1 10
    dan 1 2 1 2 seq2 30 40
    john 1 3 1 3 seq3 20 100
    when I select the sequence using if condition or case statement or decode and call the sequence <%=snpRef.getObjectName( "L" , "My_SEQ" , "D" )%>.nextval
    the sequences are creating gaps for every call.as the sequence is incrementing internally for every wrong mapping. How should I get rid of these gaps.
    In oracle database we call functions in the case condition.These functions consists of the seq.nextval code and the unwanted incremental gapping is avoided.
    But in the case of ODI how can we get this.
    Thanks,
    Vikram

    I am facing this issue when I execute on the source or staging area.When I try toexecute on the target,the ODI
    doesn't allow me to execute and gives the following warning
    "A mapping executed on the target cannot reference source columns. Move this mapping on the source or the staging area.     Target Column Employeeid"
    In my case I am using IKM Oracle Incremental update
    the source datastore is employee table, job table and target is copy of employee table(as i need to update the employee id column with sequence numbers by picking the right sequence from job table,sequence name column)

  • How to reject a Call when i phone's screen is off ??

    How to reject a Call when i phone's screen is off ??

    notyou wrote:
    The 7.1 update now includes this functionality on the lock screen.
    Never mind. I am incorrect. Sorry.

  • How to avoid the screen of selection output device

    Hi all,
    Who can tell me how to avoid the screen selection output device when running a smartform.
    Best regard.

    Hi,
          data: wa_SSFCTRLOP  type SSFCTRLOP.
           wa_SSFCTRLOP-DEVICE = 'PRINTER'.
           wa_SSFCTRLOP-NO_DIALOG =  'X'.
           wa_SSFCTRLOP-PREVIEW = 'X'.
        in the function module
       call function '....
       exporting
       CONTROL_PARAMETERS = wa_ssfctrlop
    regards,
    Santosh Thorat

  • How to avoid selection-screen?

    Hi,
    i have this short report:
    TABLES: MARA.
    SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.
    AT SELECTION-SCREEN.
      IF SY-BATCH = 'X'.
    * how to avoid selection screen
      ENDIF.
    START-OF-SELECTION.
      SELECT * FROM MARA WHERE MATNR IN S_MATNR.
        WRITE: / MARA-MATNR.
      ENDSELECT.
    END-OF-SELECTION.
    in batch i don't want the selection-screen. Is it possible? How can i do this?
    Thanks.
    regards, Dieter

    Dieter Gröhn wrote:
    > Hi,
    >
    > i have this short report:
    >
    >
    > TABLES: MARA.
    > SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.
    > *
    > AT SELECTION-SCREEN.
    >   IF SY-BATCH = 'X'.
    > * how to avoid selection screen
    >   ENDIF.
    > *
    > ************************************************************************
    > START-OF-SELECTION.
    > *
    >   SELECT * FROM MARA WHERE MATNR IN S_MATNR.
    >     WRITE: / MARA-MATNR.
    >   ENDSELECT.
    > *
    > END-OF-SELECTION.
    >
    >
    > in batch i don't want the selection-screen. Is it possible? How can i do this?
    >
    > Thanks.
    >
    > regards, Dieter
    Please check the value of the variable sy-binpt, I believe the value of the variable sy-binpt will be set to 'X'  if the program is called from a bath input, hope this helps.

  • How to stop the call summary display on home screen?

    How to stop the call summary display on home screen?

    Here are the solutions I can think of (if no one here responds with something better):
    1. Open Settings and then Phone within the Settings screen and see if you can find a setting there for the call summary. The Phone submenu under Settings would be the most likely place.
    2. Open Settings on your iPhone and go through each item including all of the items within each main item. Within about 10 minutes you should be able to get through all of the settings and find the setting if it exists on your phone. There is no such setting on my phone but it is possible that Airtel has a custom menu with that.
    3. If you still haven't found it, you could check a) Airtel's support site and/or b) an Airtel specific forum.
    4. If still no luck, I would call Airtel and ask again and if you get the same response ask for the location of the setting (or to speak to someone who can tell you).
    Good luck.

Maybe you are looking for