BACK button in a report showing disabled.

Hi all,
I have a report in which i upload a file for processing.
Based on validation in the uploaded the report throws error in the start-of-selection event.
But the error comes out, on a screen with the BACK ,CANCEL and the other buttons disabled.
I need to have these buttons enabled with their functionalities retained.
How it can be achieved ? Your ideas are appreciated and will be rewarded.
Regards,
Stock

*& Form STATUS
text
-->P_EXTAB text
FORM status USING p_extab TYPE slis_t_extab. "#EC *
*- Pf status
SET PF-STATUS 'STATUS'.
ENDFORM. " STATUS
*& Form USER_COMMAND
text
-->R_UCOMM text
-->RS_SELFIELD text
FORM user_command USING r_ucomm LIKE sy-ucomm
rs_selfield TYPE slis_selfield."#EC CALLED
CASE r_ucomm.
WHEN 'BACK' OR 'CANC' OR 'EXIT'.
LEAVE TO SCREEN 0.
ENDCASE.
ENDFORM. "USER
double click on STATUS and create the enteries there also,
Regards,
Sandeep

Similar Messages

  • Problem in Back Button in ALV report

    Hi Team,
    I have created a report which has a selection screen. Based on the input I am showing an ALV OO grid in my custom screen 0100. Now In the system toolbar on my 0100 screen I have enabled back, up and exit button. On click of which I am wrting 'LEAVE TO SCREEN 0. '
    But it doesn't take me to the selection screen. Rather it throws me out of the transaction. Can anybody
    suggest me a command so that when I click on back button it will take to the selection screen.
    Thanks,
    Mainak

    Hi,
    Go through given program it is very usefull for you,
    ***Correct your program as follows...
    PROGRAM rsolett1 MESSAGE-ID sy.
    TYPE-POOLS: slis.
    data: repid like sy-repid.
    DATA: w_fieldcat TYPE slis_fieldcat_alv,
    t_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: w_listheader TYPE slis_listheader,
    t_listheader TYPE slis_t_listheader.
    DATA: BEGIN OF t_output OCCURS 0,
    slno TYPE char10,
    name TYPE char10,
    lino TYPE char10,
    prof TYPE char10,
    addr TYPE char10,
    fanm TYPE char10,
    plbu TYPE char10,
    END OF t_output.
    w_fieldcat-col_pos = 1.
    w_fieldcat-fieldname = 'SLNO'.
    w_fieldcat-seltext_m = 'SERIAL NUMBER'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    w_fieldcat-col_pos = 2.
    w_fieldcat-fieldname = 'NAME'.
    w_fieldcat-seltext_m = 'NAME'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    w_fieldcat-col_pos = 3.
    w_fieldcat-fieldname = 'LINO'.
    w_fieldcat-seltext_m = 'LICENCE NUMBER'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    w_fieldcat-col_pos = 4.
    w_fieldcat-fieldname = 'PROF'.
    w_fieldcat-seltext_m = 'PROFESSION'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    w_fieldcat-col_pos = 5.
    w_fieldcat-fieldname = 'ADDR'.
    w_fieldcat-seltext_m = 'ADDRESS'.
    w_fieldcat-do_sum = 'X'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    w_fieldcat-col_pos = 6.
    w_fieldcat-fieldname = 'FANM'.
    w_fieldcat-seltext_m = 'FATHER NAME'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    w_fieldcat-col_pos = 7.
    w_fieldcat-fieldname = 'PLBU'.
    w_fieldcat-seltext_m = 'PLACE OF BUSSINESS'.
    APPEND w_fieldcat TO t_fieldcat.
    CLEAR w_fieldcat.
    *PUPULATING TOP-OF-PAGE.
    w_listheader-typ = 'H'.
    w_listheader-info = 'FORMA'.
    APPEND w_listheader TO t_listheader.
    CLEAR w_listheader.
    repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = repid
    i_callback_pf_status_set = 'SET_PF_STATUS'
    i_callback_user_command = ' '
    i_callback_top_of_page = 'SUB_TOP_OF_PAGE'
    it_fieldcat = t_fieldcat
    i_default = 'X'
    TABLES
    t_outtab = t_output.
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
    SET PF-STATUS 'ZPFSTATUS'.
    ENDFORM.
    Edited by: Ganesh Modhave on Aug 12, 2008 1:06 PM
    Thanks&Regards,
    Naresh kumar

  • The Problem is about Standard Back Button Function in Report Program

    The Problem is about Standard Back Button Function in the Report Program.
           In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
           My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program.  Thanks .

    This problem is solution.I call screen using T-code and submit report In PAI,at last return to PAI.That is OK.

  • Using Back Button after Display Report

    Hi,
    Need an advice, i need to customize the standard BACK button after report had been displayed, trying to use AT USER-COMMAND, but still not avail..
    anyone can come with example will help me a lot.
    Thanks

    Hi badz lee,
    Just change the function code 'BACK' to 'ZBACK' in your custom GUI staus.
    Then write your own logic for the custmer needs.
    Hope this code helps.
    *& Report  ZVK_TEST
    REPORT  zvk_test.
    TABLES:ekko."for select option only
    SELECT-OPTIONS:s_ebeln FOR ekko-ebeln.
    DATA:lt_ekko TYPE TABLE OF ekko,
         lw_ekko TYPE ekko.
    START-OF-SELECTION.
      SET PF-STATUS 'STLI'."copy status STLI of program SAPMSSY0.
      SET TITLEBAR 'TITLE'.
      SELECT * INTO TABLE lt_ekko
        FROM ekko
        WHERE ebeln IN s_ebeln.
      LOOP AT lt_ekko INTO lw_ekko.
        WRITE:/ lw_ekko-ebeln,
                lw_ekko-bukrs,
                lw_ekko-bstyp,
                lw_ekko-bsart.
      ENDLOOP.
    END-OF-SELECTION.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'ZBACK'.
          PERFORM back_function."Your logic
        WHEN OTHERS.
      ENDCASE.
    *&      Form  BACK_FUNCTION
    FORM back_function .
      LEAVE PROGRAM.
    ENDFORM.                    " BACK_FUNCTION

  • BACK button functionality to be changed for custom report in ITS screen

    Hi all,
    I am working on SRM 5.0 with INTERNAL ITS.I have created a custom report and a transaction code for the same.Now in the SRM Web menu,I have provided a link for this report.
    Now i can see all the std menu options like BACK SYSTEM CANCEL  as buttons in the web screen.However when i click on the BACK button,it takes me to the SAP EASY ACCESS MENU screen as we see in SAPGUI.
    My reqt is that on click of the BACK button,i need to show the HOMEPAGE of the SRM.Is this possible?If so,how?
    All inputs will be highly appreciated and rewarded.

    Hello!
    There are several possibilities how to call transaction:
    - You can call it as service (that is what you do when you test it from SICF)
    - You can call it through service (or alias) WEBGUI (not using service for the specific transaction to call it)
    If you are calling it through WEBGUI then parameter ~SINGLETRANSACTION should be added to service (or alias) of WEBGUI. And there should be added also Log Off URL (in SICF). At this case it should navigate back to the URL which is specified in SICF.
    Hope this helps!
    Best regards,
    Rorijs

  • Reporting Services add (browser) back button

    Dear all,
    I have a client that has 4 reports; 1 main, and 3 that are rendered when the user clicks the report data on the main report (which passes parameters to generate the other 3).
    They would like to have a back button in the report header of the 3 reports (they don't want to use the browser back button).
    Is this possible using a text box, then editing the navigation properties and does anyone have an example? Or am I missing something quite obvious?
    Any help would be gratefully received!!
    Dan

    Check this link on how to implement it
    http://road-blogs.blogspot.com/2010/04/adding-breadcrumbs-to-your-drillthrough.html
    Cheers,
    Jason
    P.S. : Please click the 'Mark as Answer' button if a post solves your problem! :)

  • Report S_PL0_86000030 - G/L Account Balance - Back button Issue

    Hi
    We are on ECC 5.0 and when we click on the BACK button, from the report display it straight way goes back to SAP standard  screen (both when we save or do not). It does not go back to the selection screen of the report.
    I searched OSS and could not find any possible resolution.
    Could anybody know how this can be fixed? Any patch?
    Thanks,
    Surajit

    This can be achieved by clicking on Characterstic Key & Name - both option under Settings --> Characterstic Display (you can get these options if you run the report under Classical Drilldown mode)
    Also if you can just change the same thing in the report layout - it will be permanent - Transaction FGI0.
    Thanks,
    Surajit

  • Disable Browser Back Button

    Hi All
    I'm developing a web app using jdeveloper 11.1.1.4.
    In my web appication I want to Disable the browser Back button,
    Is there way to do this,
    Thanks
    Padma

    Hi,
    no, there is no option for this. You can try JavaScript as explained here: http://viralpatel.net/blogs/2009/11/disable-back-button-browser-javascript.html
    See: "Disable Back functionality using history.forward"
    Frank

  • How can I change an action of my android back button?

    When I pushing my android back button it works like a normal back function and it's fine for me. But when my history for tab is clear android back button close application and shows me home screen, but I want it to just close the tab. How can I fix this issue? Thanks!

    Well, I found this. Looks like it's a bug. Or not?
    https://bugzilla.mozilla.org/show_bug.cgi?id=747633

  • History problem in jsp page,internet explorer back button

    hi everyone
    i have a jsp page suppose a.jsp.in which i am using dropdown menu to displays:list of data from database,one submit button i am using name select and click here.after selecting the value from dropdown menu ,again some other data will be displayed from some other table in same a.jsp page.
    my problem is:
    when user selects one value from drop down menu ,it is diplaying the value in same page .upto here is ok
    and i click back button from I.E only one page back it is showing
    but when user select the value form drop down menu 2nd time ,and after data get dipalyed in same apge a.jsp.then
    whne i click back button ,now it is showing two a.jsp page .history is not going .
    this is the problem.i dont want to this morw than one page get displayed in back button.only one page a.jsp
    if anyone has understood my problem ,please help.
    thanku

    thanks java2006
    but it is not working .i will try to explain once again
    1. one page called a.jsp.this page contains one drop drown menu list box ,and one submit button.
    2.data in drop dropdown is coming from db.as the user select value from drop down box .relalted value is diplayed on same a.jsp page.
    3.again user select the 2ndvalue from drop down box ,related value is displayed.
    this i explained about my a.jsp page.
    problem is
    4.when user select the 1st value and clcik on submit button related value is displaying.upto here its ok.and in back button of Internet explorer it is showing only one a.jsp page
    5.but whenever i am trying to see 2nd or 3rd or more value from drop down after related value is being diplayed in same a.jsp page.
    the back button of internet exlorer showing two a.jsp page after clcicking submit button
    .as u have told the code aso but it is not working
    i have added ur code indisde html tags .

  • Create back button on preview page

    I have parameterized report where im trying to input ID to get the data. How do we create back button next to view report on the preview page in SSRS. Any help much appreciated.

    Hi SQL Insane,
    Per my understanding that you want to add an "Go Back" button in the Report next to the "View Report" button in SSRS, right?
    I have tested on my local environment and that it is difficult for us to add an "Go Back" button next to the "View Report" in the designer, but if you are an expert of developer you can write some code to add this Button.
    I have some alternative method which is more simple to recommend you according to your requirements.
    Details information for your reference:
    Add "GO Back" button which can work in both designer and report server.
    1) You can create an textbox in the report and right click the textbox properties to select the "Go to Report" to go back to report(Go back to main report itself or go back from child report to main report).
    2) If you go back from child report to main report("Go to Report"), you can add "Go Back" in the child report and add corresponding parameters and you can hide the parameter in the main report.This will make sure they will pass the same
    values back when you click the back button. So in effect it will be same as your navigation button.
    Add "Go Back" button which will only work in the Report Server or report manager:
    You can create an textbox in the report and right click the textbox properties to select the "Go to URL" to go back to report.Using this expression in the "Select URL":
    ="javascript:history.go(-1)"  
    OR
    ="javascript:history.back(1)"
    OR
    ="javascript:void(window.history.back())"
    If you are using the report viewer control in the application, you can add some code to create the "GO Back" button next to the "View Report" button, sample code in below article for your reference:
    You add it to your ReportViewer.aspx file.
    Please see an example here:
    https://github.com/MagnusJohansson/CustomSSRSReportViewer/blob/master/ReportViewer.aspx 
    See instructions here
    https://github.com/MagnusJohansson/CustomSSRSReportViewer
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu

  • Back button in AS3

    I did a search on this and didn't find a successful answer
    yet. I need to have a back button in AS3 that'll remember the last
    frame visited from any frame in the site. There are various buttons
    to get to various frames, and the one back button will always be
    showing.
    What's the script to make that happen from any frame
    utilizing AS3?

    OK, syntax was wrong and I fixed that (I knew it had to be
    some silly error like that).
    So now, if I go to one of the pages (frames), then go back to
    the home page (home frame), and click the back button it works to
    take you back to whatever subpage you were just on. However, it
    only works from the home page to go back to a subpage. You can't
    use the back button to go from one subpage to another you were just
    on, or back to the home page again. Why would that be? Is there a
    way to make the back button work from anywhere?
    Also, it only works if I don't assign the home page a
    backvalue (probably why you can't go "back" to the home page). But,
    since it works to go back from there to any other page you were
    just on, I think it must be close to working across the
    board… just curious what the problem could be…
    help??

  • Webpage expires on clicking on back button.

    Hello,
    I am working on a Website on ASP.NET using C#. Most of its pages are displaying data in a Grid View and in Crystal Reports. Every time I click back button from Crystal Report page or any other page for going to the previous page which was displaying data
    in a GridView the webpage displays the message "Webpage has expired" in all the browsers. Is there any way to solve this issue? any help will be really useful.
    Thanks,
    Ekta
    Ekta Verma

    Please use the ASP.NET forums for ASP.NET related questions:
    http://forums.asp.net/
    For GridView problems:
    http://forums.asp.net/24.aspx/1?Web+Forms+Data+Controls
    For Crystal Report problems:
    http://forums.asp.net/76.aspx/1?Crystal+Reports

  • SCENES BACK BUTTON

    I did a search on this and didn't find a successful answer yet.
    I need to have a back button in AS3 that'll remember the last SCENE visited from any frame in the site. There are various buttons to get to various SCENES, and the one back button will always be showing.
    What's the script to make that happen from any frame utilizing AS3?

    you should execute the following once:
    var sceneA:Array = [];
    function addSceneF(scene:Scene):void{
        sceneA.push(scene);
    function prevSceneF():void{
        sceneA.pop();
        this.gotoAndStop(1,sceneA.pop().name);
    // then on frame 1 of each scene use:
    addSceneF(this.currentScene);
    and have your previous scene button call prevSceneF whenever you want to return to a previously visited scene.
    (and you should do some error checking to make sure sceneA.length >0 before applying that goto.)

  • BACK Button causing problem with Single Sign on using STS Service

    Hi Our application is using federated claim based authentication, and after logging into our default page using STS Authentication, we click a link inside our page, we get the new page, then we click BACK button but the Browser shows a blank page, The link below is shown by the URL and it shows it as a Working page
    http://bi-wif.biintegration.com/STS/?wa=wsignin1.0&wtrealm=http%3a%2f%2fBIIntegr ation3.biintegration.com%2fApps%2f&wctx=rm%3d0%26id%3dpassive%26ru%3d%252fApps%2 52fLogin.aspx&wct=2013-02-26T12%3a04%3a52Z
    If we click the back button again then the page is shown
    The Browser version is 5.1.7 running on windows
    This happens intermittently, The screenshot is attached

    <ORACLE_HOME>/opmn/bin/opmnctl status
    Processes in Instance: asinst1.ssoserver.knaapo.ru
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 2983 | Alive
    OC4J | OC4J_SECURITY | 3221 | Alive
    HTTP_Server | HTTP_Server | 2980 | Alive

Maybe you are looking for

  • Can i buy an Iphone 5 from the USA if I live in Ireland?

    Hi I was just wondering am i able to buy an iphone 5 or iphone 4s unlocked from apple online or in store in America and will it still work if it is brought to Ireland? thanks x

  • Audiobook playback does not remember position

    I like to get audiobooks from the library and rip them to my ipod. I am very good about setting the "compilation", "remember position", and "skip when shuffling" flags to yes. I have never had a problem with my ipod. Now, on my iphone, it forgets whe

  • 5800 XM Call log problem, please help!

    Recently  I got a problem in my Nokia 5800 XpressMusic, my recent call are not shown in my call log, Whenever I dial, received or get a missed call....it show's no dialed, received or missed calls... Ex.I got 9 missed, when I opened it, it shows noth

  • I have a power mac G4. OS 10.4.11 I just got a new iphone G3S what will it take to get my phone to sync with itunes?

    I have a power mac G4 OS 10.4.11  I just purchased a new iphone G3S how can I get it to sync to itunes? When I try I get a message that I need OS 10.5  can I load 10.5 on it? can I still buy 10.5 ? CPU speed 800mhz memory 512

  • BI Role Standard Template

    Hi I am creating a custom role using the S_RS_RREPU (BI Role: Reporting user). When I use the template I can see lot of Cross Application Objects, (Like Name of RFCu2026etc) and basis administrations tasksu2026 Is there any help document available wh