Manage data audit BPC

Hi experts,
What kind of control you could have in BPC using the manage data audit over an application?
As the configuration indicates you can choose the tasks and category you want to audit but i don´t know what kind of information you will have.
Can anybody give me some useful examples of auditing?
Regards.

The audit functionality in BPC is designed to capture information about 6 types of user interaction with BPC.  Based on security rights, the Audit report provides data on "what" has happened in the system during a specific period of time.  The process must be enabled by one of the 6 functions by category, and scheduled to move from a temporary table to a reporting table on a schedule.  The main goal is to use this to monitor interactions from a user / admin perspective with the tool.  It doesn't provide any any other functions than capture and report the information with Webexcel.
Hope this helps.

Similar Messages

  • EData and Manage Data in BPC for Excel Hanging

    Hi -
    Running BPC NW 7.0...was working fine and this morning, anytime go into eData or Manage Data options, BPC for Excel hangs, until we have to go into Task Manager and kill the process. Is there anything (on the server or client side) that could cause this? Other e-menus appear to be working okay.  Any ideas to resolve?
    Thanks,

    Hi,
    We are also facing the same issue in QA system.  However we are on BPC7.5 SP05 Patch 1.
    The system hangs when we go to eDATA.  We then have to kill the session from Task Manager.
    Any suggestions?
    Regards,
    Rashmi

  • Data Audit reports in BPC

    Hi
    Need to understand that what is the source of data audit report in BPC web.
    Regards
    Nisha

    The audit reports tell you what dimensions were changed. you can set it to run every night and have an automated email sent to you.

  • Data Audit

    Hi,
    I want to get the audit of what data entered(either using Input schedule or script logic) and when it is entered exactly.
    Please help me out.
    Thanks in advance,
    Regards,
    G.Vijayakuma

    Hi,
    For this, first you need to set up the activity auditing and then data auditing.
    Activity auditing allows you to track the administrative tasks performed in the system. Once activity is recorded, you can run a report that shows system activity, based on specified criteria. The report shows when the task was performed, and by whom. If enabled, BPC tracks activity for the following functional tasks:
    Application set and application setup, User and team setup, Member access and task profile setup, Business Process Flow management, Adding, deleting, and modifying business process flows, Saving business process flows to new names, Data audit maintenance and activation of data audits, Document type and document sub-type setup, Activation of activity audit
    You can set up data auditing to record an audit trail of BPC activity. You can set it up by application and category. You can select from the following tasks:
    BPC for Excel, Data Manager Import, Data Manager Clear, Logic Execution, Live Report, Journals
    Hope this helps.

  • BPC Mass User Management Tool in BPC 10.0 NW-Version Component Error

    Hi,
    We have a problem when importing request K900024.RBP and R900024.RBP.
    We changed the UJ_STRING in "DATA: lv_value TYPE uj_value" in the source code as recommended at BPC Mass User Management Tool in BPC 10.0 NW
    Unfortunately, when we try to import CSV files we receive a error message "BPC Version Component must be 800". Our is 801.
    Where can I find this files or its upgrades? Is there a SAP link?
    Can anybody help us?
    Best Regards,
    Ana Teresa

    Hi Ana,
    See note https://css.wdf.sap.corp/sap/support/notes/1861347.  You should solve this issue.
    Best Regards,
    Charlie

  • Analysing Task Audit, Data Audit and Process Flow History

    Hi,
    Internal Audit dept has requested a bunch of information, that we need to compile from Task Audit, Data Audit and Process Flow History logs. We do have all the info available, however not in a format that allows proper "reporting" of log information. What is the best way to handle HFM logs so that we can quickly filter and export required audit information?
    We do have housekeeping in place, so the logs are partial "live" db tables, and partial purged tables that were exported to Excel to archive the historical log info.
    Many Thanks.

    I thought I posted this Friday, but I just noticed I never hit the 'Post Message Button', ha ha.
    This info below will help you translate some of the information in the tables, etc. You could report on it from the Audit tables directly or move them to another appropriate data table for analysis later. The concensus, though I disagree, is that you will suffer performance issues if your audit tables get too big, so you want to move them periodically. You can do this using a scheduled Task, manual process, etc.
    I personally just dump it to another table and report on it from there. As mentioned above, you'll need to translate some of the information as it is not 'human readable' in the database.
    For instance, if I wanted to pull Metadata Load, Rules Load, Member List load, you could run a query like this. (NOTE: strAppName should be equal to the name of your application .... )
    The main tricks to know at least for task audit table are figuring out how to convert times and determing which activity code corresponds to the user friendly name.
    -- Declare working variables --
    declare @dtStartDate as nvarchar(20)
    declare @dtEndDate as nvarchar(20)
    declare @strAppName as nvarchar(20)
    declare @strSQL as nvarchar(4000)
    -- Initialize working variables --
    set @dtStartDate = '1/1/2012'
    set @dtEndDate = '8/31/2012'
    set @strAppName = 'YourAppNameHere'
    --Get Rules Load, Metadata, Member List
    set @strSQL = '
    select sUserName as "User", ''Rules Load'' as Activity, cast(StartTime-2 as smalldatetime) as "Time Start",
          cast(EndTime-2 as smalldatetime) as ''Time End'', ServerName, strDescription, strModuleName
       from ' + @strAppName + '_task_audit ta, hsv_activity_users au
       where au.lUserID = ta.ActivityUserID and activitycode in (1)
            and cast(StartTime-2 as smalldatetime) between ''' + @dtStartDate + ''' and ''' + @dtEndDate + '''
    union all
    select sUserName as "User", ''Metadata Load'' as Activity, cast(StartTime-2 as smalldatetime) as "Time Start",
          cast(EndTime-2 as smalldatetime) as ''Time End'', ServerName, strDescription, strModuleName
       from ' + @strAppName + '_task_audit ta, hsv_activity_users au
       where au.lUserID = ta.ActivityUserID and activitycode in (21)
            and cast(StartTime-2 as smalldatetime) between ''' + @dtStartDate + ''' and ''' + @dtEndDate + '''
    union all
    select sUserName as "User", ''Memberlist Load'' as Activity, cast(StartTime-2 as smalldatetime) as "Time Start",
          cast(EndTime-2 as smalldatetime) as ''Time End'', ServerName, strDescription, strModuleName
       from ' + @strAppName + '_task_audit ta, hsv_activity_users au
       where au.lUserID = ta.ActivityUserID and activitycode in (23)
            and cast(StartTime-2 as smalldatetime) between ''' + @dtStartDate + ''' and ''' + @dtEndDate + ''''
    exec sp_executesql @strSQLIn regards to activity codes, here's a quick breakdown on those ....
    ActivityID     ActivityName
    0     Idle
    1     Rules Load
    2     Rules Scan
    3     Rules Extract
    4     Consolidation
    5     Chart Logic
    6     Translation
    7     Custom Logic
    8     Allocate
    9     Data Load
    10     Data Extract
    11     Data Extract via HAL
    12     Data Entry
    13     Data Retrieval
    14     Data Clear
    15     Data Copy
    16     Journal Entry
    17     Journal Retrieval
    18     Journal Posting
    19     Journal Unposting
    20     Journal Template Entry
    21     Metadata Load
    22     Metadata Extract
    23     Member List Load
    24     Member List Scan
    25     Member List Extract
    26     Security Load
    27     Security Scan
    28     Security Extract
    29     Logon
    30     Logon Failure
    31     Logoff
    32     External
    33     Metadata Scan
    34     Data Scan
    35     Extended Analytics Export
    36     Extended Analytics Schema Delete
    37     Transactions Load
    38     Transactions Extract
    39     Document Attachments
    40     Document Detachments
    41     Create Transactions
    42     Edit Transactions
    43     Delete Transactions
    44     Post Transactions
    45     Unpost Transactions
    46     Delete Invalid Records
    47     Data Audit Purged
    48     Task Audit Purged
    49     Post All Transactions
    50     Unpost All Transactions
    51     Delete All Transactions
    52     Unmatch All Transactions
    53     Auto Match by ID
    54     Auto Match by Account
    55     Intercompany Matching Report by ID
    56     Intercompany Matching Report by Acct
    57     Intercompany Transaction Report
    58     Manual Match
    59     Unmatch Selected
    60     Manage IC Periods
    61     Lock/Unlock IC Entities
    62     Manage IC Reason Codes
    63     Null

  • Next to Only Export Base-level Transaction Data from BPC 7.5 NW

    Hey Experts,
    I've finally got a Export process configured out of Data Manager that is just about right.  However, when I run it, we're getting both base-level trasnaction data and records at the parent level for 2-3 dimensions which we need to specify as "<ALL>".
    Is there any way to filter or restrict the output for just the base-level members?
    Thanks in advance,
    Garrett

    Hi Gersh,
    I'm sorry, I should have been more specific.  To clarify, the trouble I'm having is when Running a Data Manager package from BPC Excel, I can't select just the base level members from clicking the Member Selector and doing Refresh/Use Filter.
    The system seems like it accepts this selection, but does not apply it when running the package. 
    Does that make sense?

  • Data audit issue 10.0 MS

    Hi experts,
    I have switched on audit for my appset and configure the audit for different categories. this is the current configuration:
    After configuring data audit, I have run BPC, run reports, run different packages and saved data with input schedules. After which I run the data audit reports and works fine for the info modified with packages but the audit report doesn't show the info about the records saved and modified through the input schedules.
    I must be missing something obvious but can't figure it out.
    thanks in advance
    Iker.

    Hi Roberto,
    I am sure I have sent data to ActRvd and also to other categories because users are currently working with the Model.
    I have checked with the audit report if there is any info modified by add-in but there isn't.
    I think the next step shuld be to report some info by add-in and then check directly in the database if there is some record created, but the problem is that I don't have rights to access to the database.
    Regards
    Iker.

  • Data audit report in BW

    Hi All,
    I am using NW 7.5, Sp15 and have turned on Data audit for a category in my bpc application. Is there a way to look at the detailed report in BW?
    When i use transaction UJU_AUDDATAHDR, it only tells me if a package was run or data was entered. But i'm trying to get the detailed log of the signed data changed for each intersection. I remember seeing this detailed level activity by going to view data audit report in web interface but for some reason when i run the report in web interface it just opens a blank page. I was wondering if its stored anywhere in BW tables as a backup?

    Hi Neeti,
    Please read this discussion about audit tables: Timestampe required on transaction records
    Vadim

  • Export Master Data from BPC to BW

    I am about embark on creating a solution to export master data from BPC to BW (NW7SP6) and I was wondering if anyone out there has covered this ground previously and has any information on this process that they wish to share?

    As of now, you could export the dimension memebr data and upload to BW info object; you may be able to do it with data manager / process chain.
    Ravi Thotahdri

  • Extraction and loading of Training and Event Management data (0HR_PE_1)

    hello,
    I've got the following doubt:
    before BI 7.0 release, extractor 0HR_PE_1 extracts event data (eventid, attendee id, calday,...) but if you load straight to cube 0PE_C01, as Calendar year/month needs a reference date (for example, event start date), you'll get total duration of event in hours or days refered to event star date.
    So in a query filtered by month, you get total duration of an event that starts in the filtered month but it couldn`t end until few months later o year later, so you don´t get appropiate information.
    Example:
    Event          calday        Hours
    10004377  20081120   500        but from event_attr event end date is 20090410.
    In a query filtered by 200811 you get total duration time (500 hours when in 200811 event hours have been 20) or if you filter by any month of 2009 you don´t get information of duration of that event.
    I had to create a copy of standar cube (without calday, only Calendar year/month, Calendar year in time dimension) and disaggrate data creating as many entries for an event as months lasts and adjust calculation of ratios duration of event (duration of event in each month/ total duration of event).
    The question is: Is there any improvement or change on business content in BI 7.0 to treat Training and Event Management data? Has anybody had to deal with that?
    Thank you very much.
    IRB

    Hi,
    TEM data is stored in HRP tables.
    You can load the catalog by creating LSMWs for objects Business event group (L), Business event types (D), Locations (F), Organizers (U) as per requirement.
    LSMW for tcode PP01 can be used to create these objects.
    To create Business Events (E) you can create LSMW for PV10/PV11.
    To book attendee create LSMW for tcode PV08 as here you can specify the actual business event ID which reduces ambiguity.
    tcode PV12 to firmly book events
    tcode PV15 to follow up
    Hope this helps.
    Regards,
    Shreyasi.

  • Training and Event Management Data Load

    Hello Team
    Would appreciate if any of you can advice on how to load Training and Event management data. I think its stored in HRP tables.
    I'm working on an upgrade assignment.
    Thanks

    Hi,
    TEM data is stored in HRP tables.
    You can load the catalog by creating LSMWs for objects Business event group (L), Business event types (D), Locations (F), Organizers (U) as per requirement.
    LSMW for tcode PP01 can be used to create these objects.
    To create Business Events (E) you can create LSMW for PV10/PV11.
    To book attendee create LSMW for tcode PV08 as here you can specify the actual business event ID which reduces ambiguity.
    tcode PV12 to firmly book events
    tcode PV15 to follow up
    Hope this helps.
    Regards,
    Shreyasi.

  • ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified in windows server 2008 r2

    ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified in windows server 2008 r2.I made a application in asp.net c#.I am using ODBC connection.When I deployed my application in windows server2008 r2.There
    is no Microsoft ODBC driver shown in ODBC Data source administrator.Then I go to the C:\Windows\SysWOW64 and open  Odbcad32.exe and add Microsoft ODBC2 driver for Oracle and when I run my application I got following error
    ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
    I am using follwoing string
     <connectionStrings>
    <add name="theconnetion" connectionString="DSN=abdb;UID=abc;PWD=xyz"/>
     </connectionStrings>
    Guide me What I do?

    Did you add a System DSN or a User DSN? If you added a User DSN from your own login, the asp.net application will not be able to use it unless its application Pool in IIS is configured to run under the same credentials that you used for creating
    the DSN. It's better if you add a System DSN.
    Also, be careful to ensure that you are using a 64 bit DSN, unless you configure the application to run in 32 bits. If the 64 bit application attempts to use the 32 bit driver you get the same error message "Data source name not found and no default
    driver specified". See this KB article:
    http://support.microsoft.com/kb/942976/en-us

  • Getting Training and Event Management Data using IT0031

    Scenerio:
    One of the Employee Is Retired. Now we hire it again for the same role ( extending its period after posting it as retired).
    So the good thing that we can use the IT0031 "Reference Personnel Numbers" to get the desired ITs and found that can get other cutomized ITs by checking in the "Copy Infotype" attribute of IT records.
    Now this seems to be valid if we are in the same module
    but waht if i want to get this magic "Referencing of ITs" done for the "Training and Event Managment" Data of the employee.
    Is it Possible Automatically ... or have to go fro ABAP... (I will not prefer ABAP)...
    I hope i have stated the problem clearly ...
    Feedback ... need it ASAP ...

    Hi,
    TEM data is stored in HRP tables.
    You can load the catalog by creating LSMWs for objects Business event group (L), Business event types (D), Locations (F), Organizers (U) as per requirement.
    LSMW for tcode PP01 can be used to create these objects.
    To create Business Events (E) you can create LSMW for PV10/PV11.
    To book attendee create LSMW for tcode PV08 as here you can specify the actual business event ID which reduces ambiguity.
    tcode PV12 to firmly book events
    tcode PV15 to follow up
    Hope this helps.
    Regards,
    Shreyasi.

  • How to extract data from BPC InfoCube via ABAP program?

    Hi experts!!
    I tried to extract data from a BPC InfoCube via ABAP program, but I did'n have succeed.
    I used the function 'RSDRI_INFOPROV_READ' to extract data from standard InfoCubes such as '0COPC_C07' and it run OK! However, when I change the InfoCube name to '/CPMB/WAIX8NE' (BPC InfoCube), everything goes wrong...
    Is there any difference between extracting data from BPC and standard InfoCubes?
    Thank you all!

    Moderator message - Welcome to SCN.
    But please do not cross and duplicate post.
    Thread locked.
    Rob

Maybe you are looking for

  • External Hardrive not "readable" by my computer anymore....

    So the other day my Samsun 200gig external hardrive was working..and the next thing you know it...the drive becomes "not readable by your computer" AGH...how frustrating. The Utility Disc also says that there are errors when trying to repair the disc

  • HR table problem

    Moderator message: please use a meaningful subject in future. Hi Experts, Anybody will pls tell me what is the check table for field NACHN. It is last name & used in HR table PA0002. I don't have any idea for HR. Please suggest. Regards, Poonam Edite

  • Need Help:Regarding Case when we should receive an email if we haven't receive feed within SLA.

    Hello Cisco Team/Everyone, We are facing one major hurdle we need to configure a case when a email should be sent to business if the feed is not received within SLA. At present what we can configure is if feed is being received within SLA then an ema

  • Best practices for hardening Nexus devices

    We recently implemented Nexus 7010s, 5020s, and 2248s in our data center. Now we would like to harden them from a security persective; are there any Best Practices available for hardening Nexus devices?

  • Handling Combobox Events

    Hi folks, I have a problem with handling my combobox. I use a DefaultComboBoxModel with an ItemListener. If the user selects another element of the combobox my Application test some things and if something special is selected there has to appear an m