cancel
Showing results for 
Search instead for 
Did you mean: 

How to Pass personal number(pernr) to the ESS Webdynpro ABAP Application

Former Member
0 Kudos

Hi,

How to pass personal number of employee to the standard ESS webdynpro ABAP application as application parameter of iview.

Thanks

Srikanth

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Resolved

Former Member
0 Kudos

Hi

For WebDynpro application in iView there is a property to set Parameter for WebDynpro application.

Handel these passed parameters in Default plug of Interface Controller.

Note string passed as parameter in iview is case sensitive.

Try this code to get URl of Deployed application


String appURL = null;
try {
	WDDeployableObjectPart currentAppPart =wdThis
						.wdGetAPI()
						.getComponent()
						.getApplication()
						.getDeployableObjectPart();
					
appURL = WDURLGenerator.getApplicationURL(currentAppPart);
					
} catch (final WDURLException ex) {
wdComponentAPI.getMessageManager().reportException(
					new WDNonFatalException(ex),
					false);
			}

Mandeep Virk

Former Member
0 Kudos

Hi Mandeep,

Thanks for reply.

i am using Webdynpro ABAP Application and passing personal number as application parameter in App integrator iview

PERNR_MEM_ID=ESS01

Thanks

Srikanth

Former Member
0 Kudos

I am creating a similar application whereby i have to get the employee number into my web dynpro application how would i go about doing it.

I am building it in web dynpro for java.

Former Member
0 Kudos

Hi

Above mentioned solution is for WDJava.

Use this code in wdInit() of view to get url of current deployed application.

If u want to pass this url with employee no to other appl then create an outbound plug with parameter of string type and pass this URL obtained by code to this outplug.

Eg.

wdThis.wdFirePlugOut(appURL) ;

Mandeep Virk

Former Member
0 Kudos

Hi,

Please post in ABAP Forum.

Regards

Ayyapparaj