SAP Managed Tags: ABAP Development Hi, If u have text in internal table, Just loop at that table and print the text. LOOP AT it_thead INTO wa_thead. WRITE: /1 wa_thead-tdline. ENDLOOP. Thanks, Vinod. Reply Former Member In response to vinod_vemuru2 Options Mark as New Book...
Envoyé par une extension du Gestionnaire de fichiers pour récupérer le type de fenêtre du Gestionnaire de fichiers qui a le focus d’entrée.
In this article Parameters Return value Remarks Requirements See also Sent by a File Manager extension to retrieve drive information from the active File Manager window.ParameterswParam Must be zero. lpfmsgdi The address of an FMS_GETDRIVEINFO structure that receives drive information.Return...
Solved: hi experts, i have got a few FM that are used for uploading data of Excel into SAP. But i am unable to understand what value i need to pass to the parameters of
I get a message "Object reference not set to an instance of an object". What can be the problem? The website type you are accessing is not correct. Check if the http port is open or https is correctly configured.How do I enable http ports for the FMPS website to be accessed from...
APPEND ls_value TO lt_values. ls_value-string = text-146. APPEND ls_value TO lt_values. ls_value-string = lv_meins. APPEND ls_value TO lt_values. ls_value-string = text-128. APPEND ls_value TO lt_values. CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'UNIT' ...
Sent by a File Manager extension to retrieve the type of File Manager window that has the input focus.ParameterswParam Must be zero. lParam Must be zero.Return valueReturns the type of File Manager window that has the input focus. It can be one of the following values....
SAP Managed Tags: ABAP Development check the below code.. OBSOLETE FM call function 'WS_FILENAME_GET' exporting def_filename = text-p01 " '.txt' def_path = text-p02 " 'C:\' mask = lc_mascara title = text-p03 " 'Arquivo' mode = text-p04 " 'S' importing filename = pc_path...
MESSAGE = 'gui_upload::disk full'. WHEN 16. MESSAGE = 'gui_upload::dp time out'. WHEN 17. MESSAGE = 'gui_upload::Error'. ENDCASE. ENDIF. PERFORM ERR. CALL FUNCTION 'TEXT_CONVERT_TEX_TO_SAP' EXPORTING I_FIELD_SEPERATOR = C_COMMA I_TAB_RAW_DATA = ITAB[] TABLES I_TAB_CONVERTED...
SAP Managed Tags: BW (SAP Business Warehouse) Hi guys, I would like to use the data resulted of a query in an abap program, i found FM RRW3_GET_QUERY_VIEW_DATA. But i have troubles using it, i can't disply the data in lines and columns as the bex analyser does. Does anyone ...