Report running fine in foreground but not in background

Dear Friends-
I have created few varaients to run my report in background and foreground .
and inside report am using OOPS ALV and call screen  .
issue is  when i  run prog  using varaient in  foreground  it work fine and show me the correct one record
but when i  run the report with same varaient in background  it  shows  me   huge records which are not relevant with given input also ...............How to solve this   pls guide me
Regards
Meeta

Hi
In my report  am passing the input via varaients  and submit another report inside the prog  and in that second report it call screen  with ALV  stuff.
Is that is the reason ?
user command  am not sure because at end of the job  it not give any error  job looks finish and  shows so many records.
Regards
Meeta

Similar Messages

  • Report runs fine in Analyzer but not working when executed fromQuerydesig

    Hi,
    I have a issue with the Bw report which is not showing any data for Keyfigureswhen i execute the report related to APO from Bex query designer in Web.
    But the same report executes fine in the Bex Analyzer.
    If any one has faced this issue earlier,update us reg that.
    We are doubting any prob related to catch memory as the java link for the report is not working.Report works fine in RSRT.
    Vamsi

    Hi there,
    Can you please let us know what cache settings you changed, as we are having the same issue.
    Many thanks

  • Report runs fine in Analyzer but not working when executed fromQuerydesiger

    Hi,
    I have a issue with the Bw report which is not showing any data for Keyfigureswhen i execute the report related to APO from Bex query designer in Web.
    But the same report executes fine in the Bex Analyzer.
    If any one has faced this issue earlier,update us reg that.
    We are doubting any prob related to catch memory as the java link for the report is not working.Report works fine in RSRT.
    Vamsi

    Hi there,
    Can you please let us know what cache settings you changed, as we are having the same issue.
    Many thanks

  • Report running fine via se38 , but not with tcode.

    I had made a alv report, and had assinged TCODE.
    When running via tcode > in selection screen i had given all the input data in selection fields,>After that when clicking  the execution button> ITS GOING BACK TO SAP SCREEN.
    BUT.
    SAME report when running through SE38, its running fine..
    I had debugg the program , and what find that when running throug TCOde , After AT-SELECTION SCREEN EVENT , ITS COMING OUT TO SAP MENU WITHOUT TRIGGERING THE  START-OF-SELECTION EVENT.
    HELP ME...

    Please follow the steps for creating a transaction for report..
    GOTO SE93
    Give the transaction code.
    Press create button..
    Enter the short description..
    Choose the radio button which says "Program and selection screen(report transaction)".
    Press Enter..
    Give the program name..
    Remove the Selection screen "1000" if you want.
    Save the transaction code..

  • BDC Error:- Runs OK in foreground but NOT in background.

    Hi All,
    I am trying to do a BDC for stock putaway using LT01.
    When I run this BDC in foreground
    it runs successfully and transfers the stock OK with the following message:-
    Field RL03T-ANFME. input value is longer than screen field (this is not an error message)
    but when
    I try to run it in background it gives me the following errors :-
    Field RL03T-ANFME. input value is longer than screen field (this is not an error message in foreground)
    Transaction error.
    I know that a potential solution would be to write the LT01 using a BAPI or direct input etc but I would rather not go down this route.
    Amny ideas?
    I am using ECC5.0
    Thanks,
    N.

    Hi Niall,
    I have seen BDC behaving the way you have mentioned. This is because in Foreground the error is taken as soft error/warning(Green light flashes) and it allows you to continue. Even though the data upload is sucessful, you will have problems when you go into the actual transaction. An error pops up saying 'Please enter all the required fields' etc.
    But at the same time when it runs in background, the same error is taken as hard error(red status light) and it will not allow further process.
    Try to debug this BDC program in foreground and when it comes to this stage make the system field SY-BATCH = 'X'. Then you will understand what exactly happens.
    The background process should be taken as the way to go and you need to correct the data.
    I think this is helpful.
    Kannan

  • A javaScript code that runs fine in IE but not in other plz help

    Hello friends,
    plese help me in getting the code for Opera and Mozilla browsers. The following code runs fine in IE but not in other browsers. it show titlebar in other browsers. What to do disable titlebar in other browsers? plz help
    <html>
    <head>
    <script>
    //Frameless Banner Popup
    // Set the url of the banner popup window page
    //var theURL = "index.htm";
    var theURL = "/cgi-bin/login";
    // Set the title of the popup window
    var title = "Login"
    // Set the size of the popup window
    var windowWidth = 350; // cannot be less than 100
    var windowHeight = 350; // cannot be less than 100
    //var windowWidth = window.screen.width; // cannot be less than 100
    //var windowHeight = window.screen.height; // cannot be less than 100
    // Set the position of the popup window
    var windowX = ((window.screen.width/2) - 175);
    var windowY = ((window.screen.height/2) - 175);
    // Set true to auto-center (positions will be ignored)
    var autocenter = false;
    // Set true for popup to close when launch page does
    var autoclose = false;
    var s="width="+windowWidth+",height="+windowHeight;
    var beIE=document.all?true:false;
    var done=new Object("no");
    if(autocenter){
    windowX = (window.screen.width-windowWidth)/2;
    windowY = (window.screen.height-windowHeight)/2;
    function doAgilePopup(){
    if (beIE){
    agilePopper = window.open("","popAgile","fullscreen,"+s);
    agilePopper.blur();
    window.focus();
    agilePopper.resizeTo(windowWidth,windowHeight);
    agilePopper.moveTo(windowX,windowY);
    var frameString=""+
    "<html>"+
    "<head>"+
    "<title>"+title+"</title>"+
    "</head>"+
    "<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
    "<frame name='top' src='"+theURL+"' scrolling=no>"+
    "<frame name='bottom' src='about:blank' scrolling='no'>"+
    "</frameset>"+
    "</html>"
    agilePopper.document.open();
    agilePopper.document.write(frameString);
    agilePopper.document.close();
    }else{
    agilePopper=window.open(theURL,"popAgile","scrollbars=no,"+s);
    agilePopper.blur();
    window.focus();
    agilePopper.resizeTo(windowWidth,windowHeight);
    agilePopper.moveTo(windowX,windowY);
    agilePopper.blur();
    if (autoclose){
    window.onunload = function(){agilePopper.close();}
    done="okay";
    </script>
    </head>
    <BODY onLoad="doAgilePopup(),top.window.close()">
    </body>
    </html>

    missing semicolon in end of the variable frameString ,
    better write the string in single line thats easy to find the bugs like this.
    var frameString=""+
    "<html>"+
    "<head>"+
    "<title>"+title+"</title>"+
    "</head>"+
    "<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
    "<frame name='top' src='"+theURL+"' scrolling=no>"+
    "<frame name='bottom' src='about:blank' scrolling='no'>"+
    "</frameset>"+
    "</html>"

  • EBS Forms functional script runs fine in OpenScript but not from OTM

    Hi,
    I have an EBS forms functional test script which runs fine in OpenScript, but when scheduled from OTM, the web part runs fine but when it comes to forms, the script fails with the following error:
    Forms Object Not Found! XPath: //forms:window[(@name='NAVIGATOR')], Type: oracle.oats.scripting.modules.formsFT.helper.test.FormWindow, Cause: No Matches <Less>
    I have performed all the steps below already:
    1) Stopping the OATS Agent service and changing it to manual.
    2) Starting the command prompt and running the AgentManagerService command as mentioned in your forum.
    3) The console displays
    C:\>C:\OracleATS\agentmanager\bin\AgentManagerService.exe -c AgentManagerService
    .conf
    wrapper  | --> Wrapper Started as Console
    wrapper  | Launching a JVM...
    jvm 1    | Wrapper (Version 3.0.3)
    jvm 1    |
    4) I have added the test in the OTM with the following command line settings:
    -browser.type InternetExplorer -formsft.startup_timeout 30 -formsft.action_timeout 20 -formsft.response_timeout 10 -delayPercentage -1 -delayMin 0 -delayMax 5 -FormsAutomationEnabler.bat -enableForms true
    But each time the script fails, please note that my script has assets and they are placed within the script folder.
    Please help me on this at earliest.
    Thanks,
    Aarti

    Hello Aarti!
    I had the same problem and this steps help to solve the problem:
    You need to enable Forms Automation under agent. Please follow by below steps.
    1.open command prompt
    2.cd C:\OracleATS\agent
    3.FormsAutomationEnabler.bat -enableForms true
    4. Run script from OTM
    Attila

  • Report runs fine from CR 2008 Developer, but will not run once published

    I have BO RAS12 (version 12.3.0.601) installed on a Win2008 machine.  This is the "backbone" for a proprietary Reporting Suite for a Lawson ERP system.
    I have one report that takes awhile to generate due to the number of records and complex summaries and grouping.
    This report runs fine in the CR Developer on the server, but once I publish it and try to view with data refresh, it throws an 'Internal Server Error'.
    I don't think this is a timeout problem as it throws this error within 5 minutes of attempted generation.  To make matters worse, nothing is logged anywhere when it fails.
    I know that this doesn't give much to go on, but any ideas?

    i had the problem quite often, since i always forgot to tag the UI capabilities of my transaction.
    There are several problems with your transaction that COULD be the reason.
    Make sure the gui for windows is tagged.
    Then, if first what you show is a selection screen, make sure the transaction type is the right one "reporttransaction (Programm and selection screen)".

  • Data missing in InfoView report but Crystal Report runs fine on my PC

    I have created a Crystal Report (XI) which combines data from 2 datasources. Firstly from a postgres db (connected to by ODBC) and second from an Informix db (connected to by ODBC).
    The report runs fine on my PC but when I publish the report into Business Objects XI and run the report in InfoView, the report runs successfully but displays no details rows. The title, page headers, group headers all display but no data detail rows are shown. There is no conditional suppression on the details section of the report.
    The ODBC drivers install ed on the Business Objects XI Enterprise server are the same as the ones on my PC.
    If the report is adapted to only use just one of the datasources then it displays the data fine in Business Objects. So it is just when the datasources are compbined in one report that the data is not displayed.
    Any Ideas?
    Keith.

    Post your question to the Business Objects Forum

  • I'll ask this again.  I'm running Yosemite, LR 4.4 everything was running fine and I'm not sure if this is connected but when I loaded the last security update from Apple I started getting the "no content" box when I tried to publish to LR (Facebook OK),

    I'll ask this again.  I'm running Yosemite, LR 4.4 everything was running fine and I'm not sure if this is connected but when I loaded the last security update from Apple I started getting the "no content" box when I tried to publish to Flickr (Facebook OK), now I can't get it to authorize, I loaded 3rd party JR plug in and still get can't authorize.  Can anybody help?  Basically LR is useless, it has been nothing but problems.

    It would probably be better to continue your previous thread on the same question than to start a new one.

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Report runs fine on some workstations, won't refresh on others--WHY?

    I have a variety of professionally-written reports that run and refresh properly on some of our workstations here, but will not refresh on other workstations...why?
    Upon attempting a refresh, I get the following error: "Ther remaining text does not appear to be part of the formula." The formulas window also opens and shows the "error" in the formula. However, the formula is correct, and as I said, this same exact report runs fine with no errors on other workstations. All of our workstations are the same, running Windows XP Pro.
    I am running Crystal Reports 8.5 on all machines. I did try installing the trial version of Crystal Reports 2008; however, the same error appeared. I have since uninstalled it and reverted back to 8.5, the version for which the report was written.
    WHY?
    Thanks

    We've had this problem for several years. Today I actually fixed it. I copied all the dll files from C:\Windows\Crystal from our server (which the report would run fine on) and pasted to the same directory of the problem workstation(s), not overwriting any identical files. There were probably 13 missing dlls, and this seems to have solved the problem.
    Thanks

  • Dreamweaver text looks fine in Safari but not Firefox NEED HELP!!!

    Dreamweaver text looks fine in Safari but not Firefox, all my text goes out of alignment and the fonts look like different sizes. Please let me know your thoughts. Here is a link to the page I'm having problems with. http://www.alexandrasantibanez.com/bio.html

    I had the same problem for days what a waste of time trying
    to figure out code... the code was fine. I was running flash player
    7.0 Upgrade your flash plugin to 9.0 and it should work fine in
    Firefox and IE. It did for me.

  • Lost newly purchased Iphone5, Reported complain in police station but not getting proper responce. Can apple help me out for this?

    Lost newly purchased Iphone5, Reported complain in police station but not getting proper responce. Can apple help me out for this?

    Oh, don't worry. I know exactly. I'm a retired law enforcement officer after 30 years. I didn't mean for them to allow you to use the Internet, I meant for them to assign an officer to try and track the device for the victim. Again, that would require the victim to provide their Apple ID and password, which most would not want to provide.
    Pinging the phone as you mention is only when there is probable cause and that is done through the carrier.
    I'm glad to see someone also understand that a stolen cell phone is not as important to law enforcement as it is to the victim. It is unfortunate as smartphones get more expensive. Hopefully as iOS 7 makes it debut later this year, the work Apple has done will have some impact on smartphone theft. Other manufactures and carriers are starting to improve here in the states. It never was something carriers worryed about with blacklisting. This is where they were a step ahead in Europe.

  • I am having trouble running videos through Safari but not Google Chrome.  All I get is a black screen.  I have the latest adobe flash update and have enabled plug ins.  any suggestions?

    I am having trouble running videos through Safari but not Google Chrome.  All I get is a black screen.  I have the latest adobe flash update and have enabled plug ins.  any suggestions?

    Open System Preferences > Flash Player then select the Advanced tab.
    Click Delete All under Browsing Data and Settings
    Not empty the Safari cache.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Now try a video.

Maybe you are looking for