Unable to read the wage type amount in payroll report output...

Hi all,
In the program below I am not able to see the car amount incurred by the office in the output, please find the error....
Regards
john
*& Report  ZHR_PY_REPORT1                                              *
REPORT  ZHR_PY_REPORT1                          .
         TABLES
TABLES : PERNR.
      INFOTYPES
INFOTYPES : 0000,
            0001,
            0002,
            0006,
            0105.
     STRUCTURES
TYPES : BEGIN OF T_FINAL,
        PERNR  TYPE PERNR_D,
        STAT2  TYPE STAT2,
        BUKRS  TYPE BUKRS,
        PLANS  TYPE PLANS,
        ORGEH  TYPE ORGEH,
        ABKRS  TYPE ABKRS,
        VORNA  TYPE VORNA,
        NACHN  TYPE NACHN,
        GBDAT  TYPE GBDAT,
        STRAS  TYPE STRAS,
        ORT01  TYPE ORT01,
        PSTLZ  TYPE PSTLZ,
        MAILID TYPE CHAR255,
        CARAT  TYPE CHAR15,
        END OF T_FINAL.
      INTERNAL TABLES
DATA : IT_FINAL TYPE STANDARD TABLE OF T_FINAL.
      WORK AREAS
DATA : WA_FINAL  TYPE T_FINAL.
PARAMETER : P_DOWN AS CHECKBOX.
START-OF-SELECTION.
GET PERNR.
*SUBROUTINE TO FETCH DATA FROM INFOTYPES
  PERFORM F_FETCH_DATA_FROM_INFTY.
END-OF-SELECTION.
*SUBROUTINE TO DISPLAY DATA
  PERFORM F_DISPLAY_DATA.
*&      Form  F_FETCH_DATA_FROM_INFTY
      text
FORM F_FETCH_DATA_FROM_INFTY .
  RP_PROVIDE_FROM_LAST P0000 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-PERNR = P0000-PERNR.
    WA_FINAL-STAT2 = P0000-STAT2.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0001 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-BUKRS = P0001-BUKRS.
    WA_FINAL-PLANS = P0001-PLANS.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0002 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-VORNA = P0002-VORNA.
    WA_FINAL-NACHN = P0002-NACHN.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0006 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-STRAS = P0006-STRAS.
    WA_FINAL-ORT01 = P0006-ORT01.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0105 '0010' PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-MAILID = P0105-USRID_LONG.
  ENDIF.
*SUBROUTINE TO FETCH EMPLOYEE PAYROLL RESULTS
  PERFORM F_FETCH_PAYROLL_DATA.
  APPEND WA_FINAL TO IT_FINAL.
  CLEAR WA_FINAL.
ENDFORM.                    " F_FETCH_DATA_FROM_INFTY
*&      Form  F_DISPLAY_DATA
      text
FORM F_DISPLAY_DATA .
  LOOP AT IT_FINAL INTO WA_FINAL.
   AT FIRST.
     WRITE : / 'EMP.NO',
             10 'FIRST NAME',
             20 'COMPANY CODE'.
   ENDAT.
    WRITE : / WA_FINAL-PERNR,
            10 WA_FINAL-VORNA,
            20 WA_FINAL-BUKRS,
            30 WA_FINAL-CARAT.
  ENDLOOP.
ENDFORM.                    " F_DISPLAY_DATA
*&      Form  F_FETCH_PAYROLL_DATA
      text
FORM F_FETCH_PAYROLL_DATA .
  DATA : W_MOLGA TYPE MOLGA,
         W_SEQNR TYPE CDSEQ,
         W_RELID TYPE RELID_PCL2.
  DATA : IT_RGDIR TYPE STANDARD TABLE OF PC261,
         IT_RESULT  TYPE PAY99_RESULT.
  DATA : WA_RT TYPE PC207.
  CALL FUNCTION 'CU_READ_RGDIR'
    EXPORTING
      PERSNR          = P0000-PERNR
    IMPORTING
      MOLGA           = W_MOLGA
    TABLES
      IN_RGDIR        = IT_RGDIR
    EXCEPTIONS
      NO_RECORD_FOUND = 1
      OTHERS          = 2.
  IF SY-SUBRC EQ 0.
    CALL FUNCTION 'CD_READ_LAST'
      EXPORTING
        BEGIN_DATE      = PN-BEGDA
        END_DATE        = PN-ENDDA
      IMPORTING
        OUT_SEQNR       = W_SEQNR
      TABLES
        RGDIR           = IT_RGDIR
      EXCEPTIONS
        NO_RECORD_FOUND = 1
        OTHERS          = 2.
    IF SY-SUBRC EQ 0.
      SELECT SINGLE RELID FROM T500L INTO W_RELID WHERE MOLGA = W_MOLGA
      IF SY-SUBRC EQ 0.
        CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
          EXPORTING
            CLUSTERID                    = w_relid
            EMPLOYEENUMBER               = P0000-PERNR
            SEQUENCENUMBER               = W_SEQNR
            READ_ONLY_INTERNATIONAL      = 'X'
          CHANGING
            PAYROLL_RESULT               = IT_RESULT
          EXCEPTIONS
            ILLEGAL_ISOCODE_OR_CLUSTERID = 1
            ERROR_GENERATING_IMPORT      = 2
            IMPORT_MISMATCH_ERROR        = 3
            SUBPOOL_DIR_FULL             = 4
            NO_READ_AUTHORITY            = 5
            NO_RECORD_FOUND              = 6
            VERSIONS_DO_NOT_MATCH        = 7
            OTHERS                       = 8.
        IF SY-SUBRC EQ 0.
          LOOP AT IT_RESULT-INTER-RT INTO WA_RT.
            IF WA_RT-LGART EQ 'M810'.
              WA_FINAL-CARAT = WA_RT-BETRG.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDIF.
  ENDIF.
ENDFORM.                    " F_FETCH_PAYROLL_DATA

