Error in my OOALV report ?

Hi all,
Could you any one of you please tell me. I am finding a strange error. I am modifying the existing customized report by adding two columns in the output. First i have done same changes in a local object (i.e i have copied the entire code and changed things . They are using FM: reuse_alv_fieldcat_merge.
and they are passing a structure to that FM its a globally defined structure. instead of adding fields to the global structure i have added as below
DATA:BEGIN OF it_summa OCCURS 1000.
        INCLUDE STRUCTURE /nyh/fi_skuld_summa.
DaTA:   busab like lfb1-busab,
        brsch like lfa1-brsch.
DATA:END OF it_summa.
and since they are using FM : fieldcat_merge I have appended the fields  at the end like this at the end of this form
FORM create_field_catalogue.
  REFRESH it_fcat.
  p_d1x = p_d1 + 1.
  p_d2x = p_d2 + 1.
  p_d3x = p_d3 + 1.
  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      i_structure_name = '/NYH/FI_SKULD_SUMMA'
    CHANGING
      ct_fieldcat      = it_fcat.
  LOOP AT it_fcat INTO wa_fcat.
    IF wa_fcat-fieldname = 'LIFNR'.
      wa_fcat-scrtext_l = 'Vendor'.
      wa_fcat-scrtext_m = 'Vendor'.
      wa_fcat-scrtext_s = 'Vendor'.
      wa_fcat-reptext = 'Vendor'.
      wa_fcat-col_pos = 1.
      wa_fcat-outputlen = 10.
      wa_fcat-key = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'NAME1'.
      wa_fcat-scrtext_l = 'Name'.
      wa_fcat-scrtext_m = 'Name'.
      wa_fcat-scrtext_s = 'Name'.
      wa_fcat-reptext = 'Name'.
      wa_fcat-col_pos = 2.
      wa_fcat-outputlen = 25.
      wa_fcat-emphasize = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'TELF1'.
      wa_fcat-scrtext_l = 'Phone'.
      wa_fcat-scrtext_m = 'Phone'.
      wa_fcat-scrtext_s = 'Phone'.
      wa_fcat-reptext = 'Phone'.
      wa_fcat-col_pos = 5.
      wa_fcat-outputlen = 10.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'SORTL'.
      wa_fcat-scrtext_l = 'ID'.
      wa_fcat-scrtext_m = 'ID'.
      wa_fcat-scrtext_s = 'ID'.
      wa_fcat-reptext = 'ID'.
      wa_fcat-col_pos = 6.
      wa_fcat-outputlen = 10.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'WAERS'.
      wa_fcat-col_pos = 7.
      wa_fcat-outputlen = 7.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'SKULD'.
      wa_fcat-col_pos = 8.
      wa_fcat-outputlen = 15.
      wa_fcat-do_sum = 'X'.
      wa_fcat-scrtext_l = 'Amount'.
      wa_fcat-scrtext_m = 'Amount'.
      wa_fcat-scrtext_s = 'Amount'.
      wa_fcat-reptext = 'Amount'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'TBIL1'.
      CLEAR wa_fcat-scrtext_l.
      WRITE '<'   TO wa_fcat-scrtext_l(1).
      WRITE p_d1  TO wa_fcat-scrtext_l+1(5).
      WRITE 'days' TO wa_fcat-scrtext_l+6(5).
      CONDENSE wa_fcat-scrtext_l.
      wa_fcat-scrtext_m = wa_fcat-scrtext_l.
      wa_fcat-scrtext_s = wa_fcat-scrtext_l.
      wa_fcat-reptext = wa_fcat-scrtext_l.
      wa_fcat-col_pos = 12.
      wa_fcat-outputlen = 15.
      wa_fcat-do_sum = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'TBIL2'.
      CLEAR wa_fcat-scrtext_l.
      WRITE p_d1x TO wa_fcat-scrtext_l(5).
      WRITE '-'   TO wa_fcat-scrtext_l+5(1).
      WRITE p_d2  TO wa_fcat-scrtext_l+6(5).
      WRITE 'days' TO wa_fcat-scrtext_l+12(5).
      CONDENSE wa_fcat-scrtext_l.
      wa_fcat-scrtext_m = wa_fcat-scrtext_l.
      wa_fcat-scrtext_s = wa_fcat-scrtext_l.
      wa_fcat-reptext = wa_fcat-scrtext_l.
      wa_fcat-col_pos = 13.
      wa_fcat-outputlen = 15.
      wa_fcat-do_sum = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'TBIL3'.
      CLEAR wa_fcat-scrtext_l.
      WRITE p_d2x TO wa_fcat-scrtext_l(5).
      WRITE '-'   TO wa_fcat-scrtext_l+5(1).
      WRITE p_d3  TO wa_fcat-scrtext_l+6(5).
      WRITE 'days' TO wa_fcat-scrtext_l+12(5).
      CONDENSE wa_fcat-scrtext_l.
      wa_fcat-scrtext_m = wa_fcat-scrtext_l.
      wa_fcat-scrtext_s = wa_fcat-scrtext_l.
      wa_fcat-reptext = wa_fcat-scrtext_l.
      wa_fcat-col_pos = 14.
      wa_fcat-outputlen = 15.
      wa_fcat-do_sum = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'TBIL4'.
      CLEAR wa_fcat-scrtext_l.
      WRITE '>'   TO wa_fcat-scrtext_l(1).
      WRITE p_d3x  TO wa_fcat-scrtext_l+1(5).
      WRITE 'days' TO wa_fcat-scrtext_l+6(5).
      CONDENSE wa_fcat-scrtext_l.
      wa_fcat-scrtext_m = wa_fcat-scrtext_l.
      wa_fcat-scrtext_s = wa_fcat-scrtext_l.
      wa_fcat-reptext = wa_fcat-scrtext_l.
      wa_fcat-col_pos = 15.
      wa_fcat-outputlen = 15.
      wa_fcat-do_sum = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ELSEIF wa_fcat-fieldname = 'DMBTR'.
      DELETE it_fcat.
    ELSE.
      wa_fcat-no_out = 'X'.
      MODIFY it_fcat FROM wa_fcat.
    ENDIF.
  ENDLOOP.
  clear wa_fcat.
  wa_fcat-fieldname = 'BUSAB'.
  wa_fcat-tabname   = '1'.
  wa_fcat-ref_field = 'BUSAB'.
  wa_fcat-ref_table = 'LFB1'.
  wa_fcat-col_pos     = '3'.
  wa_fcat-scrtext_l   = 'Accounting Clerk'.
  wa_fcat-scrtext_m   = 'Accounting Clerk'.
  wa_fcat-scrtext_s   = 'Accounting Clerk'.
  wa_fcat-reptext     = 'Accounting Clerk'.
  wa_fcat-outputlen = 2.
  wa_fcat-emphasize = 'X'.
  Append wa_fcat to it_fcat.
  clear wa_fcat.
  wa_fcat-fieldname = 'BRSCH'.
  wa_fcat-tabname   = '1'.
  wa_fcat-ref_field = 'BRSCH'.
  wa_fcat-ref_table = 'LFA1'.
  wa_fcat-col_pos     = '4'.
  wa_fcat-scrtext_l   = 'Industry Key'.
  wa_fcat-scrtext_m   = 'Industry Key'.
  wa_fcat-scrtext_s   = 'Industry Key'.
  wa_fcat-reptext     = 'Industry Key'.
  wa_fcat-outputlen = 4.
  wa_fcat-emphasize = 'X'.
  Append wa_fcat to it_fcat.
  clear wa_fcat.
ENDFORM.                    " create_field_catalogue
now the same code is working in local object. but when it is save under some request its not working .
Could you any please check out my code
Thanks in advance.....
Regards
Vardhan

This code will Tranfer the Reuse fieldcatlog to LVC fieldcatalog.
in this case no need to enhance the standard structure. you populate the reuse fieldcatalog. and then transfer to LVC one.
REPORT  ZTEST_FIELDCATLOG.
type-pools: slis.
DATA: it_fieldcat type SLIS_T_FIELDCAT_ALV,
     it_lvcfcat type lvc_t_fcat.
include ztest_top.
CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
EXPORTING
   I_PROGRAM_NAME               = sy-repid
   I_INTERNAL_TABNAME           = 'IT_DATA'
   I_INCLNAME                   = 'ZTEST_TOP'
  CHANGING
    ct_fieldcat                  = it_fieldcat
* EXCEPTIONS
*   INCONSISTENT_INTERFACE       = 1
*   PROGRAM_ERROR                = 2
*   OTHERS                       = 3
IF sy-subrc  0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
CALL FUNCTION 'LVC_TRANSFER_FROM_SLIS'
  EXPORTING
    it_fieldcat_alv       = it_fieldcat
*   IT_SORT_ALV           =
*   IT_FILTER_ALV         =
*   IS_LAYOUT_ALV         =
IMPORTING
   ET_FIELDCAT_LVC       = it_lvcfcat
*   ET_SORT_LVC           =
*   ET_FILTER_LVC         =
*   ES_LAYOUT_LVC         =
  tables
    it_data               = it_data
* EXCEPTIONS
*   IT_DATA_MISSING       = 1
*   OTHERS                = 2
IF sy-subrc  0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
BREAK-POINT.
Top include
*&  Include           ZTEST_TOP
data: begin of it_data occurs 0,
        vbeln like vbak-vbeln,
        matnr like mara-matnr,
      end of it_data.
Regards
Vijay babu Dudla

Similar Messages

  • Error while running a report

    Hi all,
    I am getting this particular error while running a report. The error is:
    <b>SQL Error: 604
    System error in program SAPLRRK0 and form RSRDR;SRRK0F30-01-
    Diagnosis
    This internal error is a targeted termination since the program has an
    incorrect status.
    Procedure
    Analyse the situation and inform SAP.
      Notification Number BRAIN 299 </b>
    Could anyone tell me what that means?
    Thanks In advance,
    Raj

    Hi Raj,
    There are a few OSS Notes for your issue.
    If your Query has hierarchy in it then check 734184
    If your query is based on Infoset then check Note 784502 and 701941.
    Also check 668921.
    Bye
    Dinesh

  • Error while opening a report in FRstudio client machine.

    Hi,I'm getting below error while opening a report in FRstudio client machine. please help me if any of you resolved this issue earlier.
    client laptop: 64bit windows7
    hyperion version: 11.1.2.2
    error msg:
    "HARSnapin Initialize() Error -2147467259 - ; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
         java.io.InvalidClassException: com.hyperion.reporting.graphics.GridObject; local class incompatible: stream classdesc serialVersionUID = 5432192847655595077, local class serialVersionUID = -5245705824007679661"
    thanks

    I've seen umarshalling error when there is a difference between the client and server version. Is there a patch applied? I would recommend to uninstall the existing one and install if from Workspace. (this will ensure that you've the correct client version)
    Regards
    Celvin
    http://www.orahyplabs.com

  • A error while scheduling a report

    Hi Experts . i need your help .
    I have a user getting error when he is trying to schedule a workbook in the Discoverer plus/desktop version is 10g (9.0.4) on linux
    This is the error .
    Error
    Database Error - ORA-01031: insufficient privileges
    ORA-06152: at "SYS.DBMS_SYS_SQL", line 1608
    ORA-06152: at "SYS.DBMS_SQL", line 33
    ORA-06152: at "DISCO_WKB_REP.EUL5_BATCH_REPOSITORY", line 399
    ORA-06152: at line 2
    The user is getting this error only for one report . Please let me know how to resolve the issue ?
    Thanks
    Kanna

    check your discoverer user role using:
    select granted_role from dba_role_privs where grantee=upper('<username>');
    from your database. the database to which the desktop is connecting.
    check for connect, resouce, multiorg roles.

  • Error while running the Report

    Hi ,
    I am trying to run the Report in Bex Analyzer. and once I enter the value for the variable, it gives me message that "Element is not correctly define (please check query)" and when i click on the error it gives me detail message as below :
    <b><b>Diagnosis
    Additional elements that do not have the same dimension, such as quantities and amounts or amounts and ratios, are added to element Sales Qty Gallons .
    Procedure
    Check your definition.
    If you still want to use this addition, you can suppress the dimensionality of one or both subexpressions by using the 'NODIM' operator. The system then interprets this or these subexpressions as nondimensional numbers.
    In the executed query, you can use the Key Figure Definition function to analyze element Sales Qty Gallons .</b></b>
    Now the thing is I am already using "NODIM" operator to add those elements. and I m not sure why this error is coming up now because I have created this query a while ago and it wasnt giving me any error at that time but now I have make some changes into it and it;s giving me this error while running the Report. But the thing is I didnt change anything in the element for which it;s showing me error.
    Thanks,
    Naitik

    Naitik,
    There are two or more key figures in your report. They are defined by different dimensions and somewhere you have a formula with both these key figure.
    Edit your query and select the Check Query icon. It will tell you which calculation you have the problem with. Edit this calculation to see which key figures are present.
    If the formula is logically correct, best thing to do is to put a NODIM( ) on your key figures that make up the formula, and then change you formula to look at the NODIM( ) version.
    That will fix things for you,
    Regards
    Gill

  • Error while opening the report.

    hi,
      Some time i am getting "500 Internal Server Error',while executing the report.Please check the following exception and  give the possible reason for getting this kind of problem.
    <b>   500 Internal Server Error</b>                                                                               
    BEx Web Application
    Failed to process request. Please contact your system administrator.
    <b>Error Summary</b>
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator.
    To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    <b>Root Cause</b>
    The initial exception that caused the request to fail, was:
    Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:148)
    at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)
    <b>Messages</b>
    ABEND: Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    ABEND: Error in BW:
    <b>System Environment</b>
    <b>Server</b>
    BI Java Release: 7 - Patch level: 0000000009 - Description: BI Web Applications Java - Additional info:  - Production mode: true
    BI ABAP Release: 700 - Patch level: 0009 - Description: SAP NetWeaver BI 7.0 (BIPCLNT300) - Additional info:  - Production mode: true
    Java Virtual Machine Classic VM - IBM Corporation - 1.4.2
    Operating System AIX - ppc64 - 5.3
    <b>Context</b>
    ACCESSIBLE false
    BEx Runtime Version 1
    CACHE true
    CONTENT_PADDING true
    COUNTRY 
    DEBUG false
    DEBUG_LEVEL 0
    DEBUG_MESSAGES false
    Initial Query String BUILDTREE=false&NAVIGATIONTARGET=navurl%3A%2F%2F7b8b73fe5fd57ae6c5c1a24aed5d1ac4&NAVPATHUPDATE=false&RELATIVENAVBASE=&SAP-LAFVERSIONS=portal%3A7.0.9.0.1%3Bur%3A7.0.9.0.1&SAP-PP-CONSUMERBASEURL=3A80&SAP-PP-PRODUCERID=com.lenovo.BIP_Lenovosap&TEMPLATE=Z_WEB_CR_ZCRMOPPI_Q0032&THEME=LenovoBlueTwo
    LANGUAGE en
    Master System Alias BIPCLNT300
    PROFILING false
    RTL false
    Request URL http
    SAP_BW_IVIEW_ID pcd:portal_content/d029033/com..BI_Reports/com.BI_Analytics/Z_WEB_CR_ZCRMOPPI_Q0032
    SAP_EXTERNAL_SID CLGF6EORaEN7Vivt8TVaQw==3eTBxzbQZSMLxB4o3h9+7w==
    THEME_NAME LenovoBlueTwo
    TRACE false
    TRAY_TYPE PLAIN
    Time Thu Oct 04 03:14:20 PDT 2007
    User EPSUPPORT (USER.R3_DATASOURCE.EPSUPPORT)
    <b>Full Exception Chain</b>
    Log ID 00145ED13086005200000889000C719A00043BA80CB04B89
    com.sap.ip.bi.webapplications.runtime.controller.MessageException: Error during conversion of the Web template "Z_WEB_CR_ZCRMOPPI_Q0032 from the master system     at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:2055)     at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.doProcessRequest(Controller.java:841)     at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.processRequest(Controller.java:775)     at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:412)     at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)     at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java(Compiled Code))     at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java(Compiled Code))     at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)     at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)     at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java(Compiled Code))     at java.security.AccessController.doPrivileged1(Native Method)     at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))     at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java(Compiled Code))     at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))     at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java(Compiled Code))     at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java(Compiled Code))     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java(Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Inlined Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java(Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java(Compiled Code))     at com.sap.engine.services.httpserver.server.Client.handle(Client.java(Inlined Compiled Code))     at com.sap.engine.services.httpserver.server.Processor.request(Processor.java(Compiled Code))     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))     at java.security.AccessController.doPrivileged1(Native Method)     at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))Caused by: com.sap.ip.bi.base.exception.BIBaseRuntimeException: Error during conversion of the Web template "Z_WEB_CR_ZCRMOPPI_Q0032 from the master system     at com.sap.ip.bi.webapplications.runtime.jsp.portal.service.template.PortalTemplateAccessService.getTemplateContent(PortalTemplateAccessService.java:93)     at com.sap.ip.bi.webapplications.runtime.preprocessor.Preprocessor.parseTemplate(Preprocessor.java:161)     at com.sap.ip.bi.webapplications.runtime.xml.XmlTemplateAssembler.doInit(XmlTemplateAssembler.java:81)     at com.sap.ip.bi.webapplications.runtime.template.TemplateAssembler.init(TemplateAssembler.java:118)     at com.sap.ip.bi.webapplications.runtime.base.Template.doInit(Template.java:105)     at com.sap.ip.bi.webapplications.runtime.base.PageObject.init(PageObject.java:232)     at com.sap.ip.bi.webapplications.runtime.base.Container.init(Container.java:46)     at com.sap.ip.bi.webapplications.runtime.impl.Page.initPageObject(Page.java:3226)     at com.sap.ip.bi.webapplications.runtime.impl.Page.createPageObject(Page.java:3427)     at com.sap.ip.bi.webapplications.runtime.impl.Page.setTemplate(Page.java:4355)     at com.sap.ip.bi.webapplications.runtime.impl.Page.doSetTemplateCommand(Page.java:4091)     at sun.reflect.GeneratedMethodAccessor293.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))     at java.lang.reflect.Method.invoke(Method.java(Compiled Code))     at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:101)     at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:410)     at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:325)     at com.sap.ip.bi.webapplications.runtime.base.CommunicationProcessor.processCommand(CommunicationProcessor.java:144)     at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommandInternal(Page.java:1418)     at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommandSequence(Page.java:1713)     at com.sap.ip.bi.webapplications.runtime.impl.Page.doProcessRequest(Page.java:2424)     at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:1977)     ... 38 moreCaused by: com.sap.ip.bi.deploytime.BIBaseRareSystemException: BI runtime subsystem error: Retrieve MetadataResources Failed1.4.2com.sap.ip.bi.deploytime.metadataresourcecache.MetadataResourceCache:initialize Note call hierarchy     at com.sap.ip.bi.deploytime.metadataresourcecache.MetadataResourceCache.initialize(MetadataResourceCache.java:212)     at com.sap.ip.bi.deploytime.BISP2Jsp.transformDTT(BISP2Jsp.java:1130)     at com.sap.ip.bi.deploytime.BISP2Jsp.convert(BISP2Jsp.java:497)     at com.sap.ip.bi.webapplications.runtime.jsp.portal.service.template.PortalTemplateAccessService.getTemplateContent(PortalTemplateAccessService.java:88)     ... 59 moreCaused by: com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION  MSGV1: SAPMSSY1  MSGV3: UNCAUGHT_EXCEPTION     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:148)     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:144)     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)     at com.sap.ip.bi.base.application.service.RfcService.fillMessages(RfcService.java:221)     at com.sap.ip.bi.base.application.service.RfcService.doPostProcessing(RfcService.java:171)     at com.sap.ip.bi.base.application.service.rfcproxy.impl.RfcFunction.execute(RfcFunction.java(Compiled Code))     at com.sap.ip.bi.deploytime.service.validation_metadata.impl.ValidationMetadataService.getTransformData(ValidationMetadataService.java:53)     at com.sap.ip.bi.deploytime.metadataresourcecache.MetadataResourceCache.initialize(MetadataResourceCache.java:196)     ... 62 more
    Regards,
    Ravi.M

    hi,
         Any suggestion for the above query.
    here i am using federated portal concept,once i am opening this report in the portal only i am facing the above problem.
    Regards,
    Ravi.M

  • Error while generating the report on Test env (for divide condition)

    Hi All,
    I am facing the below error while generating the report in test environment while the same report is working fine on Prod environment.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 16001] ODBC error state: S1000 code: 1791 message: [Oracle][ODBC][Ora]ORA-01791: not a SELECTed expression. [nQSError: 16001] ODBC error state: S1000 code: 1791 message: [Oracle][ODBC][Ora]ORA-01791: not a SELECTed expression. [nQSError: 16015] SQL statement execution failed. (HY000)
    Actually the error is coming for the below logics:
    COUNT(DISTINCT RMA.RMA)/COUNT(DISTINCT User."User Name")
    "RMA Fact"."Module Backlog"/COUNT(DISTINCT User."User Name")
    Can anyone please tell if I need to make any configuration changes as the same logic works perfectly fine on production but not on test.
    Thanks in advance

    Is anyone having any idea about it...

  • Error while creting webi report on top of query ,using BO XI3.1

    Hi,
    I'm getting below error while creating webi report ,tried to applying some patches but no luck
    SAP021_sales value report
    a database error occured ,the data base error text is error in MDD darasetBW.getcelldata.system error in program CL_RSR_MDX_BXML_FLATENING and form ASSIGN_COMP_02(see long text) (WIS10901)
    Looking forward to your sugesstions.
    Thanks

    hi,
    Go through the below SAP Notes on the issue-
    SAP OSS Notes 1440912 and 1432162

  • Error while executing Crystal report in client computers

    I got this error message -2147206460 Crystal Reports Activex Designer invalid directory. any idea guys how can i fix this. I tried using Crystal Report viewer in the server and its working perfectly.
    thanks

    Michael Litiatco 
    is your report working on SAP from server machine or it only works on Crystal Report on server machine
    IF your report is working  on SAP server then, the problem is on sharing the .rpt file with client
    Place the .rpt file in shared folder whichi is accessable from all the clients then use that .rpt file in SAP CR addon and update it
    updating the path from each client system SAP towards shared .rpt file
    do you have any firewall installed, try disabling within your network and check
    This should Fix your problem
    make sure the printer is shared and correct printer is set as default printer
    if possible give a test print page from client to make sure the printer is online
    Regards
    Krish

  • Error when running crystal report

    i saw the error in log file 'Only TrueType fonts are supported. This is not a TrueType font' and 'Error while running Crystal report'
    Help me to fix this problem.Thanks inadvanced.
    I used some software developed in vb6.It changed some system font when running :D.
    i want to run both that soft   and sap.

    Hi,
    Please refer to the link, [Re: CR XI R2, Crystal Report Viewer Opentype Font not supported|Re: CR XI R2, Crystal Report Viewer Opentype Font not supported].
    What is the version of your crystal report, we will try to apply some service packs.
    Regards,
    Clint

  • Apps Report Error(Supplier Payment History Report)

    Hi team,
    APXPPHIS module: Supplier Payment History
    Iam getting below error and unable get report Output.
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.WE8MSWIN1252
    Enter Password:
    MSG-00001: After SRWINIT
    ORA-24324: service handle not initialized
    ==> SELECT V . vendor_name C_VENDOR_NAME , upper ( V . vendor_name ) C_SORT_VENDOR_NAME , V . segment1 C_VENDOR_NUMBER , VS . vendor_site_code C_VENDOR_SITE_CODE , decode ( VS . address_line1 , null , '' , VS . address_REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: service handle not initialized
    ==> SELECT V . vendor_name C_VENDOR_NAME , upper ( V . vendor_name ) C_SORT_VENDOR_NAME , V . segment1 C_VENDOR_NUMBER , VS . vendor_site_code C_VENDOR_SITE_CODE , decode ( VS . address_line1 , null , '' , VS . address_Report Builder: Release 10.1.2.3.0 - Production on Wed Oct 2 16:30:25 2013
    Thanks & Regards
    San

    San,
    Please see (Supplier Payment History Report Completing With Error (Doc ID 1409467.1)).
    Thanks,
    Hussein

  • Error in generating parameterized report in siebel 8.1.1.5

    Hi, we recently upgraded to siebel 8.1.1.5. My report displays the values selected by the user in the parameter applet. I have done the following as indicated in the Reports Guide:
    1) Define parameters in Siebel UI
    Label: Report View Type
    Name: Report_View_Type
    Type: LOV
    Picklist: Plan List Report Type
    2) Declare the parameter in rtf template
    <?param@begin: Report_View_Type?>
    3) Upload template in Templates view
    4) Associate view
    The parameter applet appears but after clicking the Submit button, Siebel goes idle. I can't do anything so I resort to closing the entire window. I don't seem to find any error logged in the xdo.log file:
    [121911_044545055][][STATEMENT] PublicReportService::uploadReportDataChunk Service BEGIN
    [121911_044545055][][STATEMENT] PublicReportService::uploadReportDataChunk the first chunk of XML Report Data
    [121911_044613540][][STATEMENT] PublicReportService::runReport Service BEGIN
    [121911_044613540][][STATEMENT] PublicReportService::initSession BEGIN
    [121911_044613540][][EVENT] SiebelValidator(Properties prop)
    [121911_044613540][][EVENT] endpoint:http://10.205.18.56/eai_enu/start.swe?SWEExtSource=WebService&SWEExtCmd=Execute
    [121911_044613540][][EVENT] adminUsername:SADMIN
    [121911_044613540][][EVENT] adminPassword:********
    [121911_044613540][][EVENT] Endponit contains no UserName or Password, appending it with Admin's
    [121911_044637368][][EVENT] GetRoles() returnsSiebel Administrator,DoCS Data Administrator,XMLP_ADMIN,XMLP_DEVELOPER,XMLP_SCHEDULER,XMLP_SIEBEL_GUEST,Siebel Developers,DoCS System Administrator,DoCS Administrator,DoCS Manager,Genesys Multimedia Agent,DoCS FAU Manager,DoCS OOHC MDS Portal,DoCS OOHC MDS KIDS,DoCS Portal Generic,CIW Report Creator,CIW Report Viewer,CIW Administrator
    [121911_044637368][][STATEMENT] PublicReportService::initSession END --- Elapse Time = 23828
    [121911_044637368][][STATEMENT] PublicReportService::generateReport BEGIN
    [121911_044637368][][STATEMENT] ReportAbsPath = /SiebelCRMReports/Plans List Report 8115b/Plans List Report 8115b.xdo
    [121911_044637368][][STATEMENT] ********** By Pass DocumentCache is false
    [121911_044637368][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637383][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637383][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [121911_044637383][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [121911_044637383][][STATEMENT] java.home = D:\BIPHome_1\jdk\jre
    [121911_044637383][][STATEMENT] XDO_TOP = null
    [121911_044637383][][STATEMENT] Config Path = null
    [121911_044637383][][STATEMENT] Debug Cfg Path= D:\BIPHome_1\jdk\jre\lib\xdodebug.cfg
    [121911_044637383][][STATEMENT] Font dir = D:\BIPHome_1\jdk\jre\lib\fonts\
    [121911_044637383][][STATEMENT] Locale = en-US
    [121911_044637383][][STATEMENT] Fallback font = type1.Helvetica
    [121911_044637383][][STATEMENT] [ PDF GENERATOR PROPERTIES ]----------------------------------
    [121911_044637399][][STATEMENT] digit-substitution=null(not set)
    [121911_044637399][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTJ.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTK.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTS.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTT.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANYWT.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJ.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOKB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOK.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSCB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSC.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTCB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTC.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUO.ttf
    [121911_044637399][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044637399][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [121911_044637399][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [121911_044637399][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [121911_044637399][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [121911_044637399][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [121911_044637415][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [121911_044637415][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [121911_044637415][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [121911_044637415][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [121911_044637430][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [121911_044637430][][STATEMENT] pdf-changes-allowed=0
    [121911_044637430][][STATEMENT] pdf-compression=true
    [121911_044637430][][STATEMENT] pdf-enable-accessibility=true
    [121911_044637430][][STATEMENT] pdf-enable-copying=false
    [121911_044637430][][STATEMENT] pdf-encryption-level=0
    [121911_044637430][][STATEMENT] pdf-font-embedding=true
    [121911_044637430][][STATEMENT] pdf-hide-menubar=false
    [121911_044637430][][STATEMENT] pdf-hide-toolbar=false
    [121911_044637430][][STATEMENT] pdf-no-accff=false
    [121911_044637446][][STATEMENT] pdf-no-cceda=false
    [121911_044637446][][STATEMENT] pdf-no-changing-the-document=false
    [121911_044637446][][STATEMENT] pdf-no-printing=false
    [121911_044637446][][STATEMENT] pdf-open-password=
    [121911_044637446][][STATEMENT] pdf-permissions=0
    [121911_044637446][][STATEMENT] pdf-permissions-password=
    [121911_044637446][][STATEMENT] pdf-printing-allowed=0
    [121911_044637446][][STATEMENT] pdf-replace-smartquotes=true
    [121911_044637446][][STATEMENT] pdf-security=false
    [121911_044637446][][STATEMENT] ------------------------------------------------------
    [121911_044637461][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Bold
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTF2XSLParser][STATEMENT] Time spent: 110
    [121911_044637508][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [121911_044637508][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [121911_044637508][][STATEMENT] Setting data definition:Report_View_Type type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [121911_044637508][][STATEMENT] Set ReportRequest's parameters key[0], Report_View_Type
    [121911_044637508][][STATEMENT] Set ReportRequest's parameters value[0], [Ljava.lang.String;@1639ff
    [121911_044637508][][STATEMENT] Default Report OutputFormat = html
    [121911_044637524][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637524][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor constructor is called.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor has been initialized without default config.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-US'.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(InputStream)is called.
    [121911_044637524][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637524][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_data_15.xsl' is created.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_data_16.xml' is created.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_out7.out' is created.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(OutputStream)is called.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=1.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] Start Memory: max=508MB, total=163MB, free=45MB
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [121911_044637774][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Oracle XML Developers Kit 10.1.0.5.0 - Production
    [121911_044637790][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Scalable Feature Disabled
    [121911_044638180][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_fo_18.fo' is created.
    [121911_044638180][][STATEMENT] XSL-T time used: 406
    [121911_044638196][oracle.apps.xdo.template.fo.FOProcessingEngine][STATEMENT] Using proxy for PDF Generator
    [121911_044638196][oracle.apps.xdo.template.FOProcessor][STATEMENT] Calling FOProcessingEngine.process()
    [121911_044638196][][STATEMENT] Using optimized xslt
    [121911_044638196][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [121911_044638196][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [121911_044638196][][STATEMENT] java.home = D:\BIPHome_1\jdk\jre
    [121911_044638196][][STATEMENT] XDO_TOP = null
    [121911_044638196][][STATEMENT] Config Path = null
    [121911_044638196][][STATEMENT] Debug Cfg Path= D:\BIPHome_1\jdk\jre\lib\xdodebug.cfg
    [121911_044638196][][STATEMENT] Font dir = D:\BIPHome_1\jdk\jre\lib\fonts\
    [121911_044638196][][STATEMENT] Locale = en-US
    [121911_044638196][][STATEMENT] Fallback font = type1.Helvetica
    [121911_044638196][][STATEMENT] [ PDF GENERATOR PROPERTIES ]----------------------------------
    [121911_044638196][][STATEMENT] digit-substitution=null(not set)
    [121911_044638196][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTJ.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTK.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTS.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTT.ttf
    [121911_044638211][][STATEMENT] font.ALBANY WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANYWT.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJ.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOKB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOK.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSCB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSC.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTCB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTC.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUO.ttf
    [121911_044638211][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044638211][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [121911_044638211][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [121911_044638211][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [121911_044638211][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [121911_044638211][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [121911_044638211][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [121911_044638211][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [121911_044638211][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [121911_044638227][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [121911_044638227][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [121911_044638227][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [121911_044638227][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [121911_044638227][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [121911_044638227][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [121911_044638227][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [121911_044638227][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [121911_044638227][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [121911_044638227][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [121911_044638227][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044638243][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [121911_044638243][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [121911_044638243][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [121911_044638243][][STATEMENT] pdf-changes-allowed=0
    [121911_044638243][][STATEMENT] pdf-compression=true
    [121911_044638243][][STATEMENT] pdf-enable-accessibility=true
    [121911_044638243][][STATEMENT] pdf-enable-copying=false
    [121911_044638243][][STATEMENT] pdf-encryption-level=0
    [121911_044638243][][STATEMENT] pdf-font-embedding=true
    [121911_044638243][][STATEMENT] pdf-hide-menubar=false
    [121911_044638243][][STATEMENT] pdf-hide-toolbar=false
    [121911_044638243][][STATEMENT] pdf-no-accff=false
    [121911_044638243][][STATEMENT] pdf-no-cceda=false
    [121911_044638243][][STATEMENT] pdf-no-changing-the-document=false
    [121911_044638243][][STATEMENT] pdf-no-printing=false
    [121911_044638243][][STATEMENT] pdf-open-password=
    [121911_044638258][][STATEMENT] pdf-permissions=0
    [121911_044638258][][STATEMENT] pdf-permissions-password=
    [121911_044638258][][STATEMENT] pdf-printing-allowed=0
    [121911_044638258][][STATEMENT] pdf-replace-smartquotes=true
    [121911_044638258][][STATEMENT] pdf-security=false
    [121911_044638258][][STATEMENT] ------------------------------------------------------
    [121911_044638258][][STATEMENT] Rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [121911_044638258][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Bold
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Generating page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Total time used: 78ms for processing XSL-FO
    [121911_044638274][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [121911_044638274][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [121911_044638274][][STATEMENT] FO+Gen time used: 78 msecs
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] End Memory: max=508MB, total=163MB, free=31MB
    [121911_044638290][][STATEMENT] PublicReportService::generateReport FINISH and Return BIPReportResponse --- Time Elapse = 922
    As you can see, I am testing for only one parameter and am unsuccessful in generating the pdf. Anyone who has a success story with the enhanced parameterized reporting in Siebel 8.1.1.5? We have no problems generating the regular BIP reports (non-parameterized) so I think we can rule out any patch installation issues. Appreciate any help :)

    Please close this thread...it appears that the error occurs when the report involves a big set of records. I tried trying to filter only one record and was able to produce the pdf

  • Error when running a report in BPC NW

    I am getting the following error when running a report for my application in BPC NW.
    EVDRE encountered an error retrieving data from the Web Server (retrying in (X) seconds).
    This error comes with this dialog option box to either continue or cancel retrying retrieving data. Retrying doesn't help either.
    Any report I run (on any of my appsets), I get this error. I used the EVDRE function and also tried running a report using the template as the basis. But I get the error either way.
    Does anyone know why this error is occurs or how to debug this issue. I saw some information about this in earlier threads but could  not make much out of it.
    Appreciate any assistance.

    Sanjay,
      This  is a   very  generic  error...Couple  of  places  to  look  for....
    1)Reprocess the application (Modify application + Reassign SQL Index + Process Application)
    2)optimizing the application sometimes helps (Full Optimize + Compress Database + Index defragmentation).
    3)Create a "evdataserver_debug.txt" in user's private publication folder on  server side to populate very detail level logging  and  check  the  log on client side EVDRE_LOG.txt for  further  peek  into  where  things  are getting  messed up.
    if  evdataserver_debug.txt does not  get  populated on BPC 5.x...it  is  an  issue  with  IIS authetication on Application server.
    4)You have to check the event viewer into .NET server and also the BPC logs which can be found into
    BPC\Logging  for  further  details  ..
    Hope  this  helps..
    Edited by: Vishal Mahawadhi on Jun 24, 2009 9:50 AM

  • Error in short pay report generation

    Hi
    We run reports for review of customer short pays which are set up as an SAP Query in specific user groups
    These reports lists short pays for one type of customer groups. The issue I am facing is that the report is adding individual lines to be able to get the CSR identified. So the # Days open is added and then I have the Avg selected in the query. I only want the average column which would take the addition of each line on the order and then divide by the # of lines. I have the same problem with short pays and average values.
    This error is seen for reports which have invoices not the ones without invoices.
    Firstly I wanted to know where to address this issue using report painter transaction  GR22 or using the SA38/SE38 editors.
    Any ideas as to how to solve this would be greatly appreciated.
    Edited by: sapsap10 on Aug 19, 2010 7:45 PM
    Edited by: sapsap10 on Aug 23, 2010 8:49 PM

    Hi,
    Please provide some sample data to explain you issue. Youe requirement is not very clear.
    Regards,
    Gaurav

  • Error Query for Crystal Report

    Hi Everyone
          I have an error with my Crystat Reports
    state = "TOR"
            If rdo_WSO.Checked = True Then
                With Frm_Print
                    .strReport = "Filter"
                    .strWhere = "{TblTORGrad.TORWithoutSO} = '' and {TblTORGrad.Course}='" & ComboBox2.SelectedValue & "' and {TblTORGrad.DateApplied} like '" & ComboBox1.SelectedValue & "*'"
                End With
            Else
                With Frm_Print
                    .strReport = "Filter"
                    .strWhere = "{TblTORGrad.TORWithSO} = '' and {TblTORGrad.Course}='" & ComboBox2.SelectedValue & "' and {TblTORGrad.DateApplied} like '" & ComboBox1.SelectedValue & "*'"
                End With
    Error Says "A string is requiredd here details error kind error in file CrystalReport1 {D6562CE5-995A-4371-88F0-A199B7C28}.rpt Error Formula Record_Selection: {TblTORGrad.DateApplied}like '*" A string is required here. Details: errorKind

    Try it in the Report Designer first, whatever Date field type you are using needs to be converted to a string for comparison, exactly what the error indicates.
    Don

Maybe you are looking for

  • FaceTime poor video quality

    Since upgrading to Lion my iMac (early 2009 24" model) video is very jerky. Audio is fine. Same is true of my Mac Mini with an external iSight camera attached. Prior to Lion FaceTime was excellent. Any ideas anyone ?

  • Help with sad ipod

    Im trying to fix my freinds Ipod Nano. It won't turn on or respond to being plugged into a power sorce, so it wont display battery charge. When i try to restart it (togle hold, then press and hold slect & menue) it will try and restart like normal bu

  • Same target operator (table) twice in mapping

    Can I use the same table operator as target twice in two different places in the same mapping?

  • Business Catalyst and responsive websites

    Good afternoon, lets say I have created a responsive static webpage that I plan to make into a BC template with all of the appropriate css/javascript ready.  What will I need to do to make the modules responsive as well? add media querys and appropri

  • Lunix PDF - landscape printing

    I am try to print the PDF file using the following command - but the it prints in potrait format. <br /><br />We need ot fix this issue asap. Would greatly appreciate any help. <br /><br />cat <file.pdf> | /opt/Acrobat4/bin/acroread -toPostscript -la