Record not in plsql but appears in report

Hi,
I am trying to check why certain records are appearing in a Discoverer aging report but not in the Trial Balances. The Discoverer report is based on an sql custom folder with a join to po_vendors with the vendor_id (1 to 1, no outer joins...) .
It appears to be that the missing invoices in the Trial Balances are the ones that have status "needs revalidation" or "never validated".
In order to check these records, I figured that I would do the usual, i.e. run the sql in plsql with an extra condition "where invoice_num = " and "vendor_id = ", and then begin playing around with the where statement.
The surprise is that I cannot get those records when I run the sql in plsql. I tried retrieving 6 records: 4 records that do not appear in the Trial Balances and 2 that are in the Trial Balances. The two that appear in the Trial Balances are retrieved, but the other four are not.
How can it be that I am getting records in a report which are not retrieved from the main sql? I tried removing the po_vendor folder from the report (I did not delete the join), but it made no difference. I cannot theoretically understand how this is happening.
Can anyone help?
Thank you.
Leah

Thank you to anyone who checked this out. I was beginning to think that there was a problem with a function, but everything seems to be working now. I redefined the sql.
Thanks again.
Leah

Similar Messages

  • How to find photos in iPhoto which may not be there - but appear.

    An acquaintance of mine has by accident deleted a bunch of photos from iPhoto, assuming he had already moved them into another folder. Somethings strange happened, as the still appear to accesible, but then again not really. I have promised to help him, and he explains his actions like the following:
    1. I transferred my photos from a Fujifilm Finepix camera to a New Event (A) in iPhoto.
    2. I then deleted the photos on the camera.
    3. Then I made other new folders/events (B) with other names.
    4. I moved the photos from folder A to these new folders B without any problems (I can still see these photos as small bitmaps, please see later)
    5. Then I created another event, but by accident I gave it the same name as the folder A in which the photos originally were.
    6. I then deleted this original folder A from which the photos had been removed, as I assumed it was empty.
    7. Now - this process has caused that the photos have disappeared everywhere, and I cannot see the photos in folder B. However, empty frames of the photos appear there.
    8. Also, when I press the Edit button at the bottom of iPhoto, all the photos appear at the top as small bitmaps, but they cannot be opened.
    9. The photos cannot be seen in Finder, in Trash inside iPhoto or in the normal OS X Trash bin.
    Now, the question is: are the photos to be found for recovery somewhere in iPhoto (or elsewhere) which we as amateurs do not know about - since they appear as thumbnails?
    I hope somebody can help.
    Thank you kindly.

    first off we only have words to communicate with so it is important to use them correctly adn consistantly
    You seem to be using folders and events interchangelably
    In iPhoto folders are organizational elments that do not hold photos - they hold albums or other folders  --  are you talking about events in every case or are you talking about finder folders (which do hold files that may contain photos) accessed via the finder and events accessed via iPhoto?
    Thumbnails are totalklyt seperate from the main photo - iPhoto always has either two or three versions of a photo used for different purposes - a thumbnail and the oriiginal plus possibly a preview of the photo - these are each in seperat files (and in seperate folders within the iPhoto database) and any of the three can be missing due to datgabase errors or user actions - without exact and accurate information we can only make guesses about yoru situation
    How were the photos moved from event (I assume) A to B
    How did you delete event A
    What version of iPhoto and of the OS?
    LN

  • 'Not assigned' Value is appearing in Report?

    Hi Folks,
    Let me go through the whole scenerio so that it would be easy to answer you people.
    There was one IO by 0CAT_GROUP for this there was already data was available.Due to some changes in the requerement we have created one navigational atteribute to the above mentioned IO ie ZCAT_TYPE.To update the cat group based on the cat type we have written a routine in the trafer rule of the 0cat_group saying if another fields 0cat_cat is '1','2', and '3' then it is 'preventabl'
    and if it is '4','5','6' then it is 'Non preventable'.If it is other than above two then it is 'Others'.
    1.Our routine is working fine.As per the code but we are getting in the report another field called 'Not assigned'.
    2.As per the our code we should not get  'Not assigned'?
    3.As per my understanding as already 0cat-group is having values which not fallling any of the above three catagories(Preventable,Non preventable and Others) that is being called in the report as 'Not assigned'.
    Please clarify my doubt?
    Points wil be definitley assigned.
    Thanks,
    Vasu

    Hi,
    Values coming from Master Data
    1)Preventable
    2)Non Preventable
    3)Othrs
    4)......(which is blank)
    In 4th case you write simple routine, if BLAN then fill "NO VALUE" else pass values as it is. So you will get some value, anyway this is Master data in next time the data will come for 4th one then it will load to that field.
    Thanks
    Reddy

  • Records Not Commiting - PLSQL Block

    Hi,
    Good Day to all..
    DECLARE
      v_annotation_id_1   VARCHAR2(200):='101';
      v_annotation_type_1 VARCHAR2(200):='OMG';
      v_j                 NUMBER;
      v_user_id_string    VARCHAR2(200);
      v_user_id           NUMBER;
    BEGIN
      FOR v_j IN 1..2
      LOOP
        SELECT MAX(TRUNC(NVL(user_id,0)))
        INTO v_user_id_string
        FROM TABLE_XXX;
        v_user_id:= to_number(trim(v_user_id_string))+1;
        dbms_output.put_line('v_user_id_string-->'||v_user_id_string);
        dbms_output.put_line('v_user_id-->'||v_user_id);
        INSERT
        INTO TABLE_XXX
            TTT_annotation_id,
            user_id,
            digital_package_id,
            annotation_id,
            time_code,
            annotation_type,
            created_date,
            created_by
          VALUES
            seq_TTT_annotation_id.nextval,
            v_user_id,
            1004,
            v_annotation_id_1,
            100,
            v_annotation_type_1,
            sysdate,
            'TTTService'
           dbms_output.put_line('v_user_id 1 -->'||v_user_id);
        INSERT
        INTO TABLE_XXX
            TTT_annotation_id,
            user_id,
            digital_package_id,
            annotation_id,
            time_code,
            annotation_type,
            created_date,
            created_by
          VALUES
            seq_TTT_annotation_id.nextval,
            v_user_id,
            1004,
            v_annotation_id_1,
            100,
            v_annotation_type_1,
            sysdate,
            'TTTService'
          dbms_output.put_line('v_user_id 2 -->'||v_user_id);
         COMMIT;
         DBMS_OUTPUT.PUT_LINE('SQL%ROWCOUNT -->'||SQL%ROWCOUNT);
      END LOOP;
      COMMIT;
    END;
    Sample Output
    v_user_id_string-->100002828932367
    v_user_id-->100002828932368
    v_user_id 1 -->100002828932368
    v_user_id 2 -->100002828932368
    SQL%ROWCOUNT -->0
    v_user_id_string-->100002828932368
    v_user_id-->100002828932369
    v_user_id 1 -->100002828932369
    v_user_id 2 -->100002828932369
    SQL%ROWCOUNT -->0
    TABLE_XXX --> Primary Key - TTT_annotation_id NOT NULL Datatype: NUMBER
    Data is not getting committed; when i checked the SQL%ROWCOUNT it shows "0".
    I have no idea why it is not commiting the data.
    All the sessions are either COMMITTED or ROLLBACK.
    Thanks for reply....

    You are over committing.
    SQL> create table t (n number);
    Table created.
    SQL> set serverout on
    SQL> begin
      2    insert into t values (1);
      3    dbms_output.put_line ('Rows inserted: '|| sql%rowcount);
      4  end;
      5  /
    Rows inserted: 1
    PL/SQL procedure successfully completed.
    SQL> edi
    Wrote file afiedt.buf
      1  begin
      2    insert into t values (1);
      3    commit;
      4    dbms_output.put_line ('Rows inserted: '|| sql%rowcount);
      5* end;
    SQL> /
    Rows inserted: 0
    PL/SQL procedure successfully completed.Commit ends the current transaction and will result in subsequent sql%rowcount being zero.

  • GL is not appearing in Report S_ALR_87013326

    Hello Gous,
    One account is not appearing GL is not appearing in Report S_ALR_87013326 for example:
    Account group = Other Expenses
    Description = Dividend expense
    it has accounting document as well and postings.
    Thanks in advance
    Ahmed

    Hi Sridhar,
    Thanks for the input.
    But still Budget is not appearing in the report, even after running CJBN & CJEN.
    I had a look into CJ30 but the overall Budget is available. Is there any change required in the report.
    Regards,
    Selva

  • Records Not Showing Up On Report

    I'm using Crystal XI
    I can take the query from "Show SQL Query..." and paste it into a query screen in SQL Server 2008 management studio and retrieve the correct records.  However, the report itself does not contain all the records the should have been returned.
    To the best that I can figure, the records where a transaction date (date/time field) is null is not showing up on the report.  I only display the field, do not do any calculations based on the field. 
    It is part of the record selection formula, where I test for the field to be between start/end parameters or is null (which produces the correct SQL query as I stated above)
    So why are the records not showing up on the report, and more importantly, how do I get them to show up?
    TIA

    It already was set to "Exception for Nulls"
    On the other hand, just on a whim, I tried reversing the order of the query from what it was:
    {MyQuery.Company = {?Company}
        And
        {MyQuery.Transaction_Date} In {?Start/End Date}
        Or
        IsNull({MyQuery.Transaction_Date})
    To:
    {MyQuery.Company = {?Company}
        And
        IsNull({MyQuery.Transaction_Date})
        Or
        {MyQuery.Transaction_Date} In {?Start/End Date}
    And that seemed to work.  I'm not sure why it will work in the Mangement Studio, but not in Crystal Reports, but at least it works.
    Thanks for the tug in the right direction.

  • Records not populating in BEx report

    I have a business content cube which was installed once in august. I run a query from that cube, and got records upto the august. I have lots of new records after august too, but its not coming into my query. I thought I have to update my cube. I don't know how to update ..I went manually to the infopackage and reload the data but the request got failed. So, I deleted the cube and it's content and reinstalled it again. I can see in the infopackage I have more records uploaded but when I ran a query I still see upto the same old date. so, can anyone please tell me how to update the cube? and how to bring my data after the august date?
    Thank you.
    sajita

    Hi Sajita,
    you should check the status of your requests in the Admin workbench (RSA1), right mouse click the InfoCube and check the status of the requests (there is an indicator whether a request is available for reporting), reasons may be missing aggregate roll up or missing ok status (the traffic light, you can click on it and set it manually). If after deleting everything you still see the old data, then you may even be on the wrong INfoCube with your query. Check the technical names carefully.
    regards, Klaus

  • Partner functions for a specific customer not seen in XD03 but appears in XD02

    Hello SAP Gurus,
    I have a situation where a partner functions for a specific customer not seen in XD03 but appears in XD02, In XD03 only one partner function (Ship to) appears but in XD02 (Sold to, Ship to, Bill to and payer appears), from the customer master I can see that account group for this customer has been changes to Sold to (Z001) from Ship to (Z002).
    I checked in settings for OB20 transaction for display customer centrally, it is in Display mode as required and not suprresed would like your inputs as to why this is happening and what can be done to fix this.
    Thanks and Regards
    Mohammed Roshan

    Hi ROshan,
      Open customer master in XD02  sales view and save it then check in XD03 it should display the partner functions.
    As you said the account group has been changed I think the records needs to be saved again.

  • I bought a team license for two computers, the purchase was recorded on the credit card and the amount recorded in the making, but was unable to validate the association staff . I received an email stating that Adobe could not release the payment and that

    I bought a team license for two computers, the purchase was recorded on the credit card and the amount recorded in the making, but was unable to validate the association staff .
    I received an email stating that Adobe could not release the payment and that I should validate the method of payment , tried to insert another card number but the system does not accept the security VAT reporting error message. How do I validate my license with association staff and confirm the payment card?

    Hi Daniel,
    For any sort of payment related matter, kindly contact our support team via:  http://helpx.adobe.com/in/contact.html?step=CCSN_adobe-id-signing-in_stillNeedHelp
    If you are unable to use chat option kindly try below mentioned steps.
    Try different browser.
    Delete cookies and cache
    If you are still not able to chat, Kindly reply with the below mentioned information.
    OS version:
    Browser Version:
    You can also try: http://helpx.adobe.com/x-productkb/global/phone-support-orders.html 
    Thanks,
    Atul Saini

  • Trying to burn a cd but getting a message disc recording not found.

    I am trying to burn a cd from a playlist, but I keep getting a message that says 'Disc Recording not found'. Also when I start itunes an error message appears that says "The registry settings used by the itunes drivers for importing cds and dvds are missing. This can happen as a result of installing other CD burning software. Please reinstall iTunes."
    I have tried uninstalling and reinstalling itunes, and also repairing and nothing has worked. I have not installed any cd burning software. How can I fix this problem?? 

    Could you post your diagnostics for us please?
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than DVD/CD tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here.

  • Report does not show data , but data exists in the cube.

    Hi All,
    I have a situation where I could not show the data in the report. When I load data from an extractor 0CO_OM_WBS_1 into a Cube directly I am able to show the data in my report. When I load the same extractor to a DSO and from the DSO when I load it into the Cube, the data does not show up in the query. To check the data I use the same restriction and could see the data reside in the cube (LISTCUBE). I compressed the requests, still it is not showing up in the query. No aggregates create on the cube.
    It shows the data if I load directly from the extractor, but not when I load data thru DSO.
    Any ideas.
    Alex(Arthur Samson)

    Hi Alex,
    I am facing same problem, i have data in cube but in report i cant see....
    i have created a generic DS, i loaded the data to DSO  then CUBE.
    data is loaded succesfully and i can see data in CUBE ( Manage ), when i am running the repory i am not getting data.
    i think you solve this issue... plz help me to resolve this issue.
    Regards,
    SHAIK.

  • My MacBook Pro is running VERY slowly. After reading other questions and responses, I ran an EtreCheck, but do not know how to post the report here. Any help would be greatly appreciated.

    My MacBook Pro is running VERY slowly. After reading other questions and responses, I ran an EtreCheck, but do not know how to post the report here. Any help would be greatly appreciated.

    My MacBook Pro is running VERY slowly. After reading other questions and responses, I ran an EtreCheck, but do not know how to post the report here. Any help would be greatly appreciated.

  • In iphoto my photos do no appear just a blank dated square. Somehow I messed up when trying to send a photo via email.I cannot not see any but 4 photos.

    Help!   In iphoto my photos do not appear just a blank dated square. Somehow I messed up when trying to send a photo via email.I cannot not see any but 4 photos.I tried all of the solutions that Apple suggested. Somehow I think that i am trying to send ALL my photos in an email.How do i unhide all of my photos?

    Did you launch iPhoto with the Option(Alt) and Commnad keys held down like Terence suggested?  If you did it properly you will get this window:
    The second option is the one you want to run.
    OT

  • My iphone 4 will not turn on but when connected to the pc in itunes it says my device is in recovery mode and when i do SHIFT restore and select my ipsw it extracts then this 3914 error message appears someone help!!!

    my iphone 4 will not turn on but when connected to the pc in itunes it says my device is in recovery mode and when i do SHIFT restore and select my ipsw it extracts then this 3914 error message appears. i normal restore then it this error message appears 1601. and my iphone is in RECOVERY mode. and holding the power button and the home button doesnt do anything my latops just makes a ding sound after 6seconds. My iphone screen is just blank and will not come on and i really need help

    Has the iPod been wetted?
    Try DFU mode and then restore
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    Try on another computer.
    Also see:
    https://discussions.apple.com/message/12690674#12690674
    https://discussions.apple.com/message/13032101#13032101
    Last, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Acrobat 9.5 - use Touchup text Tool to edit PDF. Updates do not display. But, if I "save as" Word doc, the edits appear in Word. This feature worked in earlier versions of 9.x patches.

    Acrobat 9.5 - use Touchup text Tool to edit PDF. Updates do not display. But, if I "save as" Word doc, the edits appear in Word. This feature worked in earlier versions of 9.x patches.

    I have a suspicion you're working with a scanned document that has had OCR run to recognize the text. The recognized text may be stored on an invisible layer above the image of the text, and that is what you're toucing up. It's invisible, so you don't see it, but retains the changes, so exporting produces the new edits.
    When you run OCR to recognize scanned text,, try using the ClearScan option, instead of Searchable Text. See this help page on Acrobat (this is for version X, but still applies):
    Adobe Acrobat X Pro * Recognize Text - General Settings dialog box
    mh++

Maybe you are looking for

  • HT4108 Unable to read a movie from my iPad to an external display

    Hi everyone, I fear the worst here. I downloaded a TV show from iTunes and watched it fine on my external display (a full blown HD tv). Then I downloaded an HD movie from the iTunes store but my iPad2 says it's unable to play protected content. What

  • After SALV Refresh, rows are still selected in display

    I have an SALV output (simple list) that updates  a database table based upon user action.  During the user_command processing, I modify the internal table for the SALV, removing the rows that have been updated by the user, and clearing my index row

  • Filename from payload - FTP receiver adapter

    Hello everyone! I have a scenario wherein I need to get the value from a field coming from an IDOC and then give that value as the "filename" of the file that is saved in the FTP folder. IDOC > XI > FILE For example, if /ORDERS05/IDOC/E1EDK02/BELNR =

  • To project onto a large screen

    Hi, I would like to be able to project my photo slideshow on a large screen in an art gallery. What is the best way to save my file to do this. My photos are large at around 6000x4000, however they are all horizontal. The show itself is only around 8

  • F110-Reports

    Dear Experts, Is there any standard reports are available for vendor bulk payment (F110) other than "S_P99_41000099 - Payment List" in order to download and send payment details to Banker? Regards Babu