Reading latest payroll run results from CRT table

Please find below my code to retrieve the cluster table crt.
Could you please let me know which HR report category I need to assign while giving the attributes in executable program. I am novice in this area, I didnu2019t even know whether we need to give the hr report category or not.
I am not able to see the selection screen with pernr input though I gave the pnp logical database in the attributes of my executable program.
tables: PERNR.
data: payresult TYPE table of pay99_result,
      wa_payresult type pay99_result.
data: it_rgdir like table of PC261,v_seqnr type pc261-seqnr,wa_rgdir
type pc261,
      v_clusterid like pcl2-relid value 'RX',v_betrg type pc208-betrg.
   data begin of crt occurs 0.
      include structure pc208.
    data end of crt.
get pernr.
if pnp-sw-found = 1.
CALL FUNCTION 'CU_READ_RGDIR_NEW'
  EXPORTING
    PERSNR                      = pernr-pernr
  CHECK_READ_AUTHORITY        = 'X'
  IMP_CLIENT                  =
IMPORTING
  MOLGA                       =
  TABLES
    IN_RGDIR                    = it_rgdir
EXCEPTIONS
  NO_RECORD_FOUND             = 1
  IMPORT_MISMATCH_ERROR       = 2
  NO_READ_AUTHORITY           = 3
  OTHERS                      = 4
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
sort it_rgdir DESCENDING.
read table it_rgdir into wa_rgdir index 1.
v_seqnr = wa_rgdir-seqnr.
CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
  EXPORTING
   CLUSTERID                          = v_clusterid
    EMPLOYEENUMBER                     = pernr-pernr
    SEQUENCENUMBER                     = v_seqnr
  CHANGING
    PAYROLL_RESULT                     = payresult.
IF SY-SUBRC <> 0.
ENDIF.
loop at payresult into wa_payresult.
  loop at crt.
     if crt-lgart = '\405' and crt-CUMTY ='Y'.
       V_BETRG = CRT-BETRG.
       write:/' payroll result amt',v_betrg.
       EXIT.
      ENDIF.
   ENDLOOP.
ENDLOOP.
endif.

Hi Maqsood.
In attributes section section.
first tick on the Master data(infotypes) and leave it blank....... and save it.......
secondly go in to your code.
comment all your code except.
tables: pernr.
now check if the selection screen is coming with pernr or not...
Thanks
Saurabh

