Is there any table/view of errors?

Dear Experts,
Is there any table/view in Oracle database where all the database errors can be viewed? Errors like ORA-00942, .....
I am on Oracle 10gR2.
Thanks for taking your precious time in answering my question.
Regards

If you are on Unix or Linux go to your $ORACLE_HOME/rdbms/mesg and view the file oraus.msg
This file lists all of the error messages together with the Cause and Action, if they exist - kinda like the Error Messages document.
Oracle makes reading this file easy with the oerr shell script.
For example:
oerr ora 54
00054, 00000, "resource busy and acquire with NOWAIT specified"
// *Cause:  Resource interested is busy.
// *Action: Retry if necessary.I don't know why this file is not in the Windows distribution....

Similar Messages

  • SWI5 transaction - is there a table view ?

    Hi
    I am trying to pull a report of outstanding approval inbox items (TS1230097 - for leave requests) that I see when I go to tcode SWI5 for managers. If I run a report it does not give me the manager id in it which I need.
    Is there a table view for SWI5 information possibly or can anyone suggest another transaction that can be used to see the current manager associated with outstanding leave request items (when I use various SWI* or PTARQ reports they do not show me the current manager in situations in which leave request items have been forwarded to new managers and so are unreliable. I'm just wondering if there's any other report/transaction I can use therefore.
    Thanks for your help
    Nicola

    Hi,
    Nicola paste this code in se38 and execute it.
    TYPE-POOLS : slis.
    TABLES : swwuserwi,swwwihead,bseg,bkpf.
      TYPE DECLARATION   *************************************
    TYPES : BEGIN OF TY_SWWUSERWI,
            USER_ID      TYPE SWWUSERWI-USER_ID,
            WI_ID        TYPE SWWUSERWI-WI_ID,
            TASK_OBJ     TYPE SWWUSERWI-TASK_OBJ,
            END OF TY_SWWUSERWI.
    TYPES : BEGIN OF TY_SWWWIHEAD,
            WI_ID        TYPE SWWWIHEAD-WI_ID,
            WI_LANG      TYPE SWWWIHEAD-WI_LANG,
            WI_TEXT      TYPE SWWWIHEAD-WI_TEXT,
            WI_RHTEXT    TYPE SWWWIHEAD-WI_RHTEXT,
            WI_STAT      TYPE SWWWIHEAD-WI_STAT,
           WI_CD        TYPE SWWWIHEAD-WI_CD,
           WI_CT        TYPE SWWWIHEAD-WI_CT,
            END OF TY_SWWWIHEAD.
    TYPES : BEGIN OF TY_TEMP,
            BUKRS TYPE BUKRS,
            BELNR TYPE BELNR_D,
            GJAHR TYPE GJAHR,
            END OF TY_TEMP.
    TYPES : BEGIN OF TY_BSEG,
            BUKRS TYPE BSEG-BUKRS,
            BELNR TYPE BSEG-BELNR,
            GJAHR TYPE BSEG-GJAHR,
            WRBTR TYPE BSEG-WRBTR,
            LIFNR TYPE BSEG-LIFNR,
            ZUONR TYPE CHAR10,
            END OF TY_BSEG.
    TYPES : BEGIN OF TY_CEPC,
            PRCTR TYPE CEPC-PRCTR,
            ABTEI TYPE CEPC-ABTEI,
            END OF TY_CEPC.
    TYPES : BEGIN OF TY_BKPF,
            BUKRS TYPE BKPF-BUKRS,
            BELNR TYPE BKPF-BELNR,
            GJAHR TYPE BKPF-GJAHR,
            BLDAT TYPE BKPF-BLDAT,
            BUDAT TYPE BKPF-BUDAT,
            XBLNR TYPE BKPF-XBLNR,
            END OF TY_BKPF.
    TYPES : BEGIN OF TY_LFA1,
            LIFNR TYPE LFA1-LIFNR,
            NAME1 TYPE LFA1-NAME1,
            END OF TY_LFA1.
    TYPES : BEGIN OF TY_FINAL,
            USER_ID     TYPE SWWUSERWI-USER_ID,
            WI_ID        TYPE SWWUSERWI-WI_ID,
            BUKRS       TYPE BSEG-BUKRS,
           WI_TEXT     TYPE SWWWIHEAD-WI_TEXT,
            WRBTR       TYPE BSEG-WRBTR,
            BELNR       TYPE BELNR_D,
            LIFNR       TYPE LFA1-LIFNR,
            NAME1       TYPE LFA1-NAME1,
            BLDAT       TYPE BKPF-BLDAT,
            XBLNR       TYPE BKPF-XBLNR,
            GJAHR       TYPE GJAHR,
            ABTEI       TYPE CEPC-ABTEI,
            BUDAT       TYPE BKPF-BUDAT,
            END OF TY_FINAL.
      DATA TYPE DECLARATION   *************************************
    DATA : it_swwuserwi TYPE STANDARD TABLE OF ty_swwuserwi,
           it_swwwihead TYPE STANDARD TABLE OF ty_swwwihead,
           it_final TYPE STANDARD TABLE OF ty_final,
           it_temp TYPE STANDARD TABLE OF ty_temp,
           it_bseg TYPE STANDARD TABLE OF ty_bseg,
           it_cepc TYPE STANDARD TABLE OF ty_cepc,
           it_bkpf TYPE STANDARD TABLE OF ty_bkpf,
           it_lfa1 TYPE STANDARD TABLE OF ty_lfa1,
           wa_swwuserwi TYPE ty_swwuserwi,
           wa_swwwihead TYPE ty_swwwihead,
           wa_final TYPE ty_final,
           wa_bseg TYPE ty_bseg,
           wa_cepc TYPE ty_cepc,
           wa_bkpf TYPE ty_bkpf,
           wa_lfa1 TYPE ty_lfa1,
           wa_temp TYPE ty_temp.
    DATA: wa_sort TYPE LINE OF slis_t_sortinfo_alv,
          it_sort TYPE slis_t_sortinfo_alv.
    DATA: it_field_cat TYPE slis_t_fieldcat_alv,
          ws_sort TYPE slis_t_sortinfo_alv,
          g_variant TYPE disvariant,
          ws_layout TYPE slis_layout_alv."slis_t_fieldcat_alv.
    DATA: IT_EVT_TAB         TYPE SLIS_T_EVENT,
          IS_LS_EVENT        TYPE SLIS_ALV_EVENT.
    DATA: C_TOP            TYPE SLIS_FORMNAME          VALUE 'TOP_OF_PAGE',
          IS_EVT             TYPE SLIS_ALV_EVENT     .
    DATA: REC_LAYOUT         TYPE SLIS_LAYOUT_ALV.
    *rec_layout TYPE lvc_s_layo.
    DATA: IS_LS_LINE         TYPE SLIS_LISTHEADER,
          IT_TOP             TYPE SLIS_T_LISTHEADER.
    DATA: TEXT(60) TYPE C,
          text1 TYPE char10,
          text2 TYPE char20,
          text3 TYPE char20,
          ebeln TYPE char10,
          year  TYPE char4.
    DATA: user TYPE SY-uname.
    DATA: lang  TYPE sww_lang VALUE 'EN',
          c_x TYPE char1 VALUE 'X',
          C_FLAG TYPE CHAR1 VALUE IS INITIAL,
               status1 TYPE sww_wistat VALUE 'READY',
          status2 TYPE sww_wistat VALUE 'STARTED'.
      INPUT OPTIONS   ***********************************************
    INITIALIZATION.
    DATA: C_PF_STAT        TYPE SLIS_FORMNAME          VALUE 'PF_STAT',
          C_USERC          TYPE SLIS_FORMNAME          VALUE 'PURVESH',
          C_TOP_OF_PAGE    TYPE SLIS_FORMNAME          VALUE 'TOP_OF_PAGE'.
      SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001 .
      PARAMETERS     : USERID LIKE USREFUS-BNAME MODIF ID 001.
      SELECT-OPTIONS : COMP   FOR BSEG-BUKRS NO INTERVALS.
      SELECT-OPTIONS : YEAR1  FOR BSEG-GJAHR NO INTERVALS.
      SELECT-OPTIONS : DOC    FOR BSEG-BELNR.
      SELECT-OPTIONS : VEND   FOR BSEG-LIFNR NO INTERVALS.
      SELECT-OPTIONS : DAT    FOR BKPF-BUDAT.
      SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR userid.
      PERFORM f4_help_fname.
    *&      Form  F4_HELP_FNAME
          text
    -->  p1        text
    <--  p2        text
    FORM F4_HELP_FNAME .
    data: begin of itab occurs 0,
    BNAME like USREFUS-BNAME,
    USERALIAS like USREFUS-USERALIAS,
    end of itab .
    select BNAME
    USERALIAS
    from USREFUS into corresponding fields of table itab.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'BNAME'
    dynpprog = SY-repid
    dynpnr = SY-dynnr
    dynprofield = 'USERID'
    value_org = 'S'
    TABLES
    value_tab = ITAB.
    *IF sy-subrc 0.
    *ENDIF.
    ENDFORM.                    " F4_HELP_FNAME
    **********************************************START - OF - SELECTION*******************************************
    START-OF-SELECTION.
      PERFORM init.
      PERFORM buildfieldcat.
      PERFORM displayalv.
    END-OF-SELECTION.
    *&      Form  INIT
          text
    -->  p1        text
    <--  p2        text
    FORM INIT .
      IF USERID IS NOT INITIAL.
        SELECT USER_ID
                 WI_ID
                 TASK_OBJ
                 INTO TABLE IT_SWWUSERWI
                 FROM SWWUSERWI
                 WHERE USER_ID = USERID AND NO_SEL NE c_x.
    endif.
      IF IT_SWWUSERWI IS NOT INITIAL.
        SELECT WI_ID
               WI_LANG
               WI_TEXT
               WI_RHTEXT
               WI_STAT
              WI_CD
              WI_CT
               INTO TABLE IT_SWWWIHEAD
               FROM SWWWIHEAD
               FOR ALL ENTRIES IN IT_SWWUSERWI
               WHERE WI_ID = IT_SWWUSERWI-WI_ID AND WI_LANG = lang.
        IF IT_SWWWIHEAD IS NOT INITIAL.
          LOOP AT IT_SWWWIHEAD INTO WA_SWWWIHEAD.
            SPLIT WA_SWWWIHEAD-WI_TEXT AT SPACE INTO TEXT TEXT1 TEXT2.
            WA_TEMP-BUKRS = TEXT2+0(4).
            WA_TEMP-BELNR = TEXT2+4(10).
            WA_TEMP-GJAHR = TEXT2+14(4).
            APPEND WA_TEMP TO IT_TEMP.
            CLEAR : WA_TEMP.
          ENDLOOP.
            LOOP AT IT_SWWUSERWI INTO WA_SWWUSERWI.
              READ TABLE IT_SWWWIHEAD INTO WA_SWWWIHEAD WITH KEY  WI_ID = WA_SWWUSERWI-WI_ID WI_LANG = lang.
                  WA_FINAL-USER_ID      = WA_SWWUSERWI-USER_ID.
                  WA_FINAL-WI_ID        = WA_SWWUSERWI-WI_ID.
             WA_FINAL-WI_TEXT      = WA_SWWWIHEAD-WI_TEXT.
                  APPEND WA_FINAL TO IT_FINAL.
                  CLEAR : WA_FINAL,WA_SWWWIHEAD,WA_SWWUSERWI,WA_TEMP,WA_BSEG,WA_BKPF,WA_LFA1,WA_CEPC.
                ENDIF.
              ENDIF.
            ENDLOOP.
          ENDIF.
        ENDIF.
        DELETE ADJACENT DUPLICATES FROM it_final.
      ENDIF.
    ENDFORM.                    " INIT
    *&      Form  DISPLAYALV
          text
    -->  p1        text
    <--  p2        text
    FORM DISPLAYALV .
      REC_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
      REC_LAYOUT-ZEBRA             = 'X'.
      REC_LAYOUT-F2CODE            = SY-REPID.
      REC_LAYOUT-WINDOW_TITLEBAR   = 'Workitem summery'.        "#EC NOTEXT
      REC_LAYOUT-COLTAB_FIELDNAME  = 'COLOR'.
      REC_LAYOUT-DETAIL_TITLEBAR   = 'Workitem Summery'.        "#EC NOTEXT
    WS_LAYOUT-ColWIDTH_OPTimize = 'X'.
    WS_LAYOUT-ZEBRA             = 'X'.
      wa_sort-tabname = 'IT_FINAL'.
      wa_sort-fieldname = 'USER_ID'.
    wa_sort-spos = 9.
    wa_sort-subtot = 'X'.
      APPEND wa_sort to it_sort.
      CLEAR wa_sort.
       PERFORM GET_EVT_UP.
    PERFORM alv_text.
    PERFORM top_of_page.
    *rec_layout-grid_title   = 'Report for WI Analysis'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = sy-repid
         i_callback_pf_status_set = c_pf_stat
          I_CALLBACK_USER_COMMAND  = C_USERC
         I_CALLBACK_TOP_OF_PAGE   = C_TOP_OF_PAGE
          i_grid_title             = text-024
          is_layout                = rec_layout
          it_fieldcat              = it_field_cat
          it_sort                  = it_sort
          I_DEFAULT                = 'X'  "allow default variant
          i_save                   = 'A'
          is_variant               = g_variant
         IT_EVENTS                = IT_EVT_TAB
        TABLES
          t_outtab                 = it_final
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAYALV
    *&      Form  build_catalog
          text
         -->P_TABNAME    text
         -->P_FIELDNAME  text
         -->P_DO_SUM     text
         -->P_SELTEXT    text
         -->P_X          text
         -->P_Y          text
    FORM build_catalog  USING  p_tabname   TYPE slis_fieldcat_alv-tabname
                               p_fieldname TYPE slis_fieldcat_alv-fieldname
                               p_do_sum     TYPE slis_fieldcat_alv-do_sum
                               p_seltext   TYPE slis_fieldcat_alv-seltext_l
                               p_x         TYPE c
                               p_y         TYPE c.
      DATA : wa_fieldcat TYPE slis_fieldcat_alv,
             pos TYPE i VALUE 0.
      pos = pos + 1.
      wa_fieldcat-col_pos     = pos.
      wa_fieldcat-tabname     = p_tabname.
      wa_fieldcat-fieldname   = p_fieldname.
      wa_fieldcat-do_sum      = p_do_sum .
      wa_fieldcat-seltext_l   = p_seltext.
      wa_fieldcat-HOTSPOT      = p_x.
      wa_fieldcat-fix_column  = p_y.
      APPEND wa_fieldcat TO it_field_cat .
      CLEAR wa_fieldcat.
    ENDFORM.                    "build_catalog
    *&      Form  PURVESH
          text
         -->L_UCOMM    text
         -->W_SELFIELD text
    FORM PURVESH USING L_UCOMM  TYPE SY-UCOMM   W_SELFIELD  TYPE SLIS_SELFIELD ."#EC CALLED
    BREAK AAB_PURVESH.
      CASE L_UCOMM.
        IF  USERID IS NOT INITIAL.
          user = userid.
        ELSE.
          user = sy-uname.
        ENDIF.
        WHEN '&IC1' or 'ZWORK_LOAD'.
          READ TABLE IT_FINAL INTO WA_FINAL INDEX W_SELFIELD-TABINDEX.
          IF SY-SUBRC = 0.
            IF user NE SY-UNAME.
              CALL FUNCTION 'SAP_WAPI_FORWARD_WORKITEM'
              EXPORTING
                WORKITEM_ID  = WA_FINAL-WI_ID
                USER_ID      = SY-UNAME
                LANGUAGE     = SY-LANGU
                DO_COMMIT    = 'X'
                CURRENT_USER = user.
              IMPORTING
                RETURN_CODE          =
                NEW_STATUS           =
              TABLES
                MESSAGE_LINES        =
                MESSAGE_STRUCT       =
                USER_IDS             =
            ENDIF.
            CALL FUNCTION 'SAP_WAPI_EXECUTE_WORKITEM'
              EXPORTING
                WORKITEM_ID          =  WA_FINAL-WI_ID
                LANGUAGE             = SY-LANGU
              IMPORTING
                NEW_STATUS           =
                RETURN_CODE          =
              TABLES
                MESSAGE_LINES        =
                MESSAGE_STRUCT       =
           DELETE IT_FINAL WHERE WI_ID = WA_FINAL-WI_ID.
           PERFORM displayalv.
          ENDIF.
      ENDCASE.
    ENDFORM.                    "PURVESH
    *&      Form  GET_EVT_UP
          text
    -->  p1        text
    <--  p2        text
    FORM GET_EVT_UP .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          I_LIST_TYPE     = 0
        IMPORTING
          ET_EVENTS       = IT_EVT_TAB
        EXCEPTIONS
          LIST_TYPE_WRONG = 1
          OTHERS          = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        SORT IT_EVT_TAB   BY NAME.
        READ TABLE IT_EVT_TAB WITH KEY NAME = SLIS_EV_TOP_OF_PAGE INTO IS_LS_EVENT BINARY SEARCH.
        IF SY-SUBRC = 0.
          MOVE C_TOP TO IS_LS_EVENT-FORM.
          MODIFY IT_EVT_TAB FROM IS_LS_EVENT INDEX SY-TABIX TRANSPORTING FORM.
        ENDIF.
        READ TABLE IT_EVT_TAB  INTO IS_EVT WITH KEY NAME = SLIS_EV_USER_COMMAND BINARY SEARCH.
        IF SY-SUBRC EQ 0.
          IS_EVT-FORM = 'PURVESH'.
          MODIFY IT_EVT_TAB  FROM IS_EVT TRANSPORTING FORM WHERE NAME = IS_EVT-NAME.
        ENDIF.
      ENDIF.
    ENDFORM.                    " GET_EVT_UP
    *&      Form  ALV_TEXT
          text
    -->  p1        text
    <--  p2        text
    FORM ALV_TEXT .
      CLEAR IS_LS_LINE.
      IS_LS_LINE-TYP = 'H'.
      IS_LS_LINE-INFO = 'Workload Analysis Report'.             "#EC NOTEXT
      APPEND IS_LS_LINE TO IT_TOP.
      WRITE: 'RunDate:' TO TEXT,
             SY-DATUM TO TEXT+10,
             ', Time :' TO TEXT+20,                             "#EC NOTEXT
             SY-UZEIT TO TEXT+27,
             ', User :' TO TEXT+38,                             "#EC NOTEXT
             SY-UNAME TO TEXT+46.
      IS_LS_LINE-TYP = 'S'.
      IS_LS_LINE-INFO = TEXT.
      APPEND IS_LS_LINE TO IT_TOP.
      CLEAR TEXT.
    ENDFORM.                    " ALV_TEXT
    *&      Form  TOP_OF_PAGE
          text
    -->  p1        text
    <--  p2        text
    FORM TOP_OF_PAGE .
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = IT_TOP.
    using this code specify only buildfieldcatalog and there is a custom inbox ready for you
    here you can specify userid and from alv report you can execute workitem of any user.
    Hope magic Works!
    Regards,
    Purvesh.

  • Is there any Table to display all Tcodes used in BW

    Hi
      Is there  any Table available where all Tcode can be seen.
    Thanks,
    Jaswantha

    hi,
    these are the tcodes in bw..
    RS00 Start menu
    RS12 Overview of master data locks
    RSA0 Content Settings Maintenance
    RSA1 BW Administrator Workbench
    RSA10 Realtime Test Interface Srce System
    RSA11 Calling up AWB with the IC tree
    RSA12 Calling up AWB with the IS tree
    RSA13 Calling up AWB with the LG tree
    RSA14 Calling up AWB with the IO tree
    RSA15 Calling up AWB with the ODS tree
    RSA1OLD BW Administrator Workbench (old)
    RSA2 OLTP Metadata Repository
    RSA3 Extractor Checker
    RSA5 Install Business Content
    RSA6 Maintain DataSources
    RSA7 BW Delta Queue Monitor
    RSA8 DataSource Repository
    RSA9 Transfer Application Components
    RSADMIN RSADMIN maintenance
    RSADRTC70TOADR11 Conversion of table TC70 in ADR11
    RSANWB Model the Analysis Process
    RSANWB_CRM_ATTR Fill CRM Attributes
    RSANWB_EXEC Execute Analysis Process
    RSANWB_IMP Calculation of Importance
    RSANWB_START_ALL Model the Analysis Process
    RSANWB_SURVEY Analysis Process: Create Target Grp
    RSAN_CLTV CLTV Modeling
    RSAN_CLTV1 CLTV
    RSAN_RESP Response Prediction Models
    RSAN_RFM RFM Modeling
    RSAN_SALES_PL_CALL Execute Sales Planning
    RSAN_SURV_SHOW BW Survey
    RSAN_SURV_TG BW Survey: Target Group Management
    RSAN_VERI Analysis Process: Test Monitor
    RSAN_WB_TST IMC Wrapper Transaction for Testing
    RSARCH_ADMIN BW Archive Administration
    RSARFCEX Variant for RSARFCEX
    RSASSIBTCH Schedule Assistant in Background
    RSATTR Attribute/Hierarchy Realignment Run
    RSAWB New AWB
    RSAWBSETTINGSDEL Delete user settings of the AWB
    RSB0 Maintain OLAP authorization object
    RSB1 Display authorization object
    RSB2 Data Marts Generation Center
    RSBBS Maintaining BW Sender-Receiver
    RSBBS_WEB Transaction for the RRI in the Web
    RSBCTMA_AC xCBL Action Codes
    RSBCTMA_DT Mapping of Ext./Int. Document Type
    RSBEB Business Explorer Browser
    RSBMO2 Open Hub Monitor
    RSBO Open Hub Maintenance
    RSBOH1 Open Hub Maintenance
    RSBOH2 Open Hub Maintenance
    RSBOH3 Open Hub Maintenance
    RSBO_EXTRACT Auth Check Open Hub Extraction
    RSBROWSER BW Browser
    RSBWREMOTE Create Warehouse User
    RSCATTAWB CATT Admin. Workbench
    RSCDS Summarization routine
    RSCONCHA Channel conversion
    RSCONFAV Favorites Conversion
    RSCRMDEBUG Set Debug Options
    RSCRMISQ Regis. of Infosets for Target Groups
    RSCRMMDX Edit MDX
    RSCRMMON Monitor Query Extracts
    RSCRMSCEN Regist. Closed-Loop Scenarios
    RSCRM_BAPI Test Program for RSCRM Interface
    RSCRM_REPORT BW Queries with ODBO (to 2nd 0B)
    RSCRT BW Monitor (Near)-Real-Time Loading
    RSCR_MAINT_PUBLISH Maint. of Publishing Variables CR/CE
    RSCR_MAINT_URL Maint. of URL Variables for CR/CE
    RSCUSTA Maintain BW Settings
    RSCUSTA2 ODS Settings
    RSCUSTV1 BW Customizing - View 1
    RSCUSTV10 BW Customizing - View 10
    RSCUSTV11 BW Customizing - View 11
    RSCUSTV12 Microsoft Analysis Services
    RSCUSTV13 RRI Settings for Web Reporting
    RSCUSTV14 OLAP: Cache Parameters
    RSCUSTV15 BW Customizing - View 11
    RSCUSTV16 BW Reporting
    RSCUSTV17 Settings: Currency Translation
    RSCUSTV18 DB Connect Settings
    RSCUSTV19 InfoSet Settings
    RSCUSTV2 BW Customizing - View 2
    RSCUSTV3 BW Customizing - View 3
    RSCUSTV4 BW Customizing - View 4
    RSCUSTV5 BW Customizing - View 5
    RSCUSTV6 BW Customizing - View 6
    RSCUSTV7 BW Customizing - View 7
    RSCUSTV8 BW Customizing - View 8
    RSCUSTV9 BW Customizing - View 9
    RSD1 Characteristic maintenance
    RSD2 Maintenance of key figures
    RSD3 Maintenance of units
    RSD4 Maintenance of time characteristics
    RSD5 Internal: Maint. of Techn. Chars
    RSDBC DB connect
    RSDB_ADD_ID_2_CRM Create External ID for CRM-GP
    RSDB_INIT Initial Download of D&B Data
    RSDCUBE Start: InfoCube editing
    RSDCUBED Start: InfoCube editing
    RSDCUBEM Start: InfoCube editing
    RSDDV Maintaining Aggregates
    RSDIOBC Start: InfoObject catalog editing
    RSDIOBCD Start: InfoObject catalog editing
    RSDIOBCM Start: InfoObject catalog editing
    RSDL DB Connect - Test Program
    RSDMD Master Data Maintenance w.Prev. Sel.
    RSDMD_TEST Master Data Test
    RSDMPRO Initial Screen: MultiProvider Proc.
    RSDMPROD Initial Screen: MultiProvider Proc.
    RSDMPROM Initial Screen: MultiProvider Proc.
    RSDMWB Data Mining Workbench
    RSDODS Initial Screen: ODS Object Processng
    RSDODSD Initial Screen: ODS Proces. (Deliv.)
    RSDPMDDBSETUP Creates a MOLAP Database in MSAS
    RSDPMOLAPDS MOLAP DataSource creation
    RSDPRFCDSETUP Create MOLAP Rfc Tests
    RSDSD DataSource Documentation
    RSDU_SHOWTEMPINCTAB RSDU_SHOWTEMPINCTAB
    RSDV Validity Slice Maintenance
    RSD_ACAT Maintain InfoObject catalog
    RSEDIT Old editor
    RSEIDOCM Variant for RSEIDOCM
    RSENQ Display of Lock Log
    RSEOUT00 Variant for RSEOUT00
    RSFH Test Transaction Data Extractors
    RSFLAT Flat MDX
    RSFREQUPL Frequent upload from source systems
    RSGWLST Accessible Gateways
    RSH1 Edit hierarchy initial screen
    RSH3 Simulate hierarchies
    RSHIER Hierarchy maintenance w/o AdmWB
    RSHIERINT Hierarchy maintenance from AdmWB
    RSHIERSIM Simulate hierarchies
    RSICUBE Maintain/Change InfoCubes (Internal)
    RSIMG BW IMG
    RSIMPCUR Load Exchange Rates from File
    RSINPUT Manual Data Entry
    RSIR_DELTATRACK KPro Delta Tracking
    RSISET Maintain InfoSets
    RSKC Maintaining the Permittd Extra Chars
    RSLDAPSYNC_USER LDAP Synchronization of Users
    RSLGMP Maintain RSLOGSYSMAP
    RSMD Extractor Checker
    RSMDCNVEXIT Conversn to Consistent Intern. Vals
    RSMDEXITON Activate Conversion Routine
    RSMO Data Load Monitor Start
    RSMON BW Administrator Workbench
    RSMONCOLOR Traffic light color in the Monitor
    RSMONITOR_DB D&B Integration
    RSMONMAIL Mail Addresses for Monitor Assistant
    RSNPGTEST Test Network Plan Control
    RSNPGTEST2 Test Network Plan Control
    RSNSPACE BW Namespace Maintenance
    RSO2 Oltp Metadata Repository
    RSO3 Set Up Deltas for Master Data
    RSOCONTENT Administration of a Content System
    RSOCOPY Copy from TLOGO Objects
    RSODADMIN Administration BW Document Managemt.
    RSOR BW Metadata Repository
    RSORBCT BI Business Content Transfer
    RSORMDR BW Metadata Repository
    RSPC Process Chain Maintenance
    RSPC1 Process Chain Display
    RSPCM Monitor daily process chains
    RSPFPAR Display profile parameter
    RSQ02 Maintain InfoSets
    RSQ10 SAP Query: Role Administration
    RSQ11 InfoSet Query: Web reporting
    RSRAJ Starts a Reporting Agent Job
    RSRAM Reporting Agent Monitor
    RSRAPS Manages Page Store
    RSRCACHE OLAP: Cache Monitor
    RSRCATTTRACE Catt transaction for trace tool
    RSREP BW Administrator Workbench
    RSRFCCHK RFC destinations with logon data
    RSRHIERARCHYVIRT Maintain Virtual Time Hierarchies
    RSRQ Data Load Monitor for a Request
    RSRR_WEB Report-Report Interface in Web
    RSRT Start of the report monitor
    RSRT1 Start of the Report Monitor
    RSRT2 Start of the Report Monitor
    RSRTRACE Set trace configuration
    RSRTRACETEST Trace tool configuration
    RSRV Analysis and Repair of BW Objects
    RSRVALT Analysis of the BW objects
    RSR_TRACE Trace Monitor
    RSR_WEB_VARIABLES Variable Entry in Web
    RSSCD100_PFCG Change Docs for Role Administration
    RSSCD100_PFCG_USER for Role Assignment
    RSSCM_APPL Application settings SCM4.0 and BW
    RSSD Access for scheduler
    RSSE Selection start InfoCube
    RSSGPCLA Maintain program class
    RSSG_BROWSER Simple Data Browser
    RSSM Authorizations for Reporting
    RSSMQ Start Query with User
    RSSMTRACE Reporting Log Authorization
    RSSTARTMON Starting the monitor in parall.proc.
    RSSU53 Display authorization check BW
    RST22 Old Short-Dump Overview
    RSTB Choose Object Name
    RSTBHIST Table history
    RSTG_BUPA Target Group Sel. Business Partners
    RSTG_CUST Target Group Selection Customers
    RSTG_DB Target Group Selection D&B
    RSTG_DB_WEB Target Group Selection D&B
    RSTPRFC Create Destination for After-Import
    RSU0 Update rules overview
    RSU1 Create update rules
    RSU1I Create update rules
    RSU1O Create Update Rules
    RSU2 Change update rules
    RSU2I Change update rules
    RSU2O Change Update Rules
    RSU3 Display update rules
    RSU3I Display update rules
    RSU3O Display Update Rules
    RSU6 Delete update rules
    RSU6I Delete update rules
    RSU6O Delete update rules
    RSU7 Data Extraction: Maintain Parameters
    RSUSR003 Check standard user passwords
    RSUSR200 List of Users per Login Date
    RSWELOGD Delete Event Trace
    RSWEWWDHMSHOW Display Background Job SWWERRE
    RSWEWWDHSHOW Display Work Item Deadline Monitorng
    RSWWCLEAR Execute Work Item Clearing Work
    RSWWCOND Execute Work Item Rule Monitoring
    RSWWDHEX ExecuteWorkItemDeadlineMonitoring
    RSWWERRE Start RSWWERRE
    RSZC Copying Queries between InfoCubes
    RSZDELETE Deletion of query objects
    RSZT Get Test Component
    RSZTESTFB Shortcut Function Test Environment
    RSZV Call up of view V_RSZGLOBV
    RSZVERSION Set frontend version
    RS_AWB_REMOTE Remote AWB Staging
    RS_BCT_BWBEOTYP Maintain BW Backend Object Types
    RS_DS_CHECK Check consistency request
    RS_ISTD_REMOTE Maintain InfoSource
    RS_LOGSYS_CHECK Source System Tool
    RS_PERS_ACTIVATE Activation of BEx Personalization
    RS_PERS_BOD_ACTIVATE Activate BEx Open Pers.
    RS_PERS_BOD_DEACTIVA Deactivate Pers. for BEx Open
    RS_PERS_VAR_ACTIVATE Activate Variable Pers.
    RS_PERS_VAR_DEACTIVA Deactivate Pers. for Variables
    RS_PERS_WTE_ACTIVATE Activate Web Template Pers.
    RS_PERS_WTE_DEACTIVA Deactivate Pers. for Web Template
    SP01 Spool

  • Is there any table where there is wagetypes with Transaction types

    Hi
    Is there any table in SAP  where there is wage types with Transaction types setup or does it exist in FI side ? please help
    Regards
    Krishna

    if i am not wrong u are asking to view wage type models
    than go to transaction oh11 u will get wage type catalogue
    there u place f4 u can see all the the wage type models
    and one more thing we dont have any transaction for viewing each wage type
    thanks
    sikindar

  • How to check whether follow on document is created for sc or po,is there any table or fm available?

    How to check whether follow on document is created for sc or po,is there any table or fm available?

    Hello Venu
    Check FM: BBP_PD_SC_GETDETAIL and BBP_PD_PO_GETDETAIL table E_HEADER_REL
    Check this: SRM Shopping cart and PO tables link
    Regards

  • Is there any table in data dictionary has all clients and their email ids?

    Is there any table in data dictionary has all clients and their email ids?

    Hello,
    KNVK-ADRNP_2
    use this to pass to the bapi BAPI_BUPA_ADDRESS_GETDETAIL. this is function module & will return the address details in diff itabs..
    You can also try the Table ADR6 field SMTP_ADDR where ADDRNUMBER = KNVK-ADRNP_2.
    *************Reward points,if found useful

  • Is there any difference viewer software for reports??

    Hi,
    Is there any difference viewer software for viewing differences between two oracle reports??
    Thanks for ur suggestions!
    Madhu

    Any version control software, like CVS, allows for line-to-line comparison of different versions of the same file. The problem with reports is that to understand differences you need to save the reports in human readable format that can be REX-file.

  • Is there any table or report that available in SAP for any PR/STR

    HI All,
    Is there any table or report that available in SAP for any PR/STR that are remain opened after S/O canceled.
    Please advice at the earliest.
    Thanks
    Chandru

    Chandru,
    Of course.  The standard MD06 transaction will display ALL MRP generated exception messages, and will take you to the individual material to allow you to determine how you wish to respond to it.
    So, MD06>enter the plant.  Optionally, enter the controller if you wish to limit the results by planner.
    If you are interested in Sales order cancellations, then these exceptions would be categorized by SAP as belonging to the  "exceptions during Scheduling" or "exceptions during availability" groups.  On the Exceptions group tab, select these two items (6&7), deselect the rest. Enter.
    You are now presented with a list of all materials that contain one or more of these exceptions.  From the menu bar at the top, select Edit>Find.  If you get a 'statistics' popup, click through.  Select the 'Find Exceptions' tab.
    Message 26 "excess stock in individual segment" means that in a MTO environment, you have more supply than demand against given order/items (as you would have if a cust. cancelled his MTO order).  Select this message.
    Message 20 "Cancel Process" means that you have a supply element that has NO requirements (as you would have if a cust. cancelled his MTS order).  Select this messaege.
    Message 15 " Postpone process" means that you have supply elements that are scheduled to be received earlier that necessary (as you might have if a Cust cancelled his MTS order). Optionally select this message.
    Clik the green check.  You will now notice that certain rows on the listing are highlighted.  These are the ones that contain your problem children.  Hit the "glasses selected MRP list" button.
    This takes you to the first MD05 of the highlighted items.  Review the problem.  Decide what to do:  Cancel a supply element?  Push out a supply element? Leave it alone?  Call customer service to discuss which order was cancelled and why?  etc etc etc...
    Once you are done with the first material, clik on the 'next material' icon or hit Ctrl-F2.  Repeat.  Continue till all materials have been evaluated and resolved.
    This works for any other MRP message as well.
    Regards,
    DB49

  • Is there any table or report  to see basic price  billing doc wise in mass

    Dear  experts,
                  is there any table or report  to see basic price  billing doc wise, in mass, please help
    regards
    rajakarthik

    Hi
    If your basic price is same as Net price then you can check it in table VBRK.
    If Basic Price is not same as Net Price then from the table VBRK you will have to take the value of KNUMV and then with respect to this KNUMV go to table KONV and take the value of KWERT.
    To check the value in mass you may make a report with the help of ABAP or by your own using SQVI transaction.
    Regards
    Amitesh Anand

  • RMAN Last Completed Backup recorded in any table/view?

    Hi Friends,
    we are running RMAN backup of Full Database every day on 11g R2 Database.
    I would like to know where can i query the last completed backup date/time (in any table/view...) so that i will put a script to query that table/view to verify that the backup is completed .
    Regards,
    DB

    Hello;
    if you are using a catalog you can try this :
    select
            db_name,
            start_time,
            end_time,
            status,
            time_taken_display,
            output_bytes_display,
            output_device_type,
            session_key,
            session_recid,
            session_stamp
    from rc_rman_backup_job_details where end_time > sysdate -1If you not using a catalog V$RMAN_BACKUP_JOB_DETAILS should provide similar information.
    Best Regards
    mseberg

  • Are there seeded tables/views of DBI dimension objects in Oracle EBS?

    Hi!
    I wish to create custom Existing Source dimension objects but wish first to see exactly what is the table's structure (columns, width, data type). Are there seeded tables/views available in Oracle EBS?
    Thanks.

    Try https://etrm.oracle.com - search for "DBI"

  • Is there any lab view driver for HP6624A ?

    I would like to know that is there any lab view driver for HP6624A.

    Please place this question in the Instrument Control board, as you will get an answer more quickly there. This board is targeted to questions regarding the MH DDK for NI data acquisition plug-in boards.
    Christian Loew, CLA
    Principal Systems Engineer, National Instruments
    Please tip your answer providers with kudos.
    Any attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system,
    or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject
    to the Sample Code License Terms which can be found at: http://ni.com/samplecodelicense

  • I would like to know that is there any lab view driver for HP6624A.

    Hi
    I would like to know that is there any lab view driver for HP6624A.
    Regards
    Deepaa

    Yes, here they are :
    http://sine.ni.com/apps/we/niid_web_display.drv_results?p_app_area=&p_man=&p_keywords=6624&p_inst_type=&p_env=&p_drv_type=&p_int=
    If in the future you need drivers that are not available then you can request them.
    Kind Regards
    Steven Bird
    Applications Engineer
    National Instruments

  • Is there any V$ views to get Tape information

    Hi all,
    Database version: 10.2.0.4
    Server: Windows 32 bit server
    We are using RMAN to take Db backup to tape through veritas net backup.
    Is there any v$ views to get tape information (like tape no.) form the recovery catalog.
    Thanks & Regards,

    Hi user12133150,
    Is there any v$ views to get tape information (like tape no.) form the recovery catalog.If you know the piece name you can find the tape in the rman catalog with:
    select handle, media from rc_backup_piece where handle = '&piece_name'
    /Regards,
    Tycho

  • Is there any table that holds the history of BEx queries

    Hi, I just wanted to know if there is any table that keeps the history of changes done to BEx queries?

    HI,
    Below tables helps you
    RSZELTTXT        Texts of reporting component elements
    RSZELTXREF       Directory of query element references
    RSRREPDIR        Directory of all reports
    RSZCOMPDIR       Directory of reporting components
    RSZELTDIR        Directory of the reporting component elements
    RSZELTDIR        Directory of the reporting component elements
    RSZRANGE         Selection specification for an element
    RSZSELECT        Selection properties of an element
    RSZCOMPIC        Assignment reuseable component <-> InfoCube
    RSZCALC            Definition of a formula element
    RSZCEL              Query Designer: Directory of Cells
    RSZELTPRIO       Priorities with element collisions
    RSZGLOBV          Global Variables in Reporting
    RSZELTATTR       Attribute selection per dimension element
    RSZCHANGES       Change history of reporting components
    RSZELTPROP       Element properties (settings)
    Regards,
    rvc

Maybe you are looking for

  • SAP R/3 and JAVA based data base

    hi, I have two data base one is SAp r/3 and another is JAVA based. i need to link one table from Sap r/3 and one from JAVA based data base. using crystal reports how can i do this???? thanks

  • Itunes doesn't open...this one is tricky!

    Ok, here's the situation. I installed itunes from the cd that came with my video ipod. Ok, done deal. Right? Wrong. Then id wouldn't install. Some 0x80040707 error. Got that fixed with registry repair. Re-installed itunes. Went through this time. Tri

  • No puedo instalar el app world.

    Hola, lo tenia instalado desde que adquiri el bb, pero al hacerle el reset de fabrica por problemas con la pantalla..trate de instalar de vuelta el app world y no me deja... dice que no tiene soporte para el modelo que yo tengo, busque por todos lado

  • MAINSTAGE 2.2: Sustain pedal triggering E3 note on MainStage and making notes get stuck

    Hey guys! I've been having issues recently with my MS and can't find to know why. I want to start of with a detailed list of what I'm using to know if this helps. - MacBook Pro OS X 10.9 (8gb RAM and intel 2.26 core 2 DUO) - MainStage 2.2. (32 bit) -

  • Moving LR Preferences folder

    I want to move my LR preferences folder (to a dropbox folder) so that they can be available to two machines. Is there a way to tell LR where the preferences are? Cheers