PERNR Routine

Hi All,
I need to get the employee position title from the PERNR. i am in BI7.0flow. so i can't use 0employee as a master data reference for this employee position title.
In the transformations rule can i get the position title from PERNR through routine.
Thanks
Aravinda

Solved my self

Similar Messages

  • Select statement in transformation routine

    Hi,
    I'm working on a trans.routine wich should select the enddate of the last absence from the active table of a DSO. The routine I have now:
    SELECT SINGLE gm_vld_to FROM /bic/azds_afwz00 INTO RESULT
    WHERE employee EQ SOURCE_FIELDS-pernr
    AND /bic/zchaaso EQ '0200'
    AND /bic/zchmudn NE SOURCE_FIELDS-docnr.
    However, the date selected should be the highest value in the DSO, but lower than the 'gm_vld_to' in the record that is being loaded. For instance if I have two records in the DSO, one with gm_vld_to = 21.03.2008 and one with gm_vld_to = 22.05.2008 and the record that is loaded has gm_vld_to = 19.04.2008, the value should be: 21.03.2008.
    Does anyone have an idea how to code this?

    data: begin of  itab occurs 10,
            gm_date type d,
    end of itab.
    data wa_itab like line of itab.
    REFRESH: itab.
    clear: wa_itab.
    SELECT  gm_vld_to FROM /bic/azds_afwz00 INTO TABLE itab
    WHERE employee EQ SOURCE_FIELDS-pernr
    AND /bic/zchaaso EQ '0200'
    AND /bic/zchmudn NE SOURCE_FIELDS-docnr
    AND gm_vld_to LE SOURCE_FIELDS-gm_vld_to.
    " see if you want date LE or just LT
    SORT table itab by gm_date.
    READ TABLE ITAB INDEX 1into wa_itab.
    RESULT = wa_itab-gm_date
    logic -
    1. create internal table with 1 field - date
    2. read all possible dates from DSO which are LE your current record's date
    3. sort itab so that your required date comes at position 1
    4. read first record of itab
    5. that date is the date you want as result
    6. do not forget to refresh table and clear wa everytime
    Regards
    Sanjyot

  • How to read master data in transformation routine?

    Hi gurus,
    I am loading data from 0HR_PA_0 data source.
    I have 2 fields in the DS: PERNR (Personal Number) and CALMONTH (Calendar year/month).
    I need to read 0EMPLOYEE's attribute 0ENTRYDATE and count the difference between Entry date and Calendar year/month.
    Could you please help me with it? I don't know ABAP that much, so I am not able to write it by myself...
    Regards,
    Dorota

    Hi Dorota ,
    I guess your main problem is how to get difference of two dates in no of days.Please find following code for the same .
    I am asumming that you want days difference from  01 date of month .If not then it can be changed as per requirement.Here the variable datediff will give you output in no of days .
    data :v_date1 like sy-datum ,
    v_date2 like sy-datum ,
    datediff(6) type n.
    v_date1 = '20100301'.
    v_date2 = sy-datum.
    datediff = v_date1 - v_date2 .
    If you please clear some point I can help you to write code .My questions :
    1) where you want to write this code .(start/end routine etc)
    2) What will be your start day value (1st day of month) or date value from  0ENTRYDATE.
        ex : 0ENTRYDATE = 20101223
               CALMONTH = 201003
    so we need day value for calmonth that can be 01  or 23 (as in 0ENTRYDATE).
    Hope this will help .
    Regards,
    Jaya

  • Linking USERID to PERNR in IT01015 - Error - OBJECTS_OBJREF_NOT_ASSIGNED

    Hello all,
    Facing strange runtime error with a basic transaction when creating System User Name in Communication Infotype with my userid.
    Infact I am working on ECC6 connected to EP7 on EHP3. My User ID is with super admin role having all authorizations except ABAP development and Role Maintenance (SU01)
    I was working all these days without any problem, changing in between a set of PERNR's for my userid in IT0105. It worked well with in portal self services too.
    Now in the same routine when I deleted IT0105/0001 for a PERNR and tried creating the record for the other PERNR it started giving short dump and henceforth not allowing me to link any pernr to any userid.
    Here are the error details:
    ===================================================
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Date and Time          17.07.2010 10:57:06
    Short text
         Access via 'NULL' object reference not possible.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "CL_HRRCF_ERP_CONVERT_P_2_CAND=CP" had to be
          terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         You attempted to use a 'NULL' object reference (points to 'nothing')
         access a component (variable: " ").
         An object reference must point to an object (an instance of a class)
         before it can be used to access components.
         Either the reference was never set or it was set to 'NULL' using the
         CLEAR statement.
    Trigger Location of Runtime Error
         Program                                 CL_HRRCF_ERP_CONVERT_P_2_CAND=CP
         Include                                 CL_HRRCF_ERP_CONVERT_P_2_CAND=CM002
         Row                                     133
         Module type                             (METHOD)
         Module Name                             DO_POST_PROCESSING
    ==================================================================
    Anyone who can decipher this for me.
    Thanks a lot.

    Vamshi,
    I think you have got the response from this thread
    Linking USERID to PERNR in IT01015 - Error - OBJECTS_OBJREF_NOT_ASSIGNED
    If yes please close the thread
    Thanks
    Bala Duvvuri

  • Regarding the get pernr function

    Hi guys,
              Got to know that when we use get pernr it automatically checks for the autherization on pernrs to view data.
        Would like to know who all have access to see which pernrs? Can i get any ideas on this....
    Thanks in advance
    Abhi

    Triggers the associated events when data is read in an executable (type 1) program using a logical database.
    node is a node in the logical database that is assigned to the report (type 1 program) in the program attributes. You must declare the node in the report using the NODES statement (or the TABLES statement, if the node is of the type "table").
    The node node corresponds to a data object of the same name.
    node is available for processing during the flow of the logical database. Moreover, you can also make reference to the fields from the node that lie on the access path for node in the logical database associated with the report - unless the node is of the dynamic dictionary type.
    Notes
    You can use the event "GET dbtab." only once in the report.
    The GET events are implemented internally as FORM routines. This makes all data objects declared with DATA local, that is, they are only recognized and addressable within the event. This also applies to AT SELECTION-SCREEN ....
    The logic is somewhat different for nodes of the dynamic dictionary type. You must declare these nodes in the report using the NODES node TYPE type statement. In this case, type a dictionary type from the logical database for the node node - that is, the type of the data object node assigned to the node node can differ in different reports. In this case, the data object node is local to the -GET event and has the structure type. Outside the -GET event, a (global) data object node also exists and has the static type assigned to the node. The actual data is, however, returned in the local field node and is available only within the -GET event.
    Example
    The program uses the logical database F1S which has a structure where the table BOOKING appears below the table FLIGHT.
    NODES: SFLIGHT, SBOOK.
    GET SFLIGHT.
      WRITE: SFLIGHT-CARRID,
             SFLIGHT-CONNID,
             SLFIGHT-FLDATE,
             SFLIGHT-PLANETYPE.
    GET SBOOK.
      WRITE: SBOOK-BOOKID,
             SBOOK-CUSTOMID,
             SBOOK-ORDER_DATE.

  • For sel. field 'PERNR', no selection with SIGN = 'I'; OPTION ' ' allowed

    HI,
    I am getting this error when i m wrintg this routine.
    data: l_idx like sy-tabix.
    read table l_t_range with key
         fieldname = 'PERNR'.
              l_idx = sy-tabix.
              L_T_RANGE-IOBJNM   =      '0EMPLOYEE'.
              L_T_RANGE-FIELDNAME  =   'PERNR'.
              L_T_RANGE-SIGN      =     'I'.     
              L_T_RANGE-OPTION      =  '<>'.
              L_T_RANGE-LOW          = '1004586'.
              L_T_RANGE-HIGH        =   '1006263'.
              modify l_t_range index l_idx.
    l_idx = sy-tabix.
    For sel. field 'PERNR', no selection with SIGN = 'I'; OPTION '<>' allowed

    when you are defining low and high value, u have to use
    l_t_range-option  = 'BT'.

  • Calling routine from SO10

    Hi All,
        While calling a routine from SO10, both input table and output table are empty, I have used in following way..
    /: DEFINE &PER& = &PTXT1-PERNR&
    /: PERFORM ADDRESS IN PROGRAM ZHR_OFFER
    /: USING PER
    /: CHANGING &P0001-PERNR&
    /: CHANGING &STRAS&
    /: ENDPERFORM
    In routine (ABAP)
    FORM ADDRESS tables in_tab structure itcsy out_tab structure itcsy.
      Data:   v_name2 like p0006-name2,  " C/O
              v_stras like p0006-stras.  " Street/House no
      read table in_tab index 1.
      if sy-subrc = 0.
    EndForm.
    Here both in_tab and out_tab are empty while debugging i found that (in std program, which is calling routine)
    perform (co_perform-form) in program (co_perform-program)
                              tables co_sym_using
                                     co_set_symbols
    Here co_perform-form is filled with ADDRESS and
         co_perform-program is filled with ZHR_OFFER, but
         co_sym_using, co_set_symbols tables are empty.
    Since these tables are empty, values are not getting passed from SO10 to ABAP, Your input on this please.
    Thanks,

    Hi,
    Try this out ....
    In Routine:-
    <b>/: PERFORM ADDRESS IN PROGRAM ZHR_OFFER
    /: USING &PTXT1-PERNR&
    /: CHANGING &P0001-PERNR&
    /: CHANGING &STRAS&
    /: ENDPERFORM</b>
    In ABAP Program:-
    FORM ADDRESS tables in_tab structure itcsy out_tab structure itcsy.
    Data: v_name2 like p0006-name2, " C/O
    v_stras like p0006-stras. " Street/House no
    read table in_tab index 1.
    if sy-subrc = 0.
    pass the values to the fields
    Endif.
    read table out_tab index 1.
    out-tab-value = 'pass the value'.
    <b>MODIFY OUT_PAR INDEX SY-TABIX.</b>
    EndForm.
    Regards
    Sudheer

  • Error while activating a routine  "no object list"

    hi
    I am getting a error while activating a routine Rv50c601
    "There is no object list for INCLUDEs"  Please suggest on the error and resoulution
    regards
    Nishant

    Try running program RV80HGEN.
    Regards,
    Naiimesh Patel

  • Update Routine

    Hi community,
                          Iam working on Procurement, Here my issue is I have standard Info cubes and they are getting data directly from standard Infosources(According to data flow) . But I want to create DSO between Infocube and Infosources. I have standard DSOs for this infosources which loads data into the cube.
                          By using this DSOs I want to create Update Rules between Info cube and DSO. When I am creating update rules I have all keyfigure which are mapping to routines. In the Routine when I copy routine from Info source and paste it here " I AM GETTING PROCESS KEY IS NOT DEFINED IN COMMUNICATION STRUCTURE" .
                          I have knowledge about process key and this is existing in info source but not in DSO, please tell me how to solve this problem........ to map fields in update rules between Info Cube and DSO....
    Regds
    Dave.

    Dave
    Have you checked this previous thread
    https://forums.sdn.sap.com/click.jspa?searchID=1161413&messageID=1148365
    Thanks
    Sat

  • End routine to populate Info-cube.

    Hi ,
    Is it possible to load fileds of a Info-cube using End routines in the following scenairos.
    1.Loading fields of info-cube by referencing/using a master data table in End routine.
    2.Loading fields of info-cube by referencing/using a DSO fields  in End routine.
    3.Loading fields of info-cube by referencing/using a fields of another info-cube in End routine.
    Please advise.

    Hi Stalin,
    Before answering your question you need to understand something about "End routine" and "Expert routine".
    End Routine:
    - Result_fields and Result_package are available
    - End routine contains only those fields available in Data target.
    Start Routine:
    - Source_fields and Source_package are available
    - Start routine contains only those fields coming from source.
    Expert Routine:
    -  Source_fields, Source_package, Result_fields and Result_package are available
    So Now if you want write code to look up into some other cube, in look up you may need to test condition using source fields, in that case " Expert Routine" is only the option.
    For Ex
    my data target contains : x,y and z fields (it becomes result_field)
    source contains : a field ( it becomes source_field)
    now if i want to write look up code like this " select x,y and z fields from other cube where my a field value = other cube a field value. here u r accessing both S_F as well as R_F. So only the option is "EXPERT ROUTINE"
    or else u want to write code only with R_F then "End routine " is enough.
    Thanks,
    Gowd

  • Start Routine in Transformations

    Hi,
    For my reporting purpose i need to Transfer data from Cube to DSO
    I need a start routine for the following requirment when transfering data from Cube to DSO
    The Key fields in DSO are Location & Emp_ID and Date fields are ZAP_DTE (DATS)
    CUBE-->DSO
    While doing the transfer...i need to compare Emp and his ZAP_DTE AND need to transfer only if AP_DTE for that EMP is greater than the exisisting one else ignore the record
    As i new to BW please update with the routine
    Thanks

    Hi Shambhu
    We usually write out code in the section:
    $$ begin of routine - insert your code only below this line        -
    What is the difference between writing the code in
    $$ begin of 2nd part global - insert your code only below this line  *
    and
    $$ begin of routine - insert your code only below this line        - ?
    Kind regards
    Erik

  • Sample source code for fields mapping in expert routine

    Hi All
    Iam writing the expert routine from dso to cube for example I have two fields in dso FLD1,FLD2
    same fields in infocube also ,can any body provide me sample abap code to map source fields to target fields in expert routine,your help will be heighly appreciatble,it's an argent.
    regards
    eliaz

    Basic would be ;
    RESULT_FIELDS -xxx = <SOURCE_FIELDS> -xxx
    you have the source fields as source, and result fields for as the target. In between you can check some conditions as in other routines of transformation.
    BEGIN OF tys_SC_1, shows your source fields ( in your case DSO chars and key figures)
    BEGIN OF tys_TG_1, , shows your result fields ( in your case Cube characteristics)
    Hope this helps
    Derya

  • Firefox can't open normally without going through the "this is embarrassing" routine; nor does it close down properly; it also sticks frequently, i.e. screen freezes for a minute or more; should I uninstall and re-install to try and debug?

    Firefox can't open normally without going through the "this is embarrassing" routine; nor does it close down properly; I get the "end program" message and have to say "end now"it also sticks frequently, i.e. screen freezes for a minute or more; should I uninstall and re-install to try and debug?
    - I've used Firefox exclusively for around 2 years.
    - My outlook express has no problems
    - other programs seem unaffected; it seems peculiar to Firefox.
    - my main use is surfing the net, primarily entering competitions on line via specialist competition sites.
    - every day at some stage(s) I have to switch computer off as Firefox has got very slow/sticky/freezes.
    I'm not techy by any means, but I can only thing of un- and re-installing to hopefully start with a clean slate.

    Sounds like something is keeping Firefox from closing properly. See this: <br />
    https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

  • Using a variable in an allocation routine in SAP BPC 7.5NW

    Below is a very simple BPC allocation routine I wrote.  The data originally sits on a dummy profit center and needs to be allocated to all itu2019s relevant profit centers. These relevant profit centers can be derived from the profit center hierarchy (BPC_ + ID of entity).
    When I hardcode the Profitcenter and the entity, the routine works (as below). But what I really want is that it works variable as in the line that I commented out. Any idea whether this could work (BPC 7.5NW)  ? If not, I am afraid I need to go to ABAP, which is really a pitty
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    //*DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_"%ENTITY_SET%");USING=<<<; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_OKB);USING=<<<; TOTAL=<<<
    *DIM ENTITY WHAT=OKB; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *ENDALLOCATION
    Thanks
    Nico

    Gersh,
    It works now. I have implemented the below code (ENTITY needed to contain the variable as well). The relationship profitcenter and entity is very important as it derives the relevant profitcenters from the profit center hierarchy (e.g. all profitcenters under the legalentity node).
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *FOR %ENT% = %ENTITY_SET%
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_%ENT%);USING=<<<; TOTAL=<<<
    *DIM CATEGORY WHAT=FCSTCUR; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM ENTITY WHAT=%ENT%; WHERE=<<<; USING=<<<; TOTAL=<<<
    *ENDALLOCATION
    *NEXT
    Thanks
    Nico

  • Error while scheduling data collector: Error adding routine 'SAPTOOLS.DBH_FWK_CLEANUP' to task scheduler

    Error Detail
    Exception CX_DBA_ADBC in program RAGS_SISE_ACTIVITY_JOB line 0
    Kernel Error ID:
    WP ID: 23
    WP PID: 28977
    SYSID: CR5
    SY-SUBRC: 0
    SQL statement:
    Database: CR5
    caused by
    Exception CX_SQL_EXCEPTION in class CL_SQL_STATEMENT
    Kernel Error ID:
    DB Error: Yes
    SQL Code: 444-
    SQL Message: SQL0444N Routine "*TASK_ADD" (specific name "SQL140704080729140") is implemented with code in library or path "...ib/function/SYSPROC.ADMIN_TASK_ADD", function "*" which cannot be accessed. Reason code: "4". SQLSTATE=42724 row=1
    DB Object Exists: No
    Duplicated Key: No
    Internal Error: 1
    Invalid Cursor: No
    Unknown Connection: No
    Connection Closed: No
    System Detail:
    Solman 7.1
    ST    710    0010    SAPKITL710    SAP Solution Manager Tool
    SAP_BASIS    702    0013    SAPKB70213    SAP Basis Component
    Managed system:
    SAP CRM ABAP 7.0
    SAP_BASIS    701    0005    SAPKB70105    SAP Basis Component
    SAP_ABA    701    0005    SAPKA70105    Cross-Application Component
    PI_BASIS    701    0005    SAPK-70105INPIBASIS    Basis Plug-In
    ST-PI    2008_1_700    0008    SAPKITLRD8    SAP Solution Tools Plug-In
    CRMLOY    700    0005    SAPK-70005INCRMLOY    CRM Loyalty Management 700
    SAP_BS_FND    701    0005    SAPK-70105INSAPBSFND    SAP Business Suite Foundation
    SAP_BW    701    0005    SAPKW70105    SAP Business Warehouse
    LCAPPS    2005_700    0007    SAPKIBHD07    LC Applications (LCAPPS) 2005_700
    Database DB2
    db2level
    DB21085I  Instance "db2cr5" uses "64" bits and DB2 code release "SQL09016" with
    level identifier "01070107".
    Informational tokens are "DB2 v9.1.0.6", "s081007", "U817474", and Fix Pack
    "6".
    Activity detail:
    We are performing managed system configuration for CRM into Solman by using solman_setup transaction. While performing the Database Extractor Setup in step 8 we have observed above error.
    Action take at our end:
    1. Clean the LMDB and restart the configuration. - no luck
    2. Upgrade the hostagent at CRM - No luck
    3. Update the SLD for CRM entry - no luck
    4. implemented SAP notes:
    875986    Note Assistant: Important notes for SAP_BASIS up to 702
    1246964    Note Assistant: Master language of notes incorrect
    1262653    SPAU: New object is deleted after note is reset
    1309424    DB6: DBA Cockpit Correction Collection SAP Basis 7.01 / 7.11
    1335017    DB6:"Remove Redundant Restrictions" can return wrong results
    1349277    Note Assistant: Method cannot be implemented
    1365677    Note Assistant: Runtime error MOVE_CAST_ERROR during implmtn
    1372652    DB6: Short dump when viewing diaglog due to NULL bytes
    1373957    DB6: CX_SY_CONVERSION_OVERFLOW in new EXPLAIN
    1376543    DB6: OPTIONS parameters for backup jobs in DB13
    1378499    DB6: CLI error CLI0112E with "REORGCK_ALL" job
    1379260    DB6: Add BW query name as comment to SQL statements
    1379346    DB6: Scheduling of data collectors fails
    1381179    DB6: Incorrect values for 'number of objects in tablespace'
    1382634    DB6: Unable to create view 'SAPTOOLS.DBH_TABCLASS'
    1382996    DB6: Update of DPW Back-End in Monitored DBs does not work
    1384238    DB6: Defect scheduler on DB2 9.1 FP7/FP8 for LUW on Linux
    1387022    DBA Cockpit: Month displayed incorrectly in DB13C
    1387297    DB6: SQL-Fehler 901 during RUNSTATS and REORGCHK
    1397709    Ignore Dynpro element fields AGLT and ADEZ in SNOTE/CWB
    1398258    DB6: Job REORGCK_ALL places load on package cache
    1400843    DB6: Incorrect display of key fields in EXPLAIN
    1412719    SNOTE: error when implementing enhancement implementations
    1413008    DB6: SQL0206N in function module DB6_PM_LOCKSNAP
    1414624    DB6: Performance views if database monitors are deactivated
    1414626    DB6: Incorrect display of file system sizes of containers
    1415680    Note Assistant: Incorrect status in subsequent systems
    1421157    DB6: SQL error 204 when accessing table DBSTATC
    1425487    SE24: Error regarding READ-ONLY for complex attributes
    1426092    DB6: Incorrect DROPPED TABLE clause for tablespaces
    1426480    DB2: Incorrect display of registry values for DPF systems
    1427030    DB6: Container specifications for tablespaces not changeable
    1429082    DB6: No REORG after deactivating compression
    1429687    DB6: SQL cache performance
    1438168    DB6: REORGCHK recommendations for indexes are missing
    1444373    DB6: Loading the package cache with monitor functions
    1449482    DB6: Error message 'Command LIST_DB2DUMP failed'
    1451958    DBA Cockpit: Incorrect start time for jobs
    1452197    DB6: SQL error 100 in job REORGCK_ALL
    1452502    DBA Cockpit: Jobs are missing in central planning calendar
    1455897    DB6: Display of data classes is not updated
    1456379    DB6: No display of indexes in data classes
    1460895    DB6: SQL0104N during creation of WLM threshold
    1462415    DB6: SQL -444 error messages in system log
    1462855    DB6: Incorrect database name in HA environment
    1464800    DB6: SQL Commands executes automatically on system change
    1464858    DB6: COMPUTE_BCD_OVERFLOW during EXPLAIN Test Execute
    1469515    DB6: Runtime error GETWA_NOT_ASSIGNED_RANGE in SAPLSDB6MON
    1485313    DBA Cockpit: Incomplete system entries after SLD import
    1486972    DB6: Parameters for DB/DBM configuration cannot be changed
    1489968    DBA: DBA Cockpit WebDynpro does not care about HTTPURLLOC
    1496515    DB6: SQL error 1428N when starting the DBA Cockpit
    1501130    DB6: SQL error 802 in DB6_DIAG_COUNT_TABLE_ENTRIES
    1508074    RZ20: 'Connection' attribute does not report alerts
    1509121    DBA Cockpit: Endless loop occurs when starting DBA Cockpit
    1511803    DB6: DB_TABLE_DATA_READ does not return data
    1521525    DB6: Table display is not sorted
    1522617    DB6: Availability of BW-specific functions in DBA Cockpit
    1532114    DB6: Too many locks when collecting table history
    1536787    DBA Cockpit: WebDynpro Explain - LOADDATA requires a model
    1542311    DB6: Runtime error BCD_OVERFLOW in auto maintenance display
    1546866    DB6: Runstats_DBSTATC interprets runtime param. incorrectly
    1551729    DB6: Incorrect number of key fields in EXPLAIN
    1552812    DB6: Use of db2sap functions
    1559699    DB6: Missing data in SQL cache display
    1559967    DB6: SQL error 206 when collecting the table history
    1563327    DB6: SQL error SQL0551N when accessing SYSSTAT.TABLES
    1568800    DB6: Error when deleting alert messages
    1569592    DB6: SQL error SQL0433N in EXPLAIN
    1569669    DB6: Incomplete history for performance data
    1571365    DB6: SQL error SQL0443N in alert monitoring of DPF system
    1576094    DB6: Database error SQL1751N in partitioning wizard
    1597281    DB6: Incorrect compression displays for tables
    1599764    DB6: SQL error 1428 when calling transaction SM50
    1602403    DB6: No VOLATILE attribute after RUNSTATS or REORG job
    1613270    DB6: Runtime error DYNPRO_FIELD_CONVERSION in DBA cockpit
    1615698    DBA Cockpit: Incorrect date selection in DB13C
    1619084    DBA Cockpit: Runtime err MESSAGE_TYPE_X when alert displayed
    1619636    DBA Cockpit: Daily scheduling is not deleted
    1624436    DBA Cockpit: Errors when accessing SHM area CL_DBA_SHM_AREA
    1639631    DBA Cockpit: Failed schedulings in DB13
    1720495    Invalid deimplementation of obsolete notes by Snote tool
    Kindly suggest the correct solution to fix the issue.

    Dear Deepak
    Thanks for quick response.
    Note 1462415 - DB6: SQL -444 error messages in system log  ( SAP_BW 701 SP7 suggested)
    This is already implemented and updated in my 1st message.
    Note 978319 - DB6: Incorrectly cataloged table functions
    This note can not be implemented due to version issue.
    Kindly suggest some more hints on top of what I already did.
    Regards
    Bipin

