What is the T.C for creating custom IT in PA? How do you
configure? Explain step by step?

Give me some custom IT you created for your company?

Answers were Sorted based on User's Feedback



What is the T.C for creating custom IT in PA? How do you configure? Explain step by step? Give..

Answer / pradip pramanik

Creating a New SAP Infotype using transaction PM01 and PPCI

Step 1 Execute transaction PM01 (If you get a message saying
the infotype can not be enhanced, try tranasction PPCI).

Step 2
Select create IT tab and enter new infotype number into
selection box.


Step 3
Press the create ‘ALL’ button (left of infotype no.). You
will get a dialog box asking to confirm,
press the create button.


Step 4
You will now be presented with the standard structure
creation screen (SE11) where you need to
enter the fields of the new infotype. I have entered some
examples but you can put anything in
here.


Step 5
Once you have entered the fields press save and then
activate, before pressing the back button.
You will now be presented with the following screen, where
you will need to make a new entry
or your created infotype (i.e. 9010).


Step 6
The next step is to fill in the infotype attributes, these
will initially be blank and you will need to
fill them in similar to the following, depending on your
requirements. Then press save.



Step 7
Your infotype is now created and can be accessed and
populated in the usual way using

i.e. using transactions such as PA20 and
PA30.

Step 8
If you look at the structure of your new infotype in
transaction ‘SE11’ it will look similar to the
following:

How to create a HR infotype?
1) Go to Transaction PM01.
2) Enter the custom Infotype number which you want to create
(Should be a 4 digit number, start with 9).
3) Select the ‘Employee Infotype’ radio button.
4) Select the ‘PS Structure Infotype’.
5) Click on Create… A separate table maintenance window
appears…
6) Create a PS structure with all the fields you want on the
Infotype
7) Save and Activate the PS structure
8) Go back to the initial screen of PM01.
9) Click on ‘All’ push button. It takes a few moments.
10) Click on ‘Technical Characteristics’. Infotype list
screen appears
11) Click on ‘Change’(pencil) button
12) Select your Infotype and click on ‘Detail’ (magnifying
glass) button
13) Give ‘T591A’ as subtype table
14) Give ‘T591S’ as subtype txt tab
15) Give your subtype field as subtype field
16) Save and come back to PM01 initial screen
17) Click on ‘Infotype Characteristics’ … Infotype list
screen appears
18) Click on ‘Change’ (pencil) button
19) Click on ‘New Entries’
20) Enter your Infotype number and short text
21) Here we have to set different Infotype Characteristics
as per the requirement. (Better open another session with
some standard Infotype’s infotype characteristics screen and
use as the reference to fill yours)
22) Save your entries.
23) Now the Infotype is created and ready to use.
24) If you want to change the layout of the Infotype as per
your requirement…
25) In the PM01 initial screen…Select ‘Screen’ radio button
and give 2000 as the screen name, then click on edit.
26) In the next screen.. Select ‘Layout Editor’ and click
‘Change’.
27) Screen default layout appears…here you can design/modify
the screen..change the attributes of the fields..etc.
28) Save and activate. (Don’t forget to ‘Activate at every
level)



Delete info type


DATA:
l_return LIKE bapireturn1,
wa_p2010 type p2010.


CALL FUNCTION 'BAPI_EMPLOYEE_ENQUEUE'
EXPORTING
number = wa_p2010-pernr
IMPORTING
return = l_return.


CALL FUNCTION 'HR_INFOTYPE_OPERATION'
EXPORTING
infty = '2010'
number = wa_p2010-pernr
subtype = wa_p2010-subty
validityend = wa_p2010-endda
validitybegin = wa_p2010-begda
recordnumber = wa_p2010-seqnr
record = wa_p2010
operation = 'DEL'
nocommit = ''
IMPORTING
return = l_return.


CALL FUNCTION 'BAPI_EMPLOYEE_DEQUEUE'
EXPORTING
number = wa_p2010-pernr
IMPORTING
return = l_return.



Read an info type

DATA:
it_p2010 type standard table of p2010.

REFRESH it_p2010.
CALL FUNCTION 'HR_READ_INFOTYPE'
EXPORTING
pernr = wa_teven-pernr ”Personnel number
infty = '2010' ”Info type
begda = wa_teven-ldate ”Start date
endda = wa_teven-ldate ”End date
TABLES
infty_tab = it_p2010.
IF sy-subrc <> 0.
ENDIF.

Process Infotypes
• RMAC Modules - RMAC module as referred to Macro, is a
special construct of ABAP/4 codes. Normally, the program
code of these modules is stored in table 'TRMAC'. The table
key combines the program code under a given name. It can
also be defined in programs.The RMAC defined in the TRMAC
can be used in all Reports. When an RMAC is changed, the
report has to be regenerated manually to reflect the change.
• Reading Infotypes - by using RMAC (macro) RP-READ-INFOTYPE

