cancel
Showing results for 
Search instead for 
Did you mean: 

HCM P&F triggers Web Dynpro Window

Former Member
0 Kudos

Hi all,

I come across a HCM form where Web Dynpro window is triggered to select position.

The position button is with mouseDown event script to call the window:

$record.CONTROL_PARAM.ISR_EVENT = "USER_EVENT_POPUP"

$record.HRASR_FORM_WINDOW.DATA[*].FIELD.value = "HRRCF_C_POSITION"

How does this popup Web Dynpro window work with HCM form? Any documentation?

Rgds,

Dominic

Accepted Solutions (0)

Answers (1)

Answers (1)

MarkusKlein
Active Contributor
0 Kudos

Hello,

well there is not really much magic behind this. The Form Event does trigger a Server-Roundtrip and in your ABAP processing the WDA application is called.

regards,

Markus

Former Member
0 Kudos

Hi Markus,

Is this popup event part of standard event?

So far, I know CHECK and INITIALIZE event in HCM form.

Also, I am trying to find out how does Web Dynpro window populate POSITION_TXT.

But can't find any info on this.

Rgds,

Dominic

IanStubbings
Active Participant
0 Kudos

Hi Dominic

Wilson contacted me about this issue and have investigated it with the following results:

1. The event 'USER_EVENT_POPUP' is processed in the WDDOMODIFYVIEW method of the FORM_EDIT view of WDA component HRASR00_PROCESS_EXECUTE

2. It then calls the appropriate web dynpro 'popup' which is defined as a search help type WDA i.e. it implements

3. The form field HRASR_FORM_WINDOW is populated via the scripting behind the button on the form (and created as well I believe).

Regards

Ian