Maybe you are looking for

  • Files added not show in main playlist

    I have checked that this issue has been reported in previous version of iTunes and yet I experience the same issue in iTunes 11 (probably internally it is still using the same itunes 10 mechanism).  Sometimes if one added files to itunes, it will not

  • F110: Volume of AP invoices

    Hi All, We are experiencing an issue with running the Payment Run (F110) to process open AP invoices. We are processing the entire Fiscal Year (ex: 2010) worth of AP invoices but system is not able to handle due to huge data. The main problem seems t

  • Adobe Acorbate Reader 9.3.3 won't install

    I am running Windows Vista.  I could not install an update to Acrobat Reader, so I uninstalled what I had and downloaded and tried to install the latest version. I keep getting a popup with the message: Error 1303.  The installer has insufficient pri

  • Function Module / BAPI for reprinting a production order

    Does anyone know a Function Module to do a production order re-print?   Not an original, just a copy. Thanks, --Amy Smith --Haworth

  • Where to get java 1.4.2 for Windows 2003 Server x64?

    Hello, I am installing Netweaver 7.0 SR3 on Windows Server 2003 Standard x64 running on a Xeon 5100 which I believe is i386 64-bit. I tried to use the JDK 1.4.2 which is pointed to by sapnote 941595. However, this appears to be for AMD and will not i