REPORT ZHR00001.
INFOTYPE: 0002.
PARAMETERS: PERNR LIKE P0002-PERNR.
RP-READ-INFOTYPE PERNR 0002 P0002 <BEGIN> <END>.
PROVIDE * FROM P0002
if ... then ...endif.
ENDPROVIDE.
• Changing Infotypes - by using RMAC (macro)
RP-READ-INFOTYPE.
• Three steps are involved in changing infotypes:
1. Select the infotype records to be changed;
2. Make the required changes and store the records in an
alternative table;
3. Save this table to the database;

The RP-UPDATE macro updates the database. The parameters of
this macro are the OLD internal table containing the
unchanged records and the NEW internal table containing the
changed records. You cannot create or delete data. Only
modification is possible.
INFOTYPES: Pnnnn NAME OLD,
Pnnnn NAME NEW.
GET PERNR.
PROVIDE * FROM OLD
WHERE .... = ... "Change old record
*Save old record in alternate table
NEW = OLD.
ENDPROVIDE.
RP-UPDATE OLD NEW. "Update changed record
Infotype with repeat structures

How to identify repeat structures:

a. On infotype entry screen, data is entered in table form.
IT0005, IT0008, IT0041, etc.

b. In the infotype structure, fields are grouped by the same
name followed by sequence number.
• P0005-UARnn P0005-UANnn P0005-UBEnn
• P0005-UENnn P0005-UABnn

Repeat Structures

Data is entered on the infotype screen in table format but
stored on the database in a linear structure.

Each row of the table is stored in the same record on the
database.

When evaluating a repeat structure, you must define the
starting point, the increment and the work area which
contains the complete field group definition.

Repeat Structures Evaluation (I)

To evaluate the repeat structures
a. Define work area. The work area is a field string. Its
structure is identical to that of the field group.
b. Use a DO LOOP to divide the repeat structure into
segments and make it available for processing in the work
area, one field group (block) at a time.

Repeat Structures Evaluation(II)

* Define work area
DATA: BEGIN OF VACATION,
UAR LIKE P0005-UAR01, "Leave type
UAN LIKE P0005-UAN01, "Leave entitlement
UBE LIKE P0005-UBE01, "Start date
UEN LIKE P0005-UEN01, "End date
UAB LIKE P0005-UAB01, "Leave accounted
END OF VACATION.

GET PERNR.

RP-PROVIDE-FROM-LAST P0005 SPACE PN/BEGDA PN/ENDDA.
DO 6 TIMES VARYING VACATION FROM P0005-UAR01 "Starting point

NEXT P0005-UAR02. "Increment
If p0005-xyz then ... endif.
ENDDO.

Is This Answer Correct ?    2 Yes 0 No

What is the T.C for creating custom IT in PA? How do you configure? Explain step by step? Give..

Answer / chennakesava reddy

step 1: here we will be creating fileds which we need to
get into our infotype sby goining to se11 T.CODE, once it
is completed we need to do activities , SAVE, CHECK &
ACTIVATE.

step 2: by going to T.CODE -PPCI, we will be inserting the
fields which we maintained in SE11 T.CODE.

ex: we can create infotypes for address infotypes, child
details, father details , mother details, grand mother and
grand father details, -----------etc

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More SAP HR (Human Resource Management) Interview Questions

What is time constraint class in personnel time management?

0 Answers  


Anybody can you tell me the us payroll elements?

1 Answers   Cambridge,


What is individual infotype maintenance?

0 Answers  


do we modify the customized Schema (U000), and what might be the reason to modify... usually what are the custom PCR we in US PAYROLL

2 Answers   Accenture, ADP, MAHINDRA,


How do you derive amounts in payroll?

2 Answers  






Did u work on gross or net payroll? What's the third party tool used in it?

4 Answers   Patni, TCS,


What are the main organizational functions of personnel sub area?

0 Answers  


Which transaction code is used to create roles?

0 Answers  


What is the Landscape of the client?

1 Answers   Honeywell,


What is the payroll control record?

0 Answers  


There is one person but its displaying that this person cannot be booked. He is not available for the business event. Can you tell me where is it going wrong? What can be the reasons?

0 Answers  


How do you identify different Wage types?

5 Answers  