Hi all,
In the program below I am not able to see the car amount incurred by the office in the output, please find the error....
Regards
john
*& Report  ZHR_PY_REPORT1                                              *
REPORT  ZHR_PY_REPORT1                          .
         TABLES
TABLES : PERNR.
      INFOTYPES
INFOTYPES : 0000,
            0001,
            0002,
            0006,
            0105.
     STRUCTURES
TYPES : BEGIN OF T_FINAL,
        PERNR  TYPE PERNR_D,
        STAT2  TYPE STAT2,
        BUKRS  TYPE BUKRS,
        PLANS  TYPE PLANS,
        ORGEH  TYPE ORGEH,
        ABKRS  TYPE ABKRS,
        VORNA  TYPE VORNA,
        NACHN  TYPE NACHN,
        GBDAT  TYPE GBDAT,
        STRAS  TYPE STRAS,
        ORT01  TYPE ORT01,
        PSTLZ  TYPE PSTLZ,
        MAILID TYPE CHAR255,
        CARAT  TYPE CHAR15,
        END OF T_FINAL.
      INTERNAL TABLES
DATA : IT_FINAL TYPE STANDARD TABLE OF T_FINAL.
      WORK AREAS
DATA : WA_FINAL  TYPE T_FINAL.
PARAMETER : P_DOWN AS CHECKBOX.
START-OF-SELECTION.
GET PERNR.
*SUBROUTINE TO FETCH DATA FROM INFOTYPES
  PERFORM F_FETCH_DATA_FROM_INFTY.
END-OF-SELECTION.
*SUBROUTINE TO DISPLAY DATA
  PERFORM F_DISPLAY_DATA.
*&      Form  F_FETCH_DATA_FROM_INFTY
      text
FORM F_FETCH_DATA_FROM_INFTY .
  RP_PROVIDE_FROM_LAST P0000 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-PERNR = P0000-PERNR.
    WA_FINAL-STAT2 = P0000-STAT2.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0001 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-BUKRS = P0001-BUKRS.
    WA_FINAL-PLANS = P0001-PLANS.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0002 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-VORNA = P0002-VORNA.
    WA_FINAL-NACHN = P0002-NACHN.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0006 SPACE PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-STRAS = P0006-STRAS.
    WA_FINAL-ORT01 = P0006-ORT01.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0105 '0010' PN-BEGDA PN-ENDDA.
  IF PNP-SW-FOUND EQ '1'.
    WA_FINAL-MAILID = P0105-USRID_LONG.
  ENDIF.
*SUBROUTINE TO FETCH EMPLOYEE PAYROLL RESULTS
  PERFORM F_FETCH_PAYROLL_DATA.
  APPEND WA_FINAL TO IT_FINAL.
  CLEAR WA_FINAL.
ENDFORM.                    " F_FETCH_DATA_FROM_INFTY
*&      Form  F_DISPLAY_DATA
      text
FORM F_DISPLAY_DATA .
  LOOP AT IT_FINAL INTO WA_FINAL.
   AT FIRST.
     WRITE : / 'EMP.NO',
             10 'FIRST NAME',
             20 'COMPANY CODE'.
   ENDAT.
    WRITE : / WA_FINAL-PERNR,
            10 WA_FINAL-VORNA,
            20 WA_FINAL-BUKRS,
            30 WA_FINAL-CARAT.
  ENDLOOP.
ENDFORM.                    " F_DISPLAY_DATA
*&      Form  F_FETCH_PAYROLL_DATA
      text
FORM F_FETCH_PAYROLL_DATA .
  DATA : W_MOLGA TYPE MOLGA,
         W_SEQNR TYPE CDSEQ,
         W_RELID TYPE RELID_PCL2.
  DATA : IT_RGDIR TYPE STANDARD TABLE OF PC261,
         IT_RESULT  TYPE PAY99_RESULT.
  DATA : WA_RT TYPE PC207.
  CALL FUNCTION 'CU_READ_RGDIR'
    EXPORTING
      PERSNR          = P0000-PERNR
    IMPORTING
      MOLGA           = W_MOLGA
    TABLES
      IN_RGDIR        = IT_RGDIR
    EXCEPTIONS
      NO_RECORD_FOUND = 1
      OTHERS          = 2.
  IF SY-SUBRC EQ 0.
    CALL FUNCTION 'CD_READ_LAST'
      EXPORTING
        BEGIN_DATE      = PN-BEGDA
        END_DATE        = PN-ENDDA
      IMPORTING
        OUT_SEQNR       = W_SEQNR
      TABLES
        RGDIR           = IT_RGDIR
      EXCEPTIONS
        NO_RECORD_FOUND = 1
        OTHERS          = 2.
    IF SY-SUBRC EQ 0.
      SELECT SINGLE RELID FROM T500L INTO W_RELID WHERE MOLGA = W_MOLGA
      IF SY-SUBRC EQ 0.
        CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
          EXPORTING
            CLUSTERID                    = w_relid
            EMPLOYEENUMBER               = P0000-PERNR
            SEQUENCENUMBER               = W_SEQNR
            READ_ONLY_INTERNATIONAL      = 'X'
          CHANGING
            PAYROLL_RESULT               = IT_RESULT
          EXCEPTIONS
            ILLEGAL_ISOCODE_OR_CLUSTERID = 1
            ERROR_GENERATING_IMPORT      = 2
            IMPORT_MISMATCH_ERROR        = 3
            SUBPOOL_DIR_FULL             = 4
            NO_READ_AUTHORITY            = 5
            NO_RECORD_FOUND              = 6
            VERSIONS_DO_NOT_MATCH        = 7
            OTHERS                       = 8.
        IF SY-SUBRC EQ 0.
          LOOP AT IT_RESULT-INTER-RT INTO WA_RT.
            IF WA_RT-LGART EQ 'M810'.
              WA_FINAL-CARAT = WA_RT-BETRG.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDIF.
  ENDIF.
