Ir al contenido principal

Entradas

WEBs ABAP para aprender

https://sap4tech.net/abap-tutorials/ http://zevolving.com/2008/12/salv-table-10-editable-salv-model-overcome-the-restriction-of-salv-model/ http://zevolving.com/ https://sapyard.com/tutorials-on-abap-objects/ https://www.tutorialspoint.com/sap_abap/sap_abap_macros.htm https://sapyard.com/abap-for-sap-hana-part-24-custom-report-using-amdp/

MAnejo de memoria ABAP - Memory ID

I/E - en una clase ********* FSC Buffers   DATA:         fsc              TYPE  tdline,         fsc_buff_temp    TYPE  tdline,         fsc_tdid_po      TYPE tdid. (ex_fsc ...) *en el programa que tiene los datos: * ex_fsc, no hay que declararlo EXPORT ex_fsc FROM fsc TO MEMORY ID 'FSC'. *Programa receptor ( ex_fsc, no hay que declararlo) IMPORT ex_fsc TO fsc_buff_temp FROM MEMORY ID 'FSC'. *Si son tablas, van con corchetes[] EXPORT ex_fsc FROM fsc[] TO MEMORY ID 'FSC'. IMPORT ex_fsc TO fsc_buff_temp[] FROM MEMORY ID 'FSC'. DELETE FROM MEMORY ID 'FSC'.

SmartForms -

AL momento de crear uno de cero, me encontré con estos issues: Una vez hecho el programa impresor, se debe elegir la impresora, no me funciono LOCL, usé LP01 (lo puedo poner default en usuario, mediante SU01) Tuve problemas con logo, era color, y debia ponerlo en color, lo habia dejado en ByN. Para encontrar el error, tuve que poner ifs, en los distintos objetos, hasta encontrar la falla, ya que el SMARTFORM, no indica el error, simplemente no lo ejecuta y devuelve error 3. En este caso tenia 2 hojas fijas, y para que vaya a la segunda hoja al final de MAIN  va un command, Como agregué texto standard, primero lo debí crear por SO10, luego, para hacer pruebas dentro del mismo sistema, pero mandante distinto, hay que ejecutar un porgrama que lo copia, RSTXTCPY. Para generar una OT  (del tipo Customizing) del Texto, se utiliza el programa RSTXTRAN. Fuentes: http://www.teknodatips.com.ar/sap-netweaver/128-como-asociar-en-abap-texto-standard-a-u...
How to add custom field in Additional B Tab for SAP Sales Order In this article we want to explain step by step how to add custom field in SAP Sales Order transaction VA01/VA02/VA03. This time Mr ABAPGurus will give the tutorial of enhancement to add custom field in SAP Sales order. In this sample we will add new custom field for comments and customer satisfaction, this data will save into separate table from SAP Standard table ( VBAK / VBAP ). SAP provided us with ADDITIONAL TAB in the sales order transaction ( VA01/VA02/VA03 ) which allow customer to add custom fields.  T he different between ADDITIONAL A and ADDITIONAL B is the ADDITIONAL A for field which already predefine in Sales Order Header ( VBAK ) fields and ADDITIONAL B is for field that freely define. This sample we will use ADDITIONAL B because we will store data from customer satisfaction into Z database table. 1. Create one Z table using SE11 SAP Transaction code. 2.Using SE38 Transactio...

ABAP - Webs para tener en cuenta

A medida que busco y busco en internet, me encuentro con páginas de tutorías excelentes, las voy posteando aquí para que indaguen también: https://www.saplearners.com/home/ https://training.logaligroup.com/ Estaré actualizando esta entrada de blog. Éxitos!

ABAP - Celda de color en ALV OO

Está tan bueno este tuto, que literalmente me lo copio (abajo va la fuente) Dear SAPLearners, in this tutorial we will learn how to color a particular cell in ALV using the factory class CL_SALV_TABLE. In earlier tutorial we have added colors to row in ABAP ALV, c lick here to know how . This is similar to coloring row. Lets see how we can do it. To apply cell color, Create a new column of Type LVC_T_SCOL in your output internal table. Set the above column as Color Column in ALV by using the method  SET_COLUMN_COLOR( ) . Add the color data to the color column based on your requirement. Create a program in SE38 and copy the below code. *&---------------------------------------------------------------------* *& Add color to cell in ALV using factory class * *&---------------------------------------------------------------------* *& www.saplearners.com * *&--------------------...

ABAP - Orientación a objetos (Video)

Excelente video didáctico de ABAP OO: Fuente: logaligroup.com/