Programa para buscar exit, enhancement-point, badis, etc
Este es un buen programa para la búsqueda de user-exit, badis, Enhancement-point en cualquier transacción o programa. Una buena aplicación para tener a mano.
The ABAP program lines are wider than the internal table.
An exception has occurred which is explained in more detail below. The exception is assigned to class 'CX_SY_READ_SRC_LINE_TOO_LONG' and was not caught in procedure "K_KKB_FIELDCAT_MERGE" "(FUNCTION)", nor was it propagated by a RAISING clause. Since the caller of the procedure could not have anticipated this exception, the current program was terminated. The reason for the exception is: An attempt was made to read program "Z_BUSCA_AMPLIACIONES" from the database. The READ REPORT statement allows you to copy a program text into an internal table. The occupied line length in the program text must not exceed the width of the internal table. Internal table "\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72 characters wide. The program line is 75 characters wide.
Excelente Aporte
ResponderEliminarHabia un Error y lo corregi con respecto a un modulo de funcion obsoleto
ResponderEliminar*Change this code
ResponderEliminarCALL FUNCTION 'AA_CUS_GET_INCLUDES'
EXPORTING
ID_PROGRAM = v_include
TABLES
* IT_PROGRAM = e_t_program
ET_INCLUDE = e_t_include.
* For this code
* CALL FUNCTION 'MU_INCLUDE_GET'
* EXPORTING
* i_include = v_include
* TABLES
* e_t_include = e_t_include.
*and this
CALL FUNCTION 'AA_CUS_GET_INCLUDES'
EXPORTING
ID_PROGRAM = v_include
TABLES
* IT_PROGRAM = e_t_program
ET_INCLUDE = lt_incl.
* CALL FUNCTION 'MU_INCLUDE_GET'
* EXPORTING
* i_include = v_include
* TABLES
* e_t_include = lt_incl.
The ABAP program lines are wider than the internal table.
ResponderEliminarAn exception has occurred which is explained in more detail below. The
exception is assigned to class 'CX_SY_READ_SRC_LINE_TOO_LONG' and was not
caught in procedure
"K_KKB_FIELDCAT_MERGE" "(FUNCTION)", nor was it propagated by a RAISING clause.
Since the caller of the procedure could not have anticipated this
exception, the current program was terminated.
The reason for the exception is:
An attempt was made to read program "Z_BUSCA_AMPLIACIONES" from the database.
The READ
REPORT statement allows you to copy a program text into an internal
table. The occupied line length in the program text must not exceed the
width of the internal table. Internal table
"\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72 characters
wide. The program line is 75 characters wide.
clic en el menu Utilities - > Mas Utilidades - > Click en forzar longitud de linea 72
ResponderEliminar