martes, 18 de agosto de 2015

Activar el botón de customizing en la ayuda

PROBLEMA: Cuando oprimo la tecla ayuda F1 en cualquier campo SAP, me despliega la pantalla de ayuda, pero el botón de customizing esta des-habilitado.

SOLUCIÓN: Aplicar nota 1778267

En el include LSCHLF03:
  DELETE ADJACENT DUPLICATES FROM temp_objs COMPARING tabname.
* select distinct tabname from dd02l into table idd02l
*        for all entries in i_objs where
*        tabname = i_objs-tabname and
*        as4local = 'A' and
*        contflag in ('C', 'E', 'G').
*{   REPLACE        UPGK900099                                        1
*\  IF NOT temp_objs IS INITIAL.
*  que se active el boton de custo
  
IF NOT temp_objs[] IS INITIAL.    "Note-1778267
*  que se active el boton de custo fin
*}   REPLACE
    
SELECT DISTINCT tabname FROM dd02l INTO TABLE idd02l
           
FOR ALL ENTRIES IN temp_objs WHERE
           tabname 
temp_objs-tabname AND
           as4local 
'A' AND
           contflag 
IN ('C''E''G').

REFERENCIAS:

No hay comentarios:

Publicar un comentario