cancel
Showing results for 
Search instead for 
Did you mean: 

How to call pdf forms developed in ABAP from WD Java application?

Former Member
0 Kudos

Hi

I have a web dynpro ABAP application that that is responsible for generating PDF forms for all other applications (WD ABAP and WD Java).

How can I call the pdf forms generated by the WD ABAP application from WD Java application in a separate window?

These forms are to be called on click of a "Print" button. Also, these forms are non interactive.

Kindly let me know if you need any other information.

Regards

Vineet Vikram

Edited by: vineet vikram on Jun 24, 2009 7:28 AM

Accepted Solutions (0)

Answers (2)

Answers (2)

Abhinav_Sharma
Contributor
0 Kudos

in addtion to Nikhil's response. you can write following code on action of print button:

IWDWindow window = wdComponentAPI.

getWindowManager().createExternalWindow(

"<ABAP Application URL>",

"<Title for window>",

false);

window.open();

to Close the application, you can use the window close or u can fire an event to close current window.

Abhinav

nikhil_bose
Active Contributor
0 Kudos

You can use External Window from java dynpro where you can pass the URL of ABAP dynpro with PDF. Any parameters, you may need, can be passed as URL parameters.

Nikhil