‎2007 Nov 02 11:23 AM
Hi all,
first time I'm using methods in my program... could any one tell me how can I call this follwing method using 'Pattern' button in ABAP editor.
cl_gui_frontend_services=>file_save_dialog
Thanks in advance...
‎2007 Nov 02 11:27 AM
1) select patter button
2) Check ABAP object patter option button press OK
3) Check 'Call method'
4) Put CL_GUI_FRONTEND_SERVICES in 'Class/Interface'
5) Put 'file_save_dialog' in 'Method' input
6) Press OK
‎2007 Nov 02 11:27 AM
1) select patter button
2) Check ABAP object patter option button press OK
3) Check 'Call method'
4) Put CL_GUI_FRONTEND_SERVICES in 'Class/Interface'
5) Put 'file_save_dialog' in 'Method' input
6) Press OK
‎2007 Nov 02 11:29 AM
Hi sapsudha,
Click on PATTERN button. Choose AABAP radio button.
Choose the call method radio button:
Put <b>cl_gui_frontend_services</b> in class/ interface
Put <b>file_save_dialog</b> in method.
Thank you.
Reward points if found useful
‎2007 Nov 02 1:15 PM
Dear sapsudha,
In your function builder click on
<b>Pattern</b> -> Select the <b>ABAP Objects Patterns</b> radio button -> enter it
Select the <b>Call Method Radio button</b> -> enter CL_GUI_FRONTEND_SERVICES in <b>class /interface</b> and FILE_SAVE_DIALOG in <b>method</b> text boxes -> enter it
You will receive the FM as you required.
There you specify your own importing and exporting parameters.
Reward points if it is useful.
Gokul