Can we run a query with variable screen at start up in Bex Analyzer

Hello all,
I have a query which asks for fiscal year and posting period at the start of query run. But when I run the query in analyzer, it gives me this error all the time.
"Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
System error in Program CL_RSR_REQUEST and form TEXT_ELEMENTS_GET: VARIABLE"
Can someone help,
Thanks in advance.

Hello,
Please check if OSS note 858458 is applicable in your case.
Regards,
Praveen

Similar Messages

  • Variable screen not popping up in BEx Analyzer

    Experts,
    I'm facing a wierd situation while executing queries in 3.5 BEx Analyzer. When the query is executed using 3.5 BEx Analyzer varibale screen does not pop and report strats running wide open. The Varible input is optional. But if  the report in executed using Web (From the 3.5 Query Designer) variable screen pops up. This happens with the same user ID.
    Please let me know if you have any ideas, could this be something realted to authorizations. In the meantime, i'm trying to change the varibale to mandatory and see if the variable screen pops up.
    Thanks

    Hello
    The standard behavior is not show the variable screen if it has no mandatory variables. In the webtemplate you may have the parameter forcing to show the variable screen added in the code. It is something like  "force variable screen". Please check if you can see that parameter.
    regards
    Lucimar

  • Can I run 2 monitor with one of the monitor having Full Screen for Elgato Eye TV?

    My mac mini has Elgato 'Eye TV' software that runs in 'Full Screen'.  I want to keep this setting & also connect another monitor to the macmini & use other Appilications on the other monitor?  Can I run 2 monitor with one of the monitor having Full Screen for Elgato Eye TV?
    My early 2009 macmini can run Mac OS 10.5, 10.6, 10.7 & 10.8

    Yes, run one from HDMI and the other from Thunderbolt/minidisplayport sockets. In EyeTV Preferences check the screen you want for full screen use and make sure your Dock is on the other one.

  • Can you run (G550) laptop with screen closed?

    I'm thinking of using my laptop as my main machine connected ot my monitor and use input devices. However, when I tried, closing the screen automatically hibernates the laptop. Is it possible to run the laptop with the screen closed?
    Solved!
    Go to Solution.

    you can do it on every laptop
    cause there is a power option on windows operating system  that you can set it to the prefrences that you like
    for instance not to shut down or hybernate when you close the lid

  • Problem with Variable screen in WAD

    Hi ,
    I have a problem with variable screen in WAD , in the varable seen it is displaying only Key , it is not giving any description , but in BEX is is displaying both Key and Description , can any only have an idea why is this happening . this is occuring only for one variable , rest are working fine .
    Thanks,
    Abraham

    Hi Abraham,
    thsi could be a problem from the specisic setting of the infocube. Please check the BEx Settings from the infocube. You can find them by the following steps:
    - search for the infocube
    - doubleclick on the infocube
    - choose an specific infoobjekt
    - right mousebutton and click "specific dataprovider settings"
    - check if the right entries are set
    Hope this will help.
    André

  • How can I create a query with tables in INFOSET?

    Dear Gurus,
    How can I create a query with tables in INFOSET?
    Just tables and fields INFOSET?
    Kind Regards,

    Hello
    Check following SCN Article for your understanding/reference:
    - [Using Infoset Query ,SAP Query and Quick Viewer|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10eab7af-0e54-2c10-28a5-87b47adbe1a5]
    Regards
    JP

  • How can I create a query with web service data control?

    I need to create a query with web service data control, in WSDL, it's query operation, there is a parameter message with the possible query criteria and a return message contains the results. I googled, but cannot find anything on the query with web service. I cannot find a "Named Criteria" in web service data control like normal data control. In Shay's blog, I saw the topics on update with web service data control. How can I create a query with web service data control? Thanks.

    Hi,
    This might help
    *054.     Search form using ADF WS Data Control and Complex input types*
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html

  • How to run execute immdiate with variables

    Hi friends,
    How to run execute immdiate with variables in v_stmt below?
    I dont know how to declare the value of i here.
    Set serveroutput on;
    DECLARE
       i        VARCHAR (20);
       v_stmt   VARCHAR2 (100);
       CURSOR c
       IS
          SELECT sqlid FROM temp1;
    BEGIN
       OPEN c;
       LOOP
          FETCH c INTO i;
          EXIT WHEN c%NOTFOUND;
          DBMS_OUTPUT.put_line (i);
          v_stmt := 'select * from table(dbms_xplan.display_cursor('&i',null))'
          execute immediate v_stmt;
       END LOOP;
       CLOSE c;
    END;
    /Regds,
    Kunwar.

    You first need to use a bind variable (named ':v' in SQL statement in my example):
    set serveroutput on;
    DECLARE
       i        VARCHAR (20);
       v_stmt   VARCHAR2 (100);
       CURSOR c
       IS
           -- modified for a quick test
          SELECT sql_id FROM v$sql where child_number > 2;
    BEGIN
       OPEN c;
       LOOP
          FETCH c INTO i;
          EXIT WHEN c%NOTFOUND;
          DBMS_OUTPUT.put_line (i);
          v_stmt := 'select * from table(dbms_xplan.display_cursor(:v,null))';
          execute immediate v_stmt using i;
       END LOOP;
       CLOSE c;
    END;
    /However because your SELECT statement returns several rows you need to adapt your code to process all rows returned (as already suggested in first reply to your message).
    Instead of using PL/SQL, I recommend to generate a SQL file using only SQL and then to run the generated SQL file.
    For example:
    spool edx.sql
    set serveroutput on
    declare
    v_stmt varchar2(100);
    v_q char(1):='''';
    begin
    dbms_output.put_line('spool edx.log');
    for s in (select sql_id from v$sql where child_number >2)
    loop
      dbms_output.put_line('select * from table(dbms_xplan.display_cursor(' || v_q || s.sql_id || v_q || ',null));');
    end loop;
    dbms_output.put_line('exit');
    end;
    spool ofThis generates a SQL file similar to :
    spool edx.log
    select * from table(dbms_xplan.display_cursor('5rygsj4dbw6jt',null));
    select * from table(dbms_xplan.display_cursor('5rygsj4dbw6jt',null));
    select * from table(dbms_xplan.display_cursor('5rygsj4dbw6jt',null));
    select * from table(dbms_xplan.display_cursor('fsbqktj5vw6n9',null));
    select * from table(dbms_xplan.display_cursor('6q42j0018w7t8',null));
    select * from table(dbms_xplan.display_cursor('a5mmhrrnpwjsc',null));
    select * from table(dbms_xplan.display_cursor('3c1kubcdjnppq',null));
    select * from table(dbms_xplan.display_cursor('3c1kubcdjnppq',null));
    select * from table(dbms_xplan.display_cursor('9gkq7rruycsjp',null));
    select * from table(dbms_xplan.display_cursor('f0wj261bm8snd',null));
    select * from table(dbms_xplan.display_cursor('ab3swhv5g138y',null));
    select * from table(dbms_xplan.display_cursor('6vgvyh4xw9c5g',null));
    select * from table(dbms_xplan.display_cursor('ak5crjygnpk60',null));
    select * from table(dbms_xplan.display_cursor('9p6bq1v54k13j',null));
    select * from table(dbms_xplan.display_cursor('19x1189chq3xd',null));
    select * from table(dbms_xplan.display_cursor('7sx5p1ug5ag12',null));
    select * from table(dbms_xplan.display_cursor('730vdzhng6m6g',null));
    select * from table(dbms_xplan.display_cursor('730vdzhng6m6g',null));
    select * from table(dbms_xplan.display_cursor('0v3dvmc22qnam',null));
    select * from table(dbms_xplan.display_cursor('0v3dvmc22qnam',null));
    select * from table(dbms_xplan.display_cursor('a1zv6wju3ftgv',null));
    select * from table(dbms_xplan.display_cursor('7ng34ruy5awxq',null));
    select * from table(dbms_xplan.display_cursor('7ng34ruy5awxq',null));
    select * from table(dbms_xplan.display_cursor('b2gnxm5z6r51n',null));
    select * from table(dbms_xplan.display_cursor('b2gnxm5z6r51n',null));
    select * from table(dbms_xplan.display_cursor('g4gp07gt2z920',null));
    select * from table(dbms_xplan.display_cursor('1gu8t96d0bdmu',null));
    select * from table(dbms_xplan.display_cursor('g00cj285jmgsw',null));
    select * from table(dbms_xplan.display_cursor('g00cj285jmgsw',null));
    select * from table(dbms_xplan.display_cursor('g00cj285jmgsw',null));
    select * from table(dbms_xplan.display_cursor('bn4b3vjw2mj3u',null));
    select * from table(dbms_xplan.display_cursor('38243c4tqrkxm',null));
    select * from table(dbms_xplan.display_cursor('2abjfnvy5rkyg',null));
    select * from table(dbms_xplan.display_cursor('350f5yrnnmshs',null));
    select * from table(dbms_xplan.display_cursor('350f5yrnnmshs',null));
    select * from table(dbms_xplan.display_cursor('3s1yukp05bzg6',null));
    select * from table(dbms_xplan.display_cursor('3s1yukp05bzg6',null));
    select * from table(dbms_xplan.display_cursor('1tgukkrqj3zhw',null));
    exit
    PL/SQL procedure successfully completed.Edited by: P. Forstmann on 20 mars 2013 19:06
    Edited by: P. Forstmann on 20 mars 2013 19:33

  • Can we run APD query on Forground

    Hi
    can we run APD query on Forground   is it possible

    you can execute the same from RSANWB and this executes the same in foreground ( dialog work process )

  • What is the 2nd sensor on the front, right next to the ear speaker for, and can I cover it up with a screen protector?

    I received a package of screen protectors from Tech Armor today that were advertised to work for the iPhone 5, 5S and 5C.  They don't have a cutout for the second sensor on the front face that is to the left of the ear speaker.
    What is that sensor for?  And can I cover it up with a screen guard without reducing the functionality/effectiveness of the hardware?
    Thanks,
    Pete.

    That's the proximity sensor, senses when you have the phone close to your face, turns off the screen to save battery and prevent accidental input from face touching the screen.
    It's ok to be covered by by a transparent screen protector. I have used screen protectors that cover up that sensor, no problem.

  • Can I run Photoshop CS6 with Vista?

    Can I run Photoshop CS6 with Vista?

    Hi Levine919,
    Photoshop CS6 has not been tested on Vista.
    Please check the Tech Specs : http://www.adobe.com/mena_en/products/photoshop/tech-specs.html

  • Can you run microsoft office with mavericks

    can you run microsoft office with mavericks?

    Yes if its the Microsoft office for Mac version
    Check the Microsoft packaging
    http://www.microsoft.com/uk/mac/products
    and
    http://store.apple.com/us/browse/guide/windows
    see thread
    https://discussions.apple.com/thread/5480447

  • Macbook pro-Freezes with black screen at start up.

    Macbook pro-Freezes with black screen at start up. I've tried inserting the Mac OS X install disc to run the hardware test(Restart and hold down D), But it still does nothing. Just the black screen. Now I can't get the disc out. I've tried holding down the track pad key upon start up but that doesn't work neither.
    What do I do??? Please help.

    Remove the battery to find your serial number in the battery bay. Then you can look your MBP up on EveryMac.com:
    http://www.everymac.com/ultimate-mac-lookup/
    That will give you all the information on your Mac.
    This is assuming that you have the MBP with the removable battery and not the unibody. The unibody has different graphic chips.
    Good luck!
    Message was edited by: S.U.

  • Advantages of BW Query in SAP Portal when compared to WEB BEx Analyzer

    Hi
    What are the advantages of having a BW Query in SAP Portal when compared to WEB BEx Analyzer
    I had to presention to higher managers of having a SAPPortal for BW report that WEB BEx Analyzer
    can any one please update me with few points (10-20) that will be useful for my presentation
    screen to geethikakrishna->gmail
    Thanks in advance

    Hi Krishna ,
    I think you should highlight the portal role in presentation
    Now a days all organizations using sap portal as their user interface. We can login portal once and we can get all the information from bw,crm...sap systems and non sap systems.
    so no need to login each and every system individually.
    The portal offers a single point of access to SAP and non-SAP information sources, enterprise applications, information repositories, databases and services in and outside your organization—all integrated into a single user experience. It provides you the tools to manage this knowledge, to analyze and interrelate it, and to share and collaborate on the basis of it.
    With its role-based content, and personalization features, the portal enables users—from employees and customers to partners and suppliers—to focus exclusively on data relevant to daily decision-making processes
    For all information on portals refer to help.sap.com->documentation->netweaver->Netweaver2004->English
    IN people integration you will find information on portals
    http://help.sap.com/saphelp_nw04/helpdata/en/19/4554426dd13555e10000000a1550b0/frameset.htm
    check below threads for some information
    easiest way to publish
    Easiest way to post existing BW queries onto portal
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/92dceb49fd25e5e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9d/24ff4009b8f223e10000000a155106/frameset.htm
    Execution of BW Reports Through Enterprise Portal
    Best Practices for BI Report publishing on Portal - BI 7
    Use of BI's Enterprise Portal
    The web application designer offers rich functionality for creating dashboards. In SAP NetWeaver BI 2004s (aka 7.0), when you publish a template it is automatically created as an iView for the portal.
    SAP NetWeaver 2004s BI - Define your Publishing Strategy Part 1
    Koti Reddy

  • Issue with Variable screen

    Hi,
    When I execute the webtemplate with cetain selection values, the out put looks good. When I go back and change the values in selection, the output is still showing the previous results.
    The variable screen is not refreshing in webtemplate.
    Please let me know if any solution for this....
    Thanks in advance,
    Murthy.

    Hi Rama,
    Cache memory stores previous result so you need to logout and then again run the WAD.
    Do the following 2 things and see:
    1. Empty your internet explorer cache, i.e. delete all temporary files from IE.
    2. Go into BI, execue RSRT1, select the cache monitor button. In there there is another button for main memory, click that. Search for the query in question and delete the cache from there.
    Close you Internet explorer and open the query again, it should work.
    Cheers,
    Uday.

Maybe you are looking for

  • Short dump error when using count(*)

    Hi Experts I am getting a short dump error when selecting the records >= current date - 30 see the coding and comment please correct the coding I want to know the ztable records it is important for command interface. I have 1402345 records available

  • Satellite L50D - Boot issues after Hard Drive replacement

    I have just upgraded my hard drive from the pathetic 5400 crod they supply to an SSHD@7200rpm but now have a major issue. I initially imaged the os from the old hard drive back to the new drive and have had chronic boot issues (1 in 3-4 boot attempts

  • In FAGLL03 GL related Vendor name display

    Hi When i execute report in FAGLL03 for retention account, is it possible to display GL related vendor name feild  in FAGLL03 report?

  • Client Status Reporting

    I've setup ConfigMgr Client Status Reporting and i'm getting this.. 16/12/2011 14:34:16 The ConfigMgr Client Status Reporting Service could not access the site database. Possible reasons: 1. The service could not access the ConfigMgr database using t

  • SOAP Response Unmarshal Problem

    I am using the SOAP Proxy Generator to generate stubs from a WSDL file.  This part is okay.  When I use a method in the stub, the runtime generates an exception -- "null".  Yes that all it says.  I have verified that there is a SOAP response. You can