Categories
  • SAP Basis Interview Questions SAP Basis (1262)
  • SAP ABAP Interview Questions SAP ABAP (3939)
  • SAPScript Interview Questions SAPScript (236)
  • SAP SD (Sales & Distribution) Interview Questions SAP SD (Sales & Distribution) (2716)
  • SAP MM (Material Management) Interview Questions SAP MM (Material Management) (911)
  • SAP QM (Quality Management) Interview Questions SAP QM (Quality Management) (99)
  • SAP PP (Production Planning) Interview Questions SAP PP (Production Planning) (523)
  • SAP PM (Plant Maintenance) Interview Questions SAP PM (Plant Maintenance) (252)
  • SAP PS (Project Systems) Interview Questions SAP PS (Project Systems) (138)
  • SAP FI-CO (Financial Accounting & Controlling) Interview Questions SAP FI-CO (Financial Accounting & Controlling) (2766)
  • SAP HR (Human Resource Management) Interview Questions SAP HR (Human Resource Management) (1180)
  • SAP CRM (Customer Relationship Management) Interview Questions SAP CRM (Customer Relationship Management) (432)
  • SAP SRM (Supplier Relationship Management) Interview Questions SAP SRM (Supplier Relationship Management) (132)
  • SAP APO (Advanced Planner Optimizer) Interview Questions SAP APO (Advanced Planner Optimizer) (92)
  • SAP BW (Business Warehouse) Interview Questions SAP BW (Business Warehouse) (896)
  • SAP Business Workflow Interview Questions SAP Business Workflow (72)
  • SAP Security Interview Questions SAP Security (597)
  • SAP Interfaces Interview Questions SAP Interfaces (74)
  • SAP Netweaver Interview Questions SAP Netweaver (282)
  • SAP ALE IDocs Interview Questions SAP ALE IDocs (163)
  • SAP Business One Interview Questions SAP Business One (110)
  • SAP BO BOBJ (Business Objects) Interview Questions SAP BO BOBJ (Business Objects) (388)
  • SAP CPS (Central Process Scheduling) Interview Questions SAP CPS (Central Process Scheduling) (14)
  • SAP GTS (Global Trade Services) Interview Questions SAP GTS (Global Trade Services) (21)
  • SAP Hybris Interview Questions SAP Hybris (132)
  • SAP HANA Interview Questions SAP HANA (700)
  • SAP PI (Process Integration) Interview Questions SAP PI (Process Integration) (113)
  • SAP PO (Process Orchestration) Interview Questions SAP PO (Process Orchestration) (25)
  • SAP BI (Business Intelligence) Interview Questions SAP BI (Business Intelligence) (174)
  • SAP BPC (Business Planning and Consolidation) Interview Questions SAP BPC (Business Planning and Consolidation) (38)
  • SAP BODS (Business Objects Data Services) Interview Questions SAP BODS (Business Objects Data Services) (49)
  • SAP BODI (Business Objects Data Integrator) Interview Questions SAP BODI (Business Objects Data Integrator) (26)
  • SAP Ariba Interview Questions SAP Ariba (9)
  • SAP Fiori Interview Questions SAP Fiori (45)
  • SAP EWM (Extended Warehouse Management) Interview Questions SAP EWM (Extended Warehouse Management) (58)
  • Sap R/3 Interview Questions Sap R/3 (150)
  • SAP FSCM Financial Supply Chain Management Interview Questions SAP FSCM Financial Supply Chain Management (101)
  • SAP WM (Warehouse Management) Interview Questions SAP WM (Warehouse Management) (31)
  • SAP GRC (Governance Risk and Compliance) Interview Questions SAP GRC (Governance Risk and Compliance) (64)
  • SAP MDM (Master Data Management) Interview Questions SAP MDM (Master Data Management) (0)
  • SAP MRS (Multi Resource Scheduling) Interview Questions SAP MRS (Multi Resource Scheduling) (0)
  • SAP ESS MSS (Employee Manager Self Service) Interview Questions SAP ESS MSS (Employee Manager Self Service) (13)
  • SAP CS (Customer Service) Interview Questions SAP CS (Customer Service) (0)
  • SAP TRM (Treasury and Risk Management) Interview Questions SAP TRM (Treasury and Risk Management) (0)
  • SAP Web Dynpro ABAP Interview Questions SAP Web Dynpro ABAP (198)
  • SAP IBP (Integrated Business Planning) Interview Questions SAP IBP (Integrated Business Planning) (0)
  • SAP OO-ABAP (Object Oriented ABAP) Interview Questions SAP OO-ABAP (Object Oriented ABAP) (70)
  • SAP S/4 HANA Finance (Simple Finance) Interview Questions SAP S/4 HANA Finance (Simple Finance) (143)
  • SAP FS-CD (Collections and Disbursements) Interview Questions SAP FS-CD (Collections and Disbursements) (0)
  • SAP PLM (Product Lifecycle Management) Interview Questions SAP PLM (Product Lifecycle Management) (0)
  • SAP SuccessFactors Interview Questions SAP SuccessFactors (33)
  • SAP Vistex Interview Questions SAP Vistex (0)
  • SAP ISR (IS Retail) Interview Questions SAP ISR (IS Retail) (28)
  • SAP IdM (Identity Management) Interview Questions SAP IdM (Identity Management) (0)
  • SAP IM (Investment Management) Interview Questions SAP IM (Investment Management) (0)
  • SAP UI5 Interview Questions SAP UI5 (59)
  • SAP SCM (Supply Chain Management) Interview Questions SAP SCM (Supply Chain Management) (51)
  • SAP XI (Exchange Infrastructure) Interview Questions SAP XI (Exchange Infrastructure) (49)
  • SAP Cloud Platform Interview Questions SAP Cloud Platform (34)
  • SAP Testing Interview Questions SAP Testing (89)
  • SAP SolMan (Solution Manager) Interview Questions SAP SolMan (Solution Manager) (63)
  • SAP MaxDB Interview Questions SAP MaxDB (116)
  • SAP GUI Interview Questions SAP GUI (15)
  • SAP AllOther Interview Questions SAP AllOther (329)