SAP Managed Tags: ABAP Development Hi Karishma, If you are using excel file to upload using 'GUI_UPLOAD', first save the excel file in CSV format (Comma separated Values file). While saving the file, you can use dropdown to choose CSV format. Thanks & Regards, Snehal Deshmukh Reply ...
不知道你怎么做的 干嘛用txt上载 麻烦 用excel多好 每一列对应程序内表的一列 如果用txt你定义内表就一列很长的就行了 维护数据的时候 如果有多列 以一个特殊符号分开 上载之后根据符号对数据进行分割处理
SAP ABAP 小问题 029---GUI_UPLOAD的tabs制表符在代码中符号# 王姐姐不要啊 编辑于 2023年04月20日 17:54 收录于文集 SAP ABAP小问题 · 49篇 SAPABAP 评论 赞与转发
SAP Managed Tags: ABAP Development What is the filetype that you use ? As Parag has indicated, you should use 'ASC' filetype for text files. In the FM GUI_UPLOAD, there is a parameter called FILETYPE. Make sure you are entering the proper filetype. Secondly, after executing this Functi...
The cl_gui_frontend_services=>gui_upload abap method is used to upload a file into SAP. This is supposed to be the recomended way of uploading files into SAP but to be honest it just executes thegui_upload function moduleso using this should be the same as using the upload FM. Having...
SAP Managed Tags: ABAP Development Hi , I believe the field separator parameter will work for Excel files..You have to get the internal table in a string format..and then use split statement.. Use the below code it work for me.. DATA: BEGIN OF it_tab OCCURS 0, object_id TYPE stri...
SAP Managed Tags: ABAP Development I'm not sure how the data is entered in your excel file. I think the TEXT column has data in multiple rows. Try to accomodate all the data for text field in a single row and cell. Reply Former Member 2010 May 03 12:15 PM 0 Kudos 141 ...
SAP Managed Tags: ABAP Development HI, GUI_UPLOAD is for getting the data from flat file(notepad,excel sheet,etc..)to internal table GUI_DOWNLOAD is for sending the data from internal table to flat file. example: TABLES : VBAP. TABLES:SSCRFIELDS. DATA : T_VBAP LIKE VBAP OCCURS 0 WI...
SAP Managed Tags: ABAP Development Hello, i have no idea about CSV file...i am worked on EXCELL and notepad...but if you use notepad, then after execution of GUI_UPLOAD FM , you can see your internal table in debugging mode...you find all records from flat file... Thanks Sabyasac...
SAP Managed Tags: ABAP Development Thank you for the advise, Manish. I already was thoinking how to solve it in term also to avoid special characters, but when I use REPLACE ALL OCCURRENCES OF REGEX '\D' IN v_string WITH '' for some reason happening following: Excel: ALV: is there...