ENDFORM.                    " F_FETCH_PAYROLL_DATA

Similar Messages

  • Get the wage type, amount and cost center

    Dear Expert,
    Is there any FM to get the payroll result for each wage type, amount, and cost center allocation?
    Example,
    Employee Tom was in cost center A with wage type 1001 ($1000) in Jan.
    But in Feb payroll, we need to retro the cost center for employee Tom to cost center B from 1-jan onwards.
    So after the Feb payroll run, I would like to have the result like below:
    Cost Center A Jan  $1000
    Cost Center A Feb -$1000
    Cost Center B Jan $0
    Cost Center B Feb $2000
    But if I use the FM HR99L00_GET_RETRO_MONTH_DIFF, I cannot get the value like below because the cost center is already replace in infotype 0001
    Cost Center B Jan $1000
    Cost Center B Feb $1000
    Please help.
    Thanks,
    WF

    Hello
    First you can use the FM HR_PT_READ_PAYROLL_RESULT to retrieve the payroll results of an employee. For your purpose you need just the international cluster, so you can use the table type pay99_result.
    Say if you have run the payroll run for the Feb with the new cost center assignment, you can get all these details from the WPBP cluster of the returned result. You'll will have one record in WPBP for each pay period. Using the index of the result you need i.e. for the month of Feb, get the amount value form cluster RT in the same payroll result. Now you should have the amount you are looking for.
    Regards
    Ranganath

  • Not to show the wage type when amount is zero in payslip

    Hi Gurus,
    I am not sure what's wrong with the rule below, my intention is to display the text and the wage type amount when the wage type amount is not Zero, and not to display the text and the amount when wage type amount is zero.
    Below is the rule i apply to the wage type text, but it only works when the wage type amount is not EQ 0. When the WT amount is zero, the WT text text still appear
    rule   no. Table    field  Typ CO   Value1   table     new value
    1      1 RT BETRG N      NE            ' 0       TEXT      10 (TEXT 10 is the WT text)
    1      2 RT BETRG N      EQ            ' 0       TEXT      34 (text 34 is blank line)
    I apply the below rule for the amount and this is working fine
    rule   no.  Table  field    Typ   CO     Value 1    table new value
    2        1       RT   BETRG  N    NE         ' 0           RT      BETRG
    2        2       RT   BETRG  N      EQ       ' 0                      SUPPRESS PRINTING
    I need some pionters to the rules to make it work. Thanks a lot.
    Rgds,
    C
    Edited by: Team HR on Sep 13, 2010 9:29 AM

    if the amount is 0 than there is no wage type in RT right than wht is the need of going through the rule

  • Wage type amounts in cluster PCL4

    Hi all,
    I am trying to capture the wage type amount changes in infotype logging. enables infotype logging. Used function module 'HR_INFOTYPE_LOG_GET_LIST' and HR_INFOTYPE_LOG_GET_DETAIL to retrieve the change data.
    So far so fine. But the structuer returned by these function module contains the amount in some non readable format(this is the value for 4500 --  #E倀ఀ#ఠ ) . Can any one guide me as to how toretrieve the wage amount changes from cluster PCL4
    regards
    sam

    Ahmed,
    thanks for ur reply. I a passing the correct structure. Infact i have retrieved about 20 other fields. I am having problem only with the amount field. As u said my lasyt option woululd be to write maacros as done by the standard program. but was checking whether i can do away without writing a different peice of code altogether.
    I any one has retrieved amount fields from cluster using this FMs, please let me know how.
    Appreictae any suggestions.
    sam

  • Infotype 0008 and Wage Type Amount

    Hi ,
    I can see the Wage type in infotype 0008 , but when I input an amount in "Annual salary" , the Wage type Amount is not calulated ( stay blank ) .
    The Wage type Amount should be = Annual salary / PFREQ .
    What did I miss ? Feature PFREQ and LGMST are setup . Can see the Wage Type , but no calculation is done ?
    Help will be rewarded
    Thank you.

    Hello there!
    There are 3 important things to note in ANSAL.
    1. Period Parameters - Table T549R
    2. Annual Salary Wage Type - When you are defining the characteristics you will have to use ANSAL as Indirect evaluation module
    3. Monthly/Period Wage types - the wages which will make the sum for Annual Salary.
    Try to complete all the steps present in PA-> Payroll Data -> Basic Pay -> Define annual salary.
    Thanks
    Yash

  • How to get the split period wage type amount in payslip?

    How to get the split period wage type amount in payslip?
    Payroll period for 01.01.09 to 31.01.09.
    1.     Employee is active from 1.1.09 to 10.01.09
    2.     Employee is inactive from 11.01.09 to 20.01.09
    3.     Employee is again active from 21.01.09 to 31.01.09
    In Result Table three split periods are created.
    From 01.01.09 to 10.01.09 u2018Basic Salaryu2019 Wtype  1101 amt is 20.00
    From 11.01.09 to 20.01.09 u2018Basic Salaryu2019 Wtype 1101 amt is 00.00
    From 21.01.09 to 31.01.09 u2018Basic Salaryu2019 Wtype 1101 amt is 10.00
    My requirement is to print only the last split period in payslip from 21.01.09 to 31.01.09. May you please help me in this regard.
    Thanks in advance
    Regards,
    Rajesh.

    Hi
    Try to read the below:
    WPBPC : Distribute Lump Sum Wage Elements to WPBP Periods
      Object
        Operation
      Use
        Operation WPBPC distributes the amount of the current wage type to the
        active WPBP periods in the payroll period.
      Input
        The current wage type in the header entry of table OT is used as input
        for this operation.
      Procedure
        Within payroll, wage types are assigned to a fixed WPBP period by
        infotype 0014 Recurring Payments/Deductions, for example. However, you
        may want to distribute this payment to all active WPBP periods, which is
        what would happen if the wage type were entered in basic pay. Therefore,
        various specifications exist for parameter S:
        o   If the specification is 'A', and if several active WPBP periods
            exist, the amount is simultaneously reduced on a calendar-day basis.
        o   If the specification is 'D', the wage type is distributed to all
            existing WPBP periods without the amount being reduced.
        o   If the specification is 'S', and if the validity period starts or
            ends during the period, the entry in table WPBP is split using this
            date. The wage type is stored in table OT for the corresponding WPBP
            period.
            This parameter is only allowed if processing was accessed using
           function P0014.
           In this case, infotype 0014 must be processed before absence
           valuation and function PARTT. Otherwise, rejections occur during
           payroll processing.
       o   Specification 'X' is the combination of 'A' and 'S'.
           This parameter is only allowed if processing was accessed using
           function P0014.
       o   If the specification is 'W', and if the validity period starts or
           ends during the period, the entry in table WPBP is split using this
           date (as with option 'S'). Unlike 'S', the wage type is not stored
           in table OT.
           This parameter is only allowed if processing was accessed using
           function P0014.
       o   If the specification is ' ', the wage type is stored in table OT for
           each WPBP period in which the validity interval fits.
           This parameter is only allowed if processing was accessed using
           functions P0014 or P0015.
       If the WPBP split is set for a wage type, the wage type is stored
       without changes in table OT. If you specify a different wage type name
       in the second parameter, the wage type is stored with this name in table
       OT. Before you execute operation WPBPC, you may therefore need to delete
       the split using operation ELIMI.
       If a country-specific split (C1, C2, or C3 split) is set, the operation
       interprets it as an error. The employee in question is rejected by
       payroll. All other splits are transferred as they are.
      Output
        The processed wage type, or the wage type specified in the operation
        call, is written to table OT (output table) with the appropriate split
        indicator and reduced amount as operation output for each WPBP period.
        Parameter specification 'W' is the only exception.
      Syntax
        OOOOOSVVVV
        OOOOO       WPBPC       Operation name
        S
                    blank       distribute to all WPBP periods
                    S           split and distribute WPBP
                    W           split but do not distribute WPBP
                    A           distribute to active WPBP periods
                                with calendar-day reductions
                    D           distribute to all existing
                                WPBP periods
                    X           combination of 'S' and 'A'
        VVVV                    Results wage type
                    blank       input wage type = results wage type
                    wage        wage type name of input wage type is replaced
                     type       by wage type name of results wage
                     name       type
        Wage type before operation:
      Example
        M100        02          3000
        WPBP split
        01  June 01 - June 20 active
        02  June 21 - June 30 active
        VVVV                    Results wage type
                    blank       input wage type = results wage type
                    wage        wage type name of input wage type is replaced
                     type       by wage type name of results wage
                     name       type
        Wage type before operation:
      Example
        M100        02          3000
        WPBP split
        01  June 01 - June 20 active
        02  June 21 - June 30 active
        Wage type before operation:
        WType       WPBP        Amount
        M100        00          3000.-
        M200        02          2000.-
        Operation:   WPBPCA
        Wage type after operation:
        WType       WPBP        Amount
        M100        01          2000.-
        M100        02          1000.-
        M200        02          2000.-
        Operation:   WPBPC
        Wage type after operation:
        WType       WPBP        Amount
        M100        01          3000.-
        M100        02          3000.-
        M200        02          2000.-
    Regards
    Team Member.

  • HR-PY: How To Deduct Time Wage Type Amount From Salary?

    Dear All,
    How to deduct a time wage type amount from the total gross?
    Now I have a time wage type, "Unpaid Leave".
    If an employee have an unpaid leave in a month, payroll will calculate the unpaid amount and put it into Wage Type "Unpaid Leave", and the amount will be deducted from his salary.
    What is the approach to deduct the unpaid leave amount from his salary?
    Thanks.

    I've done the part of Absence Valuation.
    During payroll simulation, I can get the correct number of absence day and the correct amount of unpaid absence in the wage type.
    However, I do not know any following steps on how to deduct that amount from the salary.
    Do you mean I should use factoring to do the deduction?
    Thanks.

  • PCR Social security: want to use wage type amount in decision operation

    PCR Social Security: Want to use wage type amount for comparison  
    Posted: Oct 21, 2010 11:00 AM                                  Reply
    Dear Guru's,
    hope u'll b fine and enjoying good health. Below is PCR for social security that I hav currently configured. Its working fine. However I have another scenario to add in this PCR.
    Existing PCR works on the following logic
    6% of Gross pay if employee's pay less than or equal to 10,000/-.
    KZPESI=10000 from T511K
    KZMESI=6 from T511K
    IZPESI=600 from T511P
    Now i want to add another comparison. also calculate Social security for employee those hire on pay less than or equal to 10,000 but currently have salary greater than 10K. for this I'll enter Social security amount in IT0014 subtype 6004. I
    ZSSM Personnal Calculation Rule ZSSM
    3
    6004 Social security Contrib
    AMT= 0001 Set
    AMT+ 0002 Addition
    AMT+ 0003 Addition
    AMT+ 0004 Addition
    AMT+ 1001 Addition
    ROUNDGK100 Round AMT to next
    AMT?KZPESI Comparison
    <
    AMT*KZMESI Multiplication
    AMT/100 Division
    RTE=TKSOLL Set
    RTE-TKAU** Subtraction
    ROUNDGK100 Round AMT to next
    ADDWT * OT Output table
    =
    AMT/TKDIVI Division
    RTE=TKSOLL Set
    RTE=TKAU** Set
    MULTI ARA Multipl.amt/no/rate
    AMT=IZPESI Set
    ROUNDGK100 Round AMT to next
    ADDWT * OT Output table
    >
    if there is a value in 0014 subtype 6004 then
    AMT/TKDIVI Division
    RTE=TKSOLL Set
    RTE=TKAU** Set
    MULTI ARA Multipl.amt/no/rate
    AMT=IZPESI Set
    ROUNDGK100 Round AMT to next
    ADDWT * OT Output table
    Want to know how I can use wage type amount in comparison. look at the above lines in bold where i want to apply
    kindly help
    Edited by: Imran on Oct 21, 2010 11:40 AM

    You say "if there is a value in 0014 subtype 6004 then...", so I will assume that you are talking of WT 6004 in Infotype 0014.
    So, in a PCR immediately after IT0014 is processed (with function P0014 in your schema), look for WT 6004.  If it exists with a number (or an amount), create a temporary variable to act as a "flag"  (as in ADDWT&6004 or ADDWT&HIRE).
    Then, in PCR ZSSM, you can query that temporary variable with the sequence of operations NUM=& HIRE NUM?0 (or NUM=& 6004 NUM?0 ). If the return value is =, it means that there was no IT0014 with WT 6004, and if the return value is * it means that there was.

  • When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a s

    When I start the program I instantly see this message:  "Adobe Bridge encountered a problem and is unable to read the cache, please try purging the central cache in cache preferences to correct the situation".  I have tried this and it only results in a stalled/locked program.  I have tried restarting my machine multiple times and tried reconfiguring how the cache is managed.  Do you have anyone who could walk me through each step to correct this problem which just started two days ago.  I have owned this program for at least a year now...

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • My bridge is not working normally and keep given me this message : bridge encountered a problem and is unable to read the cache . Please try purging the central cache in cache preferences to correct the situation

    My bridge is not working normally and keep given me this message : bridge encountered a problem and is unable to read the cache . Please try purging the central cache in cache preferences to correct the situation

    And did you then actually purge the cache?
    Please realize that you have given ZERO details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • OBIEE Writeback error - The system is unable to read the Write Back Templat

    Hi all,
    I'm trying to set up the write back feature for one of the reports. All the set up up including XML file in the custommessage folder is done.Ensured the webmessage name tag value (pmet_update) is same as the one used in the report write back template value etc.
    Also the server is restarted after the latest XML file(as shown below) is copied after all type of debugging with similar threads on this matter.
    But when i click on the update button in the report (button is highlighted), i'm getting the error
    "The system is unable to read the Write Back Template 'pmet_update'. Please contact your system administrator."
    here is the xml.
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="WriteBack" table="Messages">
    <WebMessage name="pmet_update">
    <XML>
    <writeBack connectionPool="PMTCOG">
    <insert></insert>
    <update> UPDATE XREF_PMET_URL SET URL= '@{c1}' WHERE API='@{c0}'</update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    Could you please help?

    Hi,
    I think that you have to spacify also an SQL statement for the update tag, for example:
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="WriteBack" table="Messages">
    <WebMessage name="pmet_update">
    <XML>
    <writeBack connectionPool="PMTCOG">
    <insert> select null from dual</insert>
    <update> UPDATE XREF_PMET_URL SET URL= '@{c1}' WHERE API='@{c0}'</update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    The witeback wants for both the tags (<insert></insert> and <update></update>) an SQL Statement.
    For me it works.
    Let me know!
    Gianluca Ancarani

  • PCR Social Security: Want to use wage type amount for comparison

    Dear Guru's,
    hope u'll b fine and enjoying good health.  Below is PCR for social security that I hav currently configured. Its working fine. However I have another scenario to add in this PCR. 
    Existing PCR works on the following logic
    6% of Gross pay if employee's pay less than or equal to 10,000/-.
    KZPESI=10000 from T511K
    KZMESI=6        from T511K
    IZPESI=600      from T511P
    Now i want to add another comparison. also calculate Social security for employee those hire on pay less than or equal to 10,000 but currently have salary greater than 10K. for this I'll enter Social security amount in IT0014 subtype 6004.  I
    ZSSM Personnal Calculation Rule ZSSM
        3
          6004 Social security Contrib
            AMT=  0001 Set
            AMT+  0002 Addition
            AMT+  0003 Addition
            AMT+  0004 Addition
            AMT+  1001 Addition
            ROUNDGK100 Round AMT to next
            AMT?KZPESI Comparison
              <
                AMT*KZMESI Multiplication
                AMT/100    Division
                RTE=TKSOLL Set
                RTE-TKAU** Subtraction
                ROUNDGK100 Round AMT to next
                ADDWT *    OT   Output table
              =
                AMT/TKDIVI Division
                RTE=TKSOLL Set
                RTE=TKAU** Set
                MULTI ARA  Multipl.amt/no/rate
                AMT=IZPESI Set
                ROUNDGK100 Round AMT to next
                ADDWT *    OT   Output table
            >
              if there is a value in 0014 subtype 6004 then
                      AMT/TKDIVI Division
                       RTE=TKSOLL Set
                       RTE=TKAU** Set
                       MULTI ARA  Multipl.amt/no/rate
                      AMT=IZPESI Set
                      ROUNDGK100 Round AMT to next
                      ADDWT *    OT   Output table
      Want to know how I can use wage type amount in comparison. look at the above lines in bold where i want to apply
    kindly help
    Edited by: Imran on Oct 21, 2010 11:40 AM

    KZPESI=10000 from T511K
    KZMESI=6 from T511K
    IZPESI=600 from T511P
    Social security wage type is 6004 and it is subtype of 0014.
    ZSSM Personnal Calculation Rule ZSSM
    3
    6004 Social security Contrib
    AMT= 0001 Set
    AMT+ 0002 Addition
    AMT+ 0003 Addition
    AMT+ 0004 Addition
    AMT+ 1001 Addition
    ROUNDGK100 Round AMT to next
    AMT?KZPESI Comparison
    >
    At this point I want to set another comparison based on amount in 6004.
    if Amount in 6004 is > 0 then
       do calculation.
    hope it'll b more clear now

  • B2B RosettaNet Rcpt Ack and Excp throws error "Unable to read the preamble"

    Hello All,
    We have configured a 2 way PIP Config and we are able to succesfully transfer the paload to the TP.
    But when receiving the Ackowledgement and Exception, we are getting error "B2B-51705 Unable to read the preamble"
    Can anyone help me on this
    Thanks,
    Sunil

    Hi Anuj,
    Just want to confirm one more thing
    Below given the xsd used for Exception and Acknowledgement
    Can you please confirm the format of the same
    AcknowledgeMent
    ===========
    <?xml version = "1.0" encoding = "UTF-8"?>
    <!-- -->
    <!-- Copyright (c) 2000 BEA -->
    <!-- All rights reserved -->
    <!-- -->
    <!-- THIS IS UNPUBLISHED PROPRIETARY -->
    <!-- SOURCE CODE OF BEA Systems Inc. -->
    <!-- The copyright notice above does not -->
    <!-- evidence any actual or intended -->
    <!-- publication of such source code. -->
    <xsd:schema xmlns:xsd = "http://www.w3.org/2001/XMLSchema">
    <xsd:annotation>
         <xsd:documentation>
    RosettaNet XML Message Schema
    AcknowledgmentOfReceipt_MS_V02_00.dtd
    This document has been prepared by Edifecs (http://www.edifecs.com/)
    based On the Business Collaboration Framework from requirements
    in conformance with the RosettaNet methodology.
         </xsd:documentation>
    </xsd:annotation>
         <xsd:element name = "ReceiptAcknowledgment">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element ref = "NonRepudiationInformation" minOccurs = "0"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name = "NonRepudiationInformation">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element ref = "OriginalMessageDigest"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name = "OriginalMessageDigest" type = "xsd:string"/>
    </xsd:schema>
    Exception
    =====
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!--W3C Schema generated by XMLSpy v2011 rel. 3 sp1 (http://www.altova.com)-->
    <!--Please add namespace attributes, a targetNamespace attribute and import elements according to your requirements-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
         <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
         <xs:element name="Exception">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="ExceptionDescription"/>
                        <xs:element ref="GlobalExceptionTypeCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="ExceptionDescription">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="errorClassification"/>
                        <xs:element ref="errorDescription"/>
                        <xs:element ref="offendingMessageComponent" minOccurs="0"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="errorClassification">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="GlobalMessageExceptionCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="GlobalMessageExceptionCode">
              <xs:complexType mixed="true"/>
         </xs:element>
         <xs:element name="errorDescription">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="FreeFormText"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="FreeFormText">
              <xs:complexType mixed="true">
                   <xs:attribute ref="xml:lang"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="offendingMessageComponent">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="GlobalMessageComponentCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="GlobalMessageComponentCode">
              <xs:complexType mixed="true"/>
         </xs:element>
         <xs:element name="GlobalExceptionTypeCode">
              <xs:complexType mixed="true"/>
         </xs:element>
    </xs:schema>
    Pleace correct me if I am wrong in these xsd's
    Thanks,
    Sunil

  • B2B RosettaNet incoming messages throws error "Unable to read the preamble"

    Hi,
    We have configured Oracle B2B to send Invoices to TP using Rosettanet V2.0.
    The incoming message are coming to B2B server via DMZ running apache HTTP server. We have security certificates installed on DMZ and has shared the public key with the TP.
    TP has shared public key which we have installed on SOA server keystore.
    We are able to see incoming messages in "Wire Message" tab, but the status is "processing". The SOA log file shows the error "Unable to read the preamble".
    Any suggestion on this really appreciated.
    Thanks,
    Adarsh

    The configuration that we have here is -
    Outbound
    SOA -> <Firewall> TP
    Inbound
    TP -> DMZ(SSL Enabled) -> FIREWALL -> SOA Server
    SOA server is SSL enabled too, but the communication between DMZ and SOA has been configured on HTTP (non SSL). We shared the public key of DMZ server with the TP.
    Here is the message that we are receiving from TP.
    --27888100.1321681003096.JavaMail.webmethods@exshaw
    Message-ID: <14801385.1321681003095.JavaMail.webmethods@exshaw>
    Mime-Version: 1.0
    Content-Type: multipart/related; type="application/xml";
         boundary="----=_Part_6149_9357410.1321681003080"
    ------=_Part_6149_9357410.1321681003080
    Content-Type: Application/XML
    Content-Transfer-Encoding: binary
    Content-Location: RN-Preamble
    Content-ID: <16966956.1321681003078.JavaMail.webmethods@exshaw>
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE Preamble SYSTEM "Preamble_MS_V02_00.dtd">
    <Preamble>
    <standardName>
    <GlobalAdministeringAuthorityCode>RosettaNet</GlobalAdministeringAuthorityCode>
    </standardName>
    <standardVersion>
    <VersionIdentifier>V02.00</VersionIdentifier>
    </standardVersion>
    </Preamble>
    ------=_Part_6149_9357410.1321681003080
    Content-Type: Application/XML
    Content-Transfer-Encoding: binary
    Content-Location: RN-Delivery-Header
    Content-ID: <18073579.1321681003079.JavaMail.webmethods@exshaw>
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE DeliveryHeader SYSTEM "DeliveryHeader_MS_V02_00.dtd">
    <DeliveryHeader>
    <isSecureTransportRequired>
    <AffirmationIndicator>Yes</AffirmationIndicator>
    </isSecureTransportRequired>
    <messageDateTime>
    <DateTimeStamp>20111118T223643.053Z</DateTimeStamp>
    </messageDateTime>
    <messageReceiverIdentification>
    <PartnerIdentification>
    <domain>
    <FreeFormText xml:lang="EN">DUNS</FreeFormText>
    </domain>
    <GlobalBusinessIdentifier>616252495</GlobalBusinessIdentifier>
    </PartnerIdentification>
    </messageReceiverIdentification>
    <messageSenderIdentification>
    <PartnerIdentification>
    <domain>
    <FreeFormText xml:lang="EN">DUNS</FreeFormText>
    </domain>
    <GlobalBusinessIdentifier>200103377</GlobalBusinessIdentifier>
    <locationID>
    <Value>Calgary</Value>
    </locationID>
    </PartnerIdentification>
    </messageSenderIdentification>
    <messageTrackingID>
    <InstanceIdentifier>ac1aab8df70da53a000ca325</InstanceIdentifier>
    </messageTrackingID>
    </DeliveryHeader>
    ------=_Part_6149_9357410.1321681003080
    Content-Type: Application/XML
    Content-Transfer-Encoding: binary
    Content-Location: RN-Service-Header
    Content-ID: <27927869.1321681003079.JavaMail.webmethods@exshaw>
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE ServiceHeader SYSTEM "ServiceHeader_MS_V02_00.dtd">
    <ServiceHeader>
    <ProcessControl>
    <ActivityControl>
    <BusinessActivityIdentifier>Invoice Notification</BusinessActivityIdentifier>
    <MessageControl>
    <fromRole>
    <GlobalPartnerRoleClassificationCode>Buyer</GlobalPartnerRoleClassificationCode>
    </fromRole>
    <fromService>
    <GlobalBusinessServiceCode>Buyer Service</GlobalBusinessServiceCode>
    </fromService>
    <inReplyTo>
    <ActionControl>
    <ActionIdentity>
    <GlobalBusinessActionCode>Invoice Notification</GlobalBusinessActionCode>
    <messageStandard>
    <FreeFormText>PIDX</FreeFormText>
    </messageStandard>
    <standardVersion>
    <VersionIdentifier>1.0</VersionIdentifier>
    </standardVersion>
    </ActionIdentity>
    <messageTrackingID>
    <InstanceIdentifier>33323237303737323338343533343832</InstanceIdentifier>
    </messageTrackingID>
    </ActionControl>
    </inReplyTo>
    <Manifest>
    <numberOfAttachments>
    <CountableAmount>0</CountableAmount>
    </numberOfAttachments>
    <ServiceContentControl>
    <SignalIdentity>
    <GlobalBusinessSignalCode>Exception</GlobalBusinessSignalCode>
    <VersionIdentifier>V02.00</VersionIdentifier>
    </SignalIdentity>
    </ServiceContentControl>
    </Manifest>
    <toRole>
    <GlobalPartnerRoleClassificationCode>Seller</GlobalPartnerRoleClassificationCode>
    </toRole>
    <toService>
    <GlobalBusinessServiceCode>Seller Service</GlobalBusinessServiceCode>
    </toService>
    </MessageControl>
    </ActivityControl>
    <GlobalUsageCode>Test</GlobalUsageCode>
    <pipCode>
    <GlobalProcessIndicatorCode>P21</GlobalProcessIndicatorCode>
    </pipCode>
    <pipInstanceId>
    <InstanceIdentifier>PIPAC11165C133BA538E8A0000018B17B6C</InstanceIdentifier>
    </pipInstanceId>
    <pipVersion>
    <VersionIdentifier>1.0</VersionIdentifier>
    </pipVersion>
    <KnownInitiatingPartner>
    <PartnerIdentification>
    <domain>
    <FreeFormText>DUNS</FreeFormText>
    </domain>
    <GlobalBusinessIdentifier>616252495</GlobalBusinessIdentifier>
    </PartnerIdentification>
    </KnownInitiatingPartner>
    </ProcessControl>
    </ServiceHeader>
    ------=_Part_6149_9357410.1321681003080
    Content-Type: Application/XML
    Content-Transfer-Encoding: binary
    Content-Location: RN-Service-Content
    Content-ID: <24309402.1321681003079.JavaMail.webmethods@exshaw>
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE Exception SYSTEM "Exception_MS_V02_00.dtd">
    <Exception>
    <ExceptionDescription>
    <errorClassification>
    <GlobalMessageExceptionCode>PRF.ACTN.GENERR</GlobalMessageExceptionCode>
    </errorClassification>
    <errorDescription>
    <FreeFormText>Errors: The Invoice Number entered already exists.; Warnings: Using default Supplier Site., Using default Supplier Group., Using default Supplier User., Units has been truncated.</FreeFormText>
    </errorDescription>
    <offendingMessageComponent>
    <GlobalMessageComponentCode>ServiceContent</GlobalMessageComponentCode>
    </offendingMessageComponent>
    </ExceptionDescription>
    <GlobalExceptionTypeCode>Receipt Acknowledgment Exception</GlobalExceptionTypeCode>
    </Exception>
    ------=_Part_6149_9357410.1321681003080--
    --27888100.1321681003096.JavaMail.webmethods@exshaw--

  • Scanner Warning 027 unable to read the sequence ....

    we have zen 7 sp1 etc...
    some of the workstation inventory logf have the following error :
    Scanner Warning 027 unable to read the sequence number from the workstation object
    i have deleted the edir object, and wait for recreating and new scan.... but the error exist still.
    any ideas to resolve the issue?

    a part from the log ,
    here is a bad workstation
    [4/23/08 08:29:40.253] ZENInv - Selector: Selector Yielding for ms0
    [4/23/08 08:29:40.253] ZENInv - Selector: Processing 000B5D9B682A_1208327423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Getting SelectorXMLAgent Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Acquired SelectorXMLAgent Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Getting SynchServiceSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Acquired SynchServiceSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Getting ConverterSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Acquired ConverterSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Opened Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking Length of STR
    [4/23/08 08:29:40.254] ZENInv - Selector: HASH of FileName000B5D9B682A_1208327423000_6.STRIS=1218633 352
    [4/23/08 08:29:40.254] ZENInv - Selector: HASH INSIDE FileName000B5D9B682A_1208327423000_6.STRIS=1218633 352
    [4/23/08 08:29:40.254] ZENInv - Selector: End of File=[EOF]
    [4/23/08 08:29:40.254] ZENInv - Selector: Valid EOF Found
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking Bitmap of STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking SectionOffsets of STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Checking Identification of STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing for [Identification]
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing workStationDN
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing treeName
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting numMACAddress
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing macAddresses
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing typeOfScan
    [4/23/08 08:29:40.255] ZENInv - Selector: typeOfScan=DELTA
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting scanTime
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting sequenceNumber
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing serverName
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting StrFileVersion
    [4/23/08 08:29:40.255] ZENInv - Selector: Checking StrFileVersion
    [4/23/08 08:29:40.255] ZENInv - Selector: ZFD STR Version is=1650
    [4/23/08 08:29:40.255] ZENInv - Selector: MIDAS ZFD STR VERSION1650
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing strFileSystemType
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing strFileSystemIdentifier
    [4/23/08 08:29:40.255] ZENInv - Selector: Entering isInventoryScannerValid()
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Updating WSDN To SynchService HashTable
    [4/23/08 08:29:40.255] ZENInv - Selector: SynchTable Exists
    [4/23/08 08:29:40.255] ZENInv - Selector: Entry Already Present.Will not update SynchTable
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Reading NDS ScanNumber
    [4/23/08 08:29:40.270] ZENInv - Selector: NDS ScanNumber Read 5
    [4/23/08 08:29:40.270] ZENInv - Selector: NDS attrModificationTime Read 1208760260000
    [4/23/08 08:29:40.270] ZENInv - Selector: Type of Scan:DELTA
    [4/23/08 08:29:40.270] ZENInv - Selector: Transfering to DBDir.
    [4/23/08 08:29:40.270] ZENInv - Selector: Getting SelectorStorerDestination Lock for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: SelectorStorerDestination Lock Acquired for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Hence Transferring : daten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832742 3000_6.STR File to daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Renaming the file daten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832742 3000_6.STRTo daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Unlocked SelectorStorerDestination for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Modifying Attribute seqNo with 6
    [4/23/08 08:29:40.270] ZENInv - Selector: Entering forceFullScanFlag Loop
    [4/23/08 08:29:40.287] ZENInv - Selector: Time Taken to Process Delta Scan : 34
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked SelectorXMLAgent Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked ConverterSelector Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked SynchServiceSelector Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Selector Will Now Serialize SynchTable - End of Listing
    [4/23/08 08:29:40.287] ZENInv - Selector: Serializing hashTable Todaten:\ZENworks\Inv\ScanDir\stable\STABLE.SER
    [4/23/08 08:29:40.289] ZENInv - Selector: Selector finished Serializing the table
    [4/23/08 08:29:41.043] ZENInv - Storer: Loading Storer test properties file
    [4/23/08 08:29:41.044] ZENInv - Storer: Storer: started storing 000B5D9B682A_1208327423000_6.STR (3878 bytes)
    [4/23/08 08:29:41.053] ZENInv - Storer: dn: CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org tree: org-tree
    [4/23/08 08:29:41.053] ZENInv - Storer: tree: org-treewsdn: CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=orgtime: 1208931926000
    [4/23/08 08:29:41.053] ZENInv - Storer: Initial WS statusrecord is found
    [4/23/08 08:29:41.053] ZENInv - Storer: got the status log
    [4/23/08 08:29:41.077] ZENInv - Storer: Could not process 000B5D9B682A_1208327423000_6.STR due to
    com.novell.zenworks.desktop.inventory.storer.DataA bsentException: Data Instance Not Found!!Class:Zenworks.ZenDesktopMonitor Operation:Delete Offset:e14 linkoffset:ffffffffffffffff oid:-1
    [DeviceID=DesktopMonitor2 Description=Plug und Play-Monitor ManufactureDate=2002 ModelID=SNY08B0 ViewableSize=19.7 NominalSize=21.0 ]
    at com.novell.zenworks.desktop.inventory.storer.Objec tInstance.setOID(ObjectInstance.java:339)
    at com.novell.zenworks.desktop.inventory.storer.Parse .processOtherSection(Parse.java:1913)
    at com.novell.zenworks.desktop.inventory.storer.Parse .parse(Parse.java:4038)
    at com.novell.zenworks.desktop.inventory.storer.MainT hread.run(MainThread.java:976)
    [4/23/08 08:29:41.080] ZENInv - Storer: Scantype set to -1
    [4/23/08 08:29:41.081] ZENInv - Storer: addWSErrorMessage
    [4/23/08 08:29:41.097] ZENInv - Status Reporting: Number of records to add are: 0 for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Number of modified records are: 1 for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Modifying record for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Record with time stamp 1208931926000 is found
    [4/23/08 08:29:41.164] ZENInv - Storer: cleanUp:Full Scan will be initiated on CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.164] ZENInv - Storer: Unlocking daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    is there a mechanism, to get the local zenworks logfile up to the server, so i didnt need to have access to the workstation manual?
    it looks like, that there are no information in the str file from the workstation, but i didnt have a local logfile yet... :-((
    helge

Maybe you are looking for

  • Purc.reqs&reservation

    How should i configurate in the IMG-project system-material-Procurement indicator for material components ,and Check acct asst categories and document types for purc.reqs,also network profile, so that i can get purc.reqs and reservation at the same t

  • Safari Not Opening - or allowing a reinstall

    This morning, Safari stopped opening. Although the icon bounced - no Safari. So deciding to reinstall I downloaded 3.1.1 - however attempting to install gives me an error that it cannot install to the hard drive as it requires 10.5.2 or higher. The o

  • Owb 10g compatibility

    Hi, I want to know whether owb 10g will support mysql server as (source/target) inorder to perform ETL task. Regards, GN

  • Test color patterns on product packaging

    We were discussing print design media in a class yesterday and somebody asked why there are what appears to be color test patterns on some product packaging. For example, the box of tea that I have sitting in front of me at the moment, has one of the

  • SAP MDG and article master in SAP IS-Retail

    We need a solution, where external vendors can contribute with article information, the master data persons can enrich the vendor information, and where the articles can be created appropriately afterwards in SAP ERP. SAP Master Data Governance (MDG)