Rogue Account Report

Hello Guys.
I have some doubts, in respect of Rogue Accounts Report, What the best way to solve users that can be showed at this report?
Thanks in Advance for any help.
Daniel.

uhnnn interesting, I know these ways, but One thing that I do not know yet, by example...
I ran the Rogue Account Report, and this report showed me X, Y users, to solve that user, I made a attestation, but the user had been showed again when I ran the Report, Is there other way to solve this problem?
Thanks.
Edited by: user10365508 on Aug 15, 2012 10:06 AM

Similar Messages

  • Business Content or Information for GR/IR Account Report

    Hi All,
    I have an R3 report called GR/IR Account Report by PO Mismatch.
    Is there any business content available for this in BI.
    The below tables are using in the report.
             bsis,                         " Accounting docs by account
             bsas,                         " Cleared accounting docs by acc
             bseg,                         " Accounting doc line item
             ekko,                         " Purchase Order Header,
             ekpo,
             mkpf,                         " Material Document
             lfa1,                         " Vendor details
             ekbe,                         " PO History
             ekkn,                         " PO Acct.Assgnment
             usr21,
             addr3_val,
             ad3_flags,
             stxh.
    Could you please provide me your inputs on this
    Regards
    Srini

    The new additional fields need to be populated are
              ZZAUFNR         Order Number                                  *
              ZZBEDAT         Purchase Order Date                           *
              ZZCRE_FI         FI Doc Created By                             *
              ZZCRE_PO         PO Doc Created By                             *
              ZZEBELN         Purchasing Document Number                    *
              ZZEBELP         Item Number of Purchasing Document            *
              ZZKOSTL         Cost Center                                   *
              ZZMWSKZ         Tax on sales/purchases code                   *
              ZZPROJK      WBS element                                   *
              ZZTXZ01         Short text                                    *
              ZZUSNAM         User name                                     *
              ZZXBLNR         Reference document number                     *
              ZZHWSTE      Tax Amount in Local Currency                 *
              ZZSGTXT      Item Text                                    *
              ZZHKONT      Finance G/L Account                          *
      when '0FI_AP_4'.
    Declare the local data fields to store data temporarily
        data : l_dtfiap_3 like DTFIAP_3,
               mwskz like bsik-mwskz,
               l_ernam like   bapibname-bapibname,
               l_address like bapiaddr3,
               l_bseg  like bseg,
               l_bedat like ekko-bedat,
               l_ps_psp_pnr like prps-pspnr.
        data : gt_return type bapiret2 occurs 0 with header line.
        loop at c_t_data into l_dtfiap_3.
          l_tabix = sy-tabix.
    *Select the tax Code for the particular record from BSAK TABLE
          select single mwskz sgtxt into (l_dtfiap_3-zzmwskz,
                                          l_dtfiap_3-zzsgtxt)
                from bsak
                where bukrs = l_dtfiap_3-bukrs
                  and buzei = l_dtfiap_3-buzei
                  and belnr = l_dtfiap_3-belnr
                  and lifnr = l_dtfiap_3-lifnr
                  and gjahr = l_dtfiap_3-gjahr
                  and zuonr = l_dtfiap_3-zuonr
                  and augbl = l_dtfiap_3-augbl
                and augdt = l_dtfiap_3-augdt
                and bldat = l_dtfiap_3-bldat
                and blart = l_dtfiap_3-blart
                and bschl = l_dtfiap_3-bschl
                and budat = l_dtfiap_3-budat.
          if sy-subrc = 0.
            modify c_t_data from l_dtfiap_3 index l_tabix.
          else.
    *If corresponding Document Number is not present in BSAK check BSIK
    *TABLE
            select single mwskz sgtxt into (l_dtfiap_3-zzmwskz,
                                            l_dtfiap_3-zzsgtxt)
                    from bsik
                    where bukrs = l_dtfiap_3-bukrs
                      and buzei = l_dtfiap_3-buzei
                      and belnr = l_dtfiap_3-belnr
                      and lifnr = l_dtfiap_3-lifnr
                      and gjahr = l_dtfiap_3-gjahr
                      and zuonr = l_dtfiap_3-zuonr
                      and augbl = l_dtfiap_3-augbl
                    and augdt = l_dtfiap_3-augdt
                    and bldat = l_dtfiap_3-bldat
                    and blart = l_dtfiap_3-blart
                    and bschl = l_dtfiap_3-bschl
                    and budat = l_dtfiap_3-budat.
            if sy-subrc = 0.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
          endif.
          select single hwste into l_dtfiap_3-zzhwste
              from bset
              where bukrs eq l_dtfiap_3-bukrs
                and belnr eq l_dtfiap_3-belnr
                and gjahr eq l_dtfiap_3-gjahr
                and buzei eq l_dtfiap_3-buzei.
    Select Created By and invoice Reference Number from BKPF table
          select single usnam xblnr from bkpf
              into (l_dtfiap_3-zzusnam,l_dtfiap_3-zzxblnr)
                where bukrs = l_dtfiap_3-bukrs
                  and belnr = l_dtfiap_3-belnr
                  and gjahr = l_dtfiap_3-gjahr.
          if sy-subrc = 0.
            modify c_t_data from l_dtfiap_3 index l_tabix.
          endif.
          move l_dtfiap_3-zzusnam to l_ernam.
          refresh : gt_return.
    Get the Fi doc Created By doing the function Module call
          call function 'BAPI_USER_GET_DETAIL'
            EXPORTING
              username = l_ernam
            IMPORTING
              address  = l_address
            TABLES
              return   = gt_return.
          move l_address-fullname to l_dtfiap_3-zzcre_fi.
          if l_dtfiap_3-zzcre_fi is initial.
            move l_ernam to l_dtfiap_3-zzcre_fi.
          endif.
          if not l_dtfiap_3-zzcre_fi is initial.
            modify c_t_data from l_dtfiap_3 index l_tabix.
          endif.
          if l_dtfiap_3-blart eq 'RE'.
    .....Get New Fields from PO linked to FI Document.....................
    Select PO Number from PO Line item from BSEG TABLE
            select buzei buzid ebeln ebelp
              into corresponding fields of l_bseg
              from bseg
             where bukrs eq l_dtfiap_3-bukrs
               and belnr eq l_dtfiap_3-belnr
               and gjahr eq l_dtfiap_3-gjahr.
              if l_bseg-buzei eq l_dtfiap_3-buzei.
    .....Already read this line, therefore ignore it......................
                continue.
              endif.
              if l_bseg-buzid eq 'T'.
    .....Don't read automatically created lines - Tax Line................
                continue.
              endif.
              if not ( l_bseg-ebeln is initial ).
                move l_bseg-ebeln to l_dtfiap_3-zzebeln.   " PO Number
              endif.
              if not ( l_bseg-ebelp is initial ).
                move l_bseg-ebelp to l_dtfiap_3-zzebelp.   " PO Line Item No
              endif.
              if not l_dtfiap_3-zzebelp is initial.
                modify c_t_data from l_dtfiap_3 index l_tabix.
              endif.
            endselect.
    .....Got PO Number from FI Document, Now get PO Details...............
    .....Get Short Text...................................................
    GET PO Line Item text
            select single txz01 into l_dtfiap_3-zztxz01
              from ekpo
               where ebeln eq l_dtfiap_3-zzebeln
                 and ebelp eq l_dtfiap_3-zzebelp.
            if sy-subrc = 0.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
    .....Get Account Assignment...........................................
            select ps_psp_pnr aufnr kostl sakto
              into (l_ps_psp_pnr,l_dtfiap_3-zzaufnr,
                      l_dtfiap_3-zzkostl,l_dtfiap_3-zzhkont)
                  from ekkn
                   where ebeln eq l_dtfiap_3-zzebeln
                     and ebelp eq l_dtfiap_3-zzebelp.
              if sy-subrc = 0.
                modify c_t_data from l_dtfiap_3 index l_tabix.
              endif.
              select single posid into l_dtfiap_3-zzprojk
                   from prps
                     where pspnr = l_ps_psp_pnr.
              if sy-subrc = 0.
                modify c_t_data from l_dtfiap_3 index l_tabix.
              endif.
            endselect.
    .....Get Name of Person who created PO................................
            clear : l_ernam,l_bedat.
            select ernam bedat into (l_ernam, l_bedat)
                up to 1 rows
                from ekko
                 where ebeln eq l_dtfiap_3-zzebeln.
            endselect.
            move l_bedat to l_dtfiap_3-zzbedat.
            if not l_dtfiap_3-zzbedat is initial.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
            refresh : gt_return.
            call function 'BAPI_USER_GET_DETAIL'
              EXPORTING
                username = l_ernam
              IMPORTING
                address  = l_address
              TABLES
                return   = gt_return.
            move l_address-fullname to l_dtfiap_3-zzcre_po.
            if l_dtfiap_3-zzcre_po is initial.
              move l_ernam to l_dtfiap_3-zzcre_po.
            endif.
            if not l_dtfiap_3-zzcre_po is initial.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
          else.
    .....Get new Fields from FI Document..................................
            select buzei buzid ebeln ebelp projk aufnr kostl hkont
              into corresponding fields of l_bseg
              from bseg
             where bukrs eq l_dtfiap_3-bukrs
               and belnr eq l_dtfiap_3-belnr
               and gjahr eq l_dtfiap_3-gjahr.
              if l_bseg-buzei eq l_dtfiap_3-buzei.
    .....Already read this line, therefore ignore it......................
                continue.
              endif.
              if l_bseg-buzid eq 'T'.
    .....Don't read automatically created lines - Tax Line................
                continue.
              endif.
              if not ( l_bseg-ebeln is initial ).
                move l_bseg-ebeln to l_dtfiap_3-zzebeln. " PO Number
              endif.
              if not ( l_bseg-ebelp is initial ).
                move l_bseg-ebelp to l_dtfiap_3-zzebelp. " PO Line Item
              endif.
              move l_bseg-aufnr to l_dtfiap_3-zzaufnr.   " Order Number
              move l_bseg-kostl to l_dtfiap_3-zzkostl.   " Cost Centre
              move l_bseg-hkont to l_dtfiap_3-zzhkont.   " GL Account
              select single posid into l_dtfiap_3-zzprojk
                  from prps
                    where pspnr = l_bseg-projk.
              if not l_dtfiap_3-zzprojk is initial
                or not l_dtfiap_3-zzaufnr is initial
                or not l_dtfiap_3-zzkostl is initial
                or not l_dtfiap_3-zzhkont is initial.
                modify c_t_data from l_dtfiap_3 index l_tabix.
              endif.
            endselect.
    .....Get PO Short Text................................................
            select single txz01 into l_dtfiap_3-zztxz01
              from ekpo
               where ebeln eq l_dtfiap_3-zzebeln
               and ebelp eq l_dtfiap_3-zzebelp.
            if sy-subrc = 0.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
    .....Get Name of Person who created PO................................
            clear : l_ernam,l_bedat.
            select ernam bedat into (l_ernam, l_bedat)
                   up to 1 rows
                   from ekko
                   where ebeln eq l_dtfiap_3-zzebeln.
            endselect.
            move l_bedat to l_dtfiap_3-zzbedat.
            if not l_dtfiap_3-zzbedat is initial.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
            refresh : gt_return.
    Get PO Doc Created By
            call function 'BAPI_USER_GET_DETAIL'
              EXPORTING
                username = l_ernam
              IMPORTING
                address  = l_address
              TABLES
                return   = gt_return.
            move l_address-fullname to l_dtfiap_3-zzcre_po.
            if l_dtfiap_3-zzcre_po is initial.
              move l_ernam to l_dtfiap_3-zzcre_po.
            endif.
            if not l_dtfiap_3-zzcre_po is initial.
              modify c_t_data from l_dtfiap_3 index l_tabix.
            endif.
          endif.
        endloop.
    Edited by: Srinivas Gogineni on Apr 19, 2009 11:10 AM

  • Cisco Prime Rogue AP Report - No Rogues from 3702 Series AP's

    I am running Cisco Prime Infrastructure (2.1) that manages a Cisco 5508 WLC (7.6). We have multiple version of AP's managed by this WLC to include 1142, 2602, 3702, etc...In Cisco prime when we run a Rogue AP Report. None of the Rogue AP's discovered by 3702's are displayed in the report. The Rogues show on the WLC though from all AP's. Cannot find a reason for this. Any ideas?

    The Rogue alarm state always stays on "removed" once deleted
    CSCuo91446
    Description
    Symptom:
    Once one of the alarm of rogue AP is deleted the newer rogue AP alarm changed to removed state even for different mac address.
    Because of the removed state the detecting AP which detected the rogue is not displayed
    Conditions:
    1) Auto SPT is turned on
    2) Prime 2.0 or 2.1
    Workaround:
    Click on refresh from network for each alarm in removed state or disable auto spt
    Last Modified:
    Jun 30,2014
    Status:
    Fixed
    Severity:
    3 Moderate
    Product:
    Cisco Prime Network Control System Series Appliances
    Known Affected Releases:
    (1)
    2.1(0.0.1)

  • Profit Center Accounting Reports - New GL

    I've done the configuration and setup for the Profit Center accounting reports (new GL) in ecc 6 and I'm having an outstanding issue.
    If I attempt to run the reports via their transaction code, ie S_E38_98000088 I have no problems. Access/authorization is fine and the desired result is achieved. If I navigate the SAP Easy Menu to Accounting -> Financial Accounting -> General Ledger -> Information System -> General Ledger Reports (New) I don't see the "Reports for Profit Center Accounting folder.
    If I go to se43 and look at the S000 areamenu, the path is there. I've tried with a user account that has wide open access to everything and I still don't see it. Is there any configuration that needs to be done to get this menu path to display to the end user?
    Any help/suggestions are greatly welcomed.
    Regards,
    Elder

    I think this comes with Enterprise Business Function FIN_GL_CI_1, t-code SFW5. Read the documentation in SFW5, those Reports are there.
    Good luck.

  • Adding a filed to Aging - 7 Buckets  - By Account Report

    Hi,
    I have a requirement to add a filed to standard Adding a filed to Aging - 7 Buckets - By Account Report.
    I am fetching the new filed value in a formulae column,This column value i want to add to the layout to dispay that values on the report.
    Is there any trick to identify from which layout the output is being dispalyed on the output file.
    I am running the report with parameters
    1 Operating Unit
    2 SOB name
    3 Currency
    4 Bucket Name
    5 risk option "Age"
    I am getting the
    the output format is
    Accouting Flexfield: 61.000.000.111100.0000.0000.0000
    Customer# Customer Name Outstanding Amount
    1-53YHQ1 XXXXCUSTOMER NAME 23,255.82
    AANA-GYNWC YYYYYCUSTOMER NAME 206,072.97
    Now i want to add one filed after Customer # .
    Could anyone please give some suggestion from which group/layout the above output is coming.
    If so i will try to add the field to that group and i will try to display the values.
    Thanks,
    Malla
    Edited by: user4254752 on May 18, 2009 11:43 AM
    Edited by: user4254752 on May 18, 2009 11:43 AM
    Edited by: user4254752 on May 18, 2009 11:44 AM

    You are going to have to do this as a custom report. This is not one of those report exchange reports where you can change the format of the report on the fly.
    John Dickey

  • Aging - 7 Buckets - By Account Report

    Hi All,
    I need sql script to get the same output of Oracle Standard Report 'Aging - 7 Buckets - By Account Report' as i am gone through the data model but the query is written in Dynamically and using Dual table.
    Can anyone tell me how to write the sql script for this Oracle standard report.
    Regards,
    Sushant

    Hi,
    Oracle Standard Report 'Aging - 7 Buckets Report' giving output of Customer Name and Customer Number with Outstanding Amount of aging between 7 bucket(0-30 days, 31-45 days, 46-60 days, 61-90 days, 91-120 days, 121-150 days, 151-99999 days)
    As i an able to get the aging colum by below query.
    select a.*, b.*
    from AR_AGING_BUCKETS a,
    AR_AGING_BUCKET_LINES b
    where a.aging_bucket_id=b.AGING_BUCKET_ID
    and a.AGING_BUCKET_ID=1003
    but how to relate the customer name ,customer no (RA_CUSTOMER table) and outstanding amount with this aging bucket table.
    so i need to develop a report customer wise aging 7 bucket and their outstanding amount.
    Please give me idea how to proceed .
    if you need more information please update the forums.
    Regards,
    Sushant
    Edited by: user605933 on Jun 11, 2009 9:17 AM

  • OIM Custom reports - Un-Identified Accounts Report

    HI,
    I am working on *OIM custom reports . I was trying to get custom Un-Identified Accounts Report.
    Is there an example for the query Unidentified Account Report?
    I make query from oim10g is not working, especially table RCD, RCM.
    What is table name in oim 11g that subtitute RCD & RCM table?
    Thanks,
    Sapril.

    Hi
    Refer the following link for enabling the reports:
    http://docs.oracle.com/cd/E14571_01/doc.1111/e14308/system_props.htm#OMADM884
    Searhc for 'Enable exception reports'
    Sample query:
    Note taht OIM OOTB reports already contains a report for Orphaned account. You can check that too.
    SELECT * FROM recon_exceptions HERE usr_key IS NULL
    you should modify this query and join tables to add more fields.
    Regards
    user12841694

  • Ageing 7 Buckets - By Account Report - Unapplied Receipts Register

    Hi Guys,
    I am not a disco professional, just wanted to know if i want the following reports (Ageing 7 Buckets - By Account Report - Unapplied Receipts Register) to run from disco how do i achive this ?
    Thanks
    Bal

    Hi Bal
    Does the report exist? If so you need to share it with a user that you have access to then log in as that user and run it.
    If the report does not exist you will need to create it.
    If you're asking whether Discoverer can create an aging report with buckets the answer is yes and the trick is to master the CASE statement. This might help:
    CASE WHEN days_late < 8 THEN 'Within 1 week'
    WHEN days_late < 15 THEN 'More than 1 but less than 2 weeks'
    WHEN days_late < 22 THEN 'More than 2 but less than 3 weeks'
    .... and do on until .....
    WHEN days_late < 91 THEN 'some suitable bucket'
    ELSE 'More than 90 days'
    END
    As you create the CASE statement the set of values remaining is decreased by that statement just processed. So for example if you start out by looking for anything less than 8 then once those have been determined there will be no more values in the set. Thus next we look for anything less than 15, and so on.
    If you want to work the other way, from the top down you need to use the greater than symbol like this:
    CASE WHEN days_late > 89 THEN 'More than 90 days'
    WHEN days_late > 59 THEN 'More than 60 days'
    .... and do on until .....
    WHEN days_late > 7 THEN 'More than 7 days'
    ELSE 'Within 1 week'
    END
    Best wishes
    Michael

  • Country chart of account report

    hi sap guru's
    what is country chart of account . how to configured the country chart of accounts reports. could u pls anybody explain with the senario. explain the configured steps to country chart of accounts
    regards
    shiva

    Hi,
    you can set 2 COA for one company code. In SPRO Global Parameters for Company Code\ Enter Global Parameters you can set a Chart of Accts and a Country chart/accts. By using the Alternative account number, the connection between the account in the chart of accounts and the account in the country chart of accounts can be set up.
    You set the link between these two COAs at GL account level populating the field "Alternative Account": you need to establish an alternative account of the country COA for the GL Accounts of the COA that you need to map.
    There are several GL reports that can be shown by alternative accounts, mainly P&L, Balance Sheet...
    Please follow these steps:
    1- set Group Chart of Accounts as a COA of the company code. Find the customizing point in my post above.
    2- set Country Chart of Account as a "country COA" at Company Code level. Same customizing point than before. You can use the standard that SAP provides (CAES in case of Spain for example or you can create a new one)
    3- For each GL account you'll need to map at GL Account level in the field "Alternative Account" the corresponding country account.(trx FS00)
    You need to now that users will work everyday in the group COA not in the country specific one, country COA is only for statutory reporting (P&G, Balance Sheet...). They will not have operating reports in country COA and operations will be only in group COA.
    If you want to have all posting valuated not only un EUR but also in USD in case of USA, you will need to set several currencies at company code level also.
    Regards

  • GL account report

    Hi,
             I have to build a debit credit wise GL account report. Can anyone help me to determine what all  tables would be associated.
    Regards,
    G. Shankar

    Hi Shankar,
    General ledger accounts
    SKA1 G/L accounts master (chart of accounts)
    SKAS G/L account master (chart of accounts: key word list)
    SKAT G/L account master record (chart of accounts: description)
    SKB1 G/L account master (company code)
    SKM1 Sample G/L accounts
    SKMT Sample account names
    BKPF Accounting document header
    BSEG Accounting document segment
    BSET Tax data document segment
    BSEC One-time account data document segment
    BSAD Accounting: Secondary index for customers (cleared items)
    BSID Accounting: Secondary index for customers
    BSIW Index table for customer bills of exchange used
    BSIX Index table for customer bills of exchange used
    BSAK Accounting: Secondary index for vendors (cleared items)
    BSIK Accounting: Secondary index for vendors
    BSIP Index for vendor validation of double documents
    BSAS Accounting: Secondary index for G/L accounts (cleared items)
    Thanks,
    Nelson

  • Does OIM Provides Orphan Accounts report generation Out of the Box ???

    Hi All ,
    Does OIM Provides Orphan Accounts report generation Out of the Box ???

    Nopes, OIM Doesn't.
    Custom Report
    Re: How to generate a report on 'Event Received' events for a resource objects
    http://download.oracle.com/docs/cd/B32386_01/generic.902/b32137/reporting.htm

  • Gl Accounts Report - fields

    Hi all ! In my Gl Accounts Report, I want to add Cenvat, Frieght & Excise No. fields.
    And I have P.O. no. & Document No.(Belnr) fields to use for this purpose.
    Please suggest.

    I don't get it:
    what report (custom or standard) ?
    you'll find all infos in logical database SDF (about tax in table BSET)
    A.

  • No Start Records in Radius Accounting reports

    I do not see any start records in Radius Accounting reports but do see only Stop records ? any ideas as to why  this is happening
    btw I am running ACS 5.2

    Hi Vikram,
    Which device is this ?
    Can you share aaa configs of the device,
    Is it happening to all devices .
    Can we get debug aaa accounting from that device?
    Thanks
    Waris Hussain

  • Gateway Accounting Reports

    Hello All,
    I was looking at the Documentation for setting up GWMon to create Gateway Accounting Reports. It stays I need to create a external domain to collect the accounting/performance data. I have a single GW domain now.
    Do I have to install another MTA to do this?

    RJLayton wrote:
    > I created an external domain. It is pointing to the same location and my
    > primary domain (wphost.db). Should it be doing this? Or should it have
    > its own directory?
    Well, as an external domain, it should have a different location, but it's
    really just a "fake" location of course.
    Danita
    Novell Knowledge Partner
    Moving GroupWise to Linux?
    http://www.caledonia.net/gwmove.html

  • Asset Accounting Reports - Can they be run for any selection of dates

    Folks,
    I have a query - in Asset Accounting, can I run any of the reports (for current fiscal year and closed fiscal years) for any selection of start and end dates? so for example, if I want to run the Asset history sheet for fiscal 2007 (which has been closed in my books), can I run this report for say the month of July 2007 (July 1-31, 2007)?
    I was under the impression that asset reports for closed fiscal years could be run for the entire year ONLY!
    An early response would be appreciated.
    Thx,
    Sameer Aroskar

    Hi Sameer
    I think I did answer this in other forum but anyway here you go again !
    Select Transaction OARP >> Depreciation Lists >> RAGAFA01(Posted Depreciation) - Select this and Execute.
    Select the require company codes and necessary parameters then under Settings select the Depreciation Posting Period e.g. 4 for the required Report date which can be last day of the month from the required previous years. eg 30.04.2007 etc.
    Cheers !
    SA
    PS: award points if you find the answer useful.

