ChaRM External Reference Number Field

Hi
In ChaRM, we have used external reference number field for information. When a ChaRM CR is created, the requester fills required information in the field. In Normal Correction, this information is not automatically taken from the CR document to the correction document. When we search a normal correction by external reference number, it does not give any result, as the information is only shown in the CR document. This however works as expected in Ur.gent Corrections.
What could we do about this?
Many thanks for your answers in advance.
BR Li

Hello,
  you need to check the mapping rules for field External Reference Number in copy control for Normal Corrections.
Go to the IMG: Scenario specific->change request management->Extended config->change trans types->copy control
Define Mapping rules.
Regards,
Raquel

Similar Messages

  • How to make External Reference number and Ref Date Mandatory in Complaints

    Dear Experts,
    Greetings!!!.
    How to make External Reference number (EXT_REF_NUMBER ) and Ref Date ( EXT_REF_DATE ) Mandatory in Complaints.
    Regards,
    Sany

    HI,
    You can use Incompleteness Procedure to make those fields mandatory in complaint transaction.
    Regards,
    PP

  • External Reference number not copied in Service Confirmation

    Hi,
    We are on CRM 5.0 SP11. We have Mobile Service 5.0 SP11.
    In Mobile Service in the Service Order creation screen we have a window to input External reference number. When we create a Service Confirmation as a followup document of Service Order, SAP by default only allows to copy Reference Object,Subject and notes (both header and item level) to the Confirmation.
    Does anyone have idea how we can copy the External Reference number to Confirmation when we do followup to Service Orders on mobile.
    This functionality works fine on Enterprise.
    Thanks,
    Yatin

    Hello,
                 The external number won't be copied by standard as Wolhfard said they are different documents.
    You need to code this to make this copy from service order to Service confirmation.
    Open your Mobile Application Studio and make following changes.
    Open the BusinessObject "BOMSVHelper"  and view the code. Go to the Method "CopySrvTransHeader"  write the following code in it.
    Find the code
    UserName = _unwind(BusinessRootObject.UserDataDictionary.GetData("USERNAME"))
    and paste the following code below it.
            Dim servconfobj As BusinessObject = bocopysrvtrans.SalesInfo
            Dim servtransobj As BusinessObject = orderheaderobj.SalesInfo
            servconfobj.SetAttribute("PoNumberSold", servtransobj.GetAttribute("PoNumberSold"))
            servconfobj.SetAttribute("PoDateSold", servtransobj.GetAttribute("PoDateSold"))

  • Customs reference number( field name # GTS_CUSREF_NO) in material document

    Hi Friends,
    While doing GR am geting document number and can see that in MB03. Now in MKPF table there is field called Customs reference number( field name # GTS_CUSREF_NO) , and after putting material document number in MKPF am getting all the detail including Customs reference number.
    Now my question is where can I see the detail of Customs Reference number in material document in t code (MB03).
    Any pointers
    Regards

    no reply closing the thrd.

  • Function module to find the external reference number in CRM?

    hi all,
          Is there any function module available to find the process_types for a given external reference number?

    Hello,
    I don't know a function module. The external reference number you can find in CRM in the table BUT0ID (IDTYPE = CRM001 as external identfier). Then you can read BUT000 to get the info with the partner number given in BUT0ID.
    Rgds,
    JP

  • External Manufacturer number field in vendor master (EMNFR)

    Hello Experts
       I am trying to search for a field  External manufacture number i.e EMFNR , I checked in OBD3 this field is maintained as a mandatory field I can see this field in LFA1 table But when I go to XK01,I can't see this field in cantrol tab is there any other setting I need to do for activate this field ?

    Hi Expert,
    The Field you mentioned is not correct, it is LFA1-EMNFR and You need to change the Field Status for the Client level to activate the field. That is done in the T-Code: OB23.
    There select the Option - Double Click - Create Vendor (Centrally) and then try again with T-Code: /NXK02..
    This will solve your issue..
    Regards,
    GK
    SAP

  • A/P Invoice Document Vendor Reference Number field..................

    Hi All,
                I have a senario:
            I have Posted A/P Invoice With Vendor XXX, Vendor Reference number is 111. I should be able to post another A/P Invoice using the same Vendor Reference number-111 but Vendor is YYY.
        But I should not be able to post same vendor reference number - 111 in two A/P invoices where the vendor is same. (Say Vendor is XXX).
            How do I satisfy these two conditions??????
    Regards,
    Sree.

    Hi Sree,
    SAP Business one will not allow you to to have the same reference number even if it is for another supplier.
    This is known SAP validation.
    Regards,
    Rakesh

  • LSMW - Report to get IDOC failures and its external reference number

    Hi All,
    I'm currently using LSMW for data migration in CRM, for Business Partner and transaction data.
    I need to generated a report which covers the idocs which have failed and the external identifier for which it has failed. Currently the IDOC reports that are available OOB provide the IDOC number and the reason for failure. It will be great if I can get the external identifier of the transaction as well.
    I searched for a report in SAP but could not find any which gives this functionality.
    Please advice.
    Thanks in advance.

    Hi,
    1.)If you want the ouput in the same report program which triggers the idoc, it is better to use the control record information.
    You will get IDoc Number from XEDIDC(check the below code) and you can store the idoc number into an internal table if more idoc is expecting to be triggered.
         call function 'MASTER_IDOC_DISTRIBUTE'
              exporting
                MASTER_IDOC_CONTROL        = EDIDC
              tables
                COMMUNICATION_IDOC_CONTROL = XEDIDC
                MASTER_IDOC_DATA           = XEDIDD
              exceptions
                others                     = 5.
       read table xedidc index 1.
      append xedidc-docno to it_docno.
    And finallly use this to display in the output.
    2.) if u want it in a seperate report, then select based on date, idoctype, messagetype
    Regards,
    Sajith

  • External Reference field not populating via CRM_ORDER_MAINTAIN

    Hi ,
    I am using the FM CRM_ORDER_MAINTAIN and wanted to add EXTERNAL REFERENCE Field in existing Complain Order(Transaction :CRMD_ORDER). I am passing the following parameter to add the Reference. But it is not updating the
    with the follwoing Reference number. Could you please help on this.
      ls_ext_ref-REFERENCE_TYPE           = 'Z002'.
      ls_ext_ref-REFERENCE_NUMBER      = '12345678'.
      ls_ext_ref-REFERENCE_TYPE_T        = 'SOCS Number'.
    ls_ext_ref-REFERENCE_MODE           = 'A'.
      ls_Ext_ref-handle                                = '0000000001'.
      ls_ext_ref-ref_guid          = gs_orderadm_h-guid.
      ls_ext_ref-ref_kind          = gc_object_ref_kind-orderadm_h.
      INSERT ls_ext_ref INTO TABLE gt_ext_ref.
      ls_input_field-ref_guid    = gs_orderadm_h-guid.
      ls_input_field-ref_kind    = gc_object_ref_kind-orderadm_h.
      ls_input_field-objectname  = gc_object_name-ext_ref.
      ls_input_field-LOGICAL_KEY = '0000000001'.
      ls_input_field_names-fieldname = 'REFERENCE_TYPE_T'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'REFERENCE_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'REFERENCE_NUMBER'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      INSERT ls_input_field  INTO TABLE  gt_input_fields.
    CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
        ct_orderadm_h   = gt_orderadm_h
         it_ext_ref           = gt_ext_ref
       CHANGING
          ct_input_fields = gt_input_fields.
    Get guids
      LOOP AT gt_orderadm_h INTO gs_orderadm_h.
        INSERT gs_orderadm_h-guid INTO TABLE gt_obj_guids.
      ENDLOOP.
      CALL FUNCTION 'CRM_ORDER_SAVE'
        EXPORTING
          IT_OBJECTS_TO_SAVE = gt_obj_guids
        EXCEPTIONS
          DOCUMENT_NOT_SAVED = 1
          OTHERS             = 2.

    Hi,
    For external reference field
    Use Crm_order_read funtion module to read the details.
    get the details  of sales  lt_sales and create same structure of sales and pass the value.
    IF lt_sales IS NOT INITIAL.
        CLEAR ls_sales.
        READ TABLE lt_sales INTO ls_sales INDEX 1.
        IF sy-subrc = 0.
          ls_sales-po_number_sold  = ls_orderadm_h-object_id. """" Ticket no
          MODIFY lt_sales FROM ls_sales INDEX 1.
        ENDIF.
        CLEAR ls_sales.
        CLEAR ls_sales1.
        READ TABLE lt_sales INTO ls_sales INDEX 1.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING  ls_sales TO ls_sales1.
          ls_sales1-ref_handle    = 1.
          ls_sales1-ref_guid      = lv_hguid .                          ls_sales1-ref_kind      = 'A' .
          h2_ls_sales1-po_number_sold = ls_sales-po_number_sold.  "" this is external reference no field._h2
          INSERT ls_sales1 INTO TABLE lt_sales1.
        ENDIF.
        " Input Fields
        ls_input_field-ref_handle =  1.
        ls_input_field-ref_kind   = 'A' .                  "A
        ls_input_field-ref_guid   = lv_hguid.                   "External System GUID Assignment."
        ls_input_field-objectname = sales.                   "SALES
        ls_input_field_names-fieldname = PO_NUMBER_SOLD.
        INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
        ls_input_field_names-fieldname = PO_DATE_SOLD.
        INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
        INSERT ls_input_field  INTO TABLE  it_input_fields.
      ENDIF.
    Pass lt_sales1 to crm_order_maintain and crm_order_save.

  • Invoice Reference Number "V" + Blank Payment Terms field

    Hi Experts
    Need your validation on one point. I have credit memos with invoice reference number field filled with "V" but payment terms in document is blank.
    Payment terms in Vendor Master Data is XXXX (Net due 30 days). But when I run the Payment Program within 30 days for this vendor, the credit memo is picked up and adjusted.
    Is my understanding correct that it is because of the following reasons -
    By putting V in invoice reference number, the system will overlook the payment terms mentioned in Vendor Master Data and follows whatever is mentioned in the document.
    And because the payment term field is empty in the document, it is taking baseline date as payment due date and thus picks the document in F110 program.
    Points will be rewarded to replies with explanations.
    Regards
    Arjun

    Arjun,
    please check my comments:
    By putting V in invoice reference number, the system will overlook the payment terms mentioned in Vendor Master Data and follows whatever is mentioned in the document.
    In all cases the document entry overlook the master data entry. The vendor works as default values during document entry.
    And because the payment term field is empty in the document, it is taking baseline date as payment due date and thus picks the document in F110 program.
    Don't change the document defaul entry if you want the vendor assignment. If it's blank you have to assign same Payment terms from you vendor otherwise you will have only the baseline date.
    Best Regards

  • Field Customs reference number in material document

    Hi Friends,
    While doing GR am geting document number and can see that in MB03. Now in MKPF table there is field called Customs reference number( field name # GTS_CUSREF_NO) , and after putting material document number in MKPF am getting all the detail including Customs reference number.
    Now my question is where can I see the detail of Customs Reference number in material document in t code (MB03).
    Any pointers
    Regards

    No reply at all.
    Rgds

  • Populate header text with reference number and vendor name

    Hi Experts,
    My client wants to populate the line item text field - SGTXT in MIRO / FB60 with the reference number field XBLNR and the vendor name.
    Is it possible to do it before the invoice get posted?. Like, just after the user entered the vendor account number and the reference number in FB60 system picks the vendor name against the vendor number from LFA1 table and the reference number entered in FB60 screen and populates them in text field ?
    Similarly in MIRO - before the invoice get posted is it possible to pick the reference number from MIRO screen and pick the vendor name based on the PO number entered on the MIRO screen.
    Please advise how to do this.
    Thank you
    Shino

    Hi
    This can be achieved by using a User Exit in Substitution rule. This is done through GGB1. Define the rule
    Prerequisite
    (System T Code =FB01 or MIRO) and Account Type = K
    Substitution
    User Exit
    The following link will be of help to you to define a user exit in substitutition rule
    http://help.sap.com/saphelp_46c/helpdata/en/5b/d231a843c611d182b30000e829fbfe/content.htm
    Regards
    Sanil Bhandari

  • DRQ:Credit Note not based on invoice should transfer reference number to JE

    according to SAP business one system behavior, only those credit notes that based on invoices are able to transfer customer/vendor reference no. field value to reference 2 field in journal entry. I would like to propose to enable AP credit note that is not based on invoice to transfer reference number field to JE as well.

    Even if it is possible, you would be better split the amount to individual credit note.  I have no idea why you need to split line in one credit note.
    Thanks,
    Gordon

  • Employee integration R/3 - CRM - external BP number

    hi,
    I'm downloading employees from R/3 to CRM
    BP is getting created with an internal CRM number (different than original in R3)
    but is there a way to populate "external BP number" field in BP
    with the original employee number from R3 as now it's empty?
    Thank you,
    regards,
    michal

    Hi ,
    If the BP has to be maintained with an external partner number while creation use the FM " BAPI_BUPA_CREATE_FROM_DATA" having the field for external partner number in the structure CENTRALDATA-PARTNEREXTERNAL.
    If external partner number has to be maintained for an existing BP then use the FM  "BAPI_BUPA_CENTRAL_CHANGE" having the field for external partner number in the structure CENTRALDATA-PARTNEREXTERNAL.
    Regards,
    Shwetha

  • Updating external address number and phone ID

    I want to update external address number and phone ID when i edit a BP.
    I found FM BUA_BUPA_BUT020_GET to read address data from buffer.. using this i can update external address number field. but i am not able to see phone related fields in buffer.
    how to update phone related fields in buffer ( in any of the BADI).

    Hi,
    You can get the information from the table ADRC   Addresses (Business Address Services)
    Field name for telephone number TEL_NUMBER
    For Email address
    SMTP_ADDR
    And you have the common field between these two tables
    ADDRNUMBER
    Thanks
    Ramakrishna Pathi

Maybe you are looking for

  • Do I really need an optical drive (external) for my MacBook Air to install Win 7  with Bootcamp?

    I have a Macbook Air (11" if it matters, the tiny one) that was purchased late last year, new.  I would like to install Bootcamp and be able to boot into Windows 7, 64 bit.  I have a Windows 7 Professional disk, which I would have to find an optical

  • Help with Links to my book/publisher page from ibook to ibookstore

    My question : What is the correct way to get links to specific ibooks and publisher pages and on the iBookstore - as I have had trouble with mine. Many of the iBooks and ePubs samples (Dorling Kindersly for example) that I've downloaded from the iBoo

  • Problems synchronizing time in calendar

    Both my Blackberry and Computer running Vista are set to Pacific Time Zone.  But when I enter events into Blackberry and synchronize them to my Outlook 2003 using Desktop Manager, the process sets all events in my Blackberry ahead by three hours.

  • Files disappeared...

    So... I wake up my computer from sleep, and i get a warning that CC application was unable to sync 5 files (old ones) due to a server error... I found that strange since they were old files and i opened my local CC folder... And... It was empty... I

  • Error as An item with no Delivery quantity is not permitted. Item will be d

    Hi, When i process VL01N transaction i got below metioned error, Error as An item with no Delivery quantity is not permitted. Item will be deleted for SD doc Note: I have checked in MMBE and observed Sufficient stock is there. I have checked in MD04