Similar Messages

  • How do I search scanned documents that Adobe Reader reads but shows 0 results from the search?

    How do I search scanned documents that Adobe Reader reads but shows 0 results from the search?

    If the scanned document was not processed for OCR, then it is just an image and cannot be searched for text.

  • How to Pull Data From CRT table PCL2 Cluster

    Hi,
    I want to show a Report, below is the Fields in the Report 
    <b>Descripton</b>----
    <b>Table Name</b>
    Total Current Month Salary----
    CRT table PCL2 cluster
    monthly member contribution-----CRT table PCL2 cluster
    Net difference in Pay----
    CRT table PCL2 cluster
    How to get the Data from the CRT table PCL2 cluster in BW
    is there any procedure to get the payroll data in BW?
    I think CRT table is a internal Table.
    any good idea's will be appricated...
    Thanks
    Priya

    Hi,
    check whether is it populating when u call
    Function Module  - PYX X_READ_PAYROLL_RESULT .
    If not Use this Marcro.
    RP-IMP-C2-IN.
    Call this macro and check EPF[ ].This marco will populate both RT and EPF.
    Check transaction - PC00_M40_ EPF
    Cheers,
    Manoj.

  • Finding results from different tables

    Hello,
    I am makeing a query on 2 tables. It works. But I need to find out which result is coming from which table. e.g 1 table is having abc record and 2nd table is having xyz record. I need to find out that abc has come from 1 table and xyz has come from 2nd table. Is it possible? If yes, Please give me a sample code snippet.
    Thanks

    Well one way that I can think of other than duplicating every column is to add one additional column to your select such as a.table1 then only populate the a.table1 column if the data came from the first table (any dba can help you with that since it is database specific). Then you just check for a null in the column in the resultset and will know which table it came from (null = came from table 2, !null = came from table1). Does not matter what data you stick in there as long as it comes from a not null column you should be golden

  • Read contents of changing fields from internal table

    Hi Folks,
    Please help me in my query below:
    Consider there is a Z-table with two fields TABNAM and FIELD having values KNA1 and NAME1 respectively.
    In my report I have fetched entries for customers from KNA1. Now based on the field from Z-table I want to populate a variable suppose V_FREE_VAR with the value from KNA1 table.
    Here V_FREE_VAR is of CHAR200 so that it accomodate all types of values from KNA1.
    The value of Z-table FIELD can change daily i.e next day the value may be PSTLZ.
    So how can I read the particular field from internal table as the field to be read is dynamic.
    Note: using case is not feasible.
    Thanks in advance.
    Regards,
    Shardul

    @Hartmut P
    As Rob said i want to get the value of the field from internal table. the code is something like this.
    I_KNA1 contains records for customers.
    Suppose values of Z-table are in internal table I_TEMP_TABLE.
    Entries in I_TEMP_TABLE are as follows
    TABNAME      FIELDNAME
    KNA1                 NAME1
    The value of FIELNAME in Z-table can be changed
    Loop at I_TEMP_TABLE into WA_TEMP_TABLE.
    Read I_KNA1 into WA_KNA1 with key KUNNR = '0001002234'.
    IF SY-SUBRC EQ 0.
       CASE WA_TEMP_TABLE-FIELDNAME.
            WHEN 'NAME1'.
                 V_VAR = WA_KNA1-NAME1.
             WHEN 'PSTLZ'
                  V_VAR = WA_KNA1-PSTLZ.
    ENDIF.
    But using case is not appropriate as KNA1 contains 176 fields.

  • Getting Result from multiple table using code table.

    I am having hard time getting data from different table not directly connected.
    

    The data model is not proper. Why should you store the game details in separate tables?
    IMO its just matter of putting them in same table with additional field gamename to indicate the game. That would have been much easier to query and retrieve results
    Anyways in the current way what you can do is this
    SELECT p.ID,p.Name,c.CategoryName AS [WinnerIn]
    FROM GameParticipants p
    INNER JOIN (SELECT ParticipantID, Value AS ParticipantName,'CGW Table' AS TableName
    FROM CGWTable
    UNION ALL
    SELECT ParticipantID, Value AS ParticipantName,'FW Table' AS TableName
    FROM FWTable
    SELECT ParticipantID, Value AS ParticipantName,'WC Winner' AS TableName
    FROM WCWinner
    ... all other winner tables
    )v
    ON v.ParticipantID = p.ID
    AND v.ParticipantName = p.Name
    INNER JOIN Category c
    ON c.TableName = v.TableName
    If you want you can also add a filter like
    WHERE p.Name = @Name
    to filter for particular player like Henry in your example
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to Get the Unique Key results from OWB Tables after Profile

    Hi,
    We are using OWB 10gR2(Paris) Beta Version.
    In this version the new feature is introduced is Data Profiling.
    We are using this feature to analylize the data in terms of stanadards.
    We have done profiling for our tables and we are able to see the results for each table in OWB Profile Results Canvas. In this window one Unique Key tab is there to see the Unique results.
    Now my question is where these results will be stored in standard tables of OWB. I want to know those exact standard tables to extract thoes Unique results in to my reports.
    After profiling we are generating HTML-DB reports to view all these profile results. But we are not able to find the Uique Key tables where these results are stored.
    So pls can anybody provide help on this to get these tables...
    Thanks in advance...,
    Ramesh P.

    You can use DatabaseMetaData#getPrimaryKeys.

  • SUM the COUNT RESULTS from 2 Tables

    If I have 2 seperate queries how can I sum the results of them
    select count(*) from tableA;
    select count(*) from tableB;
    MAXIMO@tarml > select count(*) from tableA;
      COUNT(*)
         500
    MAXIMO@tarml > select count(*) from tableB;
      COUNT(*)
         600
    MAXIMO@tarml > I want a query that gets me the 1100?
    I know people in here will know a simple solution that I can not find on the web?
    Thanks in advance again as always...
    Miller

    You should have read your given link more closely: You would have found
    select ( select count(*) from Table1 )
         + ( select count(*) from Table2 )
              as total_rows
      from my_one_row_table  --<---   replace with dual

  • How merge query results from joined table into one additional column

    <code>
    Here is example
    TABLE A:
    id | value
    1 | a
    2 | a
    3 | b
    TABLE B
    id | id_in_table_a | value
    1 | 1 | d
    2 | 1 | e
    3 | 2 | g
    </code>
    this select should get all columns from table A where value = 'a' and all values related to this record from B merged to one column separated for example with pipe, so the output should looks like this
    <code>
    id | value | merged_column
    1 | a | d|e
    2 | a | g
    </code>
    thanks for help

    If you are on 10g, you can use this:
    SQL> create table a
      2  as
      3  select 1 id, 'a' value from dual union all
      4  select 2, 'a' from dual union all
      5  select 3, 'b' from dual
      6  /
    Tabel is aangemaakt.
    SQL> create table b
      2  as
      3  select 1 id, 1 id_in_table_a, 'd' value from dual union all
      4  select 2, 1, 'e' from dual union all
      5  select 3, 2, 'g' from dual
      6  /
    Tabel is aangemaakt.
    SQL> select id
      2       , value
      3       , rtrim(v,'|') merged_column
      4    from ( select id
      5                , value
      6                , v
      7                , rn
      8             from a
      9                , b
    10            where a.id = b.id_in_table_a
    11            model
    12                  partition by (a.id)
    13                  dimension by (row_number() over (partition by a.id order by b.id) rn)
    14                  measures (a.value, cast(b.value as varchar2(20)) v)
    15                  rules
    16                  ( v[any] order by rn desc = v[cv()] || '|' || v[cv()+1]
    17                  )
    18         )
    19   where rn = 1
    20  /
       ID VALUE MERGED_COLUMN
        1 a     d|e
        2 a     g
    2 rijen zijn geselecteerd.Regards,
    Rob.

  • Latest record to get from MSEG Table

    Hi frnds,
    I am getting multiple records against material no. i want single record and latest one.
    SELECT DISTINCT MBLNR MATNR LIFNR
            FROM MSEG
            INTO TABLE IT_MSEG
            WHERE MATNR IN S_MATNR
            ORDER BY MATNR MBLNR DESCENDING.
    S_MATNR = multiple matnr
    eg: matnr   mblnr lifnr
          test     1        abc
          test     2        abc
          test2   4        xyz
          test3   3        abc
          test3   5        vvvv
    I want in my ITAB.
    eg: matnr   mblnr lifnr
          test     1        abc
          test2   4        xyz
          test3   5        vvvv
    Here I am sorting with mblnr to pick latest record.
    How i will get.
    Regards.

    Hi,
        just do one thing if after sorting you are getting first record of latest record in each material then use
    delete adjacent duplicates from itab comparing matnr.
    Regards
    Vijay dwivedi

  • Can we make one query to get same results from 3 tables

    CREATE TABLE TABLE1 (NODEID VARCHAR2(4));
    CREATE TABLE TABLE2 (NODEID VARCHAR2(4));
    CREATE TABLE TABLE3 (NODEID VARCHAR2(4));
    INSERT INTO TABLE1 VALUE('1004');
    INSERT INTO TABLE1 VALUE('1004');
    INSERT INTO TABLE1 VALUE('1002');
    INSERT INTO TABLE1 VALUE('1002');
    INSERT INTO TABLE1 VALUE('1001');
    INSERT INTO TABLE1 VALUE('1001');
    INSERT INTO TABLE1 VALUE('1006');
    INSERT INTO TABLE1 VALUE('1006');
    INSERT INTO TABLE1 VALUE('1005');
    INSERT INTO TABLE1 VALUE('1005');
    INSERT INTO TABLE2 VALUE('1004');
    INSERT INTO TABLE2 VALUE('1004');
    INSERT INTO TABLE2 VALUE('1004');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE2 VALUE('1002');
    INSERT INTO TABLE3 VALUE('1001');
    INSERT INTO TABLE3 VALUE('1001');
    INSERT INTO TABLE3 VALUE('1006');
    INSERT INTO TABLE3 VALUE('1006');
    INSERT INTO TABLE3 VALUE('1005');
    INSERT INTO TABLE3 VALUE('1005');
    INSERT INTO TABLE3 VALUE('1004');
    INSERT INTO TABLE3 VALUE('1004');
    INSERT INTO TABLE3 VALUE('1004');
    INSERT INTO TABLE3 VALUE('1002');
    INSERT INTO TABLE3 VALUE('1002');
    INSERT INTO TABLE3 VALUE('1002');
    INSERT INTO TABLE3 VALUE('1002');
    Select count(*), count(distinct nodeid)
    from table1, table2,table3
    where table1.nodeid=table2.nodeid and table1.nodeid=table3.nodeid;
    Select count(*), count(distinct nodeid)
    from table1, table3
    where table1.nodeid=table2.nodeid;
    Select count(*), count(distinct nodeid)
    from table2, table3
    where table2.nodeid=table3.nodeid;

    Aside from your insert statements not working... (should be as follows)...
    DROP TABLE TABLE1;
    DROP TABLE TABLE2;
    DROP TABLE TABLE3;
    CREATE TABLE TABLE1 (NODEID VARCHAR2(4));
    CREATE TABLE TABLE2 (NODEID VARCHAR2(4));
    CREATE TABLE TABLE3 (NODEID VARCHAR2(4));
    INSERT INTO TABLE1 VALUES('1004');
    INSERT INTO TABLE1 VALUES('1004');
    INSERT INTO TABLE1 VALUES('1002');
    INSERT INTO TABLE1 VALUES('1002');
    INSERT INTO TABLE1 VALUES('1001');
    INSERT INTO TABLE1 VALUES('1001');
    INSERT INTO TABLE1 VALUES('1006');
    INSERT INTO TABLE1 VALUES('1006');
    INSERT INTO TABLE1 VALUES('1005');
    INSERT INTO TABLE1 VALUES('1005');
    INSERT INTO TABLE2 VALUES('1004');
    INSERT INTO TABLE2 VALUES('1004');
    INSERT INTO TABLE2 VALUES('1004');
    INSERT INTO TABLE2 VALUES('1002');
    INSERT INTO TABLE2 VALUES('1002');
    INSERT INTO TABLE2 VALUES('1002');
    INSERT INTO TABLE2 VALUES('1002');
    INSERT INTO TABLE3 VALUES('1001');
    INSERT INTO TABLE3 VALUES('1001');
    INSERT INTO TABLE3 VALUES('1006');
    INSERT INTO TABLE3 VALUES('1006');
    INSERT INTO TABLE3 VALUES('1005');
    INSERT INTO TABLE3 VALUES('1005');
    INSERT INTO TABLE3 VALUES('1004');
    INSERT INTO TABLE3 VALUES('1004');
    INSERT INTO TABLE3 VALUES('1004');
    INSERT INTO TABLE3 VALUES('1002');
    INSERT INTO TABLE3 VALUES('1002');
    INSERT INTO TABLE3 VALUES('1002');
    INSERT INTO TABLE3 VALUES('1002');and you're queries not working...
    SQL> Select count(*), count(distinct nodeid)
      2  from table1, table2,table3
      3  where table1.nodeid=table2.nodeid and table1.nodeid=table3.nodeid;
    Select count(*), count(distinct nodeid)
    ERROR at line 1:
    ORA-00918: column ambiguously definedI'm guessing you want:
    SQL> Select count(*), count(distinct table1.nodeid)
      2  from table1, table2,table3
      3  where table1.nodeid=table2.nodeid and table1.nodeid=table3.nodeid;
      COUNT(*) COUNT(DISTINCTTABLE1.NODEID)
            50                            2You haven't explained to us what database version you are using or what you want the output to look like when these 3 queries are combined.
    Please read: {message:id=9360002} and learn to post a good question, and use {noformat}{noformat} tags to show your code/data.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Dificulty in displaying results from 2 tables

    Hi Experts,
    I have created a form that needs to display 2 different tables in the form. However, the second table only shows the results after all the records from the first are listed. I need to show both the tables in page 1 and continue to show the records in the succeeding pages. I have put the tables each in their different subforms and enclosed them in another subform but the entries from table 2 still does not show. Could you tell me what am I missing?
    Thanks and more power.
    Regards,
    Rare

    Hi,
    What is the cardinality of the nodes that these tables are mapped to?
    Is it 1..n or 0..n?
    If it is 0..n then this is where the problem may be..
    Try setting the minimum count of the second table to 1 in the binding tab in the livecycle designer..
    Also, make sure the paginatinof the two sub forms is set to Flowed..
    Hope this helps.
    Rgds, Amith

  • Summing logical results from a table

    Dear all
    Here is my problem. I have a spreadsheet with people's menu choices: 3 of each starter, main and dessert, as drop-down boxes. I want to now sum how many of each of the 27 possible choices have been made (see below):
    DUCK
    LAMB
    MOUSSE
    DUCK
    LAMB
    PAVLOVA
    DUCK
    LAMB
    MOUSSE
    DUCK
    LAMB
    MOUSSE
    DUCK
    SALMON
    PAVLOVA
    TART
    LAMB
    TART
    DUCK
    LAMB
    PAVLOVA
    DUCK
    LAMB
    TART
    DUCK
    LAMB
    TART
    DUCK
    LAMB
    PAVLOVA
    DUCK
    LAMB
    TART
    DUCK
    LAMB
    TART
    TART
    SALMON
    MOUSSE
    TART
    LAMB
    TART
    TART
    RISOTTO
    PAVLOVA
    I suspect I need an additional column and a comparison table maybe.
    =ADD([CELL]="DUCK",[CELL]="LAMB",[CELL]="MOUSSE") works OK, but then I need 27 possibilities, and then to count up (COUNTIF?) the whole spreadsheet. Maybe a really long formula with all possibilities might? Or an AppleScript?
    Thanks for any suggestions!
    Paul

    Hi Barry
    I can already count how many of each dish with this:
    MENU CHOICES
    Starter: Duck 1
    49
    Starter: Tart 2
    22
    Starter: Salad 3
    17
    Main: Salmon 1
    19
    Main: Lamb 2
    56
    Main: Risotto 3
    13
    Dessert: Pavlova 1
    40
    Dessert: Tart 2
    28
    Dessert: Mousse 3
    20
    In the first of the number cells I have:
    =COUNTIF($F$3:$F$32, "=DUCK")+COUNTIF($N$3:$N$29, "=DUCK")+COUNTIF($V$3:$V$48, "=DUCK")+COUNTIF($AD$3:$AD$17, "=DUCK")
    (it is counting from four parts of the spreadsheet, hence the four COUNTIFs added together)
    and so on down.
    What I need is how many of each COMBINATION of, e.g. Duck, Lamb, Tart

  • Picking of latest action from PA0000 table

    Hi  Experts,
    I need to pick only the latest 18 & 19 actions from the table PA0000 for a given employee, although it may have many 18 & 19 actions , what should be the criteria to pick up the records from the database table.
    Thanks in Advance,
    Regards,
    Irfan

    u have to put logic like this
    <b>select distinct
             pa0001~pernr
             pa0001~ename
             pa0001~abkrs
             pa0001~werks
             pa0001~persg
             pa0001~persk
             pa0001~begda
             pa0001~endda
             pa0000~begda as begdt
             pa0000~endda as enddt
             pa0000~aedtm
             pa0000~massn
             pa0000~massg
             pa0000~stat2
             pa0000~stat3
             from pa0000 inner join pa0001 on
                  pa0000pernr =  pa0001pernr
             into corresponding fields of table itab
             where pa0000~aedtm in s_aedtm
               and pa0001~abkrs in s_abkrs.
    itab1[] = itab[].
    loop at itab1.
    if itab1-endda ge itab1-begdt and itab1-begda le itab1-enddt.
    else.
    delete itab1.
    endif.
    endloop.</b>
    Regards
    Prabhu

  • Reg: Infotype 0015 data is not showing in payroll run

    Hi All,
    I have an issue as below:
    I have an employee  where IT 0001 Contract field is: Hourly paid employee is maintained,
    and IT - Wage(Basic salary - hourly) amount 100 SD.
    When i maintain custom wage in IT and in Number/units field as 5 HOURS.
    Now when i run payroll  and check in CRT Table, system has to show the amount of hours maintained in IT but it is showing only hours.
    Calculation has to happen as per below
    Based on IT 0001 Contract field as hourly paid employee and also IT 0008 Basic salary- Hourly wage amount, system has to multiply hours maintained in IT and show the amount.
    Wage amount  DESIGNED * 5 hours = 500 SD , should be shown under amount column.
    Please advise me why amount is not showing in CRT Table.
    Regards,
    sajith

    V_512w_D - valuation basis is 100%
    PCR
    Rule   ESGPCR VaKey    Operation
    ZZ11      *            VWTCL 76 
    ZZ11      *   *        VAKEYPAYTY
    ZZ11      *   * *      GCY ZX11 
    ZX11      *            AMT= BETRG
    ZX11      *            NUM= ANZHL
    ZX11      *            VAKEYZEINH
    ZX11      *   ***      VWTCL 47 
    ZX11      *   *** *    OPIND NA 
    ZX11      *   *** *    ADDWT *
    ZZ11 Additional payments/deductions PC76    
          " VWTCL 76   Processing class         
              " VAKEYPAYTY Payroll Type         
                    GCY ZX11   With exact w.types
                  A                             
                  B                             
            " 1                                 
              " VAKEYPAYTY Payroll Type         
                " A                             
                    GCY RX11   With exact w.types
                  B                             
            " 2                                 
              " VAKEYPAYTY Payroll Type         
                    GCY RX11   With exact w.types
                " A                             
                    GCY RX11   With exact w.types
                  B                             
            " 3                                 
              " VAKEYPAYTY Payroll Type         
                    GCY RX11   With exact w.types
                " A                             
                    GCY RX11   With exact w.types
                " B                             
                    GCY RX11   With exact w.types
    ZX11 Additional payments/deductions PC47          
            AMT= BETRG Set                            
            NUM= ANZHL Set                            
          " VAKEYZEINH Time unit in v.key             
              " VWTCL 47   Processing class           
                    OPIND NA   Operation indicator    
                    ADDWT *    OT   Output table      
                " A                                   
                    OPIND NA   Operation indicator    
                    ADDWT *    OT   Output table      
                  " R51P1?14N  Rec.exists for ind?    
                    " X                               
                        R51P1=14N  Read record for ind.
                        ZERO= RN   AmtNumRteTime = 0  
                        ADDWT *    OT   Output table  
                " Q                                   
                    ELIMI *    Elim.time period ID    
                    ADDWTE*    RT   Results table     
                    ADDWT&MY10 VAR  Variable table    
            " 012                                     
              " VWTCL 47   Processing class           
                    OPIND N    Operation indicator    
                    ELIMI 123  Elim.time period ID    
                    ADDWT *    OT   Output table      
      " 3                                             
          " VAKEYZEINH Time unit in v.key             
    ZX11 Additional payments/deductions PC47          
            AMT= BETRG Set                            
            NUM= ANZHL Set                            
          " VAKEYZEINH Time unit in v.key             
              " VWTCL 47   Processing class           
                    OPIND NA   Operation indicator    
                    ADDWT *    OT   Output table      
                " A                                   
                    OPIND NA   Operation indicator    
                    ADDWT *    OT   Output table      
                  " R51P1?14N  Rec.exists for ind?    
                    " X                               
                        R51P1=14N  Read record for ind.
                        ZERO= RN   AmtNumRteTime = 0  
                        ADDWT *    OT   Output table  
                " Q                                   
                    ELIMI *    Elim.time period ID    
                    ADDWTE*    RT   Results table     
                    ADDWT&MY10 VAR  Variable table    
            " 012                                     
              " VWTCL 47   Processing class           
                    OPIND N    Operation indicator    
                    ELIMI 123  Elim.time period ID    
                    ADDWT *    OT   Output table      
      " 3                                             
          " VAKEYZEINH Time unit in v.key             
    ZX11 Additional payments/deductions PC47          
            AMT= BETRG Set                            
            NUM= ANZHL Set                            
          " VAKEYZEINH Time unit in v.key             
              " VWTCL 47   Processing class           
                    OPIND NA   Operation indicator    
                    ADDWT *    OT   Output table      
                " A                                   
                    OPIND NA   Operation indicator    
                    ADDWT *    OT   Output table      
                  " R51P1?14N  Rec.exists for ind?    
                    " X                               
                        R51P1=14N  Read record for ind.
                        ZERO= RN   AmtNumRteTime = 0  
                        ADDWT *    OT   Output table  
                " Q                                   
                    ELIMI *    Elim.time period ID    
                    ADDWTE*    RT   Results table     
                    ADDWT&MY10 VAR  Variable table    
            " 012                                     
              " VWTCL 47   Processing class           
                    OPIND N    Operation indicator    
                    ELIMI 123  Elim.time period ID    
                    ADDWT *    OT   Output table      
      " 3                                             
          " VAKEYZEINH Time unit in v.key             
    " VWTCL 47   Processing class              
          OPIND      Operation indicator       
          ADDWT *    OT   Output table         
      " A                                      
          OPIND      Operation indicator       
          ADDWT *    OT   Output table         
        " R51P1?14N  Rec.exists for ind?       
          " X                                  
              R51P1=14N  Read record for ind.  
              ZERO= RN   AmtNumRteTime = 0     
              ADDWT *    OT   Output table     
      " Q                                      
          ELIMI *    Elim.time period ID       
          ADDWTE*    RT   Results table        
          ADDWT&MY10 VAR  Variable table

