Excise table & Field info in Quotation comparative sheet

Dear All,
Can you please help me in finding for Excise table & Field info used  in execution of Quotation comparative sheet which is Z transaction list will be created.
with regards,
manoj KS

hi merra,
Pl find tax info in outgoing excise invoice PLD on following table
OEI12 - Outgoing excise invoice - Tax Extension.
Tax info will flow from CRD7(BP master) > INV11(AR invoice)>
OEI12(Outgoing excise invoice)
Hope above solution will solve your problem.
with regards,
A.Jeyakanthan

Similar Messages

  • How to compare substring in two tables fields

    Hi ABAP expert,
    When I want to select database two tables, we just want to compare two table substring. For Example, both fields have yyyymmdd. But I have interested yyyymm. In the Oracle database and SQL server database, I can easily to use substr to achieve those goals. How in the ABAP program to archive those goals.
    Thanks in advance,
    Cliff Fan

    Hi you can access substrings in ABAP the following way:
    data: s type string value 'yyyymmdd'.
    write: / s(6). "yyyymm
    write: / s+4(4). "mmdd
    so the number after '+' determines the position in the string and the number in parenthesis () determines the length of the substring.
    Now you can just loop over both of your tables and perform the necessary comparison in the nested loop.

  • How to compare table data and table field

    Hi buddy,
        I have some question about how to compare table data and table field.
       1. I know there is one method:   CL_ABAP_UNIT_ASSERT=>ASSERT_TABLE_CONTAINS  , it use in unit test to compare the table data(A and B) , you can loop table A into structure A1, then use this mehtod it can compare whether table B contain structure A1.  but when I try to use this in main program it will dump.
              CL_ABAP_UNIT_ASSERT=>ASSERT_TABLE_CONTAINS(
                                                                                                        LINE    = A1
                                                                                                        TABLE = B ).
           Is there any method or FM can be used to compare the table data ?
        2. I also want to compare two table field , try to find out the different. How to realize this.
    Thank you for your sincerely answer.

    Hi Zongjie,
    What`s the difference, if you using loop A into wa_A, read table B into wa_B with all field, then compare with wa_A and wa_B.
    The question 2, seems no standard FM available here.
    Loop A into wa_A.
       Loop B into wa_B.
           if wa_A-field1 eq wa_B-field1.
           endif.
            if wa_A-field2 eq wa_B-field2. 
           endif.
       endloop.
    endloop.
    regards,
    Archer

  • Sorting techinque without using sort statement /Comparing table fields.

    Hi,
    How to achieve sorting techinque without using sort statement in tables.
    Also how to compare fields of 2 custom tables and check their compatability without using code ?

    Hi,
    Refer the below program, it will be helpful.
    types: begin of t_int,
             int type i,
            end of t_int.
    data: it_int type standard table of t_int,
           wa_int type t_int,
           wa_int1 type t_int.
    wa_int-int = 70.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 50.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 20.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 30.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 23.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 23.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 32.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 77.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 99.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 1.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 11.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 90.
    append wa_int to it_int.
    clear wa_int.
    wa_int-int = 40.
    append wa_int to it_int.
    clear wa_int.
    data: wk_line type i.
    data: cnt type i.
    data: cnt1 type i.
    describe table it_int lines wk_line.
    clear: cnt,cnt1.
    data wk_flag type c.
       clear wk_flag.
    while wk_line gt cnt1.
       cnt = cnt + 1.
       read table it_int into wa_int index cnt.
       cnt1 = cnt + 1.
       read table it_int into wa_int1 index cnt1.
       if wa_int-int lt wa_int1-int.
         modify it_int from wa_int index cnt1.
         modify it_int from wa_int1 index cnt.
         wk_flag = 'X'.
       endif.
       if cnt1 eq wk_line.
         clear: cnt, cnt1.
         if wk_flag eq 'X'.
         clear wk_flag.
         continue.
         else.
           exit.
         endif.
       endif.
    endwhile.
    loop at it_int into wa_int.
       write: / wa_int-int.
    endloop.

  • Info. / Doc. on Changes to Standard SAP Program, Tables, Fields in SAP 6.0

    We are in the process of upgrading our SAP from 4.6c to 6.0 and I am looking for a document or white paper that summarizes changes to Standard SAP Programs, Tables/Fields, Function Modules etc.. from what used to be in SAP 4.6c to what it is in SAP 6.0.  I am not sure if such a comprehensive document exists or is posted in the forum.
    Any help or information in this regard will be highly appreciated.
    Thanks
    ram

    Hi Ram,
    <<   We are in the process of doing our technical upgrade from SAP 4.6c to 6.0. I am looking for a white paper or documentation listing the changes made to the standard SAP Programs, Tables, Fields, Function Modules etc. from Rel. 4.6c to 6.0. >>
    Do you want to know what custom changes were done to SAP standard objects in your system or do you want to know what changes SAP did from 4.6c to ECC6.0.
    There is no white paper or documentation to find out custom changes made to SAP standard objects. but there were many tools in the market to find out and tell what changes were done to sap standard objects in your system.
    Your question seems ambiguous please clear it.
    Thanks,
    Kiran.

  • Namedquery using same table field multiple times with the use of a label

    Hi all,
    i'm having some trouble with a namedquery. I'm trying to
    use the following namedquery in Toplink to retrive some
    data out of a database.
    select proj.id
    , proj.code
    , proj.name
    , proj.budget
    , proj.status
    , proj.startdate
    , proj.enddate
    , proj.mdr_id projleader_id
    , med_leader.name projleader
    , proj.mdr_id_valt_onder promanager_id
    , med_promanager.name promanager
    , proj.mdr_id_is_account_from accmanager_id
    , med_accmanager.name accmanager
    from uur_projecten proj
    , uur_medewerkers med_leader
    , uur_medewerkers med_promanager
    , uur_medewerkers med_accmanager
    where ( #p_name is not null or #p_search_string is not null )
    and med_leader.id = proj.mdr_id
    and ( proj.mdr_id = nvl( #p_name, proj.mdr_id )
    or proj.mdr_id_valt_onder = nvl( #p_name, proj.mdr_id )
    or proj.mdr_id_is_account_van = nvl( #p_name, proj.mdr_id ))
    and (( #p_status is not null
    and substr( proj.status, 1, 1 ) = upper( #p_status ))
    or ( #p_status is null ))
    and ( upper( proj.code ) like upper( '%' || #p_search_string || '%' )
    or upper( proj.name ) like upper( '%' || #p_search_string || '%' ))
    and med_promanager.id = proj.mdr_id_valt_onder
    and med_accmanager.id = proj.mdr_id_is_account_van
    order by decode( substr( proj.status, 1, 1 )
    , 'A', 2, 'T', 3, 'F', 4, 1 ), proj.code desc
    As you all can see the table ‘uur_medewerkers’ is been used trice to
    determine the name for the corresponding ID. I have a Java class with
    the fields for the results and created a Toplink descriptor to map
    the fields to the database fields.
    The problem is that for the 'projleader', 'promanager' and 'accmanager'
    fields the results are null. The reason is probably that Toplink doesn't
    recognize the fields because of the label for the tables.
    Is there a way to make this work?
    Greets, René

    Post Author: quafto
    CA Forum: .NET
    Your query is not too clear so I'll do my best to answer it broadly.
    You mentioned that you have a .NET web application where your users enter data on one screen and then may retrieve it on another. If the data is written in real time to a database then you can create a standard Crystal Report by adding multiple tables. The tables should be linked together using the primary and foreign keys in order to optimize the database query and give you a speedy report. Using unlinked tables is not recommended and requires the report engine to index the tables (it is quite slow).
    You also mentioned you have a "PropID" to be used in a WHERE clause. This is a great place to use a parameter in your report. This parameter can then be used in your record selection formula inside Crystal Reports. The report engine will actually create the WHERE clause for you based on the parameter value. This is helpful because it allows you to simply concentrate on your code rather than keeping track of SQL queries.
    Now, what Crystal does not do well with is uncertainty. When you design a report with X number of tables the report engine expects X number of tables to be available at processing time. You should not surprise the print engine with more or less tables because you could end up with processing errors or incorrect data. You may need to design multiple reports for specific circumstances.
    Regarding the group expert question. I'm not sure how you would/could use the group expert to group a table? A table is a collection of fields and cannot be compared to another table without a complex algorithm. The group expert is used to group and sort records based on a field in the report. Have a look at the group expert section of the help file for more information.
    Hopefully my comments have given you a few ideas.

  • Passing a table-field value in Crystal to a Store Procedure in SQL Server

    I have been checking all over the interenet via searches and although some seem to come close to this, its still not what I want.
    Essentially I need to pass value from Table-Field record (for each record read/selected) via a paramete to a Stored Procedure(SP) in SQL Server 2205/2008.  I do NOT want to be prompted for a value for this parameter each time the report is run, simple pass the value in which will be used along with other select criteria to bring back one value for the report to use in a calcuation per record.
    The value of the parameter is a date, but I understand it would be better to pass it in as a varchar(8) - 'YYYYMMDD' - and then reconvert it inside the SP, as follows:
    In Crystal Reports 2008 SP3, I have a formula defined as,
    trans_date = ToText ({F1ARS_STMT_WS_TRAN.TRANS_DATEI}, 'YYYYMMDD')
    and essential just want to pass this to the SP below ... i.e. trans_date  ---> @strTransDate
    I then link the key fields [EXCH_RATE_TABLE_NAME] and [TRANS_CCY_CODE] to other tables in the Database Expert, and put [EXCH_RATE_AMT] on the report and use it to calculate what I want.
    This works fine when the prompt comes up and I put in a proper date, but I don't what it to prompt, but simple pass the F1ARS_STMT_WS_TRAN.TRANS_DATEI in via the fornula/parameter and let teh SQL do the rest for each record selected..
    CREATE PROCEDURE [dbo].sp_GET_EXCH_RATE_AMT (@strTransDate varchar(8))     --use format 'YYYYMMDD' to represent the date as a string.
         -- Add the parameters for the stored procedure here
         -- @TransDate datetime = now
    AS
           declare @TransDate datetime
         set @TransDate = CONVERT(DATETIME, @strTransDate, 112)
    BEGIN
         -- SET NOCOUNT ON added to prevent extra result sets from
         -- interfering with SELECT statements.
         SET NOCOUNT ON;
        -- Insert statements for procedure here
    SELECT [EXCH_RATE_TABLE_NAME], [TRANS_CCY_CODE], [EXCH_RATE_AMT]
    FROM [F1CCY_EXCH_RATE]
    WHERE [MAJOR_CCY_CODE] = 'BBD'
    AND   [START_DATEI] =
         SELECT MAX([START_DATEI])
         FROM [F1CCY_EXCH_RATE]
         WHERE [MAJOR_CCY_CODE] = 'BBD'
         AND   [START_DATEI] <= @TransDate
    END
    GO
    GRANT EXECUTE ON sp_GET_EXCH_RATE_AMT TO PUBLIC
    GO
    Thanks for any help.  Can't tell the headache this has caused my both literally and figuratively.

    Hello,
    I moved your post to the Report Design forum. Lots of SQL help in here...
    I believe the problem is due to you using a Parameterized Stored Procedure. The first thing CR has to do is connect to your DB source which requires the date parameter before it can run the query to add the date filter, it's the SP that is prompting for the parameter. Therefore the report has not run so it can't get the field value from the report until you fill in the info for the SP. Catch 22 problem.... Which came first, the Chicken or the Parameter....
    The report will work as you have noted but I don't know of anyway to refresh unless parameter is filled in again....
    Jason has a lot of great solutions when it comes to these dilemmas, Possibly using a Command Object may help but I believe you will still run into the same issue....
    Only way I can think of is to not use a parameter in the SP and let CR do the filtering client side. Of course this means all data is coming back to the client PC as you are likely trying to find a work around for.
    Thank you
    Don

  • Invoice: How to use more than one Internal Table's info in one Table

    Hi ,
    I am doing an invoice, and have the info from internal table wa_itgen showing - Matnr, material description and quantity.
    I want to also invlude the info Unit Price and Total price on the table line, but can't seem to do it.
    I know that someone I must fill an internal table as I did on the Table itself : is_bil_invoice-it_gen INTO wa_ITGEN.
                     ( TYPE IBBIL_INVOICE).
    So now I need to insert:
    IS_BIL_INVOICE-IT_PRICE    INTO      WA_ITPRICE.
    Do I insert Program Lines, or do it via a LOOP.  Obviously it needs to go under the same Table's cells to incluce it.
    I tried a LOOP, Program lines under the CELL of the table where I want it displayed, and even a Second table.
    If I have the first table's info, the page displays under VF03, but as soon as I try to insert the 2nd Table's info, under VF03 the screen just not show anymore.
    Please help - I've started looking at local maps for bridges... yes, to jump from...

    Hi try this,
    in the program lines fetch unit price and total price based on ur invoice number(as u are already in main loop which fetches invoice no material no etc).
    now loop that internal table with condition inv no = current invoice no and item no = item number
    and display those values on a new text field accordingly.
    sample code...
    select vbeln
           posnr
           j_3asize
           FKIMG
           KZWI1
           from vbrp
           into table itab
           where vbeln = GS_IT_GEN-BIL_NUMBER.
    loop at itab into wa where vbeln = GS_IT_GEN-BIL_NUMBER and
                               posnr = GS_IT_GEN-ITM_NUMBER .
    move : wa-j_3asize to v_grid,
           WA-FKIMG TO V_QTY,
           wa-KZWI1 to v_val.
           v_up = v_val / v_qty.
    endloop.---->like this

  • How to populate dynamic internal table fields with data??

    Hi Folks,
    How to assign a particular internal table field to a dynamically assigned internal table?
    I have an excel sheet, and i upload the excel sheet data into an internal IT_EXLOAD table using FM ALSM_EXCEL_TO_INTERNAL_TABLE
    Now i created a dynamic internal table which has the same column as in my DB table.
    I have to fill the dynamically created Internal table with the IT_EXLOAD data dynamically.
    Suppose in future if i add some field in DB table and for that field if i add some column in excel sheet there is no need to change in the program.
    Looking for reply...
    Best Regards,
    Sayak

    hi,
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           EXPORTING
                filename                = p_path
                i_begin_col             = '1'
                i_begin_row             = '2'
                i_end_col               = '2'
                i_end_row               = '1000'
           TABLES
                intern                  = intern
           EXCEPTIONS
                inconsistent_parameters = 1
                upload_ole              = 2
                OTHERS                  = 3.
    *declare intern_tmp as internal table tb_data in wich you want the data
    *and declare a field symbol <fs_123>
    LOOP AT intern.
        ASSIGN COMPONENT intern-col OF STRUCTURE
        intern_tmp TO <fs_123>.
        IF NOT <fs_123> IS ASSIGNED.
          CLEAR intern.
          CLEAR intern_tmp.
          CONTINUE.
        ENDIF.
        <fs_123> = intern-value.
        AT END OF row.
          CLEAR tb_data.
          MOVE-CORRESPONDING: intern_tmp TO tb_data.
          APPEND tb_data.
          CLEAR intern_tmp.
        ENDAT.
        CLEAR intern.
      ENDLOOP.
    **paste this code and you can see the data in ur tables dynamically.
    Thanks
    Nitin Sachdeva

  • Dynamic value help for a table field to fill two fields, how to?

    Hi all gurus,
    In SRM 7 I defined a dynamic value help for a single field (ZZ_PROLE_R3) of my header custom table.
    That's the code from WDDOMODIFYVIEW in the webdynpro /SAPSRM/WDC_DODC_CT, view V_DODC_CT:
    DATA: lo_tabnode        TYPE REF TO IF_WD_CONTEXT_NODE.
          DATA: lo_tabnode_info   TYPE REF TO IF_WD_CONTEXT_NODE_INFO.
          DATA: tab_value         TYPE WDR_CONTEXT_ATTR_VALUE_LIST,
                wa_value          TYPE WDR_CONTEXT_ATTR_VALUE.
          lo_tabnode = wd_context->GET_CHILD_NODE( name = 'THCUS' ). "the custom table node
          lo_tabnode_info = lo_tabnode->get_node_info( ).
          wd_this->GET_VALHELP_ZZ_PROLE_R3( EXPORTING iv_guid = lv_guid
                                            IMPORTING ZZ_PROLE_R3_VALHELP = tab_value ). "this method returns the dyn value table
          lo_tabnode_info->set_attribute_value_set( name = 'ZZ_PROLE_R3'
                                                     value_set = tab_value ).
    The method GET_VALHELP_ZZ_PROLE_R3 dynamically builds the value help table tab_value; such table is made up by two fields:
    value : contains the value of the field
    text   : contains a description of the value
    The above solution works; now I'd like to enhance it. The custom table THCUS contains also a field called ZZ_PROLE_R3_DESC, which represents the description of ZZ_PROLE_R3. It is, exactly, the TEXT field in tab_value.
    So I'd like to do as follows:
    - the user clicks on the search help for ZZ_PROLE_R3 field of the table;
    - the above described value help appears;
    - after the selection, both ZZ_PROLE_R3 and ZZ_PROLE_R3_DESC are filled with the selected couple value - text chosen from the value help.
    Could anyone help me achieving such a behaviour?
    Again, a little request... when I open the above value help dialog box, the window itself has a label "Floorplan Manager application for OIF.." that obviously I'd like to redefine (e.g. "Role selection value help"). Is there any way to do that?
    Thanks in advance

    Chris Paine wrote:
    It seems to me - given that your code is in wddomodifyview that you are trying to have different dropdowns per row
    - I'm not sure where you are populating lv_guid - but I'd guess it is an attribute of the row selected? If it isn't then I can't see any reason that you would do this code in wddomodifyview and not wddoinit.
    Hi Chris and thanks for your help,
    lv_guid is the GUID of the document's header; I need to pass it to the method that populates my value help table because the values in it are derived from some fields on the document. (the situation actually is more complex; there's an RFC call on the backend for which the document is intended for to retrieve the data that populate the value help...).
    I'm quite unexperienced on webdynpro and terminology; if dropdown menus are fixed selection option that appears on a field, I guess this is not my case. I did a pair of screenshot to provide an idea of what the solution by now is, and what "I would like to have":
    [Pre-selection (F4 icon on the field in table)|http://imagebin.ca/view/npIsaqF.html]
    [Value Help popup for the field ZZ_PROLE_R3|http://imagebin.ca/view/8fZUh3T.html]
    [Result by now |http://imagebin.ca/view/3PaqdvE.html]
    [Result I'd like to have.|http://imagebin.ca/view/dExR0J.html]
    Chris Paine wrote:
    However - by your comment on the "value help dialog box" I am guessing you are using an input field? If this is the case then I would strongly suggest that you change/enhance the structure of the context node THCUS (btw, better coding practise to refer to it as wd_this->wdctx_thcus when using the get child node construct) so that you refer to an actual SAP ddic search help, if you then associate in the structure the value and text fields then populating the text field should happen automatically. Also you'd have the nice side effect that your value help dialog would be named after the associated ddic search help.
    Thanks for the code suggestion, I'll apply that. For what concerns the context node THCUS... It is, by standard, a node which I can't explictly find in the context for the view V_DODC_CT. The problem is that ZZ_PROLE_R3 and the corresponding description field ZZ_PROLE_R3_DESC of the table must be filled with data retrieved dynamically @ runtime from the backend. So I guess I can't populate a val help referring to a dictionary table/field; I'd rather do as follows:
    - retrieve what's the target backend for the document (to do so, I have to process the document .. that's why the header guid passed to my method);
    - RFC call to a custom method that extracts possible values for the specific backend;
    - bind the ammissible values to the value help.
    Chris Paine wrote:
    I realise that this is rather a lot - so if you have any specific question please do respond - hopefully I or someone else will be able to clarify.
    Thanks again for your help; additional info as well as code examples would be highly appreciated

  • In which table we can find service entry sheet no to find the actual cost

    In which table we can find service entry sheet no to find the actual cost of External service
    Service code,     Service description      Quantity     UOM,     Vendor,     Cost

    Hi,
    Total Actual Material Cost - Sum up the total cost ENWRT against the AUFNR in the table RESB and display in the report
    Total Actual External Service Cost - Provide the field AUFNR in the table EKKN and get the Purchasing document field EBELN & apply this field data in table EKPO get field NETPR and display in the out put
    For link between operation & order - Selection criterion is the order number (Field AUFNR table AUFK). The content of field AUFPL has to be used afterwards as selection criterion in the table AFVC. The selection field in this table is again AUFPL and display the field LTXA1..
    Kuber

  • How to design a smartform with below tables and table-fields??

    How to design a smartform  and driver program using this tables and table fields
    FIELD DESCRIPTION     TABLE-FIELD                                   
    Tax Invoice No:     vbrk-vbeln                    
    Code     vbpa-kunnr where parvw = RG                                   
    Ship To     vbpa-kunnr where parvw = WE                                   
    PAN No     J_1IMOCUST-J_1IPANNO for WE                              
    ECC     ,,                                   
    Range     ,,                                   
    Div     ,,                                   
    Excise Reg No     ,,                                   
    LST No     ,,                                   
    CST No     ,,                                   
    Invoice No:      vbrk-vbeln                                   
    Do No:     vbfa-vbelv where vbeln = inv no and vbtyp_v = C get the vbeln where vbak-auart = 'ZDO'           
    Sales Doc Num:     vbfa-vbelv where vbeln = inv no and vbtyp_v = C get the vbeln where vbak-auart = 'ZSO'                             
    PO:     vbkd-bstkd where vbeln = sales doc no                                   
    Delivery No:     select vbelv from vbfa where vbeln = inv no and vbtyp_v = J                             
    Goods Removal Dt&Time:     select vbeln from vbfa where vbelv = dlv no and vbtyp_v = R Put this vbeln in mkpf and get BUDAT and CPUTM     
    Selection screen parameter should be : vbrk-vbeln.

    Hi,
    First design your form interface, this is the set of fields that you need to display in your form and create this as a structure in SE11.  In your print program code the logic to extract the data into this structure, this is just regular ABAP, nothing special here.
    When you have your data call function module SSF_FUNCTION_MODULE_NAME to determine the name of the generated smartform function module.  Then call this function module, passing the data collected into your structure.  If necessary you will need to find the print parameters required and pass these too.
    In your smartform you will need to use the data structure you created in SE11 as the smartform interface and design the layout required to display these fields.
    Regards,
    Nick

  • Accessing Dynamic Internal table fields

    Hello All,
    I have one internal table ep_tabx having 138 columns whose data is getting displayed
    by using function module reuse_alv_grid_display.
    Now my query is, i have created one custom button on the appl toolbar to download ep_tabx data.
    IF the user changes the the layout of the output at runtime and then presses that custom button
    then i have created one dynamic internal table using call method cl_alv_table_create=>create_dynamic_table suppose <dyn_table> whose struc will be that of
    dynamic fieldcatalog returned by using FM REUSE_ALV_GRID_LAYOUT_INFO_GET.
    And then I have put a loop on the int table ep_tabx and move corresponding to the int table
    <dyn_table>. But when i download the <dyn_table> data through GUI_DOWNLOAD the
    date fields data is not getting downloaded correctly. I have 4 date fields in my ep_tabx.
    In the alv grid output the date is getting displayed like 08/30/2004(ie mon/date/yr) but in download
    file it comes like 20040830(ie yr/mon/date and that too without /).How to access the dynamic
    internal tables fields separately so asto convert them in the pgm before the download.
    Kindly Help.
    Thanks in advance.
    Mansi

    Hi,
    Search in SDN you would get loads of info on accessing dynamic itab's .
    in order to convert your date format use WRITE stmt to convert the value in your itab before passing it to download FM.
    Regards,
    Raghavendra

  • Table Field Names

    Hi All,
    I m unable to find tables, in which these fields are related..mainly....Father's Name and Shift....
    Plz Help Me...
    Thanks...

    PCL1 HR Cluster 1
    PCL2 HR Cluster 2
    T001P Personnel Area/Subarea
    T001T Company code-dependent texts
    T500L Personnel Country Grouping
    T500P Personnel Areas
    T502T Marital Status Designators
    T503 Employee Group/Subgroup
    T503T Employee Subgroup Names
    T508A Work Schedule Rules
    T510 Pay Scale Groups
    T510A Pay Scale Types
    T510F Assign Pay Scale --- Currency
    T510W Pay Scale - Period Parameter Assignment
    T511 Wage Types
    T512T Wage Type Texts
    T512W Wage Type Valuation
    T512Z Permissibility of Wage Types per Infotype
    T527X Organizational Units
    T528T Position Texts
    T529U Status Values
    T530 Reasons for Actions
    T530T Reason for Action Texts
    T549A Payroll Accounting Areas
    T549Q Payroll Periods
    T550A Daily Work Schedule
    T550S Daily Work Schedule Texts
    T551S Period Work Schedule Texts
    T552A Monthly Work Schedule
    T554C Absence Valuation
    T554S Attendance and Absence Types
    T554T Attendance and Absence Texts
    T558B Payroll Account Transfer- Payroll Periods
    T569V Control Records
    T5K8C Transfer ext. payroll results into Canadian specific tables
    T74FA Benefit insurance plan
    T74FC Benefits Insurance Coverage Rule
    HRP1000 Infotype 1000 DB Table (Objects)
    HRP1001 Infotype 1001 DB Table (Relationships)
    HRP1002 Infotype 1002 DB Table
    HRP1003 Infotype 1003 DB Table
    HRP1004 Infotype 1004 DB table
    HRP1005 DB Table for Infotype 1005 (Planned Compensation)
    HRP1006 Infotype 1006 DB table
    HRP1007 Infotype 1007 DB Table
    HRP1008 Infotype 1008 DB Table
    HRP1009 Infotype 1009 DB table
    HRP1010 Infotype 1010 DB table
    HRP1011 Infotype 1011 DB Table
    HRP1013 Infotype 1013 DB Table
    HRP1014 Infotype 1014 DB Table
    HRP1015 Infotype 1015 DB table
    HRP1016 Infotype 1016 DB Table
    HRP1017 Infotype 1016 DB Table
    HRP1018 DB Table for Infotype 1018 Cost Distribution
    HRP1019 DB Table for Infotype 1019 Required Positions
    HRP1020 Infotype 1020 DB table
    HRP1021 INFOTYPE 1021 DB TABLE
    HRP1023 Infotype 1023 DB table
    HRP1024 INFOTYPE 1024 DB TABLE
    HRP1025 INFOTYPE 1025 DB TABLE
    HRP1026 Infotype 1026 DB table
    HRP1027 Infotype 1027 DB table
    HRP1028 Infotype 1028 DB Table
    HRP1029 Infotype 1029 DB table
    HRP1030 Infotype 1030 DB table
    HRP1031 Infotype 1031 DB table
    HRP1032 Infotype 1032 DB Table
    HRP1033 DB table for infotype 1033
    HRP1034 Infotype 1034 DB table
    HRP1035 Infotype 1035 DB Table
    HRP1036 Infotype 1036 DB table
    HRP1037 Infotype 1037 DB Table
    HRP1038 Infotype 1038 DB table
    HRP1039 Database Table for Infotype 1039
    HRP1040 Database Table for Infotype 1040
    HRP1041 DB Table for Infotype 1041
    HRP1042 Infotype 1042 DB Table
    HRP1043 DB Table for Infotype 1043
    HRP1044 DB Table for Infotype 1044
    HRP1045 DB Table for Infotype 1045
    HRP1046 Database Table for Infotype 1046
    HRP1047 DB Table for Infotype 1047
    HRP1048 DB Table for Infotype 1048
    HRP1049 Database Tables for Infotype 1049
    HRP1050 DB Table for Infotype 1050 (Job Evaluation Results)
    HRP1051 DB Table for Infotype 1051 (Survey Results)
    HRP1060 DB Table for Infotype 1060
    HRP1061 DB Table for Infotype 1061
    HRP1062 DB Table for Infotype 1062
    HRP1063 DB Table for Infotype 1063
    HRP1201 Infotype 1201 DB Table
    HRP1205 Infotype 1205 DB Table
    HRP1206 Infotype 1206 DB Table
    HRP1208 Infotype 1208 DB Table
    HRP1209 Infotype 1209 DB Table
    HRP1210 Infotype 1210 DB Table
    HRP1211 Infotype 1211 DB Table
    HRP1212 Infotype 1212 DB Table
    HRP1213 Infotype 1213 DB Table
    HRP1214 Infotype 1214 DB Table
    HRP1215 Infotype 1215 DB Table
    HRP1216 Infotype 1216 DB Table
    HRP1217 Infotype 1217 DB Table
    HRP1218 DB Table for Infotype 1218
    HRP1220 DB Table for Infotype 1220 Activity Profile
    HRP1221 DB Table for Infotype 1221 Excluded Activities
    HRP1222 Infotype 1222- General attribute maintenance
    HRP1230 DB Table for Infotype 1230
    HRP1240 DB Table for Infotype 1240
    HRP1250 DB table for infotype 1250
    HRP1251 DB table for infotype 1251
    HRP1252 DB table for infotype 1252
    HRP1253 DB table for infotype 1253
    HRP1254 DB Table for Infotype 1254
    HRP1270 DB Table for Info Type 1270
    HRP1403 DB table for infotype 1403
    HRP1404 DB table for infotype 1404
    HRP1500 DB Table for Infotype 1500
    HRP1501 DB Table for Infotype 1501
    HRP1502 DB Table for Infotype 1502
    HRP1503 DB Table for Infotype 1503
    HRP1504 DB Table for Infotype 1504
    HRP1505 DB Table for Infotype 1505
    HRP1506 DB Table for Infotype 1506
    HRP1507 DB Table for Infotype 1507
    HRP1518 DB Table for Infotype 1518
    HRP1519 DB Table for Infotype 1519
    HRP1520 DB Table for Infotype 1520
    HRP1600 Database Table for Infotype 1600
    HRP1601 Database Table for Infotype 1601
    HRPAD21 Additional data PAD21
    HRPAD22 Additional data PAD22
    HRPAD23 Additional data PAD23
    HRPAD25 Additional data PAD25
    HRPAD27 Additional data PAD27
    HRPAD34 Additional Data for Relationship 'has attended'
    HRPAD44 PAD44 Additional Data
    HRPAD47 PAD47 Additional Data
    HRPAD50 Additional Data PAD50
    HRPAD51 Additional data PAD51
    HRPAD53 Additional Data PAD53
    HRPAD63 PAD63 Additional Data
    HRPAD77 Additional data for PAD77
    HRPADBLIST Additional Data Databases
    HRPADD2 Additional Data PADD2
    HRPADD3 Additional Data PADD3
    HRPADIC Additional Data PADD2
    HRPADNLIST Additional Data Number List
    HRPADNN General Additional Data Table
    HRPADP1 Additional Data PADP1
    HRPADP2 Additional Data PADP2
    HRPADPM Additional Data PADPM
    HRPADTI PADTI Additional Data
    HRPADUZ PADUZ Additional Data- Requirements Assignment of Persons
    HRPADXN Additional Data PADXN
    HRPS_T012K For Decoupled Access to T012K (House Bank and Account)
    HRPVAC List of vacant positions
    HRPXXXX DB Table for Infotype XXXX
    HRPYYYY DB Table for Infotype YYYY
    PA2001 HR Time Record- Infotype 2001 (Absences)
    PA2001_UGR Generated Table for View PA2001_UGR
    PA2002 HR Time Record- Infotype 2002 (Attendances)
    PA2002_UGR Generated Table for View PA2002_UGR
    PA2003 HR Time Record- Infotype 2003 (Substitutions)
    PA2004 HR Time Record- Infotype 2004 (Availability)
    PA2005 HR Time Record- Infotype 2005 (Overtime)
    PA2006 HR Time Record- Infotype 2006 (Absence Quotas)
    PA2006_UGR Generated Table for View PA2006_UGR
    PA2007 HR Time Record- Infotype 2007 (Attendance Quotas)
    PA2007_UGR Generated Table for View PA2007_UGR
    PA2010 HR Time Record- Infotype 2010 (Employee Remuneration Info.)
    PA2012 HR Time Record- Infotype 2012 (Time Transfer Specifications)
    PA2013 HR Time Record- Infotype 2013 (Quota Corrections)
    PA2500 HR Master Record for Infotype 2500
    PA2501 HR Master Record for Infotype 2501
    PA2502 HR Master Record for Infotype 2502
    PA0000 HR Master Record- Infotype 0000 (Actions)
    PA0001 HR Master Record- Infotype 0001 (Org. Assignment)
    PA0002 HR Master Record- Infotype 0002 (Personal Data)
    PA0003 HR Master Record- Infotype 0003 (Payroll Status)
    PA0004 HR Master Record- Infotype 0004 (Challenge)
    PA0005 HR Master Record- Infotype 0005 (Leave Entitlement)
    PA0006 HR Master Record- Infotype 0006 (Addresses)
    PA0007 HR Master Record- Infotype 0007 (Planned Working Time)
    PA0008 HR Master Record- Infotype 0008 (Basic Pay)
    PA0009 HR Master Record- Infotype 0009 (Bank Details)
    PA0010 HR Master Record- Infotype 0010 (Capital Formation)
    PA0011 HR Master Record- Infotype 0011 (Ext.Bank Transfers)
    PA0012 HR Master Record- Infotype 0012 (Fiscal Data - Germany)
    PA0013 Infotype Social Insurance - Germany
    PA0014 HR Master Record- Infotype 0014 (Recur. Payments/Deds.)
    PA0015 HR Master Record- Infotype 0015 (Additional Payments)
    PA0016 HR Master Record- Infotype 0016 (Contract Elements)
    PA0017 HR master record- Infotype 0017 (Travel Privileges)
    PA0019 HR Master Record- Infotype 0019 (Monitoring of Dates)
    PA0020 HR Master Record- Infotype 0020 (DUEVO)
    PA0021 HR Master Record- Infotype 0021 (Family)
    PA0022 HR Master Record- Infotype 0022 (Education)
    PA0023 HR Master Record- Infotype 0023 (Other/Previous Employers)
    PA0024 HR Master Record- Infotype 0024 (Qualifications)
    PA0025 HR Master Record- Infotype 0025 (Appraisals)
    PA0026 HR Master Record- Infotype 0026 (Company Insurance)
    PA0027 HR Master Record- Infotype 0027 (Cost Distribution)
    PA0028 HR Master Record- Infotype 0028 (Int. Medical Service)
    PA0029 HR Master Record- Infotype 0029 (Workers' Compensation)
    PA0030 HR Master Record- Infotype 0030 (Powers of Attorney)
    PA0031 HR Master Record- Infotype 0031 (Reference Pers.Nos.)
    PA0032 HR Master Record- Infotype 0032 (Internal Data)
    PA0033 International Infotype 0033- Statistics Exceptions
    PA0034 HR Master Record- Infotype 0034 (Corporate Functions)
    PA0035 HR Master Record- Infotype 0035 (Comp.Instr.)
    PA0036 HR Master Record- Infotype 0036 (Social Insurance CH)
    PA0037 HR Master Record- Infotype 0037 (Insurance)
    PA0038 HR Master Record- Infotype 0038 (Fiscal Data CH)
    PA0039 HR Master Record- Infotype 0039 (Add. Org. Assignment CH)
    PA0040 HR Master Record- Infotype 0040 (Objects on Loan)
    PA0041 HR Master Record- Infotype 0041 (Date Specifications)
    PA0042 HR Master Record- Infotype 0042 (Fiscal Data - Austria)
    PA0043 HR Master Record- Infotype 0043 (Family Allowance - A)
    PA0044 HR Master Record- Infotype 0044 (Social Insurance - A)
    PA0045 HR Master Record- Infotype 0045 (Company Loans)
    PA0046 HR Master Record- Infotype 0046 (Company Pension Fund CH)
    PA0048 HR Master Record- Infotype 0048 (Residence Status - CH)
    PA0049 HR Master Record- Infotype 0049 (Red.Hrs./Bad Weather)
    PA0050 HR Master Record- Infotype 0050 (Time Recording)
    PA0051 HR Master Record- Infotype 0051 (ASB/SPI Data)
    PA0052 HR Master Record- Infotype 0052 (Wage Maintenance)
    PA0053 HR Master Record- Infotype 0053 (Company Pension)
    PA0054 HR Master Record- Infotype 0054 (Works Council Pay)
    PA0055 HR Master Record- Infotype 0055 (Previous Employer - A)
    PA0056 HR Master Record- Infotype 0056 (Sick Certificates-A)
    PA0057 HR Master Record- Infotype 0057 (Membership Fees)
    PA0058 HR Master Record- Infotype 0058 (Commuter Rate - Austria)
    PA0059 HR Master Record- Infotype 0059 (Social Insurances - NL)
    PA0060 HR Master Record- Infotype 0060 (Fiscal Data - NL)
    PA0061 HR Master Record- Infotype 0061 (Social Insurance - ES)
    PA0062 HR master record- Infotype 0062 Fiscal data (ES)
    PA0063 HR Master Record- Infotype 0063 (Social Fund - NL)
    PA0064 HR Master Record- Infotype 0064 (Social Insurance - F)
    PA0065 HR Master Record- Infotype 0065 (Tax - GB)
    PA0066 HR Master data infotype 0066 - Canadian garnishment- order
    PA0067 HR master data infotype 0067 - Canadian garnishment- debt
    PA0068 HR master data infotype 0068 - Canadian garnishment- adjust
    PA0069 HR Master Record- Infotype 0069 (Nat. Insurance - GB)
    PA0070 HR Master Record- Infotype 0070 (Court Orders - GB)
    PA0071 HR Master Record- Infotype 0071 (Pension Funds - GB)
    PA0072 HR Master Record- Infotype 0072 (Fiscal Data - DK)
    PA0073 HR Master Record- Infotype 0073 (Private Pensions - DK)
    PA0074 HR Master Record- Infotype 0074 (Leave Processing - DK)
    PA0075 HR Master Record- Infotype 0075 (ATP Pension - DK)
    PA0076 HR Master Record- Infotype 0076 (Workers Compensation NA)
    PA0077 HR Master Record- Infotype 0077 (Additional Personal Data)
    PA0078 HR Master Record- Infotype 0078 (Loan Payments)
    PA0079 Infotype SI Additional Insurance - D
    PA0080 HR Master Record- Infotype 0080 (Maternity Protection)
    PA0081 HR Master Record- Infotype 0081 (Military Service)
    PA0082 HR Master Record- Infotype 0082 (Additional Absence Data)
    PA0083 HR Master Record- Infotype 0083 (Leave Compensation)
    PA0084 HR Master Record- Infotype 0084 (Sickness Pay Control - GB)
    PA0085 HR Master Record- Infotype 0085 (Work Incapacity Periods GB)
    PA0086 HR Master Record- Infotype 0086 (SSP/SMP Exclusions GB)
    PA0087 HR Master Record- Infotype 0087 (WFTC/DPTC GB)
    PA0088 HR Master Record- Infotype 0088 (SMP Record - GB)
    PA0090 HR Master Record- Infotype 0090 (Additional Income)
    PA0092 HR master record- Infotype 0092 Seniority (ES)
    PA0093 HR Master Record- Infotype 0093 (Previous Employers - D)
    PA0094 HR Master Record- Infotype 0094 (Residence Status - NA)
    PA0095 HR Master Record- Infotype 0095 (Tax Canada)
    PA0096 HR Master Record- Infotype 0096 (Tax - USA)
    PA0098 HR Master Record- Infotype 0098 (Profit Sharing - F)
    PA0100 HR Master Record- Infotype 0100 (SI B)
    PA0101 HR Master Record- Infotype 0101 (Tax B)
    PA0102 HR Master Record- Infotype 0102 (Grievances NA)
    PA0103 HR Master Record- Infotype 0103 (Bond Purchases NA)
    PA0104 HR Master Record- Infotype 0104 (Bond Denominations NA)
    PA0105 HR Master Record- Infotype 0105 (Communications)
    PA0106 HR Master Record- Infotype 0106 (Related Persons NA)
    PA0107 HR Master Record- Infotype 0107 (Work Schedule B)
    PA0108 HR Master Record- Infotype 0108 (Personal Data B)
    PA0109 HR Master Record- Infotype 0109 (Contract Elements B)
    PA0110 HR Master Record- Infotype 0110 (Pensions NL)
    PA0111 HR Master Record- Infotype 0111 (Garnishment/Cession - D)
    PA0112 HR Master Record- Infotype 0112 (Garnishment Claim - D)
    PA0113 HR Master Record- Infotype 0113 (Garnish. Interest - D)
    PA0114 HR Master Record- Infotype 0114 (Garnishment Amount D)
    PA0115 HR Master Record- Infotype 0115 (Garnishment Wages D )
    PA0116 HR Master Record- Infotype 0116 (Garn. Transfer D)
    PA0117 HR Master Record- Infotype 0117 (Garn. Compensation D)
    PA0118 HR Master Record- Infotype 0118 (Child Allowance D)
    PA0119 HR Master Record- Infotype 0119 (Annual Income CA D)
    PA0120 HR Master Record- Infotype 0120 (Pension Fund Trans. CH)
    PA0121 HR Master Record- Infotype 0121 (RefPerNo Priority)
    PA0122 HR Master Record- Infotype 0122 (Child Allowance Bonus D)
    PA0125 HR Master Record- Infotype 0125 (Garnishment B)
    PA0126 Infotype- Supplementary Pension Germany
    PA0127 HR Master Record- Infotype 0127 (Commuter Traffic NL)
    PA0128 HR Master Record- Infotype 0128 (Notifications)
    PA0129 HR Master Record- Infotype 0129 (Text Number Assign.)
    PA0130 HR Master Record- Infotpye 0130 (Checking Procedures)
    PA0131 HR Master Record- Infotype 0131 (Garnishment/Cession A)
    PA0132 HR Master Record- Infotype 0132 (Garnishment Claim A)
    PA0133 HR Master Record- Infotype 0133 (Garn. Interest A)
    PA0134 HR Master Record- Infotype 0134 (Garnishment Amount A)
    PA0135 HR Master Record- Infotype 0135 (Spec. Garn. Cond. A)
    PA0136 HR Master Record- Infotype 0136 (Garn. Transfer A)
    PA0137 HR Master Record- Infotype 0137 (Garn. Compensation A)
    PA0138 HR Master Record- Infotype 0138 (Family/Ref.Pers B)
    PA0139 HR Master Record- Infotype 0139 (Employees Appl.No)
    PA0140 HR Master Record- Infotype 0140 (SI Basic Data JP)
    PA0141 HR Master Record- Infotype 0141 (SI Premium Data JP)
    PA0142 HR Master Record- Infotype 0142 (Residence Tax JP)
    PA0143 HR Master Record- Infotype 0143 (Life Insurance JP)
    PA0144 HR Master Record- Infotype 0144 (Property Accum. JP)
    PA0145 HR Master Record- Infotype 0145 (Personnel Tax Status JP)
    PA0146 HR Master Record- Infotype 0146 (Y.E.A. Data JP)
    PA0147 HR Master Record- Infotype 0147
    PA0148 HR Master Record- Infotype 0148 (Family JP)
    PA0149 HR Master Record Infotype 0149 (Tax Data South Africa)
    PA0150 HR Master Record Infotype 0150 (Social Insurance SA)
    PA0151 HR Master Record Infotype 0151 (Ext.Insurance South Africa)
    PA0154 HR master record, infotype 0154 (social security data)
    PA0155 HR master record, infotype 0155 (Suppl.admin.data)
    PA0156 HR master data, infotype 0156 (Tax deduction)
    PA0157 HR master record, infotype 0157 (User admin.data)
    PA0158 HR mater record, infotype 0158 (Amounts paid by 3rd party)
    PA0159 HR master record, infotype 0159 (Seniority)
    PA0160 HR master record, infotype 0160 (Family allowance)
    PA0161 HR Master Record- Infotype 0161 (Limits IRS)
    PA0162 HR Master Record- Infotype 0162 (Ins. Y.E.T.A Data JP)
    PA0165 HR Master Record- Infotype 0165 (Limits Deductions)
    PA0167 HR Master Record- Infotype 0167 (Health Plans)
    PA0168 HR Master Record- Infotype 0168 (Insurance Plans)
    PA0169 HR Master Record- Infotype 0169 (Savings Plan)
    PA0170 HR Master Record- Infotype 0170 (Flexible Spending Accounts)
    PA0171 HR Master Record- Infotype 0171 (Gen. Benefits Information)
    PA0172 HR Master Record- Infotype 0172 (FSA Claims)
    PA0173 Tax card information
    PA0177 HR Master Record- Infotype 0177 (Reg. Country of Birth NL)
    PA0179 HR Master Record- Infotype 0179 (Tax SG)
    PA0180 Alternative Address Data (Thailand)
    PA0181 HR Master Record- Infotype 0181 http://Add. Funds (SG)
    PA0182 HR Master Record- Infotype 0182 Alternative Names (SG)
    PA0183 HR Master Record- Infotype 0183 Awards (SG)
    PA0184 HR Master Record- Infotype 0184 Resume text (SG)
    PA0185 HR Master Record- Infotype 0185 Identification (SG)
    PA0186 HR Master Record- Infotype 0186 Social Insurance (SG)
    PA0187 Additional family data
    PA0188 Tax (Australia)
    PA0189 HR Master Record- Infotype 0189 (Construction Pay- Funds)
    PA0190 HR Master Data Record Infotype 0190 (BuildingTradePrevERDat)
    PA0191 HR Master Record Infotype 0191 (BuildingTradeReimbursExpens)
    PA0192 Personnel Master Record Infotype 0192 (BuildingTrade Attrib)
    PA0194 HR Master Record Infotype 0194 (Garnishment Document)
    PA0195 HR Master Record Infotype 0195 (Garnishment Order)
    PA0196 HR Master Record-Infotype 0196 (Employee Provident Fund MY)
    PA0197 HR Master Record-Infotype 0197 (SOCSO Contributions MY)
    PA0198 Sheduled Tax Deductuion Malaysia
    PA0199 Tax deduction CP38 / Additional amt / Bonus - Malaysia
    PA0200 HR Master Record, Infotype 0200 (Garnishments DK)
    PA0201 Personnel master record infotype 0201 (basic pension amnts)
    PA0202 HR master data infotype 0202 (Entitlements)
    PA0203 HR master record infotype 0203 (Pension/Reserve Status)
    PA0204 HR Master Record, Infotype 0204 (DA/DS Statistics DK)
    PA0205 HR Master Record- Infotype 0205
    PA0206 HR Master Record- Infotype 0206, SI Finland
    PA0207 HR Master Record- Infotype 0207 (Residence Tax Area)
    PA0208 HR Master Record- Infotype 0208 (Work Tax Area - USA)
    PA0209 HR Master Record- Infotype 0209 (Unemployment Insurance USA)
    PA0210 HR Master Record- Infotype 0210 (W4 USA)
    PA0211 HR Master Record- Infotype 0211 (COBRA Beneficiaries)
    PA0212 HR Master Record- Infotpye 0212 (COBRA Health Plan)
    PA0213 Additional family information - Malaysia
    PA0214 HR Master Record Infotype 0214
    PA0215 Building Trade Transaction Data
    PA0216 Garnishment Adjustment
    PA0217 HR Master Record Infotype 0217 (INSEE code)
    PA0218 HR Master Record- Infotype 0218 (Pensioner Fund No. - F)
    PA0219 HR Master Record- Infotype 0219 (External Organizations)
    PA0220 Superannuation (Australia)
    PA0221 HR Master Record- Infotype 0221 (Manual Checks)
    PA0222 HR Master Record for Infotype 0222 (Company Cars GB)
    PA0224 Tax information - infotype 0224 - Canada
    PA0225 HR Master Record for Infotype 0225 (Company Cars GB 2)
    PA0227 Tax file number (Australia)
    PA0228 HR Master Record- Infotype 0228
    PA0230 HR Master Record- Infotype 0230 / View 0008 (PSG)
    PA0231 HR Master Record- Infotype 0231 / View 0001 (PSG)
    PA0232 Personal-master record infotype 0232 (Child Allowance) (D)
    PA0233 HR Master Record Infotype 0233 ('Bilan Social' FR)
    PA0234 HR Master Record Infotype 0234 (Add. Withh. Inform. - USA)
    PA0235 HR Master Record- Infotype 0235 (Other Taxes - USA)
    PA0236 HR Master Record- Infotype 0236 (Credit Plans)
    PA0237 HR Master Record- Infotype 0237 / View for 0052 (PSG)
    PA0241 Indonesian Tax Data
    PA0242 JAMSOSTEK Details, Indonesia
    PA0261 Leave Accrual Australia
    PA0263 HR Master Record for Infotype 0263
    PA0264 HR Master Record- Infotype 0264/view for Infotype 0021
    PA0265 HR Master Record- Infotype 0265 / Special Regulations (PSG)
    PA0266 HR Master Record- Infotype 0266 / View 0027 (PSG)
    PA0267 HR Master Record- Infotype 0267 (One time Payment off-cycle)
    PA0268 HR Master Record Infortype view 0045 and 0268 (Loan JPN)
    PA0269 HR Master Record- Infotype 0269 (ADP Information USA)
    PA0270 HR Master Data Record- Infotype 0270 (COBRA Payments)
    PA0271 HR master data infotype 0271 (Public Sector statistics)
    PA0272 HR Master Record Infotype 0272 (Garnishment FR)
    PA0273 HR Master Record- Infotype 0273 (Tax - SE)
    PA0274 HR Master Record- Infotype 0274 (Insurance - SE)
    PA0275 HR Master Record- Infotype 0275 (Garnishment - SE)
    PA0276 HR Master Record- Infotype 0276 (OPIS - SE)
    PA0277 HR Master Record- Infotype 0277 (Exceptions - SE)
    PA0278 HR Master Record- Infotype 0278 (Basic Data PF CH)
    PA0279 HR Master Record- Infotype 0279 (Individual Values PF CH)
    PA0280 HR Master Record Infotype 0280/View for 0016
    PA0281 HR Master Record Infotype 0281/View for 0045
    PA0283 HR Master Record for Infotype 0283 (Archiving)
    PA0288 HR CH- HR Master Record Infotype 0021 (Suppl. Switzerland)
    PA0302 HR Master Record- Infotype 0302 (Additional Actions)
    PA0303 HR Master Record- Infotype 303 (reductn tax/soc.ins.contrNL)
    PA0304 Basic pay - additional information
    PA0305 HR master record, infotype 0305 (previous employer)
    PA0306 HR master record, infotype 0306 (Family data)
    PA0309 IRD Number Infotype NZ
    PA0310 Superannuation NZ
    PA0311 Leave Adjustments - NZ
    PA0312 Leave History Adjustments NZ
    PA0313 Employee Taxation Detail Infotype NZ
    PA0314 I0314- Days for Vacation Bonus and Sal. Deducs (DK/N)
    PA0315 CATS- Sender Information
    PA0317 HR Master Record- Infotype 0317 (special arrangements)
    PA0318 HR Master Record- Infotype Family data for Indonesia (0318)
    PA0319 Indonesia Private Insurances
    PA0320 Official housing
    PA0321 Employee accommodations
    PA0322 HR Master Data Record Infotype 0322 (Pensions and Rel. Ben.)
    PA0323 HR Master Record Infotype 0323 (Pension Plan)
    PA0326 HR Master Record IT 0326 (Imputation to Pension Payments)
    PA0329 HR master record infotype 0329 ( Sideline Job)
    PA0330 Infotype 0330 (Non-monetary remuneration)
    PA0331 HR Master Record- Infotype 0331 (Tax - PT)
    PA0332 HR Master Record- Infotype 0332 (Social Security - PT)
    PA0333 HR Master Record- Infotype 0333 (Disability - P)
    PA0334 HR Master Record- Infotype 0334
    PA0335 HR Master Data- Infotype 0335 (view of infotype 21 - PT)
    PA0336 HR Master Data- Infotype 0336 (view of infotype 2 - PT)
    PA0337 HR Master Record- Infotype 0337 (Prof. Classifications - PT)
    PA0338 HR Master record- Infotype 0338 (Absence pay. clearing - PT)
    PA0341 HR - master record infotype 341 (DUEVO start)
    PA0342 HR Master Record- Infotype 0342 (HK Extension to I0002)
    PA0344 HR Master Record- Infotype 0344 (Familiy members HK)
    PA0345 HR Master Record- Infotype 0345 (Hong Kong Tax)
    PA0346 HR Master Record- Infotype 0346 (Contribution plan)
    PA0347 HR Master Record- Infotype 0347 (Entitlement plan)
    PA0348 HR Master Record- Infotype 0348 (HK Appraisal and bonus)
    PA0349 HR Master Record- Infotype 0349 (Eligibility grouping)
    PA0351 HR Master Record- Infotype 0351 (Country Information)
    PA0352 NHI for Family member (TW)
    PA0353 Income Tax Taiwan
    PA0354 Labor Insurance Taiwan
    PA0355 National Health Insurance Taiwan
    PA0356 Employment Stabilization Fund (TW)
    PA0357 Saving Plan (TW)
    PA0358 Employee Welfare Fund (TW)
    PA0359 HR Master Record - Infotype 0359 (PRSI Ireland)
    PA0360 HR Master Record - Infotype 0360 (PRSI Ireland)
    PA0361 HR Master Record - Infotype 0361 (Pensions Admin. - IE)
    PA0362 HR Master Record- Infotype Membership for Indonesia (0362)
    PA0363 Previous employment period
    PA0364 Infotype Tax TH
    PA0365 Social Security TH
    PA0366 Provident Fund THAILAND
    PA0367 HR Master Record- Infotype 0367 (SI Notification Suppl. A)
    PA0368 Rehabilitants
    PA0369 Master data- Infotype 0369 (IMSS data)
    PA0370 Master data- Infotype 0370 (INFONAVIT credit data)
    PA0371 Master Data- Infotype 0371 (Tax on previous employment)
    PA0372 Master data- Infotype 0372 (Integrated daily wage)
    PA0373 HR loan repayment plan JP (for P0268)
    PA0374 Infortype 0374- General Eligibility
    PA0375 HR Master Data Record- Infotype 0375 (Add. Benefits Inform.)
    PA0376 HR Master Data Record- Infotype 0376 (Medical Benefits Info)
    PA0377 HR Master Record- Infotype 0377 (Miscellaneous Plans)
    PA0378 HR Master Data Record- Infotype 0378 (Benefit Adj. Reason)
    PA0379 HR Master Record- Infotype 0379 (Stock Purchase Plans)
    PA0380 HR Master Data Record Infotype 0380 (Comp. Adjustment)
    PA0381 HR Master Record Infotype 0381 (Comp. Plan Eligibility)
    PA0382 HR Master Data Record Infotype 0382 (Stock)
    PA0383 HR Master Data Record Infotype 0383 (Compensation Package)
    PA0384 HR Master Data Record Infotype 0384
    PA0386 HR Master Record- Infotype 0386 (VHI Scheme)
    PA0387 HR Master Record - Infotype 0387 (Starter's Details)
    PA0388 HR Master Record- Infotype 0388 (Union JP)
    PA0389 Income Tax- General indicators
    PA0390 Income Tax- Deductions
    PA0391 Income Tax- Information on other employers
    PA0392 Social Security- General data
    PA0393 Family data- Calendar year schooling assistance
    PA0394 Family data- Additional information
    PA0395 HR Master Record- Infotype 0395 (External Org.Assignment)
    PA0396 HR Master Record- Infotype 0396 (Expatriate Attributes)
    PA0397 Infotype 0021 Family
    PA0398 Infotype 0016 - Corporation and contract agreements
    PA0399 HRMS-VE- Table for Income Tax Infotype (IT0399)
    PA0400 HRMS-VE- Table for SSO Infotype (IT0400)
    PA0401 HRMS-VE- Table for Benefits Infotype (IT401)
    PA0402 HR Master Data Infotype 0402
    PA0403 HR Master Record for Infotype 0403
    PA0404 HR Master Record- Infotype 0404 (Military Service Taiwan)
    PA0405 HR Master Record- Infotype 0405 (Absence Event)
    PA0406 HR-PSG- Infotype 0406 (Pension information)
    PA0407 HR master record, infotype 0407 (Abs.addit.inf.)
    PA0408 HR Master Record- Infotype 0408 (CBS NL)
    PA0409 HR Master Record- Infotype 0409 (External Agencies NL)
    PA0410 Infotype 0410 - Transportation ticket
    PA0411 Taxation Philippines - infotype
    PA0412 HR Master Record- Infotype 0412 View to I0021 (SG)
    PA0415 HR Master Record- Infotype 0415
    PA0416 Time Quota Compensation Infotype- Database Table
    PA0419 HR Master record- Manual tax reporting information - Norway
    PA0421 HR master record, infotype 0421 (spec.remuner.)
    PA0422 SSS Philippines infotype
    PA0423 HR Master Record- Infotype 0423
    PA0424 Industrial Accident / Maternity / Sickness Statement (FR)
    PA0425 Data Entry of Per Diem Sick Pay Summary
    PA0426 Garnishment
    PA0427 Debts by garnishment
    PA0428 Beneficiary data (Additional information)
    PA0433 HR Master Record Infotype 0433/View for 0009
    PA0434 HR Master Record Infotype 0434/View for 0011 (GB Version)
    PA0435 HR Master Record for Infotype 0435
    PA0436 HR Master Record for Infotype 0436
    PA0437 Multiple employment (BR)
    PA0438 HR Master Record- Infotype 0438
    PA0439 HR Master Record for Infotype 0439 (Data Transfer)
    PA0440 HR Master Record- Infotype 0440 (Receipts)
    PA0442 HR Master Record- Infotype 0442
    PA0447 US Federal Tax MTD
    PA0448 US Federal Tax QTD
    PA0449 HR Master Record- Infotype 0449
    PA0450 HR Master Record- Infotype 0450
    PA0451 HR Master Record- Infotype 0451
    PA0452 HR Master Record- Infotype 0452
    PA0453 HR Master Record- Infotype 0453
    PA0454 HR Master Record- Infotype 0454
    PA0455 HR Master Record- Infotype 0455
    PA0456 HR Master Record- Infotype 0456
    PA0457 HR Master Record- Infotype 0457
    PA0458 HR Master Record for Infotype 0458
    PA0459 HR Master Record for Infotype 0459
    PA0460 HR Master Record for Infotype 0460
    PA0467 Personnel master data Infotype 0467 (SI addit.notif. pl.c.A)
    PA0468 HR master record for infotype 0468
    PA0469 HR master record for infotype 0469
    PA0470 HR master record infotype 0470 (travel profiles)
    PA0471 HR master record infotype 0471 (flight preferences)
    PA0472 HR master record infotype 0472 (hotel preferences)
    PA0473 HR master record infotype 0473 (rental car preferences)
    PA0474 HR master record infotype 0474 (train preferences)
    PA0475 HR master record infotype 0475 (customer programs)
    PA0476 Personnel Master Record for Infotype 0476 (Garnishments)
    PA0477 Personnel Master Record Infotype 0477- Debt (Garnishments)
    PA0478 Personnel Master Record Infotype 0478- Adjustment (Garnish)
    PA0480 HR master record for infotype 0480
    PA0482 HRMS-VE- Additional Data from Family/N. of Kin Inftp(IT0021)
    PA0483 Infotype 0483 - Data entry by CAAF - Italy only
    PA0486 HR-SG-PS- Master Data (National Service)
    PA0487 HR-SG-PS- Security / medical Clearance
    PA0488 HR-SG-PS- Leave scheme
    PA0489 HR-SG-PS- Voluntary Service / ECA
    PA0490 HR-PS-SG- Employee Suggestion Scheme
    PA0491 HR Master Record- Infotype 491
    PA0493 HR-SG-PS- Extension of infotype 0022
    PA0494 HR-PS-SG- Employee Suggestion Scheme - Evaluation Results
    PA0495 HR-PS-SG- Pensions Scheme
    PA0502 Letter of appointment
    PA0503 Pensioner's Definition
    PA0504 Pensioner's Advantage B
    PA0505 HR Master Record- Infotype 0505
    PA0506 Tip Indicators
    PA0510 HR Master Record- Infotype 0510 (Tax-sheltered annuity)
    PA0511 Infotype Cost-of-Living Allowance/Office (0511)
    PA0512 Personnel Master Record Infotype 0512
    PA0521 HR Master Record- Infotype 0521 (Semiretirement D)
    PA0525 Child Care
    PA0526 HR Master Data Record Infotype 0526
    PA0527 HR Master Data Record Infotype 0527
    PA0546 HR-SG- Master Record- Infotype 0546 [Termination Data)
    PA0547 BIK Infotype for Malaysia
    PA0548 Infotype 0548 - Suppl.social security funds - Italy only
    PA0551 Termination of contract- General data
    PA0552 HR Master Data Record for Infotype 0552
    PA0553 HR Master Data Record for Infotype 0553
    PA0554 HR Master Record- Infotype 0554
    PA0559 HR Master Record- Infotype 0559 (Commuting allowance Info.)
    PA0560 HR Master Record- Infotype 0560
    PA0561 Data for tax
    PA0565 HR Master Record- Infotype 0565 (Retirement Plan Val. Res.)
    PA0566 HR Master Record- Infotype 0566
    PA0569 HR Master Record- Infotype 0569
    PA0570 HR Master Record- Infotype 0570
    PA0571 HR Master Record- Infotype 0571
    PA0572 HR Master Record- Infotype 0572
    PA0578 HR Master Record- Infotype 0578
    PA0579 HR Master Record Infotype 0579 (Ext. Salary Elements)
    PA0592 HR Master Data Record Infotype 0592 (Foreign Public Sector)
    PA0593 Rehabilitants
    PA0595 HR Master Data Record for Infotype 0595
    PA0596 PhilHealth Philippines Infotype
    PA0602 HR Master Record- Infotype 0602 (Retirement Plan Cumulation)
    PA0611 HR Master Record- Infotype 0611
    PA0612 HR Master Record- Infotype 0612
    PA0625 Infotype 0002 - Race/complexion
    PA0628 HR Master Record for Infotype 0628
    PA0629 HR Master Record for Infotype 0629
    PA0630 HR Master Record for Infotype 0630
    PA0631 HR Master Record for Infotype 0631
    PA0634 Philippines Previous Employer Information Info-type
    PA0645 Contract termination- General data
    PA0900 HR Master Record- Infotype 0900 (Sales Data)
    PA0901 HR Master Record- Infotype 0901 (Purchasing Data)
    Thanks

  • How to get Header Footer fields on Sales Quotation

    Dear All,
                 I have to use Header and Footer for  Sales Quotations.(Text can be vary from quotation to quotation).  Can I used Header and Footer fields of Sales Quotation Table.If yes then how both fields can appear on Sales Quotation form for input text?
    Regards,
    Ghazanfar

    I got it..On right clicking on the Sales Quotation Form.There is an option of "Opening and Closing Remarks".

Maybe you are looking for

  • PPR error with sql with where clause

    dear pakar, why my PPR report error using this query Select process_id, to_char(start_date, 'Dy DD-Mon-YYYY HH24:MI:SS') start_date, to_char(finish_date, 'Dy DD-Mon-YYYY HH24:MI:SS') finish_date, to_char(sysdate, 'Dy DD-Mon-YYYY HH24:MI:SS') timestam

  • Resolve http error 403.4 in firefox

    Hi! I am trying to open icicidirect website but every tine after login home page comes but when I try to move to another page in website , it gives me this error ''' Type http:// at the beginning of the address you are attempting to reach and press E

  • Can anyone tell me how to make a video clip in color transition?

    Can anyone tell me how to make a video clip in color transition like the opening of "Oh Brother where art though" ? You know the scene at the start where it starts off Black and White then as we move down the timeline it transitions to a rusty brown

  • Help converting a Microsoft RS function to an OBIEE function.

    Hi All, I am using OBIEE 11.1.1.6.5 and I have to transform the following Reporting Services function into an OBIEE function : =IIf(isDate(Fields!QMIN_LAST_DATE.Value), DateDiff("D",Fields!QMIN_LAST_DATE.Value,Parameters!PDate.Value), "-") "QMIN_LAST

  • Invoice split due to fixed value days

    Hi All, we have created a sales Order with two line items. Whle doing F5 with reference to Sales order invoice getting splitting to two invoices. While check the split analysis system giving a log that  " Fixed value days for line item 10 is 000000 a