Report question/problem

I am trying to produce a report.
One query returns three rows, which is correct, because there
are three line items. I then link those three records to another
table to get a description.
The problem I am having is that this record has two
descriptions, so instead of returing just the three records, it
returns six records, three for the first description and three for
the second.
How can the query or report just produce the three records,
and have both descriptons on the same line/column separated by a
comma, if this is even possible ?

Check out the cfoutput tag in the cfml reference manual. Pay
particular attention to the group attribute.

Similar Messages

  • P6 V7 reports question / problem

    strange issue.
    When creating reports in p6 v7, some users can create and run a report with 0 projects open which executes the report on all projects. Some users cannot do this as the report comes out blank. is there a preference somewhere ?
    thank you

    Hi,
    This would depend on what kind of privileges are assigned to each user. Go to Admin > Users. Users that are not Admin Superuser or Administrator may not be able to run reports. Also, go to Admin > Security Profiles. You can check to see if the user has the privilege to Edit Global Reports or Edit Project Reports under Global Profiles or Project Profiles.
    Hope this helps!

  • Interactive report performance problem over database link - Oracle Gateway

    Hello all;
    This is regarding a thread Interactive report performance problem over database link that was posted by Samo.
    The issue that I am facing is when I use Oracle function like (apex_item.check_box) the query slow down by 45 seconds.
    query like this: (due to sensitivity issue, I can not disclose real table name)
    SELECT apex_item.checkbox(1,b.col3)
    , a.col1
    , a.col2
    FROM table_one a
    , table_two b
    WHERE a.col3 = 12345
    AND a.col4 = 100
    AND b.col5 = a.col5
    table_one and table_two are remote tables (non-oracle) which are connected using Oracle Gateway.
    Now if I run above queries without apex_item.checkbox function the query return or response is less than a second but if I have apex_item.checkbox then the query run more than 30 seconds. I have resolved the issues by creating a collection but it’s not a good practice.
    I would like to get ideas from people how to resolve or speed-up the query?
    Any idea how to use sub-factoring for the above scenario? Or others method (creating view or materialized view are not an option).
    Thank you.
    Shaun S.

    Hi Shaun
    Okay, I have a million questions (could you tell me if both tables are from the same remote source, it looks like they're possibly not?), but let's just try some things first.
    By now you should understand the idea of what I termed 'sub-factoring' in a previous post. This is to do with using the WITH blah AS (SELECT... syntax. Now in most circumstances this 'materialises' the results of the inner select statement. This means that we 'get' the results then do something with them afterwards. It's a handy trick when dealing with remote sites as sometimes you want the remote database to do the work. The reason that I ask you to use the MATERIALIZE hint for testing is just to force this, in 99.99% of cases this can be removed later. Using the WITH statement is also handled differently to inline view like SELECT * FROM (SELECT... but the same result can be mimicked with a NO_MERGE hint.
    Looking at your case I would be interested to see what the explain plan and results would be for something like the following two statements (sorry - you're going have to check them, it's late!)
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two),
    sourceqry AS
    (SELECT  b.col3 x
           , a.col1 y
           , a.col2 z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5)
    SELECT apex_item.checkbox(1,x), y , z
    FROM sourceqry
    WITH a AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_one),
    b AS
    (SELECT /*+ MATERIALIZE */ *
    FROM table_two)
    SELECT  apex_item.checkbox(1,x), y , z
    FROM table_one a
        , table_two b
    WHERE a.col3 = 12345
    AND   a.col4 = 100
    AND   b.col5 = a.col5If the remote tables are at the same site, then you should have the same results. If they aren't you should get the same results but different to the original query.
    We aren't being told the real cardinality of the inners select here so the explain plan is distorted (this is normal for queries on remote and especially non-oracle sites). This hinders tuning normally but I don't think this is your problem at all. How many distinct values do you normally get of the column aliased 'x' and how many rows are normally returned in total? Also how are you testing response times, in APEX, SQL Developer, Toad SQLplus etc?
    Sorry for all the questions but it helps to answer the question, if I can.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)

  • Report a problem on an iPad?

    I bought an iPad because I don't have a computer and was sold by the fact that you don't have to set it up via a computer. I want to report a problem with an appbutcant unless I have iTunes on a computer. Then I found a way to do it via Apple Support but it wanted the purchase number. Ok where do I find that? iTunes on your computer. How can I report a problem that doesn't involve a computer?

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
     Cheers, Tom

  • Unable to 'report a problem' with iTunes purchase

    Hi all.
    I have a Season Pass for Castle, Season 1 in the UK store. They have, as usual, been releasing the episodes for download approx 24 hours after transmission (yes, US readers we're THAT far behind you in being able to get this programme.). However, last week Channel 5 broadcast the final 2 episodes of season 1 back to back on the same night. Only one episode, episode 9, appeared in iTunes.
    I thought I would use the 'report a problem' feature to ask if they're actually going to put the last one up to download, or if it's been forgotten. However, clicking the 'report a problem' link in My Account on any episode of Castle just opens the default Apple support webpage in Safari. If I use the link on any other purchase then I get the correct "Problem: Choose One" drop down within iTunes.
    So, how can I ask a question of iTunes support about the currently missing episode if I can't use the "report a problem" link?

    Doh. Didn't expect it to be that simple. I don't know why but I had it my head that they don't deal with iTunes store queries except via the in app reporting method.

  • Updateable Report Question.

    Updateable Report Question.
    Currently I am developing an XE application, so I think that is apex 2.0.
    Here is an example of what I wish to achieve.
    Suppose I have an emp table with columns
    dept, id, name and comment.
    I create an SQL report as
    SELECT * from emp;
    I only wish to see the name and comment columns, so in the report attributes I un-tick show the columns dept and id.
    I want the user to be able to update the comment column, So I edit the comment column and in “Tabular Form Element” I change the “Display As” from “Standard Report Column” to “Text Field”
    This now lets me edit the data in the column in the report.
    Now want to add in an on change event to call a javascript routine that will use ajax to do the actual update.
    My problem is that I need to pass in the “hidden” dept and id column values as well as the modified text, thus
    In “Tabular Form Element” – “Element Attributes” add in
    onchange="updateRemarks(#DEPT#, #ID#, this.value)"
    Unfortunately this does not work, apex does not expand the #DEPT# & #ID#, and just passes in the literal text.
    So how can I achieve this?
    Thanks,
    GP>

    The columns and rows have a set format for the Id, so if you know one Id you know the row and the ids of all the other columns.
    As an example, this will show the value of column 6 when you click on any column with the function call in the Element Attributes:
    Script:
    <script type="text/javascript">
    function showCol6(col){
      var col6 = document.getElementById("f06_" + col.id.substr(4,4));
      alert(col6.value);
    </script>Element Attributes:
    onclick=showCol6(this);You could also use a Named Column template, specific to this region, to include the column values directly in the function call, but I think it's best to stick with the ApEx defaults if possible.

  • I recently purchased some information to be downloaded to one of my apps I never received the download and I was charged multiple times I reported the problem my  Community

    I recently purchased some information to be downloaded to one of my apps I never received the download and I was charged multiple times I reported the problem And it's been about a week my question is how long does it take  to credit my account back. It's my money and I want it now.

    It can take a while for your money to show up in your bank, but a week is a bit over the top. Try contacting iTunes Store Support to make sure the refund was issued.

  • HT2693 Report a problem with iTunes

    I play Modern World by Gree, and the purchases with my iTunes was glitch in the game. Allot of people had this problem and the company knows this. I contacted the company's customer support and they have not responded in three day. I want to a refund of the iTunes that they consumed this weekend.

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    iTunes Purchase Problems: How to Report a Problem to iTunes Support
    http://tinyurl.com/7tscpa7
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Getting Refunds for your iTunes Store Purchases
    http://www.labnol.org/software/itunes-app-store-refunds/13838/
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

  • How do I report a problem for an in app purchase

    I have recently bought bits for an app but never got them.
    I click on 'report a problem' on my statment and it keeps bring me to
    http://www.apple.com/uk/support/itunes/
    I have done this in the past but did it all through itunes and it never took me to this page
    I was wondering if anyone knows to how claim for this.
    Thanks

    You probably cannot get a refund, since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    It's possible they'll make an exception for you.
    Good luck.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • HT4009 in app purchase from OMGPOP "Draw Something" of 400 coins never received - has anyone else had this problem and do you have a suggestion for me  Tried "report a problem" and directed to this site."

    in app purchase from OMGPOP "Draw Something" of 400 coins never received - has anyone else had this problem and do you have a suggestion for me  Tried "report a problem" and directed to this site."

    Hi AP_In_Surbiton,
    I am really sorry that you have had so much trouble getting your Caller ID up and going.  I'll be happy to help you out with this and get it working for you.
    Could you drop me in an email please? Use the 'contact us' form in my forum profile under the 'about me' section. You can find it by clicking on my username.
    Thx
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • "Report a problem" takes you on a circular run-around

    I get my usual email from iTunes regarding my purchases, and for the first time there's a problem* (irrelevant to this post, but described below).
    1) I click "report a problem" in the email, which launches iTunes.
    2) I click "report a problem" next to the item in iTunes, and it takes me to a generic support page via my browser: http://www.apple.com/support/itunes/
    3) I drill down there to "Purchases & Downloads", click on the link "Reporting issues with iTunes Store purchases" to here: http://support.apple.com/kb/HT1933
    4) That tells me to do one of two things, both bringing me back around to a step above.
    a) For In-App purchases (which this was) "contact iTunes Store Support", the link which takes me here: http://www.apple.com/support/itunes/ww/ , and then selecting United States (English), and that takes me back to http://www.apple.com/support/itunes/ , where step 2 above took me.
    b) otherwise open iTunes, and do a bunch of things culminating in step 2 above.
    * The problem: I download a free app that relies entirely on using data from a web site, not affiliated with the producer of the app.  I attempt to use the app, and it fails.  There's a suggestion that I need to make an In-App purchase to enable that functionality, so I do.  It still fails, and on further investigation I find the reason is that the third-party web site the app relies on has blocked the app, so the app is permanently broken and useless.  I don't care about the 99 cents, but more the many 99 cent In-App payments by others for something entirely nonfunctional.

    Two questions:
    First Question:  Are the clickable links in my iTunes email, and also within iTunes (in Purchase History), which say "Report a Problem", supposed to allow me to Report a Problem, or only to lead me through a circular loop without any option to Report a Problem? (as they actually do, as described in my initial post)
    Second Question:  If the former, how?  (as described in sufficient detail in my initial post, they only do the latter)

  • My iPod automatically purchases apps, how can i report the problems by using email, is there emails than i can use?

    I'm from Hong Kong and this is my first time using this.
    In the past few months, my iPod had been automatically purchasing apps/updates/points I had not notice it until this few days when my email showed that I had purchased apps for more than $100USD.
    So ireally want to report these problems to Apple about cancelling my purchases. I did once before and it suceesed. However, this time when i try to used iTunes to report the same problem about my cancelling purchases, it did not allow me and it came straight to Apple websites. I tried it thousand time, and it still doesn't work.
    Therefore, my question is than is there any other way that i can contact with Apple Store such as through e-mail.
    If any one knows what is the email or any other way, please reply.
    Damon

    Try going to Apple Support, and e-mailing them from there.  If you got hacked, they will probably be able to cancel the purchases.  They are great.

  • What's the Point of the 'Report a Problem' Process?

    I tried out the 'report a problem' process for the first time, as I bought an app that basically didn't do anything it was supposed to.
    I tried to contact the app support via the link in iTunes, got nowhere, so I tried the recommended 'report a problem' process.
    This also was a complete waste of time, as all it does is generate a message from Apple saying 'we have noted your comment but we have no control over apps. Please seek advice through the support link in the app page in iTunes' or words to that effect.
    Complete waste of time and going round in circles.
    So, are we saying that, if the app support is ignoring any requests for a refund and Apple obviously don't want to know, there is no way to get any money back on apps that just don't do what they are supposed to?

    Sorry Ian, but Apple did not tell me that. I have never asked for a refund, because there is no apparent mechanism for doing so.
    I cannot see anything in the link you provided that is relevant to the issue in question.
    I am struggling to see why the situation with buying an app that is 'unfit for purpose' from the App Store is any different if I buy a pair of Levis from the Jeans Store that is 'unfit for purpose' because there is a leg missing.
    The shop will not wash their hands of it, and tell me to go and sue the manufacturing factory whose responsibility it is. They would give me a refund, as it is them that I have a contract with and not the manufacturers.
    That is basic Consumer Law - certainly in the UK.
    Someone who purchases from the App Store is buying from Apple, not the developer, and it is Apple that the consumer has the contract with. Simple as that.
    Even if what you were saying was correct, what mechanism is there for devs to give refunds? Have you tried to get any support for apps in the App Store? My experience is that most of the time, it is zero. Now, of course, we all say, 'oh well, it was only a pound or so', and move on, but it still begs the question.

  • HT1933 Tried iTunes Store directive for reporting a problem. Got an ERROR message every time. Stuck with a NY Times app that won't recognize my subscription.

    Tried iTunes Store directive for reporting a problem. Got an ERROR message every time. Stuck with a NY Times app that won't recognize my subscription.called Apple and was told by an automated message to...use the ITunes Store directive.
    Can someone point me in the right direction.

    Hello atransient,
    Thanks for the question, that definitely sounds frustrating to encounter errors at the most important times.
    Let's see if the online Report a Problem works any better for you:
    http://reportaproblem.apple.com
    Thanks,
    Matt M.

  • Hi team , I have some questions/Problem for my product apple (iPad,iPhone) , I want to employee speak and type thai language

    Hi team , I have some questions/Problem for my product apple (iPad,) , I want to employee that can  speak  or response me in thai language
    1. ผม อาคเนย์  พำนักอยู่ประเทศไทย กรุงเทพฯ  มีปัญหาสอบถาม ดังต่อไปนี้
       - กระผมได้ทำการตัดบัตร เครดิต เพื่อซื้อเกมส์ผ่าน itune store ผ่าน apple itune ID : misskor.yaprom@*** เพื่อซื้อเกมส์ Eleves Realm ในวันที่18 ก.ค. 56 เวลา 17.07น. ซึ่งทางบัตรเครดิตได้แจ้งเรียกเก็บเงินมายอดเงิน 39.99$ ซึ่งในระบบจริงๆ ทางกระผมต้องการตัดในยอด 99.99$ แต่พอได้ประสานงานไปยังธนาคาร ได้รับการแจ้งกลับมาว่า ได้ทำการตัดบัตรในยอดเงิน 39.99$ ซึ่งในความเป็นจริงนั้น กระผมไม่ได้สั่งซื้อเกมส์ในยอด 39.99$ ซึ่งในยอด 99.99$ นั้นพยายามตัดในระบบบัตรเครดิตอยู่ แต่ทางกระผมได้ยืนยันกลับไปว่าไม่ให้ระบบตัดนะครับ เพราะว่าเนื่องจากมีปัญหาในการชำระเงินระหว่าง Apple itune store อยู่
       - ทั้งนี้ขอให้ทางเจ้าหน้าที่ประสานงานตรวจสอบ apple itune ID : misskor.yaprom@*** เพื่อซื้อเกมส์ Eleves Realm ตามที่ได้ให้รายละเอียดโดยด่วนว่าเป็นเพราะว่าระบบมีปัญหาหรือว่ามีอะไรเกิดขึ้นในข ั้นตอนการชำระเงินครับ
    รบกวนประสานงานกลับมายังกระผม อาคเนย์ ที่หมายเลขโทรศัพท์มือถือ +**** / reply feedback  email : lekod1@*** โดยด่วน ในวันศุกร์ที่ 19 ก.ค. 2556 ครับ
    ขอบคุณครับ
    อาคเนย์  อุดปิน
    กด
    <Edited By Host>

    Google translation:
    พนักงานของ iTunes Store จะไม่ได้อ่านข้อความในเว็บบอร์ดนี้ ถ้าคุณต้องการความช่วยเหลือสำหรับปัญหาที่มีใน iTunes Store, คุณจะต้องติดต่อกับพวกเขาผ่านทางแบบฟอร์มเว็บนี้:
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for