Maybe you are looking for

  • When I try to either download Adobe Reader or remove 8.2.5 from my computer I get this message. Help

    Windows Installer. The feature you are trying to use is on a network resource that is unavailable. Clock OK to try again, or enter an alternate path to a folder containing the installation packege 'AdbeRdr820_en_US.msi' in the box below. I can't find

  • Version A of ODS object 0FIAP_O03 does not exist

    I am installing this ODS and when i hit simulate , I am getting this message and only the cube is getting installed and nothing else. Version A of ODS object 0FIAP_O03 does not exist Thanks

  • Rollover scrolling menu - no buttons

    So below is my code for a project I'm working on. I'm having some trouble though. I got the code for the scrolling menus online from another forum, but I can't figure out where that was. In any case, the current version of the code allows for the scr

  • Error wtith starting the database

    HI ALL I'm using oracle db 10g , i turned on database flashback then the database shutdown implicitly , next time i started the database i got the error ora-01033 . i checked the alert.log file & i found this lines : alter database open ORA-38760 sig

  • The enhancement object ENHS  cannot be read

    Hi Genius, When i am trying to create an enhancemant point in ECC 6.0, I am getting the below error message. The enhancement object ENHS  cannot be read. Exception of class CX_ENH_IO_ERROR. Source plug-in is not getting created. Anyone can help in th