InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What Is Repetitive Structure And For Which Infotype Do We Have? |
|
Answer» Repetitive structure is same sequence for fields varying by numeric digits. We do have repetitive structure in IT 8 [Basic Pay] and IT 41[Date Specifications]. To retrieve the data from repetitive structures we use DO… VARYING command as below DATA: BEGIN OF WAGETYPES, Repetitive structure is same sequence for fields varying by numeric digits. We do have repetitive structure in IT 8 [Basic Pay] and IT 41[Date Specifications]. To retrieve the data from repetitive structures we use DO… VARYING command as below DATA: BEGIN OF WAGETYPES, |
|
| 2. |
Which Function Module Reads The Data For Particular Infotype? |
| Answer» | |
| 3. |
What Is The Difference Between Select Statements And Provide Statement? |
| Answer» | |
| 4. |
What Is Pnp-sw-found? |
|
Answer» PNP-SW-FOUND will be 1 if the MACROS rp_provide_from_last or first is SUCCESSFUL ELSE it will be INITIAL. PNP-SW-FOUND will be 1 if the macros rp_provide_from_last or first is successful else it will be initial. |
|
| 5. |
What Are The Organizational Related Infotypes? |
|
Answer» 1000 to 1999 Infotypes |
|
| 6. |
What Are The Personnel Administration Related Infotypes? |
|
Answer» All Infotypes 0000 to 0999 |
|
| 7. |
What Are The Time Related Infotypes? |
|
Answer» All the 2 series Infotypes. |
|
| 8. |
What Are The Payroll Related Infotypes? |
|
Answer» The BASIC Infotypes used for payroll are 0, 1, 3, 7, 8, 9, 580, 591, 45, 41, 57, 267 and others. The basic Infotypes used for payroll are 0, 1, 3, 7, 8, 9, 580, 591, 45, 41, 57, 267 and others. |
|
| 9. |
What Is Ps Structure? |
|
Answer» PS STRUCTURES have basic data fields of an employee in every Infotype. These data fields will vary for every Infotype and included in respective Infotype to hold the data.
PS Structures have basic data fields of an employee in every Infotype. These data fields will vary for every Infotype and included in respective Infotype to hold the data. |
|
| 10. |
How Can We Decide Whether We Can Enhance The Standard Infotype Or Not? |
|
Answer» You can ENHANCE all the INFOTYPES PROVIDE CI_nnnn is there in the STRUCTURE. You can enhance all the Infotypes provide CI_nnnn is there in the structure. |
|
| 11. |
Importance Of Pa20, Pa30 And Pa40? |
| Answer» | |
| 12. |
What Is The Process To Enhance The Infotype? |
|
Answer» Go to PM01, enhance IT tab and provide the Infotype NUMBER for which you require to enhance, click on create all button(you can create INDIVIDUALLY STRUCTURE, module pool program also). It will take you to the CI_nnnn structure, provide the FIELDS you WANT to add – activate. Go to PM01, enhance IT tab and provide the Infotype number for which you require to enhance, click on create all button(you can create individually structure, module pool program also). It will take you to the CI_nnnn structure, provide the fields you want to add – activate. |
|
| 13. |
What Are The Transaction Codes To Create The Infotypes? |
|
Answer» PM01 PM01 |
|
| 14. |
Why Do We Require Infotypes For Hr Module? |
|
Answer» As all other modules uses standard SAP tables concept to store the data. HR module uses the new and different concept to store the data i.e., Infotypes. Data is scattered b/n Infotypes by DEPENDING above the type of data and this makes to EASILY access similar data of all employees at one STRETCH by minimizing the retrieval time. As HR data is totally time dependant and have more number records to save and RETRIEVE for a particular purpose. As all other modules uses standard SAP tables concept to store the data. HR module uses the new and different concept to store the data i.e., Infotypes. Data is scattered b/n Infotypes by depending above the type of data and this makes to easily access similar data of all employees at one stretch by minimizing the retrieval time. As HR data is totally time dependant and have more number records to save and retrieve for a particular purpose. |
|
| 15. |
What Is Pakey Structure, Pshd1 Structure And What Type Of Fields It Contains? |
|
Answer» PAKEY is the key FIELD’s STRUCTURE and it is same for all the PA Infotypes. It has different fields as below PERNR – Employee Number SUBTY – Subtypes are subdivisions of Infotypes. OBJPS –The object identification indicator is USED to differentiate records with the same Infotype, subtype, lock indicator, valid from date, and valid to date. For example: Child number in Infotype 0021 Family Member/Dependents. SPRPS – The lock indicator for HR master data can be used to lock and unlock data records. It can be used to guarantee double control, that is, at least two users are involved in writing an active data record to the DATABASE. One of the users creates a locked infotype record. Another user unlocks this record by activating it. ENDDA – Valid to date BEGDA – Valid from date SEQNR –The sequential number differentiates Infotype records with the same key and the time constraint ’3′. Unlike the personnel object identification, it is AUTOMATICALLY assigned by the system. PSHD1 is another basic structure that is the same for all Personnel Administration Infotypes. It includes the date the record was changed (AEDTM), the name of the person making the change (UNAME), and information on whether the administrator created plain text for this infotype (ITXEX). PAKEY is the key field’s structure and it is same for all the PA Infotypes. It has different fields as below PERNR – Employee Number SUBTY – Subtypes are subdivisions of Infotypes. OBJPS –The object identification indicator is used to differentiate records with the same Infotype, subtype, lock indicator, valid from date, and valid to date. For example: Child number in Infotype 0021 Family Member/Dependents. SPRPS – The lock indicator for HR master data can be used to lock and unlock data records. It can be used to guarantee double control, that is, at least two users are involved in writing an active data record to the database. One of the users creates a locked infotype record. Another user unlocks this record by activating it. ENDDA – Valid to date BEGDA – Valid from date SEQNR –The sequential number differentiates Infotype records with the same key and the time constraint ’3′. Unlike the personnel object identification, it is automatically assigned by the system. PSHD1 is another basic structure that is the same for all Personnel Administration Infotypes. It includes the date the record was changed (AEDTM), the name of the person making the change (UNAME), and information on whether the administrator created plain text for this infotype (ITXEX). |
|
| 16. |
What Is Infotype And How It Is Different From Tables? |
|
Answer» Infotypes is special way to store the HR data RATHER than using STANDARD tables. Infotypes will have three structures PAKEY, PSHD1, PSnnnn [ nnnn is Infotype number]. PAKEY(Key fields) and PSHD1(Control Fields) is same for all the Infotypes. Fields in the PSnnnn structure depends on the Infotype USES, LIKE 0000- Actions will the fields specific to ACTION of an employee 0002-Personal Data will have fields specific to the personal data fields(name, DOB, etc..) of an employee. Infotypes is special way to store the HR data rather than using standard tables. Infotypes will have three structures PAKEY, PSHD1, PSnnnn [ nnnn is Infotype number]. PAKEY(Key fields) and PSHD1(Control Fields) is same for all the Infotypes. Fields in the PSnnnn structure depends on the Infotype uses, like 0000- Actions will the fields specific to action of an employee 0002-Personal Data will have fields specific to the personal data fields(name, DOB, etc..) of an employee. |
|
| 17. |
What Are The Program Names For Logical Database Pnp And Pnpce? |
|
Answer» SAPDBPNP and SAPDBPNPCE SAPDBPNP and SAPDBPNPCE |
|
| 18. |
Explain The Program Flow When We Use Logical Database Pnp Or Pnpce? |
|
Answer» If you USE any of the LDBs, the program flow is as below Report XXXXXX.
If you use any of the LDBs, the program flow is as below Report XXXXXX.
|
|
| 19. |
Explain Get Pernr Concept When We Use Logical Data Base? |
|
Answer» You need to use LDB PNP to use the GET PERNR event, once GET PERNR event triggers all the Infotypes declared by using INFOTYPES statement will be fetched DATA to the respective INTERNAL tables. If you SPECIFY Infotypes by INFOTYPES statement then internal tables are created with Pnnnn structure. Ex:- INFOTYPES: 0001, 0002, 0006. Internal tables p0001, p0002, p0003 are created and can be used in the program. You need to use LDB PNP to use the GET PERNR event, once GET PERNR event triggers all the Infotypes declared by using INFOTYPES statement will be fetched data to the respective internal tables. If you specify Infotypes by INFOTYPES statement then internal tables are created with Pnnnn structure. Ex:- INFOTYPES: 0001, 0002, 0006. Internal tables p0001, p0002, p0003 are created and can be used in the program. |
|
| 20. |
What Is The Difference Between Pnp And Pnpce? |
| Answer» | |
| 21. |
What Are Logical Data Bases Used In Hr Module? |
|
Answer» PNP, PNPCE, PAP, PCH … |
|
| 22. |
What Is Logical Data Base? |
|
Answer» Logical data bases are special programs used to read the data and make it available in the programs. Other than RETRIEVING the data authorization CHECKS are handled, can be able to RETRIEVE data from multiple tables. Specify LDB in the program attributes and use the GET event to retrieve the data. ONE best use is there will be a DEFAULT selection screen. Logical data bases are special programs used to read the data and make it available in the programs. Other than retrieving the data authorization checks are handled, can be able to retrieve data from multiple tables. Specify LDB in the program attributes and use the GET event to retrieve the data. One best use is there will be a default selection screen. |
|
| 23. |
What Is The Difference Between Abap And Hr Abap? |
Answer»
|
|