Exepcion 5 en CRM_ORDER_MAINTAIN Destination

Colapsar
X
 
  • Tiempo
  • Mostrar
Limpiar Todo
nuevos mensajes
  • akein60
    Junior Member
    • mar
    • 4

    #1

    Exepcion 5 en CRM_ORDER_MAINTAIN Destination

    Hola que tal,

    Tengo el siguiente codigo, el cual sin el "DESTINATION ‘CRM300FSM’" y en su propio sistema de CRM funciona correctamente, el detalle esta en que necesito ejecutarla desde otro sistema que no es CRM, a lo cual le agrego el DESTINATION, al hacer esto siempre me regresa la Excepcion 5, alguin ha solucionado este problema?

    CALL FUNCTION ‘CRM_ORDER_MAINTAIN’ DESTINATION ‘CRM300FSM’
    CHANGING
    ct_orderadm_h = it_orderadm_h
    ct_input_fields = lt_input_field
    EXCEPTIONS
    error_occurred = 1
    document_locked = 2
    no_change_allowed = 3
    no_authority = 4
    OTHERS = 5.

    Gracias!
  • Daniel A.S.
    Junior Member
    • may
    • 5

    #2
    Dump CRM_ORDER_MAINTAIN

    Hola...

    Estoy ejecutando la función CRM_ORDER_MAINTAIN con la cual actualizo el campo DURATION el cual está en la tabla IT_APPOINTMENT. Me genera un dump:

    CALL FUNCTION 'CRM_APPT_BUILD_INPUT_FIELDS'
    EXPORTING
    iv_ref_handle = '0'
    iv_ref_guid = im_wa_appointment-ref_guid
    iv_ref_kind = im_wa_appointment-ref_kind
    is_logical_key = wa_logical_key
    IMPORTING
    es_input_fields = wa_input_fields.

    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
    EXPORTING
    it_appointment = i_appointment
    CHANGING
    ct_input_fields = i_input_fields
    EXCEPTIONS
    error_occurred = 1
    document_locked = 2
    no_change_allowed = 3
    no_authority = 4
    OTHERS = 5.


    Dump:

    Categoría Error de programación ABAP
    Err.tmpo.ejec. MESSAGE_TYPE_X
    Programa ABAP SAPLCRM_ORDER_OW
    Application Component CRM-BTX-BF

    Diagnóstico
    El módulo de funciones aparece varias veces en la jerarquía
    actual de llamadas. Este caso no está previsto. Se trata de un
    error de programa.

    Les agradeceré bastante cualquier apoyo.

    Saludos

    Comentario

    Trabajando...