Report on most recent posting date

Hi experts,
My report needs to show the fields profit center and its posting date.posting date should have a selection variable for the user to enter a key date.The report should show only the last posting date for every profit center before the key date.
my doubt is that the data in the infoprovider should be compared to get the last posting date. is it possible to read the data and get the recent posting date in the customer exit for the variable on posting date.
Please suggest the possible ways of doing this.

Hi Krishna,
The recent posting date for the profit centre can not be stored as a transaction data in the cube and it can not be derived in the customer exit.
You have to add a date field as the master data attribute of profit centre and populate that from the transaction cube data to get last posting date for each profit centre.
You can then show is as the nav attaribute of profit centre in the report.
Thanks,
Krishnan

Similar Messages

  • Abap Query on most Latest Posting Date in G/L Account

    Dear All
    This is the new request that has come from the client. What they want to see is the G/L account and the most recent Posting Date. For eg Lets say that 220000 has 3 line items
    1000 in march 06
    2000 in april 06
    3000 in may 06
    End user wants to see Balance as 6000 and the most recent Posting date as may 06. If i Pull Accounting Doc # and Posting Date it will give me all the details and date which i dont really want. How do i do it ?
    Please help me
    Thanks
    Sameer

    Hi,
    what we can do is that get all the line items for a G/L account in an internal table. Sort it descending by date. Pick the first row's date and then simply sum up the quantities.
    Hope this helps.
    Regards,
    Himanshu.

  • ABAP Query on Recent Posting Date in G/L Account

    Dear All
    This is the new request that has come from the client. What they want to see is the G/L account and the most recent Posting Date. For eg Lets say that 220000 has 3 line items
    1000 in march 06
    2000 in april 06
    3000 in may 06
    End user wants to see Balance as 6000 and the most recent Posting date as may 06. If i Pull Accounting Doc # and Posting Date it will give me all the details and date which i dont really want. How do i do it ?
    Please help me
    Thanks
    Sameer

    Hi,
    try table GLT0 (for Rel. 4.6C)
    A.

  • Most recently sold date

    Hi Friends,
    I have a requirement where my client wants to have a report that displays "most recently sold date ".
    The report should have " sales org", " material num" and " most recently sold date"
    upon execution, he should be able to find a recent date sold for a requested material.
    Please let me know, do any standard reports have this " most recent sold date"? if not how and from where get into report.
    Thanks
    Pavan

    Hi Pavan,
    Create an ODS which is having info objects like
    Sales org (Key field )
    Material(Key field )
    Invioce Date(Key field )
    Invoice Amount (KF) (Data field )
    Invoice amount should be an exception aggregate with excpetion on Last value and ref. characteristics should be invoice date . This way if there is material sold on 10 diff. invoice date , system will have only one record of last invoice date.
    Create update rule from 0SD* cube to custom made ods . And the required report could be achieved through this ODS.
    Hope that helps.
    Regards
    Mr Kapadia
    Assigning points is the way to say thanks in SDN.

  • For unknown reasons iTunes will no longer open.  I have an HP laptop running windows 7 with Kaspersky protection.  It worked fine before but now won't open.  I tried downloading the most recent up-date and it will still not open.  Any suggestions?

    For unknown reasons iTunes will no longer open.  I have an HP laptop running windows 7 with Kaspersky protection.  It worked fine before but now won't open.  I tried downloading the most recent up-date and it will still not open.  Any suggestions?

    thrillhousecody
    Thanks for the reply with additional information.
    Recent history for Premiere Elements points to the program having problems when more than 1 video card/graphics card is
    being used by the computer on which Premiere Elements is running. This observation may seem contra indicated by the fact
    that you say that the program did work well about 2 years ago in the same setup. But other factors may have set in with regard
    to drivers, drivers versions, and driver conflicts. But this factor, does need to be ruled in or out.
    Can you disable one or the other card to determine the impact of this on your problem?
    But, of prime concern with regard to video card/graphics card is the use of a NVIDIA GeForce card with Premiere Elements 10.
    Even if your NVIDIA GeForce were the only card, Premiere Elements 10 will not work properly unless the NVIDIA GeForce driver
    version is rolled back to about May 2013. This may be one of the major factors here.
    a. Device Manager/Display Adapters and find out Driver Version and Driver Date
    b. Read the background information for the Premiere Elements 10/NVIDIA GeForce issue
    ATR Premiere Elements Troubleshooting: PE10: NVIDIA Video Card Driver Roll Back
    Also see the Announcement at the top of this forum regarding the matter - also with full details of the situation and how to fix with the
    driver version roll back.
    Please review and consider and then we can decide what next.
    Thanks.
    ATR
    Add On...This NVIDIA GeForce situation is specific for Premiere Elements 10. You should not expect to see the problem for
    later versions of Premiere Elements.

  • Select most recent post

    Hello everyone,
    I have 2 tables:
    - FORUM_MESSAGE
    ID | ID_FORUM | ID_USER | TITLE | DATE
    1 1 1 post 1 10/11/2005
    2 2 2 post 2 09/10/2005
    3 1 1 post 1 08/06/2005
    - FORUM_USER
    ID | ID_TYPE | NAME
    1 1 admin
    2 2 user
    What i need to get is the most recent TITLE of each forum posted by an admin.
    This is what i have done, but it is not working:
    SELECT FORUM_MESSAGE.TITLE
    FROM FORUM_MESSAGE, FORUM_USER
    WHERE FORUM_MESSAGE.DATE = (SELECT MAX(FORUM_MESSAGE.DATE)
                   FROM FORUM_MESSAGE GROUP BY FORUM_MESSAGE.ID_FORUM)
    AND FORUM_MESSAGE.ID_USER = FORUM_USER.ID
    AND FORUM_USER.ID_TYPE = 1
    Could someone help me? i am lost...
    Thanks in advance

    but still does not compile If it does not compile there must be a compilation error. Please use cut'n'patse to snip your code and the results from SQL*Plus. Like this
    SQL> CREATE TABLE forum_user (id number, type number, name varchar2(10))
      2  /
    Table created.
    SQL>
    SQL> INSERT INTO forum_user VALUES (1, 1, 'admin')
      2  /
    1 row created.
    SQL> INSERT INTO forum_user VALUES (2, 2, 'APC')
      2  /
    1 row created.
    SQL>
    SQL> CREATE TABLE forum_message (id number, forum_id number, user_id number , title varchar2(30), pd
    ate date)
      2  /
    Table created.
    SQL>
    SQL> INSERT INTO forum_message VALUES (1, 1, 1, 'post #1' ,to_date('10/11/2005', 'DD_MM-YYYY'))
      2  /
    1 row created.
    SQL> INSERT INTO forum_message VALUES (2, 2, 2, 'post #2', to_date('09/10/2005', 'DD_MM-YYYY'))
      2  /
    1 row created.
    SQL> INSERT INTO forum_message VALUES (3, 2, 1, 'post #3', to_date('08/06/2005' ,'DD_MM-YYYY'))
      2  /
    1 row created.
    SQL>
    SQL> SELECT fm.title
      2  FROM forum_message fm, forum_user fu
      3  WHERE fm.pdate = (SELECT MAX(sq.pdate)
      4                                    FROM forum_message sq
      5                                    WHERE sq.forum_id = fm.forum_id)
      6  AND fm.user_id = fu.id
      7  AND fu.type = 1
      8  /
    TITLE
    post #1
    SQL> Cheers, APC

  • Most Recent Document data of the query

    Hi all,
    We have document data attached to a infoprovider,So in the query level, it should display the most recent updated document.But it is showing the previous document data.
    can anyone tell me if any setting is avaialble for this or how to achieve this.
    Please help.
    Thanks in advance!

    Hi rajesh,
    I dint try this solution. but im just guessing. so forgive me if it doesn't work.
    in your report did you try adding the time column and in the forumla give max(time by customer_site)
    thanks,
    Karthick

  • How to see most recent posts per forum

    Hi, all;
    It seems to me that I'm not "getting" something about the organization of the forums. What I want to do is see the posts in each forum that I am interested in, most recent first. What I actually see when I go to each forum is "trending" discussions. When I go to Browse>Discussions, I can see that some of the most recent discussions aren't getting into the "Trending" category, but Browse>Discussions shows a jumbled mess of all forums.
    I'd like to help these people, but I fear their questions are falling through the cracks, since they're not "trendy" enough for me to be able to see them.  How can I see "recent" discussions instead of "trending" ones.
    Regards;
    Amy

    Hi Amy, you might not have gotten a lot of responses posting in the forum dedicated to community help. Next time, for forum-related questions, rather use this page: http://forums.adobe.com/community/general/forum_comments?view=discussions

  • Report to get correct posting date of material document?

    I have material number (matnr) and plant (werks). Which report do I use to get posting date of material document (mkpf-budat) ? Thanks!

    Hi,
    Use MB51 or MB5B as per your convenience.U will get the Matl Doc,Mov Type & Posting Date.
    Award points if helpful
    Thanks & Regards
    Saeed Arif

  • Expense reports with respect to posting date

    Hi Folks,
    Kindly let us know if any statndard reports are available to extract trip details with respect to the trip posting date (prrw).
    Thanks,
    Nandagopal C

    Hi Folks,
    The posting date is maintained in the table PTRV_Doc_header. Using the table we have created a  query to fetch the posted trips according to  posting date.
    Thanks,
    Nandagopal C

  • Aging report on top of Posting Date

    Dear All,
    We have one standard report Days Overdue Analysis (0FIAR_C03_Q005). The values for ranges (0-30,31-60 and all ) are getting calculating based on Net Due date.
    But I want to calculate that based on posting date.
    Can anyone plz tell how we can do this?
    I really appreciate your input on this.
    Regards,
    Rishit

    Hi Rishit:
    I did a similar custom report for Dispute Aging at my client site using Dispute creation date for aging calculations. I also had to change the buckets to 1 - 10, 11 - 30, 31 -90 instead of the standard 1 - 30, 31 - 60, 61 - 90 etc.
    All i did was copy the standard query, change the offset values to meet my user requirements and then change the characteristic for the due date variable to use document creation date instead of net due date. That is where ever i saw net due date characteristic i simply replaced it with document created date characteristic and used the same variable that was used on net due date in the standard query. I dont recall having to create duplicate variables because if i remember right, the variables on date characteristics are usually usable across different date characteristics.You might be able to do the same with posting date instead of net due date.
    Hope this helps.
    Let me know if you need more details.
    MP.

  • A/r Invoice report query based on posting date selection criteria

    Hi experts,
    I am trying to write a query to get the A/r invoice report including Docnum, Docdate, cardname, project, linetotal, taxcode, taxtotal.
    and i tried the below query
    SELECT T0.[DocNum], T0.[DocDate], T0.[CardCode], T0.[CardName],T1.[LineTotal] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry WHERE T0.[DocDate] >=[%0] AND  T0.[DocDate] <=[%1]
    In this query ,
    1) i am unable to sum up the linetotal( total before tax) 
    2) also unable to fetch the sum of taxamount.
    3) its more important , the above query will  me docnum , when i try to open that doc, it opens the 2007 docments. whereas the other details are correct like docdate, amount and all.
    example:   from date: 1/04/2011    to date: 28/07/2011
    Docnum    Docdate  cardname   linetotal.... etc
        2              1/04/11   XYZ              5000
    when i click the 2 (docnum)  it opens me the 04/04/2007  documents.
    how to limit the doc within the periods given?
    thanks in advance
    Dwarak

    Hi Rahul/Gordon,
    thanks for your query's .
    additionally,   i want this query without the A/r invoices whichever having credit memo as target doc. 
    and
    i have selection criteria as  T0.[U_Sec_Category] = '[%2]'  and this has 3 values like  1)CIM 2)BIN 3)DMP
    among these  CIM should be seen only only user1  and BIN & DMP only by user2.
    can u plz get me this
    thanks,
    Dwarak

  • How do I get these threads to open at the most recent post?

    This is most annoying: every time I get an email notifying me that there's a new post in a thread I'm following, when I click on the link to go to that thread it sends me to the TOP of the thread and not to the post I was clicking about.
    What am I doing wrong and how do I correct this?

    Well,  I tried it with your post, Klaus, and it seemed to work correctly. Maybe it's just me. When I see an invitation in the email to click on a link to REPLY to a message, I don't click on it, because I don't want to reply to that message. I just want to read it. I might THEN want to reply to it  but I also might not. Maybe I'm just stupid that way.
    In future, I'll pretend to myself that I actually want to REPLY to every post for which I receive a notification.
    But each time I do that, I'll think about the cutlery drawer in the kitchen at Cupertino, and I'll wonder if all the knives in there are perfectly sharp.
    Thanks, folks.

  • Most recent Maps data update wastes disk space

    I noticed that used disk space on my N9 increased by 2GB and found that I now had these folders under cities: diskcache, diskcache_, MapLoader, and MapLoader_.  I recently updated my maps and evidently the old diskcache and MapLoader folders were renamed with underscores and new ones were created, so I now have 2GB worth of the old Maps data and 2GB worth of the newest Maps data.  This didn't happen after previous updates.  I assume it should be safe to delete the diskcache_ and MapLoader_ folders.  Has anyone else noticed this?

    As far as I know, there is even a section
    HERE! Location-based services from Nokia: Maps, Navigation and GPS
    There's not much effort needed to find tones of threads for WP and almost none for Symbian.
    There are even official video stickers of HERE Maps working on Lumia phones.
    So I presume that yes, everybody is discussing HERE services round here. Why not do that for Symbian?
    Besides, Nokia has made a commitment to provide lifetime voice-guided nav for Symbian devices. Without updates, the navigation is useless. If Lumia based phones are getting updates, I see no reason for us not getting them. I don't care who owns HERE (which is still Nokia, BTW). I purchased a Nokia phone.
    I should definitely claim for it HERE.

  • Discussions most recently posted in dont move to the top?

    Hi,
    Again here to ask if anyone else is seeing this or is it just me?
    The issue basicly seems to be that someone has answered to a thread they started -> I answered -> they answered. Yet the discussion doesnt come to top the first page. This thread in questions is still located at the third page.
    See anything with the following picture?
    The post I am referring to is the third from the bottom. All the previous discussions havent had any posts in 6 days. Yet this one has one reply from 16min ago and still lurks at the 3rd page of the Firewall Discussion section.
    Also, I cant see any automatic notification email from the CSC in my work mail at the moment regarding this post.
    - Jouni

    I do not understand what you mean about two libraries. Can you post a screen shot?
    Maybe this will help with your problem
    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    iTunes 11 for Windows: Syncing overview
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad

Maybe you are looking for

  • Hyperlink in word on special pdf-doc, and special page

    K:\*\eBooks\Civil Enginneering\Civil Engineering Handbook, Second Edition, The.pdf#page=25 Does anybody know how to define clearly special page for scientific essays on special ebooks and pages? Don't want to split pdf's for special pages.... Thankfu

  • New Ipod Nano Wrong adres

    Hello. I'm a boy from the Netherland and I've a problem I did request a new Ipod from APPLE Ipod NANO 1 Gen. I received a box and something to send it with UPS. Then i have a problem. THe name of the adres is an ANOTHER person and not my Adres. What

  • My daughter can use facebook using an email address but same address will not open imessage

    my daughter can use facebook using an email address but same address, any ideas ta.

  • Matching New records - Without Record ID

    Hi, Can you help me with this? I am trying to get a list of matching/duplicate records for a new record which is not added to MDM yet. (ie., no Record ID for the new record) The RetrieveMatchedRecordsCommand cmd is expecting the source record id. The

  • Upgrade Offer - Bait and Switch

    I called technical support twice today regarding an account unlock and password reset.  Both CSR's stated that I am 'eligable' for an upgrade.  However, when I log into the website, it states I'm eligable for an upgrade at full cost or the discounted