Maybe you are looking for

  • Facebook and Twitter don't work

    Hi!! I have some issues with Facebook and Twitter for Blackberry smartphones once this apps were updated. I have facebook V 2.0.0.58 and Twitter v 2.1.0.27 on BlackBerry 9300 (v 6.0.0.546) Provider: Tigo colombia. When I tried to use this apps for ex

  • Windows phone 8.1 on Lumia 620

    I hv Lumia 620 can I update my phone software in windows 8.1 tell me how can I update.... Moderator's Note: The subject was amended.

  • Installation of IOS7 has stuck my iPhone on AT&T screen - what's going on?

    After installing the latest IOS7  (it may have been 7. something) this morning (4 Oct 2013), the iPhone now only shows an AT&T screen, rather than the usual screen with all the icons.  The AT&T screen says: "Hello" and "slide to set up".  On sliding

  • Web Service/ JDBC question

    Hi, I have to design an automatic -and periodic- process that performs next tasks: 1) Read Oracle table to build a XML file 2) Connect with a Web Service and send the XML. (In the specification says that SOAP with attachments is not supported , so we

  • ITunes/Quicktime Frustration

    So I got an iPod nano for Christmas and put some songs on it without a problem. Today I go to add some more, and it says that I have to update iTunes or it won't sync with my iPod. Being a little confused, I go ahead and do it anyway. After I've inst