Where to find Standard Audit Trail reports in SAP BPC 10

Hi Experts,
We being new to SAP BPC v 10 are stuggling to find the standard Audit trail reports which were present in version 7.
Can any body guide us with the roadmap by which we can see those standard Audit trail reports in version 10.
Thanking in Anticipation for a quick and favorable response.

Hi Sanjeev,
In SAP BI, we have standard BI content reports which is present which just needs to be installed and is ready to be used.We are trying to find such Audit trail reports and unable to find those reports in SAP BPC 10 NW version.
Could you please guide us if we are missing anything.
Thanks in advance.
Thanks & Regards,
M.S

Similar Messages

  • Reports in SAP BPC

    Dear All,
    I uploaded datafile succssfully. And i am displaying uploaded data in BPC-Web---->Darg & Drop report.
    But When i am trying to dispaly my uploaded data in BPC-Execel-->Reporting & Analysis->Bulid a report using dynamic template
    my budget items are disaplying but amounts are not diaplaying.
    Can any one please give me guidence.
    Thanks & Regards,
    Satish.

    Hi Sanjeev,
    In SAP BI, we have standard BI content reports which is present which just needs to be installed and is ready to be used.We are trying to find such Audit trail reports and unable to find those reports in SAP BPC 10 NW version.
    Could you please guide us if we are missing anything.
    Thanks in advance.
    Thanks & Regards,
    M.S

  • How to create an audit trail report in SAPB12007

    Hello,
    I been looking for some ways to make an Audit Trail Report for our System Audit. Could anyone help me with this?
    I would like to generate a report that will list all the BP and ITem master data. the date its created and modified and if its modified what are the old values and the modified values.
    I browse the table ACRD for the BP history. how every it could be read as a report. So I was wondering if anyone knows what table should I look at if I am to get the old and new value of a modified transaction. Pls. note that I wanted to create a report.
    Thank you very much
    cat

    Here are the queries that I use for my audits internally. The first one is for customer changes. And the second one to control pricing.
    Query Name: Business Partner History Log
    Author: Vincent Motte                  
    Version: 1.0                          
    History:
    /SELECT FROM ACRD T1/
    DECLARE @DATE AS DATETIME
    /* WHERE */
    SET @DATE = /* T1.UpdateDate */ getdate()-30
    SELECT
    CASE
                    WHEN (SELECT ISNULL(T10.BankCode,0) FROM ACRD T10 WHERE T10.CardCode=T0.CardCode AND T10.LogInstanc=T0.LogInstanc-1)<>ISNULL(T0.BankCode,0)
                                    Then  'Bank details modified'
                     WHEN (SELECT ISNULL(T10.DflAccount,0) FROM ACRD T10 WHERE T10.CardCode=T0.CardCode AND T10.LogInstanc=T0.LogInstanc-1)<>ISNULL(T0.DflAccount,0)
                                    Then  'Bank  details modified'
                     WHEN (SELECT ISNULL(T10.DflBranch,0) FROM ACRD T10 WHERE T10.CardCode=T0.CardCode AND T10.LogInstanc=T0.LogInstanc-1)<>ISNULL(T0.DflBranch,0)
                                    Then  'Bank  details modified'
                    WHEN (SELECT COUNT(T10.CardCode) FROM ACRD T10 WHERE T10.CardCode=T0.CardCode and T10.LogInstanc<T0.LogInstanc)<=0
                                    Then 'Creation'
                    else ''
    END 'Alert',
    T0.UpdateDate 'Update Date', T1.[U_NAME] 'User',T0.CardCode, T0.CardName
    , T0.[CreditLine], T0.[DebtLine],
    T0.[Discount], T0.[VatStatus], T0.[LicTradNum], T0.[ListNum] 'Price List', T0.[DflAccount], T0.[DflBranch], T0.[BankCode],
    T0.[validFor], T0.[frozenFor], T0.[VatGroup], T0.[Deleted], T0.[PymCode], T0.[BlockDunn],
    T0.[WTCode]
    FROM ACRD T0 , OUSR T1 WHERE
    T1.INTERNAL_K=T0.UserSign AND T0.UpdateDate>=@DATE
    Query Name: Price Change log
    Description: extracts the price modification for each item in SBO for the past 30 days
    Version 1.0
    Author: Vincent Motte
    History:
    Select
    --T0.UserSign,
    T1.itemcode 'Item Code',
    T0.Price [Previous],
    T1.Price [Current],
    T2.ListName 'Price List',
    T0.Factor[Old Factor] ,
    T0.factor [New Factor],
    /* select the update date for the log instance(determined by the where condition )*/
    (Select distinct T3.Updatedate from aitm T3 where T3.itemcode= T0.itemcode and (T3.loginstanc +1)= T0.loginstanc ) 'Update Date',
    T0.loginstanc 'Instance',
    T2.listName 'Price List',
    /Select the base price list for the item's price list from the price list table/
    (Select T4.base_num from opln T4 where T4.listnum = T1.pricelist and T4.listnum = T0.pricelist) [Base PriceList ]
    --t0.Currency,
    --T1.CURRENCY
    From
    ait1 T0 inner join
    itm1 T1 on T0.pricelist = T1.pricelist and T0.itemcode = T1.itemcode
    Inner Join opln T2 on T1.pricelist = T2.listnum
    where
    /* Condition 1: Select all the items + their price change where the price has been changed and the base price list equals the price list itself. It counts the Log Instance from the item in
    the price list and substract one to get the last entry where the price was changed. The loginstance coutn ignores a count of 1
    T0.loginstanc =
    ((Select count (a.Loginstanc) from ait1 a where a.itemcode = T0.itemcode and a.pricelist = T0.pricelist group by a.itemcode having count(a.Loginstanc) > '1' ) -1)
    and
    /* Cater for prices in target price lists which may have been manually changed. */
    (T1.ovrwritten='y'and T0.Price <> T1.Price)
    or (T0.Price <> T1.Price and T2.base_num = T1.pricelist and T2.base_num = T1.pricelist
    and T2.base_Num = T2.listnum )
    Cater for cases where a currency change but not a price change may happen
    OR T0.CURRENCY <> T1.CURRENCY
    or
    Condition 2: Select all price changes where the price may have changed due to the price of the parent price lsit changing.
    As this type of price chnage is not recorded in the AIT1 the second log instance condition details that the base price list
    from opln does not equal the actual price list in ait1 or itm1.
    T0.loginstanc =
    (Select top 1 c.loginstanc from ait1 c where c.itemcode = T0.itemcode and c.pricelist = T0.pricelist and c.loginstanc <> '1' order by c.loginstanc desc)
    and T2.base_num <> T1.pricelist and T2.base_num <> T1.pricelist
    and T2.base_Num <> T2.listnum
    and
    caters for a change in the factors or prices in target price lists which may have been manually changed.
    ((T0.Factor <> T1.factor)
    or (T1.ovrwritten='y'and T0.Price <> T1.Price)
    or T0.price <> T1.price
    Cater for cases where a currency change but not a price change may happen
    OR T0.CURRENCY <> T1.CURRENCY
    and (T0.Price >= 0 or T1.Price >=0) and ((T0.Price <> T1.Price) or ((T0.Price <>
    (Select distinct b.pricelist from itm1 b right outer join OPLN T4 on b.pricelist= T4.listnum and b.pricelist <> T4.base_Num where b.pricelist = T1.pricelist and b.itemcode =T1.itemcode)))
    and (Select distinct T3.Updatedate from aitm T3 where T3.itemcode= T0.itemcode and (T3.loginstanc +1)= T0.loginstanc ) >getdate()-30

  • Audit Trail Report Ignores Parameters From/To Date on EBS 12.0.6

    Hi All,
    One of our customers is not able to filter the data in "Audit Trail Report" based on date parameters.
    Is there any patch for this..
    EBS Version is 12.0.6
    I have found a note but it is related to 11i.
    Audit Trail Report Ignores Parameters Transacted By, From/To Date (Doc ID 364304.1)
    Any help is greatly appreciated..
    Best Regards
    gt1942

    I don't see any patch available for 12.0.x and this issue should be fixed in this release.
    Please log a SR for this issue.
    Thanks,
    Hussein

  • Stock Audit Trail Report Error - Attempt to read or write protected memory.

    Hi,
    I have a customer running on
    1. SQL 2008 SP2
    2. SAP B1 8.8 PL21
    After the Stock Audit Trail report is run, on the output screen, when i try to click on any of the "Golden Arrow" to drill down, i get an error message on the bottow of the screen that says
    "[ItemEvent]: Attempt to read or write protected memory. This is often an indication that other memory is corrupt."
    I get this error on workstations as well as servers. What could be wrong and what should i do?
    Thanks,
    Taw-Fey, Tan

    Hi Taw-Fey,
    Check your demo database to see if you get the same error. If not, something is wrong in your live db. You need at least DBCC to check.
    Thanks,
    Gordon

  • Report with SAP BPC MS Hierarchy

    Hello,
    We are using BO Web Intelligence in order to create reports with SAP BPC 10 Microsoft version data.
    We have a requirement were we need to create this reports with hierarchies created at BPC level. However when we use this hierarchies, technical names are always showed attached to descritions (please see attached file).
    What we want is to change the following:
    - at this moment we have "VN_FACT - Facturação", that represents ID concatenated with " - " and Description;
    - we want that only shows Description but with plus sign of hierarchy.
    How can we achieve this?
    Thanks and regards,
    Vitor Ramalho

    Please check image below explaining the steps to change the definition.
    Hope this works for you as I don't have more ideas
    Regards,
    José Santos

  • Customized Audit Trail report

    Hi Expert,
    Instead of using the existing audit report "S_AHR_61016380", I would like to create a customized report for this. I try to go throguh the source code in this report, but no luck for me.
    Could you please let me know the table name to store the audit trail data? I need to extract it myself and put it into my company's format.
    Million thanks,
    WF

    Hi Harsh,
    I have lots of record from the standard audit report, but I cannot find any record in view V_PTRV_APPR.
    Could you please let me know how to get record from these table?
    Thanks,
    WF

  • Reports from SAP BPC NW 7.5

    Hi All,
    Our Landscape:
    SAP ECC EhP1
    SAP BW 7.10
    SAP BOBJ XI 3.1 (WebI/Crystal/Xcelsius)
    SAP BPC NW 7.5
    We are new to BPC. We would like to know where do we need to develope the reports on BPC data. Can some one help me on this. If some one have any best practices or options that where we can develope the reports, pls let me know
    Like we can do reporting directly on BPC with only couple of reports from BW/BOBJ or all reports from BW/BOBJ.
    Here we are planning to use BW as warehouse solution and BOBJ tools for reporitng on BW data.
    Thanks,
    Bala

    Hi Bala,
    BPC is a planning & a reporting tool. It can also be used for Consolidation. As mentioned in the previous reply, the data in BW has to be made available in BPC Application (cube) to be able to report it out.
    You might need to create transformation files and conversions files between your BW cubes and the BPC cubes to realise the data transfer to BPC application (cube). Note, BPC cubes are automatically generated when you create an application from the BPC front end.
    Please refer to some good introductory blogs available on SDN to get to know the BPC terminology and BW terms. Then BPC has an reporting tool in itself. You can create reporting using EVDRE for example which displays the data landed in BPC cubes. This typically will have actual data (loaded from BW), plan data (planned through Input Schedules or flat file data loads).
    Hope this give some brief idea.
    Thanks

  • Where to find standard transfer logic restrictions in PDP scenario

    Hello experts!
    Does anyone knows the program/routine in ECC where I can find the standard restrictions for requisitions to be sent to SRM?
    By this I mean the restrictions we all know, for example, that requisitions with consignment or subcontrating positions are not to be transfered to SRM.
    Thanks!
    Regards,
    Gilberto Gallardo.

    Hello Ahmed,
    I meant the porogram code where SAP hardcoded the restrictions on the type of requisitions that are to be sent to SRM. These restrictions apply for everything that was configured in tables V_T160EX and V_T160PR.
    As I mentioned, these restrictions are, for example, positions with specific position types such as consignment and subcontrating, that are not supported by SRM.
    I hope this explains my requirement more clearly.
    Regards,
    Gilberto Gallardo.
    Edited by: Proyecto Genesis on Oct 15, 2008 7:12 PM
    I found the program: LBBPKF01, routine GENERAL_CHECKS.
    Thanks for the help.

  • Where to find 'Exempt' indicator for reporting using ad-hoc query?

    I want to run report for a count of exempt and non-exempt employees using ad-hoc query with logical database PNPCE. We maintain the exempt/non-exempt flag on the job.
    Thanks
    Manish

    To meet this exact same requirement at my company.  I added an additional table (T5U13) into the logical database. Within transaction SQ02, go to the field group Organizational Assignment, right-click on the field group.  Click Node Extras.  Click Create icon over on the right-hand side of the screen.  Type in the table name T5U13.  Use this select statement:
    SELECT SINGLE * FROM T5U13              
      WHERE STELL                = P0001-STELL
        AND ENDDA                = P0001-ENDDA
    Then add the fields into your field groups.  I also created a local field so I get the word "Exempt" or "Non-Exempt" in my queries instead of "1" or "2" because i can never remember which is which. 
    Hope this helps!

  • Where to find email body text saved in SAP tenant system?

    Hi
    i wants to change email body text, in my tenant sap system we have one mail format like body as below:
    Hi customer,
    Thank you for your order.
    Yours sincerely,
    xyz
    now i wants to add some extra text in the above body text. for now i am editing it for every order. i want it to setup once.
    below step i am using:
    https://my____.sapbydesign.com
    first login to your tenant system and go to sales order workcenter-->select one sales order id-->view all(in the right most corner)-->now click on you can also button-->edit output settings.
    one window will get open here i am editing the body text.Can anybody suggest me where i can find this saved email body text so that i can append some text in this.

    Hi Douglas,
    Thanks for reply.
    Your given link dosent opens "server not found" error. And Last time i had raised an incident to SAP and got the below reply(Some part of reply).
    "Email body text field feature will be available in FP 1302 system the BO:  /DOC/OM_DOCUMENT_OUT_REQ -> ROOT->ITEM->EMAIL_BODY_TEXT  field is PSM write access is enabled."
    "standard email
    template can further be modified by making the field
    “EMAIL_BODY_TEXT” PSM enabled.
    The hierarchy is ROOT->ITEM->EMAIL_BODY_TEXT.
      This feature can only be available in FP 1302 and above systems".
    Can you help where and how i can use this.

  • MemberSet parametres in an EvDRE report/schedule (SAP BPC NW 7.5, SP03)

    Hi,
    I'm struggling combining MemberSet keywords and filtering values in an EvDRE schedule/report. The aim is to create an input schedule (or report) based on a hierarchy, but where a number of the dimension members are excluded (filtered). Below a brief, manipulated, expected result (bolded items are Parent nodes to members):
         ENTITY:1000
    Sales     (3,000.00)
    Sales     (3,000.00)
    COGS     1,800.00
    Cogs     1,800.00
    Royalties     300.00
    Revaluation of inventory     
    Gross Profit Reductions     300.00
    Gross Profit Sales     (900.00)
    I can easily generate a flat list of members, correctly filtered (but useless), and also a correct filtered report including the appropriate nodes (but with the parents sitting before the members) . The problem occur when trying to include ParentAfter, which only works together with either ALL or MEMBERS and when they are included, the filtering doesn't work!
    Any suggestings on how to compose a MemberSet string, where both ParentAfter and filtering works?
    Søren

    Hello,
    filter the memberset with LDEP(2),PARENTHAFTER,SELF.
    Is a bit old this post but I hope that could be useful for everyone searching the same information.
    Regards,
    Alessandro

  • EVDRE in Report in SAP BPC 5.0

    Hai,
    Selecting periodic in dimesnion measures in report gives JAN month value same for YTD and PERIODIC.
    Is there any option to show JAN month For the Month value connecting to DEC month.
    Please do help me on this issue.

    >
    Sriram Nagi wrote:
    > Please find attached the OUR time dimesion
    >
    >
    >
    > ID     EVDESCRIPTION     PARENTH1     YEAR     PERIOD     LEVEL     CURRENT     TIMEID     Style     HLEVEL     MONTHNUM
    > 2001.TOTAL     2001 TOTAL          2001     TOTAL     YEAR          10000002     T2     1     12
    > 2001.Q4     2001 Q4     2001.TOTAL     2001     Q4     QUARTER          10000003     T1     2     12
    > 2001.JUN     2001 JUN     2001.Q4     2001     JUN     MONTH     2001.JUN     20010600     N     3     12
    >                                                   
    > 2002.TOTAL     2002 TOTAL          2002     TOTAL     YEAR          10000004     T2     1     12
    > 2002.Q4     2002 Q4     2002.TOTAL     2002     Q4     QUARTER          10000005     T1     2     12
    > 2002.JUN     2002 JUN     2002.Q4     2002     JUN     MONTH     2002.JUN     20020600     N     3     12
    >                                                   
    > 2003.TOTAL     2003 TOTAL          2003     TOTAL     YEAR          10000006     T2     1     12
    > 2003.Q4     2003 Q4     2003.TOTAL     2003     Q4     QUARTER          10000007     T1     2     12
    > 2003.JUN     2003 JUN     2003.Q4     2003     JUN     MONTH     2003.JUN     20030600     N     3     12
    >                                                   
    > 2004.TOTAL     2004 TOTAL          2004     TOTAL     YEAR          10000008     T2     1     12
    > 2004.Q4     2004 Q4     2004.TOTAL     2004     Q4     QUARTER          10000009     T1     2     12
    > 2004.JUN     2004 JUN     2004.Q4     2004     JUN     MONTH     2004.JUN     20040600     N     3     12
    >                                                   
    > 2005.TOTAL     2005 TOTAL          2005     TOTAL     YEAR          10000010     T2     1     12
    > 2005.Q4     2005 Q4     2005.TOTAL     2005     Q4     QUARTER          10000011     T1     2     12
    > 2005.JUN     2005 JUN     2005.Q4     2005     JUN     MONTH     2005.JUN     20050600     N     3     12
    >                                                   
    > 2006.TOTAL     2006 TOTAL          2006     TOTAL     YEAR          10000012     T2     1     12
    > 2006.Q4     2006 Q4     2006.TOTAL     2006     Q4     QUARTER          10000013     T1     2     12
    > 2006.JUN     2006 JUN     2006.Q4     2006     JUN     MONTH     2006.JUN     20060600     N     3     12
    >                                                   
    > 2007.TOTAL     2007 TOTAL          2007     TOTAL     YEAR          10000014     T2     1     12
    > 2007.Q1     2007 Q1     2007.TOTAL     2007     Q1     QUARTER          10000015     T1     2     3
    > 2007.Q2     2007 Q2     2007.TOTAL     2007     Q2     QUARTER          10000016     T1     2     6
    > 2007.Q3     2007 Q3     2007.TOTAL     2007     Q3     QUARTER          10000017     T1     2     9
    > 2007.Q4     2007 Q4     2007.TOTAL     2007     Q4     QUARTER          10000018     T1     2     12
    > 2006.JUL     2006.JUL     2007.Q1     2007     JUL     MONTH     2006.JUL     20060700     N     3     1
    > 2006.AUG     2006.AUG     2007.Q1     2007     AUG     MONTH     2006.AUG     20060800     N     3     2
    > 2006.SEP     2006.SEP     2007.Q1     2007     SEP     MONTH     2006.SEP     20060900     N     3     3
    > 2006.OCT     2006.OCT     2007.Q2     2007     OCT     MONTH     2006.OCT     20061000     N     3     4
    > 2006.NOV     2006.NOV     2007.Q2     2007     NOV     MONTH     2006.NOV     20061100     N     3     5
    > 2006.DEC     2006.DEC     2007.Q2     2007     DEC     MONTH     2006.DEC     20061200     N     3     6
    > 2007.JAN     2007.JAN     2007.Q3     2007     JAN     MONTH     2007.JAN     20070100     N     3     7
    > 2007.FEB     2007.FEB     2007.Q3     2007     FEB     MONTH     2007.FEB     20070200     N     3     8
    > 2007.MAR     2007.MAR     2007.Q3     2007     MAR     MONTH     2007.MAR     20070300     N     3     9
    > 2007.APR     2007.APR     2007.Q4     2007     APR     MONTH     2007.APR     20070400     N     3     10
    > 2007.MAY     2007.MAY     2007.Q4     2007     MAY     MONTH     2007.MAY     20070500     N     3     11
    > 2007.JUN     2007.JUN     2007.Q4     2007     JUN     MONTH     2007.JUN     20070600     N     3     12
    >                                                   
    > 2008.TOTAL     2008 TOTAL          2008     TOTAL     YEAR          10000019     T2     1     12
    > 2008.Q1     2008 Q1     2008.TOTAL     2008     Q1     QUARTER          10000020     T1     2     3
    > 2008.Q2     2008 Q2     2008.TOTAL     2008     Q2     QUARTER          10000021     T1     2     6
    > 2008.Q3     2008 Q3     2008.TOTAL     2008     Q3     QUARTER          10000022     T1     2     9
    > 2008.Q4     2008 Q4     2008.TOTAL     2008     Q4     QUARTER          10000023     T1     2     12
    > 2007.JUL     2007.JUL     2008.Q1     2008     JUL     MONTH     2007.JUL     20070700     N     3     1
    > 2007.AUG     2007.AUG     2008.Q1     2008     AUG     MONTH     2007.AUG     20070800     N     3     2
    > 2007.SEP     2007.SEP     2008.Q1     2008     SEP     MONTH     2007.SEP     20070900     N     3     3
    > 2007.OCT     2007.OCT     2008.Q2     2008     OCT     MONTH     2007.OCT     20071000     N     3     4
    > 2007.NOV     2007.NOV     2008.Q2     2008     NOV     MONTH     2007.NOV     20071100     N     3     5
    > 2007.DEC     2007.DEC     2008.Q2     2008     DEC     MONTH     2007.DEC     20071200     N     3     6
    > 2008.JAN     2008.JAN     2008.Q3     2008     JAN     MONTH     2008.JAN     20080100     N     3     7
    > 2008.FEB     2008.FEB     2008.Q3     2008     FEB     MONTH     2008.FEB     20080200     N     3     8
    > 2008.MAR     2008.MAR     2008.Q3     2008     MAR     MONTH     2008.MAR     20080300     N     3     9
    > 2008.APR     2008.APR     2008.Q4     2008     APR     MONTH     2008.APR     20080400     N     3     10
    > 2008.MAY     2008.MAY     2008.Q4     2008     MAY     MONTH     2008.MAY     20080500     N     3     11
    > 2008.JUN     2008.JUN     2008.Q4     2008     JUN     MONTH     2008.JUN     20080600     N     3     12
    >                                                   
    > 2009.TOTAL     2009 TOTAL          2009     TOTAL     YEAR          10000024     T2     1     12
    > 2009.Q1     2009 Q1     2009.TOTAL     2009     Q1     QUARTER          10000025     T1     2     3
    > 2009.Q2     2009 Q2     2009.TOTAL     2009     Q2     QUARTER          10000026     T1     2     6
    > 2009.Q3     2009 Q3     2009.TOTAL     2009     Q3     QUARTER          10000027     T1     2     9
    > 2009.Q4     2009 Q4     2009.TOTAL     2009     Q4     QUARTER          10000028     T1     2     12
    > 2008.JUL     2008.JUL     2009.Q1     2009     JUL     MONTH     2008.JUL     20080700     N     3     1
    > 2008.AUG     2008.AUG     2009.Q1     2009     AUG     MONTH     2008.AUG     20080800     N     3     2
    > 2008.SEP     2008.SEP     2009.Q1     2009     SEP     MONTH     2008.SEP     20080900     N     3     3
    > 2008.OCT     2008.OCT     2009.Q2     2009     OCT     MONTH     2008.OCT     20081000     N     3     4
    > 2008.NOV     2008.NOV     2009.Q2     2009     NOV     MONTH     2008.NOV     20081100     N     3     5
    > 2008.DEC     2008.DEC     2009.Q2     2009     DEC     MONTH     2008.DEC     20081200     N     3     6
    > 2009.JAN     2009.JAN     2009.Q3     2009     JAN     MONTH     2009.JAN     20090100     N     3     7
    > 2009.FEB     2009.FEB     2009.Q3     2009     FEB     MONTH     2009.FEB     20090200     N     3     8
    > 2009.MAR     2009.MAR     2009.Q3     2009     MAR     MONTH     2009.MAR     20090300     N     3     9
    > 2009.APR     2009.APR     2009.Q4     2009     APR     MONTH     2009.APR     20090400     N     3     10
    > 2009.MAY     2009.MAY     2009.Q4     2009     MAY     MONTH     2009.MAY     20090500     N     3     11
    > 2009.JUN     2009.JUN     2009.Q4     2009     JUN     MONTH     2009.JUN     20090600     N     3     12
    > 2009.JUL     2009.JUL     2010.Q1     2010     JUL     MONTH     2009.JUL     20090700     N     3     1
    > 2009.AUG     2009.AUG     2010.Q1     2010     AUG     MONTH     2009.AUG     20090800     N     3     2
    > 2009.SEP     2009.SEP     2010.Q1     2010     SEP     MONTH     2009.SEP     20090900     N     3     3
    > 2009.OCT     2009.OCT     2010.Q2     2010     OCT     MONTH     2009.OCT     20091000     N     3     4
    > 2009.NOV     2009.NOV     2010.Q2     2010     NOV     MONTH     2009.NOV     20091100     N     3     5
    > 2009.DEC     2009.DEC     2010.Q2     2010     DEC     MONTH     2009.DEC     20091200     N     3     6
    > 2010.JAN     2010.JAN     2010.Q3     2010     JAN     MONTH     2010.JAN     20100100     N     3     7
    > 2010.FEB     2010.FEB     2010.Q3     2010     FEB     MONTH     2010.FEB     20100200     N     3     8
    > 2010.MAR     2010.MAR     2010.Q3     2010     MAR     MONTH     2010.MAR     20100300     N     3     9
    > 2010.APR     2010.APR     2010.Q4     2010     APR     MONTH     2010.APR     20100400     N     3     10
    > 2010.MAY     2010.MAY     2010.Q4     2010     MAY     MONTH     2010.MAY     20100500     N     3     11
    > 2010.JUN     2010.JUN     2010.Q4     2010     JUN     MONTH     2010.JUN     20100600     N     3     12
    >                                                   
    > 2011.TOTAL     2011 TOTAL          2011     TOTAL     YEAR          10000034     T2     1     12
    > 2011.Q1     2011 Q1     2011.TOTAL     2011     Q1     QUARTER          10000035     T1     2     3
    > 2011.Q2     2011 Q2     2011.TOTAL     2011     Q2     QUARTER          10000036     T1     2     6
    > 2011.Q3     2011 Q3     2011.TOTAL     2011     Q3     QUARTER          10000037     T1     2     9
    > 2011.Q4     2011 Q4     2011.TOTAL     2011     Q4     QUARTER          10000038     T1     2     12
    > 2010.JUL     2010.JUL     2011.Q1     2011     JUL     MONTH     2010.JUL     20100700     N     3     1
    > 2010.AUG     2010.AUG     2011.Q1     2011     AUG     MONTH     2010.AUG     20100800     N     3     2
    > 2010.SEP     2010.SEP     2011.Q1     2011     SEP     MONTH     2010.SEP     20100900     N     3     3
    > 2010.OCT     2010.OCT     2011.Q2     2011     OCT     MONTH     2010.OCT     20101000     N     3     4
    > 2010.NOV     2010.NOV     2011.Q2     2011     NOV     MONTH     2010.NOV     20101100     N     3     5
    > 2010.DEC     2010.DEC     2011.Q2     2011     DEC     MONTH     2010.DEC     20101200     N     3     6
    > 2011.JAN     2011.JAN     2011.Q3     2011     JAN     MONTH     2011.JAN     20110100     N     3     7
    > 2011.FEB     2011.FEB     2011.Q3     2011     FEB     MONTH     2011.FEB     20110200     N     3     8
    > 2011.MAR     2011.MAR     2011.Q3     2011     MAR     MONTH     2011.MAR     20110300     N     3     9
    > 2011.APR     2011.APR     2011.Q4     2011     APR     MONTH     2011.APR     20110400     N     3     10
    > 2011.MAY     2011.MAY     2011.Q4     2011     MAY     MONTH     2011.MAY     20110500     N     3     11
    > 2011.JUN     2011.JUN     2011.Q4     2011     JUN     MONTH     2011.JUN     20110600     N     3     12
    >                                                   
    > 2012.TOTAL     2012 TOTAL          2012     TOTAL     YEAR          10000039     T2     1     12
    > 2012.Q1     2012 Q1     2012.TOTAL     2012     Q1     QUARTER          10000040     T1     2     3
    > 2012.Q2     2012 Q2     2012.TOTAL     2012     Q2     QUARTER          10000041     T1     2     6
    > 2012.Q3     2012 Q3     2012.TOTAL     2012     Q3     QUARTER          10000042     T1     2     9
    > 2012.Q4     2012 Q4     2012.TOTAL     2012     Q4     QUARTER          10000043     T1     2     12
    > 2011.JUL     2011.JUL     2012.Q1     2012     JUL     MONTH     2011.JUL     20110700     N     3     1
    > 2011.AUG     2011.AUG     2012.Q1     2012     AUG     MONTH     2011.AUG     20110800     N     3     2
    > 2011.SEP     2011.SEP     2012.Q1     2012     SEP     MONTH     2011.SEP     20110900     N     3     3
    > 2011.OCT     2011.OCT     2012.Q2     2012     OCT     MONTH     2011.OCT     20111000     N     3     4
    > 2011.NOV     2011.NOV     2012.Q2     2012     NOV     MONTH     2011.NOV     20111100     N     3     5
    > 2011.DEC     2011.DEC     2012.Q2     2012     DEC     MONTH     2011.DEC     20111200     N     3     6
    > 2012.JAN     2012.JAN     2012.Q3     2012     JAN     MONTH     2012.JAN     20120100     N     3     7
    > 2012.FEB     2012.FEB     2012.Q3     2012     FEB     MONTH     2012.FEB     20120200     N     3     8
    > 2012.MAR     2012.MAR     2012.Q3     2012     MAR     MONTH     2012.MAR     20120300     N     3     9
    > 2012.APR     2012.APR     2012.Q4     2012     APR     MONTH     2012.APR     20120400     N     3     10
    > 2012.MAY     2012.MAY     2012.Q4     2012     MAY     MONTH     2012.MAY     20120500     N     3     11
    > 2012.JUN     2012.JUN     2012.Q4     2012     JUN     MONTH     2012.JUN     20120600     N     3     12
    >                                                   
    > 2013.TOTAL     2013 TOTAL          2013     TOTAL     YEAR          10000044     T2     1     12
    > 2013.Q1     2013 Q1     2013.TOTAL     2013     Q1     QUARTER          10000045     T1     2     3
    > 2013.Q2     2013 Q2     2013.TOTAL     2013     Q2     QUARTER          10000046     T1     2     6
    > 2013.Q3     2013 Q3     2013.TOTAL     2013     Q3     QUARTER          10000047     T1     2     9
    > 2013.Q4     2013 Q4     2013.TOTAL     2013     Q4     QUARTER          10000048     T1     2     12
    > 2012.JUL     2012.JUL     2013.Q1     2013     JUL     MONTH     2012.JUL     20120700     N     3     1
    > 2012.AUG     2012.AUG     2013.Q1     2013     AUG     MONTH     2012.AUG     20120800     N     3     2
    > 2012.SEP     2012.SEP     2013.Q1     2013     SEP     MONTH     2012.SEP     20120900     N     3     3
    > 2012.OCT     2012.OCT     2013.Q2     2013     OCT     MONTH     2012.OCT     20121000     N     3     4
    > 2012.NOV     2012.NOV     2013.Q2     2013     NOV     MONTH     2012.NOV     20121100     N     3     5
    > 2012.DEC     2012.DEC     2013.Q2     2013     DEC     MONTH     2012.DEC     20121200     N     3     6
    > 2013.JAN     2013.JAN     2013.Q3     2013     JAN     MONTH     2013.JAN     20130100     N     3     7
    > 2013.FEB     2013.FEB     2013.Q3     2013     FEB     MONTH     2013.FEB     20130200     N     3     8
    > 2013.MAR     2013.MAR     2013.Q3     2013     MAR     MONTH     2013.MAR     20130300     N     3     9
    > 2013.APR     2013.APR     2013.Q4     2013     APR     MONTH     2013.APR     20130400     N     3     10
    > 2013.MAY     2013.MAY     2013.Q4     2013     MAY     MONTH     2013.MAY     20130500     N     3     11
    > 2013.JUN     2013.JUN     2013.Q4     2013     JUN     MONTH     2013.JUN     20130600     N     3     12
    >                                                   
    > 2014.TOTAL     2014 TOTAL          2014     TOTAL     YEAR          10000049     T2     1     12
    > 2014.Q1     2014 Q1     2014.TOTAL     2014     Q1     QUARTER          10000050     T1     2     3
    > 2014.Q2     2014 Q2     2014.TOTAL     2014     Q2     QUARTER          10000051     T1     2     6
    > 2014.Q3     2014 Q3     2014.TOTAL     2014     Q3     QUARTER          10000052     T1     2     9
    > 2014.Q4     2014 Q4     2014.TOTAL     2014     Q4     QUARTER          10000053     T1     2     12
    > 2013.JUL     2013.JUL     2014.Q1     2014     JUL     MONTH     2013.JUL     20130700     N     3     1
    > 2013.AUG     2013.AUG     2014.Q1     2014     AUG     MONTH     2013.AUG     20130800     N     3     2
    > 2013.SEP     2013.SEP     2014.Q1     2014     SEP     MONTH     2013.SEP     20130900     N     3     3
    > 2013.OCT     2013.OCT     2014.Q2     2014     OCT     MONTH     2013.OCT     20131000     N     3     4
    > 2013.NOV     2013.NOV     2014.Q2     2014     NOV     MONTH     2013.NOV     20131100     N     3     5
    > 2013.DEC     2013.DEC     2014.Q2     2014     DEC     MONTH     2013.DEC     20131200     N     3     6
    > 2014.JAN     2014.JAN     2014.Q3     2014     JAN     MONTH     2014.JAN     20140100     N     3     7
    > 2014.FEB     2014.FEB     2014.Q3     2014     FEB     MONTH     2014.FEB     20140200     N     3     8
    > 2014.MAR     2014.MAR     2014.Q3     2014     MAR     MONTH     2014.MAR     20140300     N     3     9
    > 2014.APR     2014.APR     2014.Q4     2014     APR     MONTH     2014.APR     20140400     N     3     10
    > 2014.MAY     2014.MAY     2014.Q4     2014     MAY     MONTH     2014.MAY     20140500     N     3     11
    > 2014.JUN     2014.JUN     2014.Q4     2014     JUN     MONTH     2014.JUN     20140600     N     3     12
    >                                                   
    > 2015.TOTAL     2015 TOTAL          2015     TOTAL     YEAR          10000054     T2     1     12
    > 2015.Q1     2015 Q1     2015.TOTAL     2015     Q1     QUARTER          10000055     T1     2     3
    > 2015.Q2     2015 Q2     2015.TOTAL     2015     Q2     QUARTER          10000056     T1     2     6
    > 2015.Q3     2015 Q3     2015.TOTAL     2015     Q3     QUARTER          10000057     T1     2     9
    > 2015.Q4     2015 Q4     2015.TOTAL     2015     Q4     QUARTER          10000058     T1     2     12
    > 2014.JUL     2014.JUL     2015.Q1     2015     JUL     MONTH     2014.JUL     20140700     N     3     1
    > 2014.AUG     2014.AUG     2015.Q1     2015     AUG     MONTH     2014.AUG     20140800     N     3     2
    > 2014.SEP     2014.SEP     2015.Q1     2015     SEP     MONTH     2014.SEP     20140900     N     3     3
    > 2014.OCT     2014.OCT     2015.Q2     2015     OCT     MONTH     2014.OCT     20141000     N     3     4
    > 2014.NOV     2014.NOV     2015.Q2     2015     NOV     MONTH     2014.NOV     20141100     N     3     5
    > 2014.DEC     2014.DEC     2015.Q2     2015     DEC     MONTH     2014.DEC     20141200     N     3     6
    > 2015.JAN     2015.JAN     2015.Q3     2015     JAN     MONTH     2015.JAN     20150100     N     3     7
    > 2015.FEB     2015.FEB     2015.Q3     2015     FEB     MONTH     2015.FEB     20150200     N     3     8
    > 2015.MAR     2015.MAR     2015.Q3     2015     MAR     MONTH     2015.MAR     20150300     N     3     9
    > 2015.APR     2015.APR     2015.Q4     2015     APR     MONTH     2015.APR     20150400     N     3     10
    > 2015.MAY     2015.MAY     2015.Q4     2015     MAY     MONTH     2015.MAY     20150500     N     3     11
    > 2015.JUN     2015.JUN     2015.Q4     2015     JUN     MONTH     2015.JUN     20150600     N     3     12
    >                                                   
    > 2016.TOTAL     2016 TOTAL          2016     TOTAL     YEAR          10000059     T2     1     12
    > 2016.Q1     2016 Q1     2016.TOTAL     2016     Q1     QUARTER          10000060     T1     2     3
    > 2016.Q2     2016 Q2     2016.TOTAL     2016     Q2     QUARTER          10000061     T1     2     6
    > 2016.Q3     2016 Q3     2016.TOTAL     2016     Q3     QUARTER          10000062     T1     2     9
    > 2016.Q4     2016 Q4     2016.TOTAL     2016     Q4     QUARTER          10000063     T1     2     12
    > 2015.JUL     2015.JUL     2016.Q1     2016     JUL     MONTH     2015.JUL     20150700     N     3     1
    > 2015.AUG     2015.AUG     2016.Q1     2016     AUG     MONTH     2015.AUG     20150800     N     3     2
    > 2015.SEP     2015.SEP     2016.Q1     2016     SEP     MONTH     2015.SEP     20150900     N     3     3
    > 2015.OCT     2015.OCT     2016.Q2     2016     OCT     MONTH     2015.OCT     20151000     N     3     4
    > 2015.NOV     2015.NOV     2016.Q2     2016     NOV     MONTH     2015.NOV     20151100     N     3     5
    > 2015.DEC     2015.DEC     2016.Q2     2016     DEC     MONTH     2015.DEC     20151200     N     3     6
    > 2016.JAN     2016.JAN     2016.Q3     2016     JAN     MONTH     2016.JAN     20160100     N     3     7
    > 2016.FEB     2016.FEB     2016.Q3     2016     FEB     MONTH     2016.FEB     20160200     N     3     8
    > 2016.MAR     2016.MAR     2016.Q3     2016     MAR     MONTH     2016.MAR     20160300     N     3     9
    > 2016.APR     2016.APR     2016.Q4     2016     APR     MONTH     2016.APR     20160400     N     3     10
    > 2016.MAY     2016.MAY     2016.Q4     2016     MAY     MONTH     2016.MAY     20160500     N     3     11
    > 2016.JUN     2016.JUN     2016.Q4     2016     JUN     MONTH     2016.JUN     20160600     N     3     12
    >                                                   
    > 2017.TOTAL     2017 TOTAL          2017     TOTAL     YEAR          10000064     T2     1     12
    > 2017.Q1     2017 Q1     2017.TOTAL     2017     Q1     QUARTER          10000065     T1     2     3
    > 2017.Q2     2017 Q2     2017.TOTAL     2017     Q2     QUARTER          10000066     T1     2     6
    > 2017.Q3     2017 Q3     2017.TOTAL     2017     Q3     QUARTER          10000067     T1     2     9
    > 2017.Q4     2017 Q4     2017.TOTAL     2017     Q4     QUARTER          10000068     T1     2     12
    > 2016.JUL     2016.JUL     2017.Q1     2017     JUL     MONTH     2016.JUL     20160700     N     3     1
    > 2016.AUG     2016.AUG     2017.Q1     2017     AUG     MONTH     2016.AUG     20160800     N     3     2
    > 2016.SEP     2016.SEP     2017.Q1     2017     SEP     MONTH     2016.SEP     20160900     N     3     3
    > 2016.OCT     2016.OCT     2017.Q2     2017     OCT     MONTH     2016.OCT     20161000     N     3     4
    > 2016.NOV     2016.NOV     2017.Q2     2017     NOV     MONTH     2016.NOV     20161100     N     3     5
    > 2016.DEC     2016.DEC     2017.Q2     2017     DEC     MONTH     2016.DEC     20161200     N     3     6
    > 2017.JAN     2017.JAN     2017.Q3     2017     JAN     MONTH     2017.JAN     20170100     N     3     7
    > 2017.FEB     2017.FEB     2017.Q3     2017     FEB     MONTH     2017.FEB     20170200     N     3     8
    > 2017.MAR     2017.MAR     2017.Q3     2017     MAR     MONTH     2017.MAR     20170300     N     3     9
    > 2017.APR     2017.APR     2017.Q4     2017     APR     MONTH     2017.APR     20170400     N     3     10
    > 2017.MAY     2017.MAY     2017.Q4     2017     MAY     MONTH     2017.MAY     20170500     N     3     11
    > 2017.JUN     2017.JUN     2017.Q4     2017     JUN     MONTH     2017.JUN     20170600     N     3
    > 12

  • EPM ADD in problem in refreshing the report in SAP BPC 10.0 NW

    Hello Experts,
    In my report , i have dynamic local members ,EPM Copy range ,and context based filters as well as excel filters based on local members .
    While refreshing the report the , the system is unable to refresh properly .If context is changed in the report the context member is getting fixed instead of dynamically changing.
    I am using  -  Version 10.0 SP 14 Patch 3 .net 3.5
                         Build 8424
    Is it a problem with over formulas or is the patch unstable?

    HI,
    I believe it is definitely the support pack. I posted an issue on this forum and I saw your post.  Your issue is very similar to mine. I saw Andy's reply to you about the SP 18 and looked into it.  Thanks Andy.  SP 18 resolved my issue.  See my post.  Kathy

  • User Audit Trail for a custom table.

    Hello all. I need to know the correct and accurate way to user audit for a custom table. To elaborate further, I have a table catering to sanctioned strength of employees in a particular Cost Center, the entries have been deleted all together by someone, and I need to know the way to recover the data and to identify the user in question. Note, I have used STAT and have foundno results, and standard user audit trail are turned off.
    Any help or push in the right direction would be highly appreciated.
    P.S: any additional technical details on the table structure can be provided for further analysis if needed.

    Try to add your custom table and table fields in the below views
    V_T585A
    V_T585B
    V_T585C
    After doing this your custom table changes gets stored in the pcl4 document . If the custom table  is master data table  then from the standard Audit trail report you can see the logged changes in custom table also by providing the custom infotype number.
    if its is custom customizing table , need to explore

Maybe you are looking for