Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

default values in pa30

Former Member
0 Kudos

hi i want to put some default vales in pa30.

how it is possible

regards,

ashwin

6 REPLIES 6

Former Member
0 Kudos

Hi,

Use TR Code SHD0 and create Screen variant

Assign it

and use set parameter ID

Regards

Shiva

Former Member
0 Kudos

Hi,

You need to write the User-exit to put the default values for some fileds in a transaction code, some times it will be possible to set the default values from a functional guy.

Regards

Sudheer

0 Kudos

hi sudheer ,

thanx for ur reply,

can u tell me any user exit

Former Member
0 Kudos

Hi,

These are the exits avilable for PA30

HRPBAS01 User Exit for HR Master Data

HRPC0001 HR: PC download authorization

HRRPAI01 User exit for FB HR_ENTRY_DATE and HR_LEAVING_DATE

PARA0001 Enhancement for Determining the Number of Periods

PARA0002 Enhancement for Calculating Annual Salary; IT0008,14,15

PBAS0001 PA: Pers.Admin./Recruitment: Default values and checks

PBAS0002 PA: Enhancements for Personnel Administration - Menu

PBASRP01 PA: User exit distributed reporting

Regards

Sudheer

0 Kudos

hi sudeer,

these r not suitable for my requirement.

i want to put default value for IT0015 for field WAERS

0 Kudos

Hi dude,

You can do it by using user-exit ZXPADU01

then:

DATA: i0015 LIKE p0015.

CASE innnn-infty.

WHEN '0015'.

MOVE innnn TO i0015.

MOVE 'your default value here' TO i0015-WAERS.

MOVE i0015 TO innnn.

ENDCASE.

Let me know if that works

best regards