Report is returning data which isn't there.

I have a simple report pulling data from one table. I went through and deleted the information and I am still having 2 rows show up, where I KNOW there is no data.
I've gone through SQL developer and copy/pasted the query and I get nothing returned. I've refreshed everything, down to the computer level and even restarted since I first saw this problem, and I am still getting the same 2 rows displayed.
ANy idea whats going on??

well I just did this and I have no idea why some of the data showed as deleted and these two still existed. I deleted them in one fell swoop, deleting by the date they were added, all yesterday. Thanks for that pointer though, amazing it was somehting that simple :)
If I am to include a "delete" button on an APEX app which deletes rows, would I want a commit command inside that button also, or does it automatically get processed?

Similar Messages

  • I need the Log Report for the Data which i am uploading from SAP R/3.

    Hi All,
    I am BI 7.0 Platform with Support Patch 20.
    I need the Log Report for the Data which i am uploading from SAP R/3.
    I extract the DATA from R/3 into BI 7.0 DSO where I am mapping the GL Accounts with the FS Item.   In the Transformation i have return a routine on the FS Item InfObject . I am checking the Gl code into Z table for the FS Item .
    I capture the FS item from the Z table then update this FS item to Infobject FS item.
    Now i  need to stop the Data upload if i do not find the GL code in the Z table, and generate report for all GL code for which the FS item is not maintained in the Z table.
    Please suggest.
    Regards
    nilesh

    Hi.
    Add a field that you will use to identify if the GL account of the record was found in the Z table or not. Fx, create ZFOUND with length 1 and no text.
    In your routine, when you do the lookup, populate ZFOUND with X when you found a match (sy-subrc = 0) and leave it blank if you don't find a match. Now create a report filtering on ZFOUND = <blank> and output the GL accounts. Those will be the ones not existing in the Z table, but coming in from your transactions.
    Regards
    Jacob

  • Thr_create() returns -1 which isn't specified in the man page. What is -1?

    Hello,
    I'm for the first time experimenting with Solaris threads as I'm porting an AIX app. over to Solaris.
    Anyhow, I have a sample program that creates a simple thread. For some reason, the return value of of the initial thr_create is -1, which isn't specified in the man page for thr_create. The man page lists the following return values, non of which are -1:
    RETURN VALUES
    Zero indicates a successful return and a non-zero value
    indicates an error.
    ERRORS
    If any of the following conditions occur, these functions
    fail and return the corresponding value:
    EAGAIN The system-imposed limit on the total number
    of threads in a process has been exceeded or
    some system resource has been exceeded (for
    example, too many LWPs were created).
    EINVAL The value specified by attr is invalid.
    If any of the following conditions are detected,
    pthread_create() fails and returns the corresponding value:
    ENOMEM Not enough memory was available to create the
    new thread.
    If any of the following conditions are detected,
    thr_create() fails and returns the corresponding value:
    EINVAL o stack_base is not NULL and stack_size is
    less than the value returned by
    thr_min_stack(3T).
    o stack_base is NULL and stack_size is not
    zero and is less than the value returned by
    thr_min_stack(3T).
    However, I don't see a -1 there and therefore, don't know what this means.
    Here is the simple code that I wrote for this experiment as well as the output. It doesn't get too far into the program before exiting - I've bolded where it exits:
    #define _REENTRANT
    #include <stdio.h>
    #include <thread.h>
    #include <errno.h>
    /* Function prototypes for thread routines */
    void sub_a(void );
    void sub_b(void );
    void sub_c(void );
    void sub_d(void );
    void sub_e(void );
    void sub_f(void );
    thread_t thr_a, thr_b, thr_c;
    void main()
    thread_t main_thr;
    int rc = 0;
    main_thr = thr_self();
    printf("Main thread = %d\n", main_thr);
    if (rc = thr_create(NULL, 0, sub_b, NULL, THR_NEW_LWP, &thr_b))
    printf("\n rc = %d",rc);
    switch(rc)
    case EAGAIN: printf("This one1");
    break;
    case EINVAL: printf("This one2");
    break;
    case ENOMEM: printf("This one3");
    break;
    default: printf("rc = %d");
    break;
    fprintf(stderr,"Can't create thr_b\n"),
    * exit(1); *
    /* if (thr_create(NULL, 0, sub_a, (void *)thr_b, THR_NEW_LWP, &thr_a))
    fprintf(stderr,"Can't create thr_a\n"), exit(1); */
    if (thr_create(NULL, 0, sub_c, (void *)main_thr, THR_NEW_LWP, &thr_c))
    fprintf(stderr,"Can't create thr_c\n"), exit(1);
    printf("Main Created threads A:%d B:%d C:%d\n", thr_a, thr_b, thr_c);
    printf("Main Thread exiting...\n");
    thr_exit((void *)main_thr);
    void sub_a(void arg)
    thread_t thr_b = (thread_t) arg;
    thread_t thr_d;
    int i;
    printf("A: In thread A...\n");
    if (thr_create(NULL, 0, sub_d, (void *)thr_b, THR_NEW_LWP, &thr_d))
    fprintf(stderr, "Can't create thr_d\n"), exit(1);
    printf("A: Created thread D:%d\n", thr_d);
    /* process
    for (i=0;i<1000000*(int)thr_self();i++);
    printf("A: Thread exiting...\n");
    thr_exit((void *)77);
    void * sub_b(void *arg)
    int i;
    printf("B: In thread B...\n");
    /* process
    for (i=0;i<1000000*(int)thr_self();i++);
    printf("B: Thread exiting...\n");
    thr_exit((void *)66);
    void * sub_c(void *arg)
    void *status;
    int i;
    thread_t main_thr, ret_thr;
    main_thr = (thread_t)arg;
    printf("C: In thread C...\n");
    if (thr_create(NULL, 0, sub_f, (void *)0, THR_BOUND|THR_DAEMON, NULL))
    fprintf(stderr, "Can't create thr_f\n"), exit(1);
    printf("C: Join main thread\n");
    if (thr_join(main_thr,(thread_t *)&ret_thr, &status))
    fprintf(stderr, "thr_join Error\n"), exit(1);
    printf("C: Main thread (%d) returned thread (%d) w/status %d\n", main_thr, ret_thr, (int) status);
    /* process
    for (i=0;i<1000000*(int)thr_self();i++);
    printf("C: Thread exiting...\n");
    thr_exit((void *)88);
    void * sub_d(void *arg)
    thread_t thr_b = (thread_t) arg;
    int i;
    thread_t thr_e, ret_thr;
    void *status;
    printf("D: In thread D...\n");
    if (thr_create(NULL, 0, sub_e, NULL, THR_NEW_LWP, &thr_e))
    fprintf(stderr,"Can't create thr_e\n"), exit(1);
    printf("D: Created thread E:%d\n", thr_e);
    printf("D: Continue B thread = %d\n", thr_b);
    thr_continue(thr_b);
    printf("D: Join E thread\n");
    if(thr_join(thr_e,(thread_t *)&ret_thr, &status))
    fprintf(stderr,"thr_join Error\n"), exit(1);
    printf("D: E thread (%d) returned thread (%d) w/status %d\n", thr_e,
    ret_thr, (int) status);
    /* process
    for (i=0;i<1000000*(int)thr_self();i++);
    printf("D: Thread exiting...\n");
    thr_exit((void *)55);
    void * sub_e(void *arg)
    int i;
    thread_t ret_thr;
    void *status;
    printf("E: In thread E...\n");
    printf("E: Join A thread\n");
    if(thr_join(thr_a,(thread_t *)&ret_thr, &status))
    fprintf(stderr,"thr_join Error\n"), exit(1);
    printf("E: A thread (%d) returned thread (%d) w/status %d\n", ret_thr, ret_thr, (int) status);
    printf("E: Join B thread\n");
    if(thr_join(thr_b,(thread_t *)&ret_thr, &status))
    fprintf(stderr,"thr_join Error\n"), exit(1);
    printf("E: B thread (%d) returned thread (%d) w/status %d\n", thr_b, ret_thr, (int) status);
    printf("E: Join C thread\n");
    if(thr_join(thr_c,(thread_t *)&ret_thr, &status))
    fprintf(stderr,"thr_join Error\n"), exit(1);
    printf("E: C thread (%d) returned thread (%d) w/status %d\n", thr_c, ret_thr, (int) status);
    for (i=0;i<1000000*(int)thr_self();i++);
    printf("E: Thread exiting...\n");
    thr_exit((void *)44);
    void sub_f(void arg)
    int i;
    printf("F: In thread F...\n");
    while (1) {
    for (i=0;i<10000000;i++);
    printf("F: Thread F is still running...\n");
    OUTPUT:
    # /emc/smithr15/solthread
    Main thread = 1
    rc = -1Can't create thr_b
    rc = -1#
    Any ideas as to what -1 indicates and how to solve this?
    Thanks for your response,
    dedham_ma_man

    ok, my bad. I wasn't linking in the -lthread library.
    Thanks anyway.

  • Reporting of plan data - which one?

    Hi,
    Now i am standing before reporting my planning data. Is it possible to transfer to OBI EE without any data, hierarchy loss?
    On the other hand, I would like to know which one of the three reporting tools (Interactive reporting, web analysis, financial reporting) shall i choose for reporting my planning data. Are there some advantages or disadvantages to each of them?
    For now i started to use Web-analysis...
    Thank you very much

    Hi,
    It is possible to use OBIEE to report though it would not be my first option at the moment, there are still issues that will resolved when it becomes more integrated with essbase in future releases.
    If you want to know about the other reporting tools have a look at :-
    Re: Different Reporting Tools...
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Report 2 returning data from previously ran report 1 - Plus/Viewer

    Hello,
    We have an issue running through discoverer viewer and plus.
    If you run the first report with a parameter for the year with this returns the correct data. However if you run report after the first with year 09-10, the 08-09 data is returned again from the previous report
    It doesn't matter which order you run them i.e. if you run the 09-10 first and then the 08-09 the 09-10 data is returned.
    The reports work fine when run in Discoverer Desktop.
    When 2nd report is run after first it returns the data that appears in the first. This Does not happen on Disco Desktop. The SQL from the reports also runs correctly in TOAD.
    Metalink notes suggest turning of the Webcache but this is not turned on in either apps tiers
    I have also recreated both reports and this has not made a difference either.
    Regards
    Rachael

    Hi,
    Even with webcache turned off Discoverer holds the results of the last run from plus/viewer in the application server and will return these results unless an explicit refresh is entered. Normally, if different parameters are entered this is recognised and the report is re-run. I don't know how you are running your report but for some reason it is not recognising the new parameters and returning the last result set. A refresh should return the correct results.
    Rod West

  • Interactive Report only returns data if user login in english

    Hi All.
    I'm working with CRM 7.0
    If i login in English, i can run the report "accounts with open activities" perfectly (and i can get some results with it). If the same user, with the same roles, login in Portuguese, and run the same report, system shows no results.
    Any hint about this issue?
    Thanks in advance
    Inê

    Hi Inês,
    in fact it is difficult to understand the reason for this without screenshots of both EN and PT logon.
    If the texts, which are shown in case of EN logon are all SAP standard texts and in other areas your Portuguese UI is pretty much complete, then I guess these texts are not translated and you should raise a customer message (adding the screen shots mentioned above). However this is of course only valid for SAP standard UI texts - and in addition there might be some specific applications where SAP does not provide translations to PT.
    Best regards,
    Nils Buerckel

  • Space which isn't there prints in a word

    Some time back I produced a brochure for a friend in AW Draw. Some more copies are needed and I have changed from inkjet to laser printer (both Epson: Stylus C70 to Acculaser C2600).
    When I print one word now has a rogue space in it (word = 'large' with a space after the l, other la combinations look OK). The space is not actually there. Everything else looks OK.
    I have tried rephrasing the sentence, trashing prefs and changing from justified to left align. The space stays.
    Fractional character widths change reflows so is not an option.
    Any ideas please?
    AW 6.1.2, OS 9.2.1, ATM DL 4.6
    Michael

    Yvan,
    Many thanks for response.
    I tried your suggestion without success. I also tried changing 'large' to 'big', rephrasing the line and using a different font. A gap always appeared somewhere in roughly (not precisely) the same place in that line.
    I've also noticed that justification is not perfect, the right margin of text throughout the document is slightly ragged (but not as ragged as left align).
    Your idea got me thinking, however. I opened up a very old friend - PublishIt! Easy - pasted the offending text into PIE then copied it back to AW. The gap has now gone (but justification is still imperfect).
    I never had this trouble with my mum's Imperial typewriter!
    Michael

  • SQL statement doesn't return data

    Hi,
    Please I am facing a problem where I took the sql statement from an oracle report and I'm applying it on TOAD 9.0 but it is not returning any data. The thing is that on the application the report returns data but as I checked on the TOAD it showed that some tables have no data.
    How is this possible??
    Do I need to apply some code before I apply my select statement??
    Hope you can help here,
    Thanks in Advance,
    Ashraf

    Hi Ashraf,
    As it should be if a Query in Report is returning data so should the same query return data if used either in Toad or SQL Plus.
    In your report do check if you have any parameters and do this parameters have any default values and are you using the same parameters.
    Also do check the source of the Report which the application is executing and the one from where you are using the Query is same.
    Best Regards
    Arif Khadas

  • Report Script returns no data and "java.io.FileNotFoundException" error

    When attempting to write to a new file (Eg: C:\TEST.txt), Report Script returns no data and "java.io.FileNotFoundException" error occurs.
    This error occurs only in Essbase 9.3.1.3 release, however it works fine in release 9.3.1.0.
    After running the report the script, it pops up the follwing message:
    "java.io.FileNotFoundException: ..\temp\eas17109.tmp (The system cannot find the file specified): C:\TEST.txt"
    When checked the TEST.txt, it was empty.

    Sorry folks, I just found out the reason. Its because there was no data in the combination what I was extracting.
    but is this the right error message for that? It should have atleast create a blank file right?

  • Reporting on data that is not there

    Hi,
    I have an infoprovider and a Query. I have created a variable to filter data from the query. Is there a way to report that some data is not there??
    If I enter value "123" in the CODE variable, and there is no record according to this, the system will say "no data found". Is there any way to get the system to say "True"/"False" wether this found some records or not?
    EJ.
    CODE/DATE
    123/200701
    124/200701
    125/200701
    If I enter "124" in the CODE variable, the system will say "True".
    If I enter "987" in the CODE variable, the system will say "False".
    Is this possible??
    thanks for the help.
    Mauricio.

    Dear Mauricio,
    The usual way to report on "non existing data" is to set up a MultiCube which combines your InfoCube and the InfoObject for which you miss records in the InfoCube.
    A query based on such a MultiCube will give you empty key figure values for all records for which InfoObject values do not correspond with an InfoCube records.
    As far as I know there is no way to adapt the variable screen logic, which would allow to see "True" or "False" there.
    Geetings,
    Stefan

  • Problems with driver 10.020 and returning data piped together for reports

    Hi,
    We have recently upgraded our UAT database to Oracle 10g and i have been trying to test reports that we have running against the database. I have come across a problem when piping ("||") together columns to return a single column e.g.
    SELECT filed1||','||field2||','||field3 FROM Dual
    It seems that if a certain number of columns is returned it will return the data with each character separated with a CHR(0). Does anyone know why this is happening as it doubles the size of reports as the is double the amount of characters!!
    The only way i have managed to sort of fix it is to return smaller concatinated blocks, is there a limit on piping fields or different datatypes together?
    Thanks
    PM

    Here is one of our report SQL statements. I have added a carriage return where i have added a comma to create a new column.
    select ' Date,Centre,Division,Time_Taken,',
    'Putaways,Case_Putaway,Replens,Case_Replens,Total Orders,R20_Pallets_Picked,R20_Case_Picked,',
    'R20_Total_Pallets,R30_Case_Picked,R30_Lines_Picked,R30_Pallets_Picked'
    from dual
    union
    select inv.dstamp||','||inv.centre||','||inv.colour||','||
    decode(length(to_char(floor(sum(elapsed_time)/60/60))),1,'0','')||floor(sum(elapsed_time)/60/60)||':'||
    decode(length(to_char(mod(floor(sum(elapsed_time)/60),60))),1,'0','')||mod(floor(sum(elapsed_time)/60),60)||':'||decode(length(to_char(mod(sum(elapsed_time),60))),1,'0','')||mod(sum(elapsed_time),60)||',',
    count(decode(inv.code,'Putaway',inv.tag_id))||','||
    round(nvl(sum(decode(inv.code,'Putaway',cases)),0))||','||
    count(decode(inv.code,'Replenish',inv.tag_id))||','||
    round(nvl(sum(decode(inv.code,'Replenish',cases)),0))||','||
    count(distinct decode(inv.code,'Pick',inv.reference_id))||','||
    count(decode(inv.code||substr(loc.work_zone,1,3),'PickR20',inv.tag_id))||',',
    round(nvl(sum(decode(inv.code||substr(loc.work_zone,1,3),'PickR20',cases)),0))||','||
    count(decode(substr(loc.work_zone,1,3),'R20',inv.tag_id))||','||
    round(nvl(sum(decode(inv.code||substr(loc.work_zone,1,3),'PickR30',cases)),0))||','||
    count(distinct decode(inv.code||substr(loc.work_zone,1,3),'PickR30',
    inv.reference_id||inv.line_id))||','||
    count(distinct decode(inv.code||substr(loc.work_zone,1,3),'PickR30',inv.pallet_id))
    from
    (select 'RETAIL' as centre, 'BABY' as colour
    from dual
    union select 'RETAIL' as centre, 'MEDICAL' as colour
    from dual
    union select 'HOMEWARD' as centre, 'BABY' as colour
    from dual
    union select 'HOMEWARD' as centre, 'MEDICAL' as colour
    from dual
    union select 'RETAIL' as centre, 'UNKNOWN' as colour
    from dual
    union select 'HOMEWARD' as centre, 'UNKNOWN' as colour
    from dual) cd,
    (select
    TO_CHAR(inv.dstamp, 'YYYY-MM-DD') AS dstamp,
    DECODE(OH.User_Def_Type_1, '20', 'HOMEWARD',
                   DECODE(OH.User_Def_Type_1, '22', 'HOMEWARD',
                   DECODE(OH.User_Def_Type_1, '23', 'HOMEWARD',
                   DECODE(OH.User_Def_Type_1, '24', 'HOMEWARD', 'RETAIL')))) AS Centre,
    NVL(s.colour, 'UNKNOWN') AS colour,
    inv.user_id, inv.elapsed_time, inv.code,
    inv.tag_id,
    decode(inv.code,'Replenish',inv.from_loc_id, 'Pick',inv.from_loc_id,
    'Putaway',inv.to_loc_id) as LOCATION_ID,
    decode(inv.update_qty,0,1,inv.update_qty)/pac.ratio_1_to_2 as cases,
    inv.reference_id, inv.line_id, inv.pallet_id
    from
    inventory_transaction inv, order_header oh, sku s, sku_config pac
    where
    inv.client_id = oh.client_id (+)
    and inv.reference_id = oh.order_id (+)
    and inv.site_id = oh.from_site_id (+)
    and inv.client_id = s.client_id
    and inv.sku_id = s.sku_id
    and inv.config_id = pac.config_id
    and inv.code in ('Replenish','Pick','Putaway')
    and inv.dstamp BETWEEN TO_TIMESTAMP(TO_CHAR(NEXT_DAY(SYSDATE,'MONDAY')-interval '14' day,'DD/MM/YYYY')||' 00:00:00','DD/MM/YYYY HH24:MI:SS.FF')
    AND TO_TIMESTAMP(TO_CHAR(NEXT_DAY(SYSDATE,'SUNDAY')-interval '7' day,'DD/MM/YYYY')||' 23:59:59','DD/MM/YYYY HH24:MI:SS.FF')
    and inv.client_id = 'NUTRICIA'
    and inv.site_id = 'WAR01') inv,
    location loc
    where cd.centre = inv.centre (+)
    and cd.colour = inv.colour (+)
    and inv.location_id = loc.location_id
    and loc.site_id = 'WAR01'
    and (loc.work_zone like 'R20%' or loc.work_zone like 'R30%')
    group by
    inv.dstamp, inv.centre, inv.colour

  • Disco Report doesn't return data for a responsibilty

    Hi Guys,
    We have a report, we have shared with XXX Tax Manager. When we login through XXX Tax Manager, it doesn`t return data. But when we do similer with XXX Payables Manager, report runs fine and return data?
    Can any one help me on this.
    Note: Both Responsibility have access to the Business Area.
    Thanks,
    Nick

    Please find the below query:
    SELECT /*+ NOREWRITE */
    o101613.expense_account_num AS e264170,
    o271954.description AS e271961, o271954.po_number AS e272013,
    o271954.project AS e272033, o271954.task AS e272035,
    o271954.expenditure_type AS e272036, o272183.amount AS e275461,
    (o272183.gl_date) AS e275566, (o272183.invoice_date) AS e275578,
    o272183.invoice_id AS e275580, o275448.invoice_id AS e275581,
    o272183.invoice_number AS e275584,
    o272183.self_assessed_flag AS e275674,
    o272183.ship_to_location_code AS e275681, o272183.state AS e275685,
    o272183.tax_amount AS e275695,
    o272183.tax_jurisdiction_code AS e275698,
    o272183.tax_rate AS e275700, o272183.vendor_name AS e275720,
    o272183.vendor_number AS e275723, (o278494.gl_date) AS e278500,
    o278494.liability_account AS e278501
    FROM apfg_ap_invoices o101612,
    apfg_ap_invoice_distributions o101613,
    apps.ap_invoice_lines_v o271954,
    (SELECT ap.invoice_id, aps.vendor_name, aps.segment1 vendor_number,
    ap.invoice_num invoice_number, ap.invoice_date, ap.gl_date,
    apl.amount amount, zxl.tax_amt tax_amount,
    zxr.percentage_rate tax_rate, zxl.tax_jurisdiction_code,
    apl.ship_to_location_code, zxl.self_assessed_flag,
    hzg.geography_element2_code state, apl.line_number
    FROM ap.ap_suppliers aps,
    ap.ap_invoices_all ap,
    zx.zx_lines zxl,
    apps.ap_invoice_lines_v apl,
    zx.zx_rates_b zxr,
    zx.zx_jurisdictions_tl zxj,
    zx.zx_jurisdictions_b zxb,
    ar.hz_geographies hzg
    WHERE aps.vendor_id = ap.vendor_id
    AND ap.invoice_id = zxl.trx_id
    AND zxl.trx_id = apl.invoice_id
    AND zxl.trx_line_number = apl.line_number
    AND zxl.entity_code = 'AP_INVOICES'
    AND zxl.event_class_code = 'STANDARD INVOICES'
    AND zxl.self_assessed_flag = 'Y'
    --AND zxr.tax_rate_code         = zxl.tax_rate_code
    AND zxr.tax_rate_id = zxl.tax_rate_id
    AND zxj.tax_jurisdiction_id = zxl.tax_jurisdiction_id
    AND zxb.tax_jurisdiction_id = zxj.tax_jurisdiction_id
    AND zxb.zone_geography_id = hzg.geography_id
    AND zxl.tax_amt <> 0
    AND apl.line_type_lookup_code IN
    ('ITEM', 'FREIGHT', 'MISCELLANEOUS')
    AND apl.line_source IN
    ('HEADER MATCH',
    'MANUAL LINE ENTRY',
    'IMPORTED',
    'CHRG ITEM MATCH'
    AND ap.cancelled_date IS NULL
    ORDER BY aps.vendor_name, ap.invoice_num) o272183,
    apps.ap_invoices_v o275448,
    (SELECT xte.source_id_int_1 invoice_id, gcc.code_combination_id,
    xte.transaction_number, xal.accounting_date gl_date,
    gcc.segment1
    || '.'
    || gcc.segment2
    || '.'
    || gcc.segment3
    || '.'
    || segment4
    || '.'
    || segment5
    || '.'
    || segment6
    || '.'
    || segment7 liability_account
    FROM xla.xla_transaction_entities xte,
    xla.xla_ae_headers xah,
    xla.xla_ae_lines xal,
    gl.gl_code_combinations gcc
    WHERE 1 = 1
    AND xte.entity_id = xah.entity_id
    AND xte.application_id = xah.application_id
    AND xah.ae_header_id = xal.ae_header_id
    AND xal.accounting_class_code = 'SELF_ASSESSED_TAX_LIAB'
    AND xal.code_combination_id = gcc.code_combination_id) o278494
    WHERE ( (o101612.invoice_id = o101613.invoice_id(+))
    AND ( o101613.invoice_id = o271954.invoice_id
    AND o101613.invoice_line_number = o271954.line_number
    AND ( o272183.invoice_id = o271954.invoice_id
    AND o272183.line_number = o271954.line_number
    AND (o272183.invoice_id = o275448.invoice_id)
    AND (o278494.invoice_id = o275448.invoice_id)
    AND (o101613.dist_line_type_code IN
    ('ITEM', 'FREIGHT', 'MISCELLANEOUS'')')
    AND (o101612.invoice_number = :"Invoice Number ")
    AND ((o272183.gl_date) <= :"Ending GL DATE")
    AND ((o272183.gl_date) >= :"Beginning GL DATE")
    ORDER BY o271954.project ASC, o272183.invoice_number ASC;
    It does not contain any security profiles, only contains view that might be not returning data.
    thanks

  • Answers report displaying 0s even though SQL returns data from sqlplus

    OBIEE 10.1.3.3.3
    I created a few measures in the RPD and when I run a report against them I get all zeros. I pulled the query from the session log and I ran it from SQL Plus and found that the query generated by BI Server was actually returning data (numbers other than zeros) from the SQL plus prompt.
    However for some reason those numbers are not being displayed in Answers.
    The report is a simple one with name and count as 2 columns. The count column is showing all zeros.
    When I put a filter on the report on the name column, i do get a record without the zero.
    Can someone let me know if I am missing something ?
    Edited by: qqq on Sep 9, 2009 9:50 AM

    I dont think so i understood the problem.
    Can you copy paste the query here so we would understand the problem and exactly whats going wrong?
    You are saying count column.count() of what are you taking??And whats the filter your applying??

  • Why isn't there a payment gateway which can process Creative Cloud payments instantly?

    Why isn't there a payment gateway which allows processing of Creative Cloud payments instantly?
    It seems odd that many thousands of other businesses worldwide are capable of having an instant payment gateway, why is Adobe behind the times?

    Hi Rajshree,
    Can you help me, I want to buy the Adobe CC for individual monthly for 1 year. Seems like purchasing with credit card always goes to United States billing address which not where my credit card from. I am Indonesian and currently living in Hong Kong. Do you have any solution for me? Can I buy online or should I find authorized reseller in Hong Kong?
    Thanks,
    Lynda

  • Please help.  getting desperate. i cannot set up 3g on my ipad 2. when i go to mobile data in the settings there is no option to view account. which is apprently what i need to click on, any help greatly apprectiated

    please help.  getting desperate. i cannot set up 3g on my ipad 2. when i go to mobile data in the settings there is no option to view account. which is apprently what i need to click on, any help greatly apprectiated

    I got mine (2 weeks ago) 64GB WiFi+3G (Verizon) from the apple store online
    I didnt have to do anything to it, turned it on, activated it, got it on my home network then I signed up for the 3G data service, it works where ever I happen to be. (if there is an unknown WiFi connection available it asks me if I want to join before it continues to connect to the 3G when I am surfing or getting e-mail)
    do you have an Apple Store close enough to travel to?
    I am only assuming here, but since you have a SIM you are not in the US correct?

Maybe you are looking for

  • Mail didn't migrate when I went from Snow Leopard to Mountain Lion

    Just got a new MacBook Pro with Retina.  It came with Lion on it, I upgraded it to Mountain Lion.  Then, I used Migration Assistant to bring over everything from my Time Machine.  My old MacBook Pro was running Snow Leopard.  The big glitch seems to

  • Macbook Pro (8,2 - early 2011) freezes/beeps. Safe mode OK.

    My MBP (running 10.6.8) just his 3 yrs this month (so of course just out of applecare) and a couple days ago the laptop froze while I was using it and would beep 3 times continually. I was able to do a hard reboot and get back to my desktop but after

  • Email display name for mobile me

    is there a way to change my display name for my me.com email account to a gmail address? i have forwarded the gmail, and do not want the confusion of a new email address for recipients. under mail preferences, "send mail as", you can enter a name, bu

  • Authorization Object for Material Type

    Hi All, Is it possible to restrict the user from creating the material master based on Material Type. If yes then what is the authorization object for the same. Regards Mahendra

  • Error when configuring Siebel Server in Windows server 2003

    Hi I am getting below error when configuring Siebel server in Windows server 2003 VM. All the ODBC connections and SADMIN user id & password and gateway host name and port everything correct. Able to ping and telnet to gateway port 2320. Please help