ABAP用FILE_OPEN_DIALOG打开多个文件后打印出名称 此实例将演示用CL_GUI_FRONTEND_SERVICES下的静态方法FILE_OPEN_DIALOG打开多个文件后打印出打开文件的名称。具体程式如下。 DATAFILE_TABLETYPEFILE_TABLE."引用FILE_TABLE对象 *SELECT-OPTIONS:i_file FOR FILE_TABLE
简介:此实例将演示用CL_GUI_FRONTEND_SERVICES下的静态方法FILE_OPEN_DIALOG打开多个文件后打印出打开文件的名称。具体程式如下。 DATA FILE_TABLE TYPE FILE_TABLE. 此实例将演示用CL_GUI_FRONTEND_SERVICES下的静态方法FILE_OPEN_DIALOG打开多个文件后打印出打开文件的名称。具体程式如下。 DATAFILE_TABLETYPEFILE_TABLE...
SAP Managed Tags: ABAP Development Hi, thanks for your answers. I need to pass the path name(which is in the parameter) into a filetable name t_files without using the file_open_dialog. Because I need to modify the program that they assigned to me. The filetable t_files needs to ...
0 Kudos 6,639 SAP Managed Tags ABAP Development Hi, when using the screen painter is there any way to put a f4 open file dialog on a input text field? Best regards Lisa M SImonsenReply 1 ACCEPTED SOLUTION Former Member 2008 Mar 13 4:16 PM 0 Kudos 1,440 SAP Managed ...
DATA: lv_open_node TYPE REF TO if_sxml_open_element. DATA: lv_close_node TYPE REF TO if_sxml_close_element. DATA: lv_value_node TYPE REF TO if_sxml_value. DATA: lv_value TYPE string. lv_conv_out = cl_abap_conv_out_ce=>create( ). ...
摘要:abap用excel将alv上展示的数据导出(基本知识)转自:http://blog.sina.com.cn/s/blog_98dd7e1101013crl.htmlformuser_commandusingr_ucommlikesy-ucommrs_selfieldtypeslis_selfield.caser_ucomm.when'EX'.(alv菜单栏上的按钮)performexcel_data.endcase.endform.*&--- 阅读全文 posted @ 2013-04-...
ABAP DevelopmentHi, I have a requirement where i have to open a folder and then open a document in that folder. 1. I have used CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG to open the folder. (say this folder is having 4 files and i am interested in viewing all the files one by ...
ABAP Development Hi See the method FILE_OPEN_DIALOG or FILE_SAVE_DIALOG of class CL_GUI_FRONTEND_SERVICES MAx Reply Former Member 2007 May 15 3:27 PM 0 Kudos 242 SAP Managed Tags ABAP Development Hi, i use this: REPORT ZGRO_TEST LINE-SIZE 80. * SELECTION-SCREEN: SKIP. SELEC...
And I also would like to know if this means that SAP will be offering ABAP2XLSX as part of standard? P.S. I'm getting "you don't have rights" when trying to open the link at the end of the blog. When posting on SCN, please make sure to use only what is open to general popu...
ABAP Development hi, use the method of the class CL_GUI_FRONTEND_SERVICES. if the mode is 'O' in WS_FILENAME_GET: use the method FILE_OPEN_DIALOG. if the mode is 'S' in WS_FILENAME_GET: use the method FILE_SAVE_DIALOG. do reward if it helps, priya. Reply Former Member ...