Error WIJ 77777 - While using "prompt" option in Webi in Infoview

Dear Experts,
I have BOXI-R2 installed in Windows XP-SP3. When I try to use the "prompt" option in the reports, the display hangs until it says the session is timed out with the error message - 'Error WIJ 77777' and 'TCReference.java:435'.
This happens with all the universes I have. The report that I am trying is just a simple sample report with just 2 columns - 'Country' & 'Revenue' with a filter condition based on 'Country'.
Request your help, please.
Regards,
Velan C

Dear Experts,
I have BOXI-R2 installed in Windows XP-SP3. When I try to use the "prompt" option in the reports, the display hangs until it says the session is timed out with the error message - 'Error WIJ 77777' and 'TCReference.java:435'.
This happens only when I use the 'prompt' option in the filter. Other options are working fine.
This happens with all the universes I have. The report that I am trying is just a simple sample report with just 2 columns - 'Country' & 'Revenue' with a filter condition based on 'Country'.
Request your help, please.
Regards,
Velan C

Similar Messages

  • Error while using selection option variable in the selection screen

    Hi All,
    I am facing an issue while using selection option variable in the selection screen for one of my reports.
    Scenario: For the field "Region From" we need to have wild card logic () in tes selection screen, for example if we put "BE" in the selection screen for the field Region From then the query should be executed only for those "Region From" values which begin from "BE".
    Approach: For the above requirement I have made a selection option variable for "Region From". This allows use wild card
    But when the report is executed we get the following error:
    "System error in program CL_RSR_REQUEST. Invalid filter on ETVRGNFR".
    (ETVRGNFR is technical name of the info object Region From)
    Though the report is executed it displays all the values for the field "Region From" irrespective of the selection given in the selection screen.
    Please give suggestions / alternate solutions to crack this issue.
    Thanks in advance
    Regards
    Priyanka.

    Hi,
    Try to use a variable of type Customer Exit and do the validation inside the exit to display according to your request.
    This is just my view, i am not sure if u are already using this or Char. Variable.
    Cheers.
    Ranga.

  • Problem in reports 6i  while using delimiter option.

    Hi,
    I am facing problem in report writer while using delimiter option.
    Report summary
    ==============
    In my report I am having two queries in data model and two different repeating frame for each in layout.
    These quires are called based on the user parameter. That means if user parameter is 1 then query 1 is called and the report is kick off and same for query 2 when user parameter is 2).
    Problem Encountered
    =================
    Both these reports are running fine while using pdf option to generate report .
    While using delimiter option only one of the query is able to generate report (based on which ever is created first and rest will give 0 byte file).
    I have also trapped it while using messages and it is logically flowing fine.
    I think report writer does not support such scenario.
    please expedite on this.
    thankx
    peyush

    Hi,
    There are no such limitations with Reports. If I understand properly, you run the Report twice, in each run, you are trying to execute different query, and you generate two dilimited Reports output files? This should work fine. Try out the latest Reports 6i patch-10 for this. You can even approach Oracle Support with your testcase. FYI, with Reports 6i patch-11, a new feature "dlimited data" is introduced which will give delimited output with a data dump i.e it would not be dependent upon the Reports layout. You can probably try out this new feature also.
    Thanks,
    Rohit Hi Rohit,
    Thanks for the information.
    well I am generating single output file on each run .
    the problem is somewhat funny.
    I have build query2 in data model after query1.
    query 1 is giving me correct output both in .PDF and delimiter version.
    But query2 is giving me 0 byte file for delimiter version although in .PDF it is running fine.
    When I took out query2 to another module it is running fine for both.
    I hope this make sense.
    Moreover if u still not clear about the problem and thinks that u can help me out please send me ur mail id so that I can send you the RDF copy.
    Thanks
    Mohit...

  • Error while using save option in OfficeCntrol UI

    Hi Experts
    I am facing issue while using OfficeControl ui in my webdynpro java application.
    I am trying to save the xlsx spreadsheet data from the officecontrol UI using the below code:
    try
    IWDIOSFactory factoryInstance=null;
    IWDIOSSpreadsheet documentInstance=null;
    IWDAttributePointer attributePointer = wdContext.currentMiscElement().getAttributePointer("AttPointercontext");
    if (factoryInstance == null)
          IWDAttributeInfo info =   wdContext.getNodeInfo().getChild("Misc").getAttribute("OCResource");
          factoryInstance       =    WDOfficeControlMethods.getMethodHandlerInstance(info);
    documentInstance = factoryInstance.getSpreadsheet();
    IWDIOSResult iosResult =  documentInstance.saveDocument(attributePointer);
    }catch (Exception e) {
              // TODO: handle exception
              wdComponentAPI.getMessageManager().reportException(e.getLocalizedMessage());
    It is throwing exception "invalid message: null" on executing line factoryInstance.getSpreadsheet(). I checked that factory instance is not giving null.
    Can anybody tell, why this null error is coming?
    Is there any other way to save the document or calling the officecontroll save event?
    I tried another work around by binding an action in the onSave of officecontrol but in that case i need to show a popup confirmation. But while using the popup it is giving below runtime error:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Security Violation: Root View 'PlannerCompView' not part of the active modal window 'KPDPBJBL.DialogView.Window'!
    I am using CE7.1EHP1.
    Highly appreciate your answers
    Regards
    Sajith P

    This has been solved myself.
    The code should as follows:
    public void saveExcel(){
    try
    attributePointer = wdContext.currentMiscElement().getAttributePointer("AttPointercontext");
    iosResult = documentInstance.saveDocument(attributePointer);
    File excelfile=new File("<Folderpath>""<file name>"".xlsx");
    XSSFWorkbook wb = new XSSFWorkbook(input);
    XSSFSheet sh = wb.getSheet("<Sheet name>");
    FileOutputStream out = new FileOutputStream(excelfile);
    //@@ Write the file in the output stream
    wb.write(out);
    //@@Close the output stream
    out.flush();
    out.close();
    }catch (Exception e) {
    // TODO: handle exception
    wdComponentAPI.getMessageManager().reportException(e.getLocalizedMessage());
    public void closeExcel(){
    //To close excel file
    try
    factoryInstance=null;
    documentInstance.closeDocument(attributePointer);
    }catch (Exception e) {
    // TODO: handle exception
    wdComponentAPI.getMessageManager().reportException(e.getLocalizedMessage());
      //@@begin others
    IWDIOSFactory factoryInstance=null;
    IWDIOSSpreadsheet documentInstance=null;
    IWDAttributePointer attributePointer;
    IWDIOSResult iosResult;
      //@@end
    Note: Every time if you want to open a new file in the officeui close the existing file fist.
    Regards
    Sajith P

  • 11i Login Page is showing 'Error on Page' while using IE 7

    Hi DBAs,
    I am using Oracle 11.5.10.2 with DB 10.2.0.4 (Single Instance). The EBS is on RUP6 and using JDK 1.6.0_12.
    I was using Firefox and not getting any issue. I used first time IE-7 (7.0.5x) to access the application. I noticed that Pressing the 'Login' button on Login Page , it was saying in the left bottom of the IE says 'Error on page' and was not navigate to any page or did not perform any action.
    I verified all the services and everything was OK. While using Firefox , I was able to navigate the application w/o any issue.
    Using IE 7 , I am able to access
    http://host.domain:8000/OA_HTML/fndvald.jsp?username=sysadmin&;password=sysadmin
    Most of the stuff seems to be working fine while logging in using above URL but the 'GO' buttons are throwing same error in IE 'Error on page'. Rest of the Bottons like 'Edit Navigator' , 'Edit Favorites' are working fine but when on any Page I press the 'Go' button then IE showing Error. It seems to me that when a button need to navigate to next page then IE saying 'Error on page' but when a button have to lunch a new page it is working fine.
    All the responsibilities and links are working fine. Application Navigation using Firefox is working absolutely fine.
    Seeking your advise and suggestions to resolve the issue.
    Thanks
    -Samar-

    Hi Samar,
    You can clear the cache as follows (login as applmgr user, and source the application env file):
    $ cd $COMMON_TOP/_pages
    $ rm -R *
    ML Note: 285218.1 is not helpful as I am on later version of EBS (11.5.10.2 with RUP6 and Developer6i Patchset 19). At Client side I am using Windows XP SP3 with IE 7.0.5.x with JInit 1.3.21 and JRE 1.6.0.12.Did you review the steps under "Recommended MSIE Browser Settings" section?
    Can you reproduce the issue with JInitiator? If yes, any errors in the JInitiator console window? Enable debug (you may also enable trace for Sun JRE) and see if any errors are reported there.
    Note: 549423.1 - How to enable tracing and logging for Sun JRE (Native Plug-in)
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=549423.1
    Regards,
    Hussein

  • Licence Error while Using nqcmd with Analytics Web DSN

    Hi,
    While running nqcmd with Analytics Web DSN i am getting a DataDirect error, stating that you do not have appropriate licence to run ODBC Data Direct.
    I am getting this on Linux box but while running the same on Windows their is no such error.
    Have any one of you got such kind of stuff. I am using OBIEE which Oracle provides on her website for free for development purpose.
    Please help.
    Edited by: RKK on Oct 3, 2011 10:01 PM

    Hi,
    kindly Refer
    https://forums.oracle.com/forums/thread.jspa?messageID=2289534&#2289534
    Thanks
    Deva

  • Error in CC while using SAP_XI_IDOC/IDOCXmlToFlatConvertor module

    Hi,
    We are getting an error in CC monitoring while using SAP_XI_IDOC/IDOCXmlToFlatConvertor module for converting IDoc XML to flat file. Below is the error text:
    "Message processing failed. Cause: com.sap.conn.idoc.IDocParseException: (7) IDOC_ERROR_PARSE_FAILURE: An IDocConversionException occurred while parsing IDocXML for type <ZDELVRY3>: state=READING_FIELD_VALUE_TAG, charPosition=7404, lineNumber=2, columnNumber=7366"
    Any suggestion how to resolve it.
    Regards
    Pravesh

    Please check the OSS note below and install the mentioned patch accordingly:
    [Note 1278687 - Exception in the IDocXMLProcessor (IDOC_ERROR_PARSE_FAILURE)|https://websmp230.sap-ag.de/sap(bD1wdCZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1278687]
    If it persists, check if are there any mapping errors on the Audit Logs for the failed message.

  • Memory Leak while using -Xrunhprof option in Linux OS

    While using the follwing option in my application there is memory leak in JVM in Linux OS.
    -Xrunhprof:heap=all,cpu=times,monitor=y,file=/home/gemini/dilip/www2.log,thread=yIs this a bug ??

    Little lost here. Looks like you are facing memory leaks in Tuxedo 7.1 WS
    client code when it talks with Tuxedo 6.x? Is this correct?
    If so, try installing latest rolling patch for Tuxedo 7.1.
    We recently fixed couple of memory leaks in interop area. One was related to
    compression.
    _shailesh
    Scott Orshan <[email protected]> wrote in message
    news:[email protected]..
    If you are running with the latest patch, then report these problems to
    Support, giving them sample code so that they can reproduce the problem.
    Scott
    Thomas Winter wrote:
    Hi Scott,
    as an additional information:
    The guys at the server side changed something (their
    formaly useing the old 6.3 libraries at server side)
    and surprise... the client has no memory leak anymore.
    But, if more than one thread at the same time use the atmi calls
    there is still some memory consumption.
    The workaround is to use a mutex object to make sure, that
    only one thread use the atmi calls.
    AFAIS Tuxedo has an Problem with Multithreading.
    Thx
    Thomas

  • Runtime error in MIRO while using User/Screen exit

    Hello,
    I have implemented an exit in ABAP for MIRO which when transported to Quality server through runtime error.
    I have used EXIT (SMOD) : LFDCB001 which contains FM -> EXIT_SAPLFDCB_001 and include -> ZXM08U31. In this exit I have written my code to disable Inv. Party field. This field exist in Details Tab in Miro Transaction.
    Location of the field: MIRO -> Details (tab) -> Inv. Party (Field)
    Code written in include ZXM08U31 is:
    LOOP AT SCREEN.
      IF screen-name = 'INVFO-LIFRE'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    This exit is assigned to a project in CMOD and I tested the same in Development system. It is working perfectly.
    Now I transported the TR (Includes program ZXM08U31 and Customer enhancement projects ZMIRO). Now when I run MIRO in quality server it triggers the my logic and then through runtime error.
    Runtime error says:
    Short text
        Dynpro does not exist
    Error analysis
        The system attempted to use dynpro 0400 in program "SAPLXM08".
        This dynpro does not exist.
    I agree that screen 400 does not exists in program for MIRO but it does not exists in development system as well. So if the runtime error is valid in QEC server then why not in DEV server. And when it can run successfully in DEV server why cant it run in QEC server.
    Hope I have explained all the things in detail.
    Please provide me the solution since user can bombard anytime for the MIRO dump everytime in QEC.
    Regards,
    Harjeet Grover

    Hi Harjeet,
    Reason of your Dump is that the enhancement "LFDCB001" which you used contains one Function module exit "EXIT_SAPLFDCB_001" and another one screen exit in calling screen  "SAPLFDCB" number 0150.
    So when you activate your project these above mentioned both components were activated.
    So when you execute transaction SAP looks for called screen "SAPLXM08" No-0400 but as you havn't created and program go for DUMP.
    Solution - Just Create called screen  "SAPLXM08" No-0400 and activate.
    Thanks,
    Vijay

  • Search help is not coming while using select-options?

    Hi All,
    I am using select options in my selection screen, i used wdr_select_options, also i coded some parameter values also
    ( non select-options ). For that field i am not getting search help. If i create as normal i am getting? Suggestions pelase?
    Thanks,
    Venkat.

    HI
    what kind of search help is associated with the field.
    ADD_SELECTION_FIELD method has some specific parametrs for value_help
    give the input there and try again.
    these parameters are
    I_VALUE_HELP_TYPE
    I_VALUE_HELP_ID
    I_VALUE_HELP_MODE
    I_VALUE_HELP_STRUCTURE
    thanks
    sarbjeet dingh

  • #SYNTAX error while using Merge Dimension in webi report

    Hi All,
    # Syntax error when using merge dimension in webi report
    screen shot has been attached.
    iam using BO 4.0 SP6
    checked the datatypes in BW
    they are same in BW in both the queries
    i followed the given links but no result.
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3138343530303526
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3136323339323126
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3137353438313026
    http://scn.sap.com/thread/3592588#15241008
    Need Help!!!!!
    Regards
    Sushma

    Hi Mark,
    Thanks for the reply,
    I did not use any formula,
    I used merge dimension
    Anyways i tried in other system,it s working fine.
    Regards
    sushma

  • Error in dashboard while using Add Query

    Hi All,
    I got an  error while connecting to Bex Query in Dashboard.
    Created olap connection in IDT
    Iam Using Dashboard 4.1 sp2 .Dashboard Server has been restarted.
    Error screenshot has been attached
    Need Help.....
    Regards
    Sushma.

    Hi,
    Try to execute the BEx query in webi and check whether its running fine.
    1974638 - Request Processing Failed. (XLS 000009) Query script generation failed. See your administrator. The result object 'xxxxx' is missing from result objects. (IES 00013)
    Try to remove the prompt from the BEx query and create it in query browser connection and test it, you cannot pass the prompt empty if its created as mandatory in BEx, please check that also.
    --SumanT

  • Photoshop gives, Program Error, when attempting to use blending options in RGB

    This problem started today when i tryed to throw a drop shadow on a layer. in RGB mode.  "Program Error," appeared and would not let me access any Blending options.  Although, in cmyk mode it works perfectly fine.  Was some hotkey hit on accident or has something gone wrong?  Help!
    Adam
    Adobe Photoshop CS6 Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Windows 7 64-bit

    Hmm.
    Can you tell us more about what you're doing and what sort of document(s) you are using?

  • Dbhelp error in win98 while using java

    Hi everyone,
    i am trying to write a screen capture program using Robot class and i have an error while not only woking with my project but also working with any other Applet or application.
    The error is as followed :
    An error occured.Dbhelp error!
    it writes only this and neither javac nor jvm works!!!
    I dont know what to do , i formatted my pc 3 times and dealed with some setings in Java console of Java plug in but it didnt work!

    I been having a similar problem with Java JRE.
    At the end of installing or when the browser plugin exits with the browser, Dbhelp causes a illegal operation in windows. Everything seems to work but illegal operations in Dbhelp is annoying. The problem on certain PC's running Windows 98 SE and with JRE version 1.4.2_01 to 1.4.2_05 and 1.5.0Beta2. The problem does not affect JRE version 1.4.1_07 and earlier.

  • Error(XLS 000006)  while using .UNX universe in dashBoard Designer.

    Hii Expert,
    I have created a .UNX universe based on Excel Workbook using IDT and its working fine while i am running it in The Repository Area of IDT,
    But When i am going to use this Universe inside DashBoard Designer for designing the DashBoard,using Query Browser, it is showing the Error
    Universe Axyzwtyzst.. not found(XLS 000006). the dataSource can not be generated for the <Universe Name>.
    if you have any Idea Please Share your views on this issue.
    Regards
    Prakash

    Hi Nakul,
    Thanks for your Reply, Although i am not sure about your Reply, But One more Issue is that when i am going to Create a Webi Report using the Same Universe(i.e unx created on Excel), It also gives Error Like
    Database Error:[Microsoft ][ODBC Driver Manager] Data Source Name Not Found and no Default driver Specified. (IES 10901)(WIS10901)
    com.businessobjects.sdk.core.server.CommunicationException$UnexpectedServerException: Database error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified. (IES 10901)
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:144)
         at com.businessobjects.sdk.core.exception.ExceptionBuilder.make(ExceptionBuilder.java:101)
         at com.businessobjects.sdk.core.server.common.CommonRequestHandler.afterProcessing(CommonRequestHandler.java:127)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.processIt(AbstractServer.java:178)
         at com.businessobjects.sdk.core.server.internal.AbstractServer.process(AbstractServer.java:133)
         at com.businessobjects.sdk.core.server.internal.InstanceServer.process(InstanceServer.java:94)
         at com.sap.sl.sdk.services.util.ServerRequestProcessor.processServerRequest(ServerRequestProcessor.java:49)
         at com.sap.sl.sdk.dataprovider.service.DataProviderServiceImpl.processDataProviderCommand(DataProviderServiceImpl.java:419)
         at com.sap.sl.sdk.dataprovider.service.DataProviderServiceImpl.processDataProviderCommand(DataProviderServiceImpl.java:431)
         at com.sap.sl.sdk.dataprovider.service.DataProviderServiceImpl.run(DataProviderServiceImpl.java:192)
         at com.sap.sl.sdk.workspace.service.WorkspaceServiceImpl.run(WorkspaceServiceImpl.java:346)
    any Idea please ?
    Thanks
    Prakash

Maybe you are looking for