Ir al contenido principal

Entradas

Mostrando las entradas con la etiqueta SAP

¿Cómo encontrar la nueva transaccion en HANA?

How to find which Transaction code that is replaced by a new Transaction code in SAP S/4 HANA? Introduction Everyone will move to SAP S/4 HANA someday. It is very important to know which are the Transaction Codes that are replaced with new Transaction Codes. This will be very important so that you can plan from now to use the Updated Transaction Codes.It is very important for SAP Consultant to know which are the Transaction Codes that are Replaced so that they can plan their Migration efficiently,   Solution How to find which Transaction code that is replaced by a new Transaction code in SAP S/4 HANA? Go to  Transaction Code SE16-> Enter table PRGN_CORR2 Now enter REL_NAME Field as 751 like below and Execute Wala now you get the list.The  S_TCODE is Replaced by T_TCODE Column or field value Conclusion   This Tutorial will be very beneficial for every Consultant that are moving to SAP S/4 HANA. Fuente: https://blogs.sap.com/2020/07/15/how-to-find-which-transaction-...

ABAP - Crear un archivo Excel usando OLE

TYPE-POOLS ole2 . DATA : wf_cell_from TYPE ole2_object , wf_cell_from1 TYPE ole2_object , wf_cell_to TYPE ole2_object , wf_cell_to1 TYPE ole2_object , wf_excel TYPE ole2_object , " Excel object wf_mapl TYPE ole2_object , " list of workbooks wf_map TYPE ole2_object , " workbook wf_worksheet TYPE ole2_object , " Worksheet wf_cell TYPE ole2_object , " Cell Range wf_cell1 TYPE ole2_object , wf_range TYPE ole2_object , " Range of cells to be formatted wf_range2 TYPE ole2_object , wf_column1 TYPE ole2_object . " Column to be Autofit DATA : BEGIN OF t_hex , l_tab TYPE x, END OF t_hex . DATA : wf_deli ( 1 ) TYPE c, "delimiter wf_action TYPE i, wf_file TYPE string, wf_path TYPE string, wf_fullpath TYPE string. TYPE...