Strange results in adhoc report??

Hi Experts,
I have made changes to adhoc report in development and assigned transaction code ex: zreport to adhoc query.I executed the report by transaction code and through sq01 i am getting same results still here it is fine.
     In quality when i moved changes and executed report through sq01 it is showing changes what i made but when i execute the report through transaction code zreport i am not finding any changes.moreover  title of report in output list(statistics) is also differnt when compared to tile of report in output list executed through sq01(deployment).
Again i compared the title of report in output list(statistics) executed through tcode zreport in qualityand  title of report in output list executed throug tcode zreport in development(deployment).here also different
i felt that whatever changes i made to query report was different one when compared to report which i executed by transaction but when i checked queryreport name by going to sq01 -> menu option "query"->more functions->report name.but the report name which i found and tcode report name are both are same.
Please let me know where exactly mistake was happenedand tell me how to solve this issue.
Please correct me if i am going wrong.I am waiting for your precious reply.
Thanks&Regards,
narasimha.

problem solved.

Similar Messages

  • Issue in AdHoc Report result

    Hi Guys!
    This is the AdHoc Report SS_PH0_48000513. When two different person runs this report based on same selection criteria then for one person the result shows 2400 hit list and for other person it shows only 200 hit list. Does anyone have any solution to this problem.
    The selection criteria is employee sub group and company code and output field is pernr.
    Regards,
    Arul Joseph Isaac

    Hi,
    Please compare the authorizations of these two persons'.
    Generally, this kind of issues end up to be auth. issues.
    Regards,
    Dilek

  • XMLTable and strange results

    I seem to be getting strange or at least unexpected results from the result of a PL SQL Query that uses XMLTable() in Oracle 11g1.
    I have a table in Oracle that looks like this -
    CREATE TABLE EPBNI_XML_TEST
    (<blockquote>RRN VARCHAR(24) PRIMARY KEY,
    ClipID VARCHAR2(27),
    Lodgement XMLType</blockquote>)
    XMLTYPE COLUMN Lodgement
    STORE AS OBJECT RELATIONAL
    ELEMENT "ConditionReportCreateRequest_1.xsd#ConditionReportCreateRequest_1";
    Each XML Document stored in the XMLTYPE Column Lodgement is a little bit like this (simplified) -
    &lt;ConditionReportCreateRequest_1&gt;
    <blockquote>
    &lt;Content&gt;<blockquote>&lt;X-Report&gt;<blockquote>&lt;Report-Header&gt;<blockquote>&lt;RRN&gt;123&lt;/RRN&gt;
    &lt;Report-Type&gt;type A&lt;/Report-Type&gt;
    &lt;Status&gt;status A&lt;/Status&gt;</blockquote>&lt;/Report-Header&gt;</blockquote>&lt;/X-Report&gt;</blockquote></blockquote><blockquote><blockquote>&lt;Y-Report&gt;</blockquote></blockquote><blockquote><blockquote><blockquote>&lt;Report-Header&gt;</blockquote></blockquote></blockquote><blockquote><blockquote><blockquote><blockquote>&lt;RRN&gt;321&lt;/RRN&gt;
    &lt;Report-Type&gt;type B&lt;/Report-Type&gt;
    &lt;Status&gt;status B&lt;/Status&gt;</blockquote>&lt;/Report-Header&gt;</blockquote>&lt;/Y-Report&gt;</blockquote>&lt;/Content&gt;</blockquote>&lt;/ConditionReportCreateRequest_1&gt;
    Each Lodgement can have one or more reports in the XML document. What I am trying to acheive is getting a single list of the RRN, Report-Type and Status of every report, e.g.
    RRN Report-Type Status
    123 type A status A
    321 type B status B
    112 type A status A
    113 type C status A
    etc... etc....
    My PL SQL and XQuery looks a bit like this -
    SELECT xtab.RRN, xtab.ReportType, xtab.ReportStatus from
    EPBNI_XML_TEST,
    XMLTable('<blockquote>for $reportHeader in /ConditionReportCreateRequest_1/Content/child::element()/Report-Header return
    &lt;report&gt;
              $reportHeader/RRN,
    $reportHeader/Report-Type,
    $reportHeader/Status
    &lt;/report&gt;</blockquote>'
    PASSING LODGEMENT
    COLUMNS
    RRN VARCHAR2(24) PATH 'RRN',
    ReportType VARCHAR2(1) PATH 'Report-Type',
    ReportStatus VARCHAR2(10) PATH 'Status'
    ) xtab;
    The problem is though that I seem to get only 1 result for each row of the table. I.e. if I have 9,000 rows in the EPBNI_XML_TEST table I only get 9,000 results. However I need one result for each report in each lodgement, probably closer to 18,000 results. Also all 9,000 results are the same - which I dont understand - i.e. all 9,000 are -
    RRN Report-Type Status
    123 type A status A
    123 type A status A
    123 type A status A
    (upto 9000 identical result rows...)
    What am I doing wrong or mis-understanding here?
    Thanks Adam.
    Edited by: adamretter on Oct 29, 2008 2:39 PM

    try this
    SELECT xtab.RRN, xtab.ReportType, xtab.ReportStatus from
    EPBNI_XML_TEST,
    ,xmltable('/ConditionReportCreateRequest_1/Content/*/Report-Header'
    passing LODGEMENT
    columns
    rrn varchar2(24) path 'RRN/text()'
    ,reporttype varchar2(10) path 'Report-Type/text()'
    ,status varchar2(10) path 'Status/text()') xtab;**not tested**

  • Help - count function returns strange results

    hi everyone,
    here's my scenario: i'm trying to get the NUMBER OF REPORTS and NUMBER OF
    IMAGES GROUP BY MONTH from the two tables below.
    REPORT
    reportid(*primary key)
    date
    IMAGE
    reportid(*foreign key referring to report's table)
    image
    sample output:
    MONTH NO.OF REPORTS NO. OF IMAGES
    feb 01 10 9
    mar 01 12 8
    my SQL goes like this:
    select to_char(date, 'month-yy'),
    count(REPORT.reportid), count(IMAGE.reportid)
    from REPORT, IMAGE
    where REPORT.reportid = IMAGE.reportid
    group by to_char(date, 'month-yy')
    the above sql yielded strange results, number of images is equal to the number of reports, which is of course wrong! as one report may or may not contain one or more image.
    i dont know what's wrong with the above statement, but if i were to group it
    by REPORTID and DAY rather than MONTH, then amazingly it works! what's
    wrong with the count, why does it give me the same result if i group by
    MONTH.
    can anyone shed some light on this?

    try using the following example:
    Table TEST_REPORT
    RPTID RPTDATE
    1 02-JAN-01
    3 02-JAN-01
    2 02-JAN-01
    5 11-FEB-01
    6 11-FEB-01
    7 11-FEB-01
    Table TEST_IMAGE
    RPTID IM
    1 1
    2 1
    3 1
    SQL:
    select to_char(rptdate,'MON-YYYY'),
    sum(decode(a.rptid,null,0,1)) report_cnt,
    sum(decode(b.rptid,null,0,1)) image_cnt
    from test_report a, test_image b
    where a.rptid = b.rptid(+)
    group by to_char(rptdate,'MON-YYYY');
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by skcedric:
    hi everyone,
    here's my scenario: i'm trying to get the NUMBER OF REPORTS and NUMBER OF
    IMAGES GROUP BY MONTH from the two tables below.
    REPORT
    reportid(*primary key)
    date
    IMAGE
    reportid(*foreign key referring to report's table)
    image
    sample output:
    MONTH NO.OF REPORTS NO. OF IMAGES
    feb 01 10 9
    mar 01 12 8
    my SQL goes like this:
    select to_char(date, 'month-yy'),
    count(REPORT.reportid), count(IMAGE.reportid)
    from REPORT, IMAGE
    where REPORT.reportid = IMAGE.reportid
    group by to_char(date, 'month-yy')
    the above sql yielded strange results, number of images is equal to the number of reports, which is of course wrong! as one report may or may not contain one or more image.
    i dont know what's wrong with the above statement, but if i were to group it
    by REPORTID and DAY rather than MONTH, then amazingly it works! what's
    wrong with the count, why does it give me the same result if i group by
    MONTH.
    can anyone shed some light on this? <HR></BLOCKQUOTE>
    null

  • Not able to run adhoc report (2008) and send by email

    Hello All,
    I am trying to set up subscription on adhoc  reports. I have already configured SMTP.
    Whenever I create a subscription, it is getting saved but the status remains "New Subscription" for all the reports. and also not sending email for any error.
    Can you please suggest for same?
    Thanks in Advance
    Regards
    Kumud

    Sometimes, in special cases, the developers or other functional consultants do not understand the security concept, or they don't have one to use, or they have no faith in the one which they do have, anymore... at which point they create "check tables" in which the user ID's names of those authorized to run the report can be maintained via a view or other less sophisticated approaches. This is sometimes also the reason why they claim that they cannot perform their work in production systems without SAP_ALL.
    This is less primitive than hard coding the user names into the report itself... which was the era before the check table approach, before they realized that they had to maintain the report code itself all the time. This is sometimes also the reason why they claim that they cannot perform their work in production systems without developer keys for them.
    If my above rant is the explanation for this strange behaviour, then you will most likely find it by scanning the report code for use of the system field "SY-UNAME".
    (Use the binoculars or report RPT_SCAN_SOURCE - not sure of the exact spelling though).
    Cheers,
    Julius

  • Extracting Logical SQL of the adhoc reports

    Hi,
    I have an requirement, where I need to extract the logical SQL, of the adhoc reports. I tried using "Usage tracking", but that doesnt fit my requirement, as I need to write back the result set of the SQL queries in the database. I need to kind of automate the process of getting the logical queries from the user created reports and load it back to database. I canot use direct database request,as business users will not have this ability to use this request.
    Can somebody help in ways of getting the logical SQL , apart from usage tracking, log file, or manage sessions.
    Thanks
    Alakananda

    I am closing this, question, as I solved it by calling web services through a java program. Thanks

  • Add Columns to Adhoc Reports Layouts?

    Are there any config or sql injections or translations to add additional columns to the custom layouts in the Adhoc Reports in RPT?
    Specifically, would like to display Related Specs when running reports for Trade Specs.
    Edited by: Trey on May 1, 2013 11:26 AM

    You could probably technically add related items as a search result column in a ready report, but it isn't an out of the box available result column. So it will require some undocumented customization work. I don't think the results grid is the best location for this data due to performance implications and even UI display challenges. I think your best option would be to create a BI Publisher report. Your PLM4P license includes a free limited use license for BI Publisher. This would be a good topic to discuss during a dev to dev call.

  • Strange result from insert into...select query

    Hello guys,
    I need your preciuos help for a question maybe simple, but that I can't explain by myself!
    I have a query of "insert into...select" that, as I have explained in the title, returns a strange result. In facts, If I execute ONLY the SELECT statement the query returns the expected result (so 2 rows); instead If I execute the entire statement, that is the "insert into...select", the query returns 0 rows inserted!!
    Following an example of the query:
    INSERT
    INTO TITOLI_ORI
    COD_TITOLO_RICCONS ,
    D_ESTRAZIONE ,
    COD_SOCIETA ,
    COD_PIANO_CONTABILE ,
    COD_CONTO_CONTABILE ,
    COD_RUBRICATO_STATISTICO_1 ,
    COD_NDG ,
    NUM_ESEGUITO ,
    CUR_IMPORTO_RICCONS ,
    CUR_IMPORTO_BICO ,
    FLG_MODIFICATO ,
    CUR_NON_ASSEGNATO ,
    FLG_QUOTATO ,
    COD_CATEG ,
    TIP_COPERTURA ,
    TIPTAS_TITOLO
    SELECT NEWID,
    '28-feb-2111',
    COD_SOCIETA,
    COD_PIANO_CONTABILE,
    COD_CONTO_CONTABILE,
    COD_RUBRICATO_STATISTICO_1,
    COD_NDG,
    NUM_ESEGUITO,
    CUR_VAL_IMPEGNI,
    'ABC' as CUR_IMPORTO_BICO,
    0 as FLG_MODIFICATO,
    NULL as CUR_NON_ASSEGNATO,
    FLG_QUOTATO,
    COD_CATEG,
    TIP_COPERTURA,
    TIP_TASSO
    FROM
    (SELECT S.COD_SOC AS COD_SOCIETA,
    S.TIP_PIANO_CNTB AS COD_PIANO_CONTABILE,
    S.COD_CONTO_CNTB AS COD_CONTO_CONTABILE,
    S.COD_RUBR_STAT AS COD_RUBRICATO_STATISTICO_1,
    TRC.COD_RAGGR_IAS AS COD_RAGGRUPPAMENTO_IAS,
    TRC.COD_NDG AS COD_NDG,
    TRC.COD_ESEG AS NUM_ESEGUITO,
    CAST((TRC.IMP_PLUS_MINUS_VAL/TRC.IMP_CAMB) AS FLOAT) AS CUR_VAL_IMPEGNI,
    TRC.TIP_QUOTAZ AS FLG_QUOTATO,
    TRC.COD_CAT_TIT AS COD_CATEG,
    TIP_COP AS TIP_COPERTURA,
    T.TIP_TASSO AS TIP_TASSO
    FROM S_SLD_CNTB S
    INNER JOIN
    (SELECT DISTINCT COD_SOC,
    TIP_PIANO_CNTB,
    COD_CONTO_CNTB,
    COD_RUBR_STAT ,
    COD_INTER_TIT AS COD_INTER
    FROM S_COLLEG_CONTO_CNTB_TIT
    WHERE COD_SOC = 'ME'
    ) CCC
    ON S.COD_SOC = CCC.COD_SOC
    AND S.TIP_PIANO_CNTB = CCC.TIP_PIANO_CNTB
    AND S.COD_CONTO_CNTB = CCC.COD_CONTO_CNTB
    AND S.COD_RUBR_STAT = CCC.COD_RUBR_STAT
    INNER JOIN S_TIT_RICCONS TRC
    ON CCC.COD_INTER = TRC.COD_INTER_TIT
    AND CCC.COD_SOC = TRC.COD_SOC
    AND TRC.COD_RAGGR_IAS = RTRIM('VALUE1 ')
    AND TRC.COD_RAGGR_IAS NOT IN ('VALUE2')
    AND TRC.DES_TIP_SLD_TIT_RICCONS IN ('VALUE3')
    AND TRC.DES_MOV_TIT = RTRIM('VALUE4 ')
    AND TRC.COD_CAT_TIT = RTRIM('VALUE4 ')
    AND TRC.COD_INTER_TIT = RTRIM('VALUE5')
    AND '28-feb-2011' = TRC.DAT_RIF
    LEFT JOIN S_TIT T
    ON T.COD_INTER_TIT = TRC.COD_INTER_TIT
    AND T.COD_SOC = TRC.COD_SOC
    AND '28-feb-2011' = T.DAT_RIF
    INNER JOIN S_ANAG_SOGG AG
    ON TRC.COD_NDG = AG.COD_NDG
    AND AG.COD_SOC = TRC.COD_SOC
    AND '28-feb-2011' = AG.DAT_RIF
    WHERE S.DAT_RIF = '28-feb-2011'
    AND (S.FLG_ANULL_BICO = 0
    OR S.FLG_ANULL_BICO IS NULL)
    AND S.COD_SOC = 'V6'
    AND LENGTH(RTRIM(S.COD_CONTO_CNTB)) = 10
    AND S.TIP_PIANO_CNTB = 'V7'
    AND TRC.IMP_PLUS_MINUS_VAL < 0
    AND SUBSTR(S.COD_CONTO_CNTB,1,7) IN (RTRIM('VALUE8 '))
    Thanks a lot

    Right, I have executed this steps:
    - I have changed the query with the select count(*)
    - Changed the insert into with the select count(*)
    - Executed the insert into
    These are the result:
    SQL> select count(*) from TITOLI_ORI2;
    COUNT(*)
    1
    BUT:
    SQL> select * from TITOLI_ORI2;
    A
    0
    The insert into that I've modified is this:
    INSERT INTO bsc.TITOLI_ORI2
    select count(*)
    FROM
    (SELECT bsc.NEWID,
    TO_DATE('28-feb-2111','DD-MON-YYYY') as data,
    COD_SOCIETA,
    COD_PIANO_CONTABILE,
    COD_CONTO_CONTABILE,
    COD_RUBRICATO_STATISTICO_1,
    COD_NDG,
    NUM_ESEGUITO,
    CUR_VAL_IMPEGNI,
    'ABC' AS CUR_IMPORTO_BICO,
    0 AS FLG_MODIFICATO,
    NULL CUR_NON_ASSEGNATO,
    FLG_QUOTATO,
    COD_CATEG,
    TIP_COPERTURA,
    TIP_TASSO
    FROM
    (SELECT S.COD_SOC AS COD_SOCIETA,
    S.TIP_PIANO_CNTB AS COD_PIANO_CONTABILE,
    S.COD_CONTO_CNTB AS COD_CONTO_CONTABILE,
    S.COD_RUBR_STAT AS COD_RUBRICATO_STATISTICO_1,
    TRC.COD_RAGGR_IAS AS COD_RAGGRUPPAMENTO_IAS,
    TRC.COD_NDG AS COD_NDG,
    TRC.COD_ESEG AS NUM_ESEGUITO,
    CAST((TRC.IMP_PLUS_MINUS_VAL/TRC.IMP_CAMB) AS FLOAT) AS CUR_VAL_IMPEGNI,
    TRC.TIP_QUOTAZ AS FLG_QUOTATO,
    TRC.COD_CAT_TIT AS COD_CATEG,
    TIP_COP AS TIP_COPERTURA,
    T.TIP_TASSO AS TIP_TASSO
    FROM bsc.S_SLD_CNTB S
    INNER JOIN
    (SELECT DISTINCT COD_SOC,
    TIP_PIANO_CNTB,
    COD_CONTO_CNTB,
    COD_RUBR_STAT ,
    COD_INTER_TIT AS COD_INTER
    FROM bsc.S_COLLEG_CONTO_CNTB_TIT
    WHERE COD_SOC = 'ME'
    ) CCC
    ON S.COD_SOC = CCC.COD_SOC
    AND S.TIP_PIANO_CNTB = CCC.TIP_PIANO_CNTB
    AND S.COD_CONTO_CNTB = CCC.COD_CONTO_CNTB
    AND S.COD_RUBR_STAT = CCC.COD_RUBR_STAT
    INNER JOIN bsc.S_TIT_RICCONS TRC
    ON CCC.COD_INTER = TRC.COD_INTER_TIT
    AND CCC.COD_SOC = TRC.COD_SOC
    AND TRC.COD_RAGGR_IAS = RTRIM('HFT ')
    AND TRC.COD_RAGGR_IAS NOT IN ('GPO')
    AND TRC.DES_TIP_SLD_TIT_RICCONS IN ('DISPONIBILI')
    AND TRC.DES_MOV_TIT = RTRIM('CONSEGNARE ')
    AND TRC.COD_CAT_TIT = RTRIM('OBBLIGAZIONE ')
    AND TRC.COD_INTER_TIT = RTRIM('334058')
    AND '28-feb-2011' = TRC.DAT_RIF
    LEFT JOIN bsc.S_TIT T
    ON T.COD_INTER_TIT = TRC.COD_INTER_TIT
    AND T.COD_SOC = TRC.COD_SOC
    AND '28-feb-2011' = T.DAT_RIF
    INNER JOIN bsc.S_ANAG_SOGG AG
    ON TRC.COD_NDG = AG.COD_NDG
    AND AG.COD_SOC = TRC.COD_SOC
    AND '28-feb-2011' = AG.DAT_RIF
    WHERE S.DAT_RIF = '28-feb-2011'
    AND (S.FLG_ANULL_BICO = 0
    OR S.FLG_ANULL_BICO IS NULL)
    AND S.COD_SOC = 'ME'
    AND LENGTH(RTRIM(S.COD_CONTO_CNTB)) = 10
    AND S.TIP_PIANO_CNTB = 'IS'
    AND TRC.IMP_PLUS_MINUS_VAL < 0
    AND SUBSTR(S.COD_CONTO_CNTB,1,7) IN (RTRIM('P044C11 '))
    Another time the strange result returns!!
    And I've created the table TITOLI_ORI2 as create table TITOLI_ORI2 (a number); to contain the number result of the query.

  • Calculation of Results in BEx Report.

    I want to use weighted average method between two keyfigure.
    for example consider the following secnario.
            CH Kf1 Kf2
            A  10   5
            B   6   4
            C   3   2
    <b>Result     19   4.21</b>
    how 4.21 is ((105)+(64)+(3*2))/total of Kf1(ie 19)
                ( A value(Kf1Kf2)+ B value (Kf1Kf2) + C              Value (Kf1*Kf2))/total value (Kf1) = 4.21
    is it possible to achieve the above result for Kf2.
    With regards,
    Hari

    Hi Dinesh & Kumar,
    Thanks for our immediate response..
    I tried with Calculated key figure it is not working and also   macros does not work, because it is a drilldown report , the result cells in report is not fixed, it will vary depending upon the selection parameter.
    Is there is any other solution in query designer to achieve the above result..
    With regards,
    Hari

  • How to get only aggregated results in a report?

    Hi,
    My report data comes in a completely drilled down format. My requirement is to only get the aggregated results in the report. The report has data for day,week and months. using the remove drill down option from the webviews the user can remove the days column to get the aggregated results for a week and same for a month. but my requirement is to show the user the aggregated results for a month.

    Hi,
    Give me your query design. And add some notes to that.

  • Web Service Error - No Result Tree to Report On

    After successfully creating a web service reference and then using the 'Form and Report on Web Service' wizard I get an error, after defining the input items, at the 'Web Service results' Stage.
    It states :
    "No Result Tree to Report On
    This Web service does not have a result tree in its definition that is appropriate for a report. You may wish to run the Form on Web Service wizard instead."
    This web service returns an array of records and runs successfully outside of HTML_DB. Has anyone else had this problem ? I cannot find any information about this so far. I am using App Ex v2, 10g App Server and 9i (9.2.0.4.0) DB. The WSDL file for the web service is below.
    Thanks
    <?xml version="1.0" encoding="UTF-8" ?>
    - <!-- Generated by the Oracle JDeveloper 10g Web Services WSDL Generator
    -->
    - <!-- Date Created: Wed Jun 21 10:10:07 BST 2006
    -->
    - <definitions name="18_WS" targetNamespace="http://TESTDB/18_WS.wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://TESTDB/18_WS.wsdl" xmlns:ns1="http://TESTDB/_WS.xsd">
    - <types>
    - <schema targetNamespace="http://TESTDB/_WS.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
    - <complexType name="TESTDB_CollectCountTable" jdev:packageName="TESTDB" xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    - <all>
    <element name="array" type="ns1:ArrayOfTESTDB_CollectCountRecordUser" />
    </all>
    </complexType>
    - <complexType name="TESTDB_CollectCountRecordUser" jdev:packageName="TESTDB" xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    - <all>
    <element name="code" type="string" />
    <element name="category" type="string" />
    <element name="total" type="decimal" />
    </all>
    </complexType>
    - <complexType name="ArrayOfTESTDB_CollectCountRecordUser" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    - <complexContent>
    - <restriction base="SOAP-ENC:Array">
    <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns1:TESTDB_CollectCountRecordUser[]" />
    </restriction>
    </complexContent>
    </complexType>
    </schema>
    </types>
    - <message name="getCollectionCount0Request">
    <part name="pNumlink" type="xsd:decimal" />
    </message>
    - <message name="getCollectionCount0Response">
    <part name="return" type="ns1:TESTDB_CollectCountTable" />
    </message>
    - <portType name="_WSPortType">
    - <operation name="getCollectionCount">
    <input name="getCollectionCount0Request" message="tns:getCollectionCount0Request" />
    <output name="getCollectionCount0Response" message="tns:getCollectionCount0Response" />
    </operation>
    </portType>
    - <binding name="_WSBinding" type="tns:_WSPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="getCollectionCount">
    <soap:operation soapAction="" style="rpc" />
    - <input name="getCollectionCount0Request">
    <soap:body use="encoded" namespace="18_WS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
    </input>
    - <output name="getCollectionCount0Response">
    <soap:body use="encoded" namespace="18_WS" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
    </output>
    </operation>
    </binding>
    - <service name="18_WS">
    - <port name="_WSPort" binding="tns:_WSBinding">
    <soap:address location="http://testserver:7778/RCAHMS_WebServices-NMRSPK18_WS-context-root/_WS" />
    </port>
    </service>
    </definitions>

    This has been the subject of bug 5394491 for several weeks now without any resolution. It looks like this error will prevent the use of Jdeveloper web services that use array parameters in the current versions of Application Express. We are not planning to use Application Express for this purpose any more as there is no information about the bug (or fix) forthcoming.

  • How to move all the standard and adhoc reports from cube to multi provider

    How to move all the standard and adhoc reports from the basic cube to multi provider?
    i created this multiprovider to do the maintenence on the basic cube. for example the infocube physical partition, line item dimension and compression.
    what we decided to do is move all the Standard and ad-hoc reports from the basic cube to the multiprovider. How to do it? and make a copy of the basic cube and do the maintenence on the cube. please help.
    Thanks in advance sdn experts!

    Hi Les,
    This sounds good and one thing we try to always keep in mind when undertaking such activities is to always minimise the impact to the user and make the process as transparent to them as possible. So lets say you have your multiprovider and copied queries up in Prod, these queries will still pick up the data from the base cube.
    Now you need to make a copy of the base cube for some changes to the cube model, I would suggest that you copy the cube and make your changes on the copied cube itself. Then 9depending on the changes done) you can load data from Original Cube to New Cube. When this is being done, make sure that you change your queries to add a restriction on 0INFORPOV by Original Cube.
    After the load to the new cube is complete you can run reports restricted to each cube to verify the numbers. Then change the 0INFOPROV restriction in the queries to point to the New Cube and disengage the old cube from the multiprovider.
    Hope this helps...

  • Calling an rss script with rs.exe fails to result in a report pdf from VB6 w/ ShellEx.

    Sql 2008 R2
    Calling an rss script with rs.exe fails to result in a report pdf from VB6 w/ ShellEx. 
    If I call rs.exe with the various parameters from the command prompt I  have success(other than rs.exe using the temp folder, which is a different issue).  But when I try to execute the same process from a Visual Basic 6.0 application utilizing
    the ShellEx api call, the report creation and output to PDF format do not occur.   There is no error raised.
    Yes, I wish I could use a newer dev tool but that isn't an option right now. I think this should work.  Can ya'll tell me what I'm doing wrong?
    sArgs = "-i " & Chr(34) & "'C:\Program Files\Dura Supreme\OrderEntry\RunOrdReports.rss'" & Chr(34) & _
    " -s 'http://walnut/reportserver' -v 'DuraOrderNum=" & _
    Chr(34) & sOrdDuraID & Chr(34) & "' -e Exec2005 -t"
    ShellEx Chr(34) & "C:\Program Files\Dura Supreme\OrderEntry\rs.exe" & Chr(34), EShellShowConstants.essSW_SHOWNORMAL, sArgs
    TIA,
    Jim M.

    ShellEx Chr(34) & "C:\Program Files\Dura Supreme\OrderEntry\rs.exe" & ....
    Hello Jim,
    The path for rs.exe includes spaces, you should set it in hyphen, as you already did for file "RunOrdReports.rss" in variable "sArgs2
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Strange symbols appear on my desktop, producing even stranger results!

    Strange symbols appear on my desktop, producing even stranger results!

    These symbols are for short cuts. could be a command to move text insertion point to beginning of document or if you have been in system preferences keyboard and clicked on the modifier key and set one of the options it would be for setting cap lock. Don't know why you are showing a screen  shot of it. Have you clicked on it. Have you been doing any work with documents. You could go to disk utilities and repair permissions or do an pram reset. Command/Option?P/R while holding down the power button for three chimes and release.

  • Adhoc Reporting: Webanalysis vs Financial Reporting Studio

    Hi,
    Our client is using Hyperion Planning 9.3.0.1 and currently the business users use Financial Reporting Studio for adhoc reporting. I am wondering if they can use Web Analysis to do this? Are there any performance issues if many users are using Webanalysis at the same time? Is there anything else that I need to keep in mind before advising the client?
    Thanks and Regards,
    Amol
    Edited by: user638718 on Apr 7, 2009 5:28 PM

    Hi,
    Web Analysis is definitely aimed more towards adhoc reporting, it is just general adhoc reporting you can also use the excel addin and smartview.
    I take it you are already licensed to use web analysis ?
    Performance well that all depends on the load that is going to be put on the server, specs of machines, amount of concurrent users etc
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Assignment of Target Cube Currency Field to ?

    All, I have a new datasource with an amount field and I am trying to create a transformation to the cube.  However the cube requires a mapping for the amount field with a currency key.  Problem is I don't have a currency key field to map to. I have t

  • Upgrading from Nano 5G to new ipod Touch.

    Will I need to amend any settings or will itunes automatically sync the new Touch instead of the Nano. Thanks in advance!

  • New Autofill feature question....

    If I have login info for different sites I visit on my iphone will the autofill feature work for those? I can't seem to get it to work. Please advise. Thanks!

  • MD01 and MD03

    Dear Experts, I have run Total Planning using TCode MD01 , it has created a lot of PRs for a lot of Materials , BUT some materials where not listed in those PRs however when I have run TCode MD03 for a Material it created A PR , So what is the reason

  • Nokia 6300 security code

    hi, can any one help me in finding default "call barring password" i read the FAQ of nokila web site for model 6300 it says default security code for nokia 6300 is "12345" where as when i try to activate call barring service it asks for " barring pas