Multi-part related query reports

http://download-east.oracle.com/docs/html/B10310_01/orbr_concepts1.htm#1012365
Can someone provide me better info about 'Multi-part related query reports '

Hi,
yes you can have multiple query in your report. So you have multiple groups in your data model. Then you must put multiple repeating frames in your layout in order to extract data from your queries, selecting the desired group in the source property of your repeating frame.
Bye
Raffy

Similar Messages

  • The workbook report no authorization, but related query can show part data

    Dear All,
    We meet an error, The workbook report no authorization, but related query can show part data.
    We have a workbook, it have 1 queries, and when we key in condition to run it, in one field we put on one more condition(Z3XXX = ' WZO'  & ' WZA")(User didn't have authorization for this condition),  and workbook report no authorization.
    Then we checked  authorization check log and it show "You do not have sufficient authorization on Z3XXX = ' WCO'.
    But when we execute the related query with same condition. the query can open and show WZA's data.
    I'd like to know the reason.
    thanks & Best Regards,
    Kent Yu

    Dear All,
    We meet an error, The workbook report no authorization, but related query can show part data.
    We have a workbook, it have 1 queries, and when we key in condition to run it, in one field we put on one more condition(Z3XXX = ' WZO'  & ' WZA")(User didn't have authorization for this condition),  and workbook report no authorization.
    Then we checked  authorization check log and it show "You do not have sufficient authorization on Z3XXX = ' WCO'.
    But when we execute the related query with same condition. the query can open and show WZA's data.
    I'd like to know the reason.
    thanks & Best Regards,
    Kent Yu

  • Multi-query reports in Reports 3.0

    When I run multi-query report in Reports 3.0 the report runs
    correctly when I first load the report. However, when the report
    is run for a second time the sub-queries do not appear to execute
    and the report does not give a complete output, if any.
    null

    Hello Mike,
    Whenever you work on multi-query reports you have to set all
    the relationship within the tables. If you have not specified
    then specify within the where clause.
    Try this. I hop your problems get solved.
    From Subash.
    Mike Donnerstag (guest) wrote:
    : When I run multi-query report in Reports 3.0 the report runs
    : correctly when I first load the report. However, when the
    report
    : is run for a second time the sub-queries do not appear to
    execute
    : and the report does not give a complete output, if any.
    null

  • Multi query reports and BI Publisher?

    I have to create a report that gathers data from DB using several SQL queries - text mixed with data tables. I was not able to find anything like that in Apex 3.0 or BI Publisher. Am I missing something?
    As a solution I was trying to pass more complex, hierarchical XML data structure to BI Publisher with several repeating groups that would serve my purpose. Apex seems to generate only one level XML.
    Is there a way to generate XML file manually and pass it to BI Publisher?
    Thank You
    Janis

    Does anyone have an idea on how to create multi-query report?
    ..or maybe how to manually create XML and pass it to BI Publisher?
    Tahnk you!
    Janis

  • Multi Query Reports

    Hi!
    Can we have multi query reports ? reports displayed in Frames in a report???????
    Imran

    Hi,
    yes you can have multiple query in your report. So you have multiple groups in your data model. Then you must put multiple repeating frames in your layout in order to extract data from your queries, selecting the desired group in the source property of your repeating frame.
    Bye
    Raffy

  • Creating a cfhttp multi part form post for google docs upload

    Hey all,
    If you saw my last thread, you know I am working with google docs and uploading documents to it. Well I got basic document uploading working, but now I am trying to include meta data. Google requires you to include the metadata with the actual file data and seperate them by using a multi part form upload. I don't know exactly the process for doing so, but they have a handy code snippet of the desired results at
    http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#UploadingDoc s
    So I am basically trying to mimic that payload, however I am continually getting an error stating that there are no parts in a multi part form upload.
    <errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>InvalidEntryException</code><internalReason>No parts detected in multipart message</internalReason></error></errors>
    to be exact. I am not really sure what I am doing wrong here. I figure it is one of two things, either I am not including the actual data in the payload properly (I am currently using a body type param for the payload, but I have also tried a formfield named content to deliver it. Neither worked). So maybe I need to do something else tricky there? The other thing which I am not reallly sure about is the content-length attribute. I don't know exactly how to calculate that, and I read in another forum that a content length attribute was messing that guy up. Right now I am just taking the lenght of the payload string and multiplying by 8 (to get the number of bytes for the entire payload) but hell if I know if that is right. It could be I just don't know how to set up the parts for the message, it seems pretty straight forward though. Just define a boundary in the content-type, then put two dashes before it wherever you define a new part, and two dashes trailing the last part.
    Anyway, here is my code, any help is much appreciate. I'm a bit beyond my expertise here (not really used to trying to have to roll my own http requests, nevermind multipart post form data) so I'm kinda flailing around. Thanks again.
    <cffunction name="upload" access="public" returnType="any" hint="I upload the document." output="false">
        <cfargument name="filePath" type="string" required="false" hint="file to upload.">
        <cfargument name="docType" type="string" required="yes" hint="The document type to identify this document see google list api supported documents">
        <cfargument name="parentCollectionId" type="string" required="no" hint="the name of the collection/collection to create (include collection%3A)">
        <cfargument name="metaData" type="struct" required="no" hint="structure containing meta data. Keyname is attribute name, value is the value">
        <cfset var result = structnew()>
        <cfset result.success = true>
        <cftry>
            <cfif structkeyexists(arguments,"parentCollectionId")>
                      <cfset arguments.parentCollectionId = urlencodedformat(parentCollectionId)>             
                      <cfset result.theUrl = "https://docs.google.com/feeds/default/private/full/#arguments.parentCollectionId#/contents">
                <cfelse>
                        <cfset result.theUrl = "https://docs.google.com/feeds/default/private/full/">
            </cfif>
             <cfoutput>
                  <cffile action="read" file="#arguments.filePath#" variable="theFile">
                <cfsavecontent variable="atomXML">
                     Content-Type: application/atom+xml
                    <?xml version='1.0' encoding='UTF-8'?>
                    <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007">
                      <category scheme="http://schemas.google.com/g/2005##kind"
                          term="http://schemas.google.com/docs/2007###arguments.docType#"/>
                        <cfloop collection="#arguments.metaData#" item="key">
                            <#key#>#arguments.metadata[key]#</#key#>
                        </cfloop>
                    </entry>
                    --END_OF_PART
                    Content-Type: text/plain
                    #theFile#
                    --END_OF_PART--
                </cfsavecontent>       
            </cfoutput>      
            <cfset result.postData = atomXML>
            <cfhttp url="#result.theUrl#" method="post" result="httpRequest" charset="utf-8" multipart="yes">
                <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth()#">
                <cfhttpparam type="header" name="GData-Version" value="3">
                <cfhttpparam type="header" name="Content-Length" value="#len(trim(atomXML))*8#">           
                <cfhttpparam type="header" name="Content-Type" value="multipart/related; boundary=END_OF_PART">
                <cfhttpparam type="header" name="Slug" value="test file --END_OF_PART">
                <cfhttpparam type="body" name="content" value="#trim(atomXML)#">
            </cfhttp>
            <cftry>
                   <cfset packet = xmlParse(httpRequest.fileContent)>
                <cfif httpRequest.statusCode neq "201 created">
                    <cfthrow message="HTTP Error" detail="#httpRequest.fileContent#" type="HTTP CODE #httpRequest.statusCode#">
                </cfif>
                <cfset result.data.resourceId = packet.entry['gd:resourceId'].xmlText>
                <cfset result.data.feedLink = packet.entry['gd:feedLink'].xmlText>
                <cfset result.data.title = packet.entry.title.xmlText>  
                <cfset result.data.link = packet.entry.title.xmlText>    
                <cfcatch>
                     <cfset result.data = httpRequest>
                </cfcatch>
            </cftry>       
            <cfcatch type="any">
                 <cfset result.error = cfcatch>
                <cfset result.success = false>
            </cfcatch>
        </cftry>   
        <cfreturn result>
    </cffunction>
    Also, this is what my atomXML data ended up looking like when it got sent to google. This isn't the WHOLE request (it doesn't include the headers, just the body).
    Content-Type: application/atom+xml
    <?xml version='1.0' encoding='UTF-8'?>
    <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007">
    <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/docs/2007#document"/>
    <TITLE>Woot Test</TITLE> </entry>
    --END_OF_PART
    Content-Type: text/plain
    I'm a test document lol!
    --END_OF_PART--

    Woot, I got it. I had to send the gData version number, and change the URL.
    Here is the working function.
    <cffunction name="upload" access="public" returnType="any" hint="I upload the document." output="false">
        <cfargument name="myFile" type="string" required="false" hint="file to upload.">
        <cfset var result = "">
        <cfset theUrl = "https://docs.google.com/feeds/default/private/full">
        <cffile action="read" file="C:\website\xerointeractive\testing\test.txt" variable="theFile">
        <cfset fileSize = createObject("java","java.io.File").init("C:\website\xerointeractive\testing\test.txt").length()>
        <cfhttp url="#theURL#" method="post" result="result" charset="utf-8" >
            <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth()#">
            <cfhttpparam type="header" name="Content-Type" value="text/plain">
            <cfhttpparam type="header" name="Slug" value="test file">
            <cfhttpparam type="header" name="GData-Version" value="3">
            <cfhttpparam type="header" name="Content-Length" value="#fileSize#">
            <cfhttpparam type="body" value="#theFile#">
        </cfhttp>
        <cfreturn result>
    </cffunction>

  • Exporting a query report in Excel gives a wrong value.

    Hi All,
    After running the query report, from the menu path, I do List > Export > Spreadsheet.  At that point, you can save the file and Excel opens up.  The value for the amount are displaying with additional zeroes
    For example 14,000.00  is dispalyed as 14,000,00.00
    Please let me know the if you have solution for this are related OSS note for this
    Thanks,
    Karthikeyan.

    Hi David,
    Thanks for your response.
    The OSS notes are related to ALV display where when i check with other ALV program and export it is giving a correct total.Where when i download the qurey report in excel using file-> export to option i am getting  a additional zeroes.
    Please let me know if there is any other solution for this.
    Thanks for your help in advance.
    Thanks,
    Karthikeyan.

  • Multi level Group Above Report

    I have a multi level Group Above report like this.
    School name : xxxx
    Course1
    Student1
    Student2
    Course2
    Student1
    School name : yyyy
    etc...
    No students are enrolled in some of the courses. I used the Outer Query in SQL to include those courses. Everything looks okay, except the header for the students are still appearing. how do I supress the student heading if no drecords are present?
    Can somebody help me.
    Thank you
    David Smith

    hello,
    you will have to create a counter, that tells you the numbers of students (summary-column, function : count, reset on : course) and create a format-trigger on the heading that hides it when the number of students is 0.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • PRODUCTION ORDER NO. DISPLAY IN QUERY REPORT

    Hello Sir,
    I need to display production order number in the following query, can you please reply that query,
    select distinct t1.DocNum,t1.DocDate,t1.NumAtCard,t1.CardName,t4.U_desc,t4.DocEntry[GRNNO],t4.U_recqun[GRN-QTY],t6.U_PREACPT[Accepted],t6.U_BALQTY[Waiting for QC]
    from OPDN t1 inner join PDN1 t2 on t1.DocEntry = t2.DocEntry inner join [@SU_SUBCONGRN] t3 on t1.DocNum= t3.U_grnno
    inner join  [@SU_SUBGRNLINES] t4 on t3.DocEntry = t4.DocEntry inner join [@TI_GRNINSPECTION] t5 on t3.DocNum = t5.U_SUBGRN
    inner join [@TI_GRNLINE]t6 on t5.DocEntry = t6.DocEntry
    where t1.DocDate>=[%0] and t1.DocDate<=[%1] and  t1.CardName=[%2]
    Reagards
    Pushpa

    Hi Pushpa......
    Is there any relation between Production Order table and any of the table taken in your query report?
    If yes then please let me know.......
    Then only you can get it linked with Production order......
    Regards,
    Rahul

  • Can I define a Function as part of the Report?

    In an Oracle Report, I want to define a Function, to use in the report query. I defined a Function CALC_DIFFERENCE under Program Units. It compiled OK.
    But when I tried to use this function in the query it get them message ORA-00904 “CALC_DIFFERENCE” invalid identifier.
    Can I define a Function as part of the Report? Or does it need to be on the database?
    Report Builder 9.0.4.0.33
    Thanks

    You have to put it in the database if you want to use it in your query. The reason is simple: the query runs in the database, so it won't see the function in the Report.
    If you really need the function in the report (because it uses other values only known in the report), you have to create a formula column.

  • Error: The multi-part identifier "SourceView.MonitoringClassId" could not be bound

    We have a strange error with multiple views under "Configuration Items". First of all with some users the error happens almost every time and there are a few users where this never happens. If it happens the following errors appear in the SCSM
    console and the server evtentlog after clicking on a view.
    Currently it looks like domain administrators don't face this problem. But SCSM admins and regular SCSM users have the same problem.
    Eventlog:
    Data Access Layer rejected retry on SqlError:
    Request: Composite_Select_Path_00000000-0000-0000-0000-000000000000 -- (ManagedTypeId_SubqueryJoin0_00=880e7a50-afab-74d9-1e74-8a4ca50640b0), (ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B0=47101e64-237f-12c8-e3f5-ec5a665412fb), (CustomerName_97197BF6_C0B3_78BA_4B4A_A34047F47DCA0=%XName+YName%)
    Class: 16
    Number: 4104
    Message: The multi-part identifier "SourceView.MonitoringClassId" could not be bound.
    SCSM Console Error:
    Date: 01.07.2014 14:58:05
    Application: Service Manager Console
    Application Version: 7.5.3079.0
    Severity: Error
    Message: An error occurred while loading the items.
    Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportException: The Full adapter threw an exception. See the FullUpdate property to see the exception.
    at Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportAdapter.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
    at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
    at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
    Is there a way to troubleshoot this or can someone point me in the right direction?
    I read that some of those "Full adapter"-errors should be fixed with SCSM R2 UR2. But it didn't help here.

    Hi,
    Did you create any custom views? what is the common views between the end users facing this problem.
    Regards
    Antoine AL Ibry

  • Need Help! have an issue from my auto response email, it showing the "MIME This is a multi-part message in MIME format. " and the signature message disappeared.

    ave an issue from my auto response email, it showing the "MIME This is a multi-part message in MIME format. " and the signature message disappeared and replaced with some unreadable message

    Hi msnyder1112,
    Thank you for posting in MSDN forum.
    Since this issue is related to the VB.NET, so we will move this case to VB forum:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral , you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Multi-part identifier dtss.DocumentID could not be bound

    Below is my query
    Getting error
    The multi-part identifier "dtss.DocumentID" could not be bound.
    SELECT sb.BoxID,sbls.Locationcode,sbl.LocationName,sbls.DateEntered
    From data_document.dbo.StorageBox sb
    inner join data_document.dbo.StorageBoxLocations sbls
    on sb.storageBoxID
    = sbls.storageBoxID
    inner join data_document.dbo.StorageBoxLocation sbl
    ON sbls.LocationCode
    = sbl.LocationCode
    Inner Join CVDocuments cvds
    on dtss.DocumentID
    = cvds.DocumentID
    INNER JOIN CVFact cvf
    ON cvf.CVID
    = cvds.CVID
    INNER JOIN Employee e
    ON e.Employeeid
    = cvf.EmployeeID
    inner join data_document.dbo.DocumentStorageBox dsb
    ON dsb.StorageBoxID
    = sb.StorageBoxID
    Can anybody help me. 
    Mary Sunish

    Where is this dtss object defined -> dtss.DocumentID?
    Can you check the dtss alias which is not defined on of the objects?
    --Prashanth

  • Breaking Apart a Multi-Part Key

    Post Author: LauraStrud
    CA Forum: General
    Hello;
    I need to break a multi part key in a table to accomplsih a join. For example Table 1 has Key (StudID *AcadLevel .  I need to just get the StudID to join to another table.  How can I accomplish that without having to create a new table/view?
    Thanks

    Post Author: LauraStrud
    CA Forum: General
    SKodidine
    Thanks for your quick reply... Ok.. I apologize for the ignorance here... but CR is still a little 'new' to me.
    I assume I add that as a formula or go to the Show SQL Query and update either of those fields???  I thought I might be able to go to the Database Expert' and add that field to the table there, but the Database Expert doesn't seem to let me add fields to the table there??  I really just need to know where to update the link field to the table so I can do the join???
    Again, sorry for the ignorance.
    Laura

  • Multi Part Key broken Apart

    Post Author: LauraStrud
    CA Forum: Formula
    Hi
    I would like to take a multi part key and push both pieces to the same field.  For example, I would like the key: 123*456 to be placed in a new field, but both pieces in the same field (ID2 or something like that)  I am writing this in the Add command of Crystal..  I can also do it through SQL.and build a view.
    Thaks for any input.

    Post Author: V361
    CA Forum: Formula
    Can you post what your command looks like so far.  also field names for what you are trying to "Join" for lack of a better word.   In your report you could have 
    & " " & or
    & "" & if you don't want the space between, and forget about trying to do this in the command.

Maybe you are looking for

  • Connection between SDM client and server is broken

    Dear All, First of all this is what I have -NW04 SPS 17 -NWDS Version: 7.0.09 Build id: 200608262203 -using VPN connection -telnet on port 57018 is succesfull I can login to SDM server (from NWDS and from SDM GUI) I can see the state of SDM(green lig

  • Backlit Keyboard has stopped working on Satellite P50-A-12Z

    I bought my Satellite P50-A-12Z over a year ago, and since few weeks the backlit keyboard has stopped working. I used to hold FN+W to turn on/off the light keyboard, but now it doesn't work anymore and I have the message "chronometer" on the top righ

  • Select one radio button at a time

    Hi all, my webdynpro table contains 3 rows. each row contains one radio button. at a time i should select only one radio button and bydefault the first one should be select. Thanks, Sagarika

  • Preview unexpectedly quits when I try to print after downloading 10.9.2

    Below is the error message I have been getting when trying to print a pdf from preview. This happens every time. I never had this issue before upgrading to 10.9.3. I attempted deleting from my library: com.apple.preview come.apple.preview.lssharedfil

  • Solaris-10 flashinstall, jumpstart, and smf

    I am having problems with jumpstarting flash images on Solaris-10/SPARC. I am not sure whether the problems are related to smf or not but I also do not know how to debug them. I use a fully automated jumpstart installation with a site.xml and a one-t