SM20/SM20N audit report analysis - in background

Hi,
I would like to create an audit log / audit report analysis in background.
I've found an article bu interested to understand if it is the only way to do that ?
article: http://sap.ittoolbox.com/groups/technical-functional/sap-security/security-audit-reports-using-sm20-1019745?cv=expanded
Any idea ?
Dimitry Haritonov

i have not tried it but yes thats what mentioned in the Note 838847
Instructions for Releases 4.6C and 6.20
Creating the RSAU_SELECT_EVENTS program:
Title: "Selection of audit events from the audit files (background variant)"
Type: Executable program
Application: Basis
Package: SECU
Logical database:
See the correction instructions for the source code.
if your question is answered , mark it answered and award the points ..
Regards
dEE

Similar Messages

  • No result /report when weu00B4re running a risk analysis in background

    Dear forum,
    We are running several risk analysis in background (from configuration tab) and we cannot see any result
    in the column called "result". However, when we run a offline analysis (from informer tab) we can see that the column "result" is containing a file.
    Hope you can help us.
    Thanks in advance.

    Running risk analysis in background from the configuration tab does not produce a report by design.  This background job is really just performing a system maintenence activity and is not intended for report generation.  This background job preps data for performing offline analysis as well as the underlying data that supports the management reports in the informer tab (among other things).  Generally, anything in the configuration tab is system maintenance related.
    It sounds like you're attempting to perform typical analysis of end user access, not system maintenance activities.  The informer tab is what you need to be using to perform the analysis.
    Within the informer tab, whether you choose to perform online analysis or offline analysis, a report result is always generated.  In my experience, there has not been a compelling reason to use offline analysis capabilities within the informer tab.  Online analysis (real-time analysis of the SAP system rather than the offline data from the last configuration tab background risk analysis) is naturally always current, which is a plus.

  • Schedule measurement in SE30 - running a report in the background

    Dear experts,
    I have a long running ABAP report and I will need to analyze its runtime for performance improvements.
    How may I correctly run this ABAP report in the background from SE30 (runtime analysis tool)? The report has to be run using a specific variant for its selection screen inputs as well.
    This is what I have done:
    1. Go to SE30
    2. Click on "For User/Service" button under "Schedule"
    3. Create new Schedule Measurement with the following details:-
      - User (<my user name>),
      - Client (<properly specified>),
      - External Session (Any),
      - Processing Category (Background Processing),
      - Object Type (Report),
      - Object Name (<ABAP report program name>),
      - Max. No. of Scheduled Measurements (1),
      - Expiration Date & Time (<properly specified>)
    5. In the screen "Overview of Scheduled Measurements", I have the following displayed as well:-
      - Scheduled = 1
      - Started = 0
      - Errors = 0
      - Status = Being processed
    Am I still on the right track here? (Started = 0 and there was no way I could specify the variant for the selection screen input values too)
    Please help. Appreciate any inputs at all.
    Thanks.

    Hi,
    you can try it with ST12 and the <ALL Servers> Option for tasktype B.
    see this blog:
    /people/hermann.gahm/blog/2010/03/22/st12-150-tracing-user-requests-tasks-http
    ST12 uses SE30 / ST05 behind the covers. But here you can switch on
    the trace for all servers and therefore don't have to take care for that yourself.
    Kind regards,
    Hermann

  • Difference between G/L Balance and Inventory Audit Report

    Hi All,
            while checking the G/L ledger for Inventory account and the Inventory Audit report, there is a difference between the amounts posted. The closing balance till 31/03/09 is fine but afterwards the balance is not matchin at all. I hav tried to check between various posting dates but still there are differences. Any suggestions why there are differences and how should i check them??
    Thanks in advance,
    Joseph

    The GL account and the Inventory audit report will not tie for a couple of reasons:
    - You have posted directly (JE) to your Inventory account.  These amount since they are NOT tied to a Item in a transaction will not appear in the Inventory audit report.  The Inventory account(s) should be treated like a control account (enthough they
    cannot be set as one in SAP B1) and should not be posted to directly outside of the Item Inventory Transaction (GRPO, AP Inv, AR INV, DN, AR CM, AP CM, etc...) I have alos seen these posting when GL determinations are setup incorretly or when users use the inventory account in Stock Posting (staock taking) transactions
    - you have legacy issues resulting in audit report entries relating back to pre SP01 2005 days.
    To get these details analyzed by SAP for free along with the recomended corrections please contact your partner for a free Inventory Verification analysis   Your partner can take a copy of your DB backup and create a support message under SBO-MM-IVC and SAP support will analyse these differenes and show you the recommended changes.
    hope this helps

  • Inventory Audit Report with Batch Number

    Hi all.
    I am trying to build a query that similar to the inventory audit report but with batch number. I want to know which batch number of each item is being charged out in deliveries or goods issue and which batch of item is being received. I am using SAP B1 2007A. Following is the query that I used to generate the inventory report (warehouse, itemcode, description, price, opening balance, receipt, issue, closing)  but I don't know where to get the batch number information for it.
    Declare @StrtDate Datetime
    Declare @EDate Datetime
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Group nvarchar(10)
    Declare @Whse nvarchar(10)
    Set @FromDate = (Select min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >= @StrtDate)
    Set @ToDate = (Select max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <= @EDate)
    Set @Whse = (Select Max(s3.Warehouse) from dbo.OINM S3 Where S3.Warehouse = 'QA01')
    Select
    @Whse as 'Warehouse',
    a.Itemcode,
    max(a.Dscription) as 'Description',MAX(a.Price) as 'Price',
    sum(a.OpeningBalance) as 'OpeningBalance',
    sum(a.[IN]) as Receipt,
    sum(a.OUT) as Issue,
    (sum(a.OpeningBalance) + sum(a.[IN]) - Sum(a.OUT)) as Closing,
    MAX(a.Price) * (sum(a.OpeningBalance) + sum(a.[IN]) - Sum(a.OUT)) as ClosingValue
    from(
    Select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,N1.Price,
    (sum(N1.inqty)-sum(n1.outqty)) as 'OpeningBalance',
    0 as [IN],
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate < @FromDate and N1.Warehouse = @Whse and N1.ItemCode Between '1C2K50NBAC' AND '7S2N40ADAM'
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription,N1.Price
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,N1.price,
    0 as 'OpeningBalance',
    sum(N1.inqty) as [IN],
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <= @ToDate and
    N1.Inqty >0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription,N1.price
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,N1.price,
    0 as 'OpeningBalance',
    0 as [IN],
    sum(N1.outqty) as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and
    N1.OutQty > 0
    and N1.Warehouse = @Whse
    Group By N1.Warehouse,N1.ItemCode,N1.Dscription,N1.price) a, dbo.OITM I1
    where a.ItemCode=I1.ItemCode
    Group By a.Itemcode
    Order By a.Itemcode
    I wish to create the report like Inventory audit report merge with the batch number transactions report.
    Thanks.

    Dear Shobah, it can be possible by some custom report. Try some complementary bi solution for better analysis with SAPB1.

  • SAP User Audit Report

    Hi Expert,
    I want to download SAP user audit report through USMM.
    but whenever i run USMM and click on system measurement its goes on background job.
    I need this report in PDF format. plz help 

    Hi Kumar
    1.  Once you’re all system measurement are getting over collect those data in to one system.
           Refer the PPT 's which provided the steps
    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&cad=rja&uact=8&ved=0CC8QFjAD&url=https%3A%2F%2Fsupport.s…
    2 Transaction code  LAW perform a consolidation of user records and then send the information to SAP direct or email
    SAP Library - License Administration Workbench
    BR
    SS

  • Inventory Audit Report Issue

    Hi All,
             While checking the Inventory Item Report for an item X with the posting date from 01/04/09 to 31/05/09, the system is showing Quantity as "0", cumulative qty as "0" but the cumulative value as "14237.99". When i check the purchase analysis or the sales analysis for this item , it shows many transactions. My questions is, why is the system displaying cumulative qty as 0 and cumulative value as 14237.99 even when there are transactions in that period???
    Thanks in advance,
    Joseph

    Hi Joseph,
    Check the following thread its relates your issue
    SBO2005B - Zero Qty and Negative Stock Value in Stock Audit Report
    Inventory Audit Report - Zero quantity but with value
    Re: Is it reasonable the inventory is zero stock, but the value <0
    Difference between posting & system date in Inventory Audit Report
    *Close the thread if issue solved.
    Regards
    Jambulingam.P
    Edited by: Jambulingam P on Jul 15, 2009 9:31 AM

  • Inventory audit report and Inventory GL balance - Not matching

    Team
    I taken the report from Inventory audit report , this is not matching with inventory charts of accounts balance.
    What may be the error
    How to close old topics, how to provide the points for good suggestion. My points also not increased , what I need to do increase my points.
    Thanks
    Anantha Desai

    Hi,
    1. Please check if any manual JE posted to that GL account
    2. How to close old topics
    There are two way close discussions:
    ----> If you got right answer, you can choose "correct answer" option in replies.
    ----> If you get an idea or suggestions, you can choose "Helpful answers" and need to close manually by choosing "Assumed answered:.
    how to provide the points for good suggestion
    Please choose "helpful answer" and "Like" option for good suggestions
    My points also not increased , what I need to do increase my points.
    Points will be increased, if you provide right suggestions, ideas and answers to other member discussion.
    Refer this document for further details:
    http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why
    Thanks & Regards,
    Nagarajan

  • Inventory Audit Report - Not followed FIFO and Batch management

    I have created an Item say XYZ, with Batch management and valuation methode FIFO.
    Then I have created a batch say 1 with posting of opening balance transaction with posting date as 1st April 2009.
    Now when I post an A/R Invoice with posting date as 19th May 2009 in which I have selected above batch.
    I have also posted some more purchase transaction for same item before 19th May 2009 that is the date of sales invoice.
    Now when I see Inventory Audit Report, system has not picked up the cost column as per Batch selection in A/R Invoice, and also not as per FIFO, but it has followed the system date of transaction for deriving cost as per FIFO.
    Can anybody throw light on this ?
    BR
    Samir Gandhi

    Dear Samir Gandhi,
    Irrespective of posting date you use for document posting, with FIFO Method system will arrange all the inventory posting in layers with First inventory posting will form the base for first inventory movement out and so on
    Example:
    1st Entry:(Opening Balances)
    posting date : 01/04/09    Item : XYZ    quantity : 5   Unit cost price : 100
    2nd Entry: Purchase
    posting date : 01/05/09    Item : XYZ    quantity : 5   Unit cost price : 105
    3rd Entry: Purchase
    posting date :25/04/09    Item : XYZ    quantity : 5   Unit cost price : 90
    Layers created :
    1.    Item : XYZ    quantity : 5   Unit cost price : 100
    2.     Item : XYZ    quantity : 5   Unit cost price : 105
    3.     Item : XYZ    quantity : 5   Unit cost price : 90
    4th Entry : Sales
    Item : XYZ    quantity : 8  
    So here cost of goods sold will be : ( 5x100)+ ( 3x105) = 815
    and it wont be  ( 5x100)+ ( 3x90) =770 if that's what you are expecting
    Regards,
    Mukesh

  • Why do I get a status of 'waiting' when I run a report in the background

    Happy new Year Experts!!
    I am working with Ad-hoc query and I run reports in the background.  When I go to System > Own Spool Requests the status is always waiting.  When I go to SM37 the status is complete.  I can open the report from my own spools requests and it is completed.
    Thanks.
    Regards,
    Jeanette

    Go to SM36-> Own jobs - double click the job - Select Edit-Steps - DOuble click the step and check print specifications.
    Moreover, if you wanna make the job printed on finish, make sure that there is a default printer defined in SU3 - Defaults - Output device field.
    Regards,
    Dilek

  • Audit report to check who has accessed the dsahboard

    Hi All,
    We have a dashboard (Xcelsius swf file) published in infoview.
    This dashboard is used by end user community ,now we as administrator wanted to check who all are accessing this dashboard with date and time of usage.
    Is it possible to generate any such audit report based on u201CActivityu201D universe so that we can have information about dashboard usage.
    Thanks,
    Chandra

    Hi,
    Does audit database capture activity like opening/retrieving a file(regardless of file type) from server. I know its possible to determine who has opened a webi or crsytal report.
    Can I check same for dashboards?
    Will really appreciate any advice here.
    Thanks,
    Chandra

  • Transaction value in inventory Audit Report

    Hi,
    I have received some quantities say 100 without any price in the Goods receipt.But when i run the inventory Audit report it is showing some value in transaction value field.Where as when i check the item cost the item cost is 0 even then system is picking up transaction value
    What may be the problem.Due to this i am unable to reconcile the inventory transactions with the inventory G/L
    Please help
    Thank You
    Md.nazeer Shaikh

    Hi Nazeer,
    Check the following lthread
    Inventory Audit Report Issue in value
    Inventory Audit Report - Zero quantity but with value
    Inventory Audit report
    Regards
    Jambulingam.P

  • Inventory Audit Report and Inventory G/L Account discrepancy

    Good Day!
    Hi Everybody. I had experienced a discrepancy between the Inventory Audit Report and Inventory G/L Account.
    Before everything else, our client does not have any PO, GRPO. Only A/P Invoice and A/P Credit Memos so there are no difference being posted.
    There were also no transactions posted directly in Inventory G/L Account but from observation, there is a minor difference. This only happened with two transactions in AP Invoice with Negative Quantity.
    The AP Invoice is composed of a single item, the unit price is 180.00 x -58 pcs quantity. Total amount is -10,440.00.
    G/L Account posting is
    Inventory 10,440.00
    A/P                       10,440.00  
    In the FIFO layering, the item cost is 200.00 (based on the current stock value) and the current stock quantity before posting is 80 pcs . Since this is a negative quantity A/P Invoice, it seems that the cost of the item when the transaction will be posted is  200 (based on the current stock value) so when I view the Inventory Audit Report amount, it says the inventory cost/posting is -11,600 (200 x -58).
    But on actual G/L Account, the posting is -10,440.00 from A/P Invoice, that's why the inventory discrepancy occurs. It seems that SAP B1's Inventory Audit Report confuses the FIFO cost posted versus G/L Account's posted based on the document. Since the document is A/P Invoice, SAP B1 assumes that the transaction will post the amount as the additional inventory cost and posting the inventory cost into Inventory G/L Account. However, since this is a negative document, the system is releasing the items, thus, FIFO kicks in. The Inventory Audit Report catches the amount based on FIFO costing. The problem is that the Inventory Audit Report is more accurate than the Inventory G/L Balance.
    Any suggestion to fix this guys?

    HI,
    i'my afraid you're in the wrong place. This is the Chinese forum. Please go to SAP Business One Application for help.
    Best

  • Error message in inventory audit report

    Hi
    I'm trying to generate an Inventory Audit Report when this error appeared > "You have an insufficient resources to complete this action.Select fewer records and try again"..  I know that the report is too big coz it's from 2006-2010. Can some one give me a further explanaton about this error?Is it because the file is too big that sap 'system' can't generate this report (reach its limit) or the problem is within the 'server' of the sap still coz of a big file?
        Hope someone can help
         Thanks in advance
    Vissia

    Hi Vissia,
    The problem is your server's RAM. It will be too difficult to run 4 years audit report from any server. Even if you have 30G ram, it may not be enough.
    Try a smaller interval.
    Thanks,
    Gordon

  • File Screening Audit Report does not contain any data : report statistics is empty

    Hi ,
     I have enabled File screen audit and Record file screening activity in auditing database options in file server 2008. 
    I am getting details of file screen audit in Event log  , But incident report file screen audit report does not contain any value.
    Getting report for each incident of file screen audit  , But it does not contain any data in report statistics.
    Data available in scheduled report of file screen audit.. not available in incident report only..
    Please assist...
    Thanks,
    Vasanth.M
    Thanks, Vasanth.M.

    Please note that, If the Record file screening activity in the auditing database check box is cleared, the File Screening Audit Reports will not contain any information. To configure file screen audit, I would refer you on this informative
    technet library :
    https://technet.microsoft.com/en-us/library/cc754540.aspx
    Carlo

Maybe you are looking for

  • SP.ListOperation.Selection.getSelectedItems(context); is not working in IE

    Hi All, Below is my full code. I am using  list view web parts and not working in IE browser but Its working fine in Chrome. SP.ListOperation.Selection.getSelectedItems(context); - always returns null in IE but working fine with Chrome. <div> <tr> <t

  • Replace music

    I had to install a new hard drive and OS X 10.5 on my PowerBook. How do I reinstall my old music library? I have few things in my new library that I would like to save. So I need to merge my old library and new one. Suggestions please.

  • XSL transformation in OSB

    Hi all, I am new to OSB. I am having trouble to understand how to do XSL transformation in OSB. I have created a business service which targets wsdl with a particular schema for the input message. I have created a separate wsdl for the proxy service

  • I am making a site layout in photoshop. In my header I have a few curved lines. I have never coded

    coded curved lines in dreamweaver. How do I do that?

  • While doing backups, found a strange file ?

    While doing one of my daily backups, I ran into a strange file. Not quite sure what it is for, but I have never seen it there before ? I googled without any luck :                ( 1 )      ziFAr2Kf                ( 2 )      .buildpathUX Any ideas ?