2014 Mar 21 7:51 PM
Hola,
¿Alguien sabe si agregar un text-symbol a el programa estándar RPCPAYMX_CFDI_MANAGER es correcto?. Lo necesito para usarlo en un enhacement implícito que agrega un campo al dynpro.
Lo agregué y no me pidió ninguna clave, pero no estoy segura si pierdo el mantenimiento de SAP por hacer eso.
Saludos
Translation
Does anyone know if adding a text-symbol on Standard RPCPAYMX_CFDI_MANAGER program is allowed?. I need to use an implicit enhacement that adds a dynpro field.
I added it and did not ask me for a key, but I'm not sure if I lose the maintenance of SAP for doing that.
Message was edited by: Matthew Billingham
Message was edited by: Matthew Billingham
2014 Mar 24 12:57 AM
Hola,
No quiero ser pesado pero según las reglas de conducto de scn toda contribución ha de ser en ingles a no ser esté en uno de los espacios específicos dedicados a otros idiomas (http://scn.sap.com/docs/DOC-18590).
En repuesta a tu pregunta si
has añadido un text-symbol a un programa estándar entonces has hecho una modificación lo cual invalida el contracto de mantenimiento con SAP. El sistema debería haberte perdido un clave y tal vez hay problemas en cómo está configurado el cliente (se04, scc4 para ver la configuración). O tal vez algún lo ha modificado antes que tu. Sin embargo todas las modificaciones y los enhancements invalidan el mantenimiento porque SAP no garantiza el código que tú añades. Las ventajas de usar enhancements en vez de modificar el código son que tienes un log de los cambios al momento de hacer un upgrade y que has tienes un acceso controlado a como se hace los cambios de código. Si no quieres agregar un nuevo text-symbol podrías utilizar un literal y manejar los diferentes idiomas utilizado en el sistema atreves de sy-langu.
Saludo,
Maybe an administrator could move this to the Comunidad SAP en Español (Spanish Language Community).
2014 Mar 24 12:57 AM
Hola,
No quiero ser pesado pero según las reglas de conducto de scn toda contribución ha de ser en ingles a no ser esté en uno de los espacios específicos dedicados a otros idiomas (http://scn.sap.com/docs/DOC-18590).
En repuesta a tu pregunta si
has añadido un text-symbol a un programa estándar entonces has hecho una modificación lo cual invalida el contracto de mantenimiento con SAP. El sistema debería haberte perdido un clave y tal vez hay problemas en cómo está configurado el cliente (se04, scc4 para ver la configuración). O tal vez algún lo ha modificado antes que tu. Sin embargo todas las modificaciones y los enhancements invalidan el mantenimiento porque SAP no garantiza el código que tú añades. Las ventajas de usar enhancements en vez de modificar el código son que tienes un log de los cambios al momento de hacer un upgrade y que has tienes un acceso controlado a como se hace los cambios de código. Si no quieres agregar un nuevo text-symbol podrías utilizar un literal y manejar los diferentes idiomas utilizado en el sistema atreves de sy-langu.
Saludo,
Maybe an administrator could move this to the Comunidad SAP en Español (Spanish Language Community).
2014 Mar 24 5:47 PM
Thanks for the information about the language unfortunately the system don´t let me erase the question
I could solve my problem, the correct way to add a parameter in the dynpro by enhacement was add a data in the initialization event and use it in de selection-screen, like in the next example.
SELECTION-SCREEN BEGIN OF BLOCK date WITH FRAME TITLE title
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 01.
SELECTION-SCREEN COMMENT 1(13) text FOR FIELD p_payDat.
PARAMETERS p_payDat TYPE datum.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK date.
INITIALIZATION.
title = 'Pay Date'.
text = 'Pay Date'.
2014 Mar 24 7:41 PM
You did not ask about selection text but about text symbols they are not the same thing. But I'm glad to see you managed to award yourself some points
2014 Mar 25 6:10 AM
He's marked his answer as correct (I've assumed by accident, so I've removed it). It doesn't give him points.
I've also added a translation to the question. Rather than edit a question that's received an answer, replying to it with a translation would have helped.
2014 Mar 25 11:27 PM
@Jamie MacCuish I needed a text-symbol in order to use it in a selection-screen, your information was useful for me. Thanks
2014 Mar 25 6:12 AM
It's unlikely you'd lose support doing this. It doesn't affect the logic of the process at all.