Query on generating report using XMLP based on a search spec

Hi,
We are using XMLP reporting tool to generate reports for our application. Our requirement is to generate reports based on a search spec. Should I send this search spec as a input parameter to the FO processor? In other words, what is the exact procedure to generate reports based on a search spec? This search spec is provided at runtime.
Thanks,
Sudha.

Hi Henry,
Thank  you for your response.
BEx query has not been created yet. we need to create accordingly and require your help in creating the same.
Regarding reporting requirements,  User wants to have adhoc reporting  with rolling months ( 12 months or 6 months) functionality. Users want to link any KF to this rolling months dimension.
If we can't have this, what is the alternative that we can propose to user.
Thanks
Akshara.

Similar Messages

  • Rolling month for webi report using Univ based on BEX Query

    Dear Experts,
    I'm new to OLAP universes.
    We have a requirements of having last 12 months rolling  for given measure(Key figure) in webi report using Univ based on Bex Query.
    We require a calmonth (time dimension) object  (restricted for last 12 months) where user can drag and drop on column section of cross-tab table.  User should drag more than one Key figure ( for ex. sales rev and & qty sold) for each month
    Could you please provide me the solution to do this?
    Thanks
    Akshara

    Hi Henry,
    Thank  you for your response.
    BEx query has not been created yet. we need to create accordingly and require your help in creating the same.
    Regarding reporting requirements,  User wants to have adhoc reporting  with rolling months ( 12 months or 6 months) functionality. Users want to link any KF to this rolling months dimension.
    If we can't have this, what is the alternative that we can propose to user.
    Thanks
    Akshara.

  • Generate report using Word Report Generation VIs error

    When I Generate report using Word Report Generation VIs  ,the error is generated.
    This is  my Vi
    can somebody  tell the error reason?
    The attaché is Vi (one is 2011,other is 8.6)
    Attachments:
    report-8.6.vi ‏16 KB
    report2.vi ‏33 KB
    template.doc ‏40 KB

    Hi Ben64
                 Thank you! The problem is solved.
       BUT when I use the Word Easy Graph vi  ,the result is
    I want the Graph (curve),like as:
    How Can I do get the picture.
    I have other problem. I want to get default name for the new word file.
    liang

  • Generating reports using RWServlet.class(Patch-12)

    Sir,
    We have configured the Apache Tomcat-3.2.2 to be the servlet engine for generating reports using oracle.reports.rwcgi.RWServlet. Earlier we have been using, Patch-2. We have created many keys(cgicmd.dat) for the different reports that are there with the mostly needed report parameters(including PARAMFORM=YES). We call the report in the browser giving the URL "http://<machine_name>/oraclereports/servlet/oracle.reports.rwcgi.RWServlet?<key_name>". Now, the report page that gets generated is the parameter form. In the HTML source of this page, the form-submitting action is pointing correctly to URL "http://<machine_name>/oraclereports/servlet/oracle.reports.rwcgi.RWServlet.....". The parameter values are entered and the form submitted. The generated report is perfect..
    Some days before, Patch-10 was installed. The RWServlet.class that comes along with this was copied to the oracle/reports/rwcgi folder in Tomcat. Now, when the same steps(calling report) as done before were done, the report is not getting generated, giving the output for no page found. The HTML source of the parameter form shows the form-submitting-action URL as "http://<machine_name>/servlet/oracle.reports.rwcgi.RWServlet.." omitting the "oraclereports" that was there earlier.
    Now, we have installed Patch-12, copied the new RWServlet.class. For this case also, the same problem is now encountered. Now, have we have to do any additional configuration somewhere? The page that is generated, on giving the URL ""http://<machine_name>/oraclereports/servlet/oracle.reports.rwcgi.RWServlet/showenv?server=Rep60_MACHINENAME" is showing the SCRIPT_NAME as "/servlet/oracle.reports.rwcgi.RWServlet". Is it something to do with this? We tried putting SCRIPT_NAME as a user environment variable, and also by giving SET SCRIPT_NAME=/oraclereports. Still, the problem persists. Doesn't the HttpServletRequest class have some method that returns the SCRIPT_NAME, i.e, the path where the execution is being done? How could different versions of the same class oracle.reports.rwcgi.RWServlet deployed with the same settings on the Tomcat servlet engine behave differently? Please help us on how to solve this problem..
    Thank you,
    Regards..
    Ranjith

    Hi,
    Is there some way, i.e., by doing some Tomcat setting changes, that the RWServlet of Patch-10/12 can be made to work like RWServlet of Patch-2(with normal settings)? Please help..
    Thank you,
    Regards..
    Ranjith

  • Query to generate report in order

    Hi ,
    I want to generate report in below order using sql query. In this col2, col3 and col4 will have only 1 value at time remaining will be NULL. What i want is i want to group by Axx or Bxx or Cyy in a specific order based on col2, col3 and col4. please help me
    Result:
    Example
    col1 col2 col3 col4
    100 Axx <null> <null>
    200 <null> Axx <null>
    300 Axx <null> <null>
    400 <null> Bxx <null>
    500 Bxx <null> <null>
    600 <null> Cyy <null>
    .........

    Naga wrote:
    Hi ,
    I want to generate report in below order using sql query. In this col2, col3 and col4 will have only 1 value at time remaining will be NULL. What i want is i want to group by Axx or Bxx or Cyy in a specific order based on col2, col3 and col4. please help me
    Result:
    Example
    col1 col2 col3 col4
    100 Axx <null> <null>
    200 <null> Axx <null>
    300 Axx <null> <null>
    400 <null> Bxx <null>
    500 Bxx <null> <null>
    600 <null> Cyy <null>
    .........Thanks for not posting the original data or explaining clearly ({message:id=9360002})
    It sounds like you want something like...
    group by coalesce(col2,col3,col4)
    order by coalesce(col2,col3,col4), col1

  • Generate report using CURSORS? - Simple question

    Folks,
    I'm a real newbie still with PL/SQL so please excuse my ignorance I have a simple report I need to generate. The following SQL statement gets me all my "header" records:
    SELECT OHA.ORDER_NUMBER, HEADER_ID, ATT11, ATT12, ATT16
    FROM XXXWD.WD_DUPS DUPS, OE_ORDER_HEADERS_ALL OHA
    WHERE OHA.ATTRIBUTE11 = DUPS.ATT11
    AND OHA.ATTRIBUTE12 = DUPS.ATT12
    AND OHA.ATTRIBUTE16 = DUPS.ATT16
    AND (OHA.FLOW_STATUS_CODE NOT IN ('CLOSED', 'CANCELLED'))
    AND (ATT11 <> 'WESTERN SERVICE')
    ORDER BY ATT11, ATT12, ATT16
    What I want to do now is have a second script that will display all my detail records. Something like:
    SELECT OLA.LINE_NUMBER, OLA.ORDERED_ITEM, OLA.FLOW_STATUS_CODE
    FROM OE.ORDER_LINES_ALL OLA
    WHERE OLA.HEADER_ID = OHA.HEADER_ID
    I expect I'd do this with two cursors, passing the value of my HEADER_ID to my second cursor. But when I've used cursors before, they primarily have been to import data, and manipulate data. But what if I just want to create a report using these?
    I essentially want to display my header information, and then any lines below that data (if there is any, there may be a header with no lines).
    Can I create a simple report like this with cursors? Any help with this would be IMMENSELY appreciated. I'm really under the gun... :)
    Thanks so much!
    Steve

    Here's one query that will give you everything:
    SELECT OHA.ORDER_NUMBER
          ,OHA.HEADER_ID
          ,DUPS.ATT11
          ,DUPS.ATT12
          ,DUPS.ATT16
          ,OLA.LINE_NUMBER
          ,OLA.ORDERED_ITEM
          ,OLA.FLOW_STATUS_CODE     
    FROM   XXXWD.WD_DUPS        DUPS
          ,OE_ORDER_HEADERS_ALL OHA
          ,OE.ORDER_LINES_ALL   OLA
    WHERE  OLA.HEADER_ID   = OHA.HEADER_ID
    AND    OHA.ATTRIBUTE11 = DUPS.ATT11
    AND    OHA.ATTRIBUTE12 = DUPS.ATT12
    AND    OHA.ATTRIBUTE16 = DUPS.ATT16
    AND    OHA.FLOW_STATUS_CODE NOT IN ('CLOSED', 'CANCELLED')
    AND    DUPS.ATT11 <> 'WESTERN SERVICE'
    ORDER  BY OHA.ORDER_NUMBER
             ,OLA.LINE_NUMBER
             ,DUPS.ATT11
             ,DUPS.ATT12
             ,DUPS.ATT16
    ;(correction in order by clause)
    Message was edited by:
    Eric H

  • Issue while generating report using web.show_document with https

    Hi All,
    I am facing some issue while seeing the report using web.show_document as shown below:
    https://ucrmskr.apac.nsroot.net:10301/forms/html/001725032_gca.rtf_
    In this case the report opens directly without asking for me to save or open or cancel option
    whereas if I hit
    http://scrmskr.apac.nsroot.net:7801/forms/html/001725032_gca.rtf_
    it asks for save or open or cancel option
    so that I can save the report to my machine and open in wordpad format
    The report generated in the first case is not coming in proper format
    Below are my forms.conf mappings:
    # Name
    # forms.conf - Forms component Apache directives configuration file.
    # Purpose
    # It should include the weblogic managed server (routing) directives for
    # the servers where Forms applications are deployed and other miscellaneous
    # Forms component OHS directives.
    # Remarks
    # This file is included with the OHS configuration under
    # $OI/config/OHS/<OHS Node Name>/moduleconf sub-directory.
    # virtual mapping for the /forms/html mapping.
    RewriteEngine on
    RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
    AliasMatch ^/workaroundhtml/(..*) "/ucrmap1/weblogic/bea/ucrms/config/FormsComponent/forms/html/$1"
    RewriteRule ^/ucrms/icons/(..*) "/workaroundicons/$1" [PT]
    AliasMatch ^/workaroundicons/(..*) "/ucrmap1/weblogic/bea/ORA_PFRD/forms/java/$1"
    RewriteRule ^/forms/help/(..*) "/workaroundhelp/$1" [PT]
    AliasMatch ^/workaroundhelp/(..*) "/ucrmap1/ucrrgbg2/help/$1"
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicCluster kauh0079:9001
    DynamicServerList OFF
    </Location>
    Please let me know what needs to be done additionally if we are trying to hit https because in the second case we were hitting http with similar mapping in diff environment and it was generating report successfully.
    Regards,
    Harish

    Thanks for answering,
    I changed the URL from
    http://nbotlaguduru.dms.local/export/FMSLaborChargesalcs20060829132645.pdf
    to
    http://nbotlaguduru.dms.local:8889/export/FMSLaborChargesalcs20060829132645.pdf
    and the same problem occured
    the file is located on my local C drive in:
    C:\lcs\export
    seems as though I am missing something else as well
    any ideas?

  • Bi Publisher - not able to generate report using webservices

    hi all,
    I couldnt able to generate report in bi pulisher,using web services.
    once i done with all the settings which is required for the creation of a report in webservices type, i couldnt able to view the report. If i do so im getting error message like "The report cannot be rendered because of an error, please contact the administrator." . I have referred http://st-curriculum.oracle.com/obe/fmw/bi/biee/r1013/bipub/intro/gettingstarted.htm#o this url for learning bi publisher.
    So some one please guide me to get through this.
    Thank u in advance

    Please see these docs.
    'Report Cannot Be Rendered Because Of An Error - Unexpected element:report' When Using Firefox [ID 605403.1]
    Troubleshooting Oracle BI Publisher Enterprise and XML Publisher Enterprise [ID 412232.1]
    BI Publisher Error On Report Access : java.lang.NoClassDefFoundError [ID 1083315.1]
    BI PUBLISHER DATA TEMPLATE ISSUE RETRIEVING LARGE VARCHAR COLUMNS [ID 960838.1]
    XML-21028 Access Not Allowed While Generating Output With BI Publisher [ID 458161.1]
    Thanks,
    Hussein

  • Generate report using ELIXIR report server

    hi all pls anyone help me teach how generate report in jsp from ms sql 2000 database.. i'm using Elixir report software www.elixirtech.com. Thanks for ur kind help.. pls email me to [email protected]
    ramkumar

    hi thanks for reply.. do u have any example code for generatereport.jsp
    i have try this but show error
    <%@ page import = "java.io.*,
    com.elixirtech.ers2.client.ERSClient,
    javax.servlet.http.*,
    java.util.*"
    %>
    <%!
    //Stream back to browser
    public void generateReport(javax.servlet.http.HttpServletResponse response,
    javax.servlet.http.HttpServletRequest request) throws Exception {   
              String contentType="application/vnd.ms-excel";
              String testFileName="test.xls";
         javax.servlet.ServletOutputStream sos = response.getOutputStream();
    response.setContentType(contentType);
         response.setHeader("Content-Disposition", "Inline;filename="+testFileName);
    String report="C:/home/RepertoireSDK-1.0.1/examples/ReportSamples/README.rml";
    if(report!=null){
                   ERSClient ersclient = new ERSClient("localhost", 7001 , "Anonymous", "anonymous");
                   //ERSClient ersclient = new ERSClient("localhost", 8090 , "admin", "123456");
                   try
                        Properties props = new Properties();
                        ersclient.renderReport(report,contentType, sos, props, "me");
                   }catch (Exception ex){
                   }finally{
                   ersclient.close();
    %>
    <%
    generateReport(response,request);
    %>
    <html>
    <head>
    <title>Sample Server JSP</title>
    </head>
    <body marginwidth="0" marginheight="0" bgcolor="#E7F0E0">
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
         org.apache.catalina.connector.Response.getWriter(Response.java:606)
         org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:195)
         org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:124)
         org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:117)
         org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:191)
         org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:115)
         org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:75)
         org.apache.jsp.Sample_005fReport_005fServer_005fBrowser_jsp._jspService(org.apache.jsp.Sample_005fReport_005fServer_005fBrowser_jsp:94)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    i dont know what is the error please help tq

  • Query for recurring reports using Query Builder in Business objects

    1. How to count webi Recurring reports using query builder in business objects? (Need Query for this)
    2. How to count Crystal Recurring reports using query builder in business objects? (Need Query for this)
    I am able to get summerized recurring reports using Query Builder.
    For Example we have 343 reports which are under recurring (This includes both Webi Reports and Crystal Reports).
    we need to get individually how many webi reports are under Recurring and Crystal reports are under Recurring.

    1. How to count webi Recurring reports using query builder in business objects? (Need Query for this)
    2. How to count Crystal Recurring reports using query builder in business objects? (Need Query for this)
    I am able to get summerized recurring reports using Query Builder.
    For Example we have 343 reports which are under recurring (This includes both Webi Reports and Crystal Reports).
    we need to get individually how many webi reports are under Recurring and Crystal reports are under Recurring.

  • Generate Reports using Siebel eService

    Hello all,
    Is there a way so we can generate reports from Siebel eService? If so how can we do that because We've got the BI Publisher already and we just need to figure out if it's possible to create reports using Siebel eService.
    Regards,

    Can you be a little bit more specific on what you're trying to do? Why can't you have users use BI Publisher UI for reports, or any other Siebel Application besides eService?

  • Error in Report Using XMLP without report builder

    Hi,
    Recently I came to know about the building the report using the XMLPublisher instead of Report Builder.
    So i tried it But ended with error Please help me where I went wrong.
    I have Created the Concurrent program with the Executable Type as 'XDODTEXE' and of Output type as 'XML'.
    And
    I have define the data definitions and uploaded XML file in Data template.
    The XML file has the below,
    "<?xml version = '1.0' encoding = 'UTF-8'?>
    <dataTemplate name="Invoice" description="This report gives the invoice details" version="1.0">
    <parameters>
    <parameter name = "P_INVOICE_ID" dataType = "NUMBER" defaultValue=""/>
    </parameters>
    <dataQuery>
    <sqlStatement name="Q_Invoice">
    <![CDATA[
                  select ai.Invoice_id invoice_id
                 ,ai.Invoice_amount invoice_amount
                 ,ai.vendor_id vendor_id
                 ,ai.amount_paid amount_paid
              ,ai.invoice_date invoice_date
              ,ail.line_number line_number
              ,aid.distribution_line_number distribution_line_number
    from ap_invoices_all ai, ap_invoice_lines_all ail,ap_invoice_distributions_all aid
    where ai.invoice_id = ail.invoice_id
    and ai.org_id = ail.org_id
    and ail.line_number = aid.invoice_line_number
    and aid.invoice_id  = ail.invoice_id
    and ai.invoice_id = nvl(:P_INVOICE_ID,ai.invoice_id);
         ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_Invoice" source="Q_Invoice">
    <element name="invoice_id" value="invoice_id"/>
    <element name="invoice_amount" value="invoice_amount"/>
    <element name="vendor_id" value="vendor_id"/>
    <element name="amount_paid" value="amount_paid"/>
    <element name="invoice_date" value="invoice_date"/>
    <element name="line_number" value="line_number"/>
    <element name="distribution_line_number" value="distribution_line_number"/>
    </group>
    </dataStructure>
    </dataTemplate>
    When I ran the report The ended up with the following Error,
    "TEST_INVOICE_DETAILS module: Test_invoice_details
    +---------------------------------------------------------------------------+
    Current system time is 18-APR-2013 18:17:37
    +---------------------------------------------------------------------------+
    XDO Data Engine Version No: 5.6.3
    Resp: 20707
    Org ID : 5186
    Request ID: 9102277
    All Parameters: P_INVOICE_ID=145072
    Data Template Code: TEST_INVOICE_DETAILS
    Data Template Application Short Name: PO
    Debug Flag: N
    {P_INVOICE_ID=145072}
    Calling XDO Data Engine...
    --SQLException
    java.sql.SQLSyntaxErrorException: ORA-00911: invalid character
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:439)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:395)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:802)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:436)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:186)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:521)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:205)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:861)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1145)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1267)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3493)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1491)
         at oracle.apps.xdo.dataengine.XMLPGEN.processQuery(XMLPGEN.java:1947)
         at oracle.apps.xdo.dataengine.XMLPGEN.processSQLDataSource(XMLPGEN.java:501)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:445)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:308)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:273)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:215)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:254)
         at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProcessor.java:390)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:355)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:334)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:294)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Output file size:
    103
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 18-APR-2013 18:17:43
    +---------------------------------------------------------------------------+
    I know I made you tried to read such a big thing. Since I want to make you clear So I did.
    Thanks in advance.
    Regards
    Uva.
    Edited by: Uva on Apr 18, 2013 6:54 AM

    check result of
    >
    select ai.Invoice_id invoice_id
    ,ai.Invoice_amount invoice_amount
    ,ai.vendor_id vendor_id
    ,ai.amount_paid amount_paid
    ,ai.invoice_date invoice_date
    ,ail.line_number line_number
    ,aid.distribution_line_number distribution_line_number
    from ap_invoices_all ai, ap_invoice_lines_all ail,ap_invoice_distributions_all aid
    where ai.invoice_id = ail.invoice_id
    and ai.org_id = ail.org_id
    and ail.line_number = aid.invoice_line_number
    and aid.invoice_id = ail.invoice_id
    and ai.invoice_id = nvl(:P_INVOICE_ID,ai.invoice_id);
    >
    is there any spec symbol like < > ...
    ?

  • Generate reports using  EJB

    Is there any suggestion on how to invoke an Oracle Report 9i report using a session bean?

    Hi Alex,
    You can run Oracle Reports in Session Bean by using URL Class.
    URL url = new URL(http://localhost:8888:RWServlet?report=emp.rdf ........................ );
    InpustStream result = url.openStream();
    then you can use result to get the output.
    If you mean invoking Reports Builder, from Session bean, its not possiable.
    With Regards
    Sachin

  • FIFO Query to generate report Which relates the out-quantity to in-quantity

    Dear Experts,
    I am trying to generate a report to find out the Inward documents of Items which are issued or transfered. Items are managed with FIFO. Certain Items are serially managed and certain not.
    I am using the tables OIVL, OIVE and OIVQ for getting the details.
    Now my problem is in certain situations the relation between OIVE and OIVQ returns more line items than required and not able to specifically found out the rows. (Same TreeID is used for several transactions)
    Please help
    Thanks and regards
    Ajith Gopalakrishnan

    Hi,
    This Query help you a lot as I made this query for displaying the recieve and out quantity of an item as per the date i.e. On which date you recieve how much quantity of an item and how much quantity you release of an item. and please amend the remaining transtype from the transaction table (OINM).
    In case of FIFO you know that First IN First OUT is followed so you can easily see that which item on a particular date you recieve and which item on a particular date you release...and if any more further enhancement you required then please let me know ....if will definitely make out some time to help you out.
    select distinct SUM(InQty)as InQty,SUM(OutQty)as OutQty,ItemCode,Dscription,DocDate, TransType,
    case TransType
    when '-2' then 'opening Balance'
    when '20' then 'Goods Reciept PO '
    when '59' then 'Reciept From Production/Good Reciept '
    when '15' then 'Deliveries '
    end as 'TransName'
    from (
    select ItemCode,Dscription,DocDate, InQty,OutQty,TransType from oinm ) as OINM
    group by DocDate,ItemCode,TransType,Dscription order by  docdate asc
    Thanks
    Randy

  • Error while generating report using BI 2013

    Hi
    When i am trying to generate a report from the application, On CMC i get this error "Destination disabled. [CrystalEnterprise.DiskUnmanaged]: []. Please note the name of the job server used for your request and contact your system administrator to make sure the specified destination is enabled. (FWB 00031)". Please help.

    This specifically means that the destinations have not been configured in the Crystal Job Server.  If you're running 4.x, this may be part of the "Adaptive Job Server" instead of or in addition to a Crystal Job Server.  If you're using 3.1 or earlier, you'll also have to set up the destination in the Destination Job Server.
    You'll have to log in to the CMC, go to Servers, right-click on the correct job server and go to "Destinations".  You'll then add something like "File" or "Unmanaged Disk" to the available destinations and save.  Stop the job server, start it again, and your error should go away.
    Please be aware that unless you're using specific credentials to schedule the report or you're saving to the server where BO is installed, you'll need to make sure that the BO services are running under a network "Services" account that has access to the folder you're scheduling the report to. By default during installation it's set to run under the "Local Services" account that doesn't have access to the network.
    -Dell

Maybe you are looking for

  • To upload vendor master using BDC

    how to upload vendor master details using vendor master, the problem is while recording XK01 application i am unable to fill email,time-zone,street 4,.. but these are visible while i am creating with out recording.. i am having fields for these in my

  • Doc. Header Text (BKTXT) in MB1C

    Hello Experts, Requirement is to copy 501 mvt type into a new mvt type & for the new one, the field Doc. Header Text (BKTXT) should be made mandatory in MB1C t-code. 1)Whether any configuration available to achieve the same? 2)If it can be done throu

  • Hey ! Need some help on ALE IDOC !

    My requirement is  I have to create an IDOC using ALE  . But both the sender and receiver willl be the same client e.g 200 .... Now I will use client 200 as both sender and receiver . I have alredy gone through lots of ALE stuffs and screen shots but

  • Header condition of PO should automaticaly taken in to item level

    Hi We have a problem of including condtion value for  PO line items. We need to get disribute the condition values once it is entered in to the header level, based on the quantity of line item we are purchasing in the PO. Please advice how to  do thi

  • Call forwared is not being cancelled.

    Dear All, I have CCM 4.1(3). One publisher and two subscribers( sub 'A' and Sub 'B'). Problem definition: 1) Consider phone with ect XYZ is registered on Sub 'A'. Here if we forward all calls to a specific number say PQR and then try to cancel it wit