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"))

Similar Messages

  • 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

  • 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

  • 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

  • PO number  not copied from Contract to Sales order

    Hi Gurus,
    when i try to create a sales order w.r.t a contract the Po number is not copying from cintract to sales order.
    also the PO item is not copying from contract to sales orde.
    Could u tell me the reason.
    Cheers,
    Sumith

    Hi Sumith,
    I'm not sure though but try this one this might jus help.
    Go to VTAA,
    select the target & Source doc type.
    Go to header and check the COMPLETE REFERENCE CHECK BOX,
    Which says it copies the whole of the reference doc from the
    source doc to the target doc.
    I jus hope this will sole your problem.
    Cheers!!
    Nitin

  • Sales order number  not copied to documents in accounting

    Dear all,
    I have created normal sales order ,delivery and billing and creation of excise billing invoice which i do for the sales  which happens directly from factory.
    now go to VF02, and click on 'accounting overview '  click on accounting document .Here sales order number (COBL-KDAUF) is not copied. where as accounting document generated for excise invoice sales order number is appearing .
    The same is the case with  STO through SD route ....
    kindly suggest . 
    thanks,
    Shankar

    Dear Shankar
    As you would be aware, four Accounting Documents would be generated for one billing document viz
    -  Accounting Document for Customer Debit
    -  Profit Center
    -  Controlling Document
    -  Profitability Analysis
    Of the above four documents, in which you have seen.  You can see the order reference in Profitability Analysis. 
    thanks
    G. Lakshmipathi

  • 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.

  • Reference Number not coming in MIGO

    Dear Sirs,
    out of 100 quantity in PO I did MIGO of 10-9-10 quantity in three of MIGO transaction, but at the time of Cancellation of one of the MIGO I am not getting the reference of original GR Number in the cancelled document, Please advice if any customization is required for getting the reference number.
    Valuable suggestions will be rewared with suitable points.
    Regards,
    SagarRK
    Edited by: SagarRK on Apr 15, 2010 9:15 AM

    Goods Receipt done with reference to PO when you post material document in MIGO (GR,GI etc) a tab named "Purchase Order History" created automatically in Item detail level of Purchase order ME23N. so you can get the Original GR Reference number from PO History tab when you display that reference PO
    Edited by: Muhammad Ali on Apr 15, 2010 10:14 AM

  • F110 - reference number not getting updated.

    Hi,
    The reference number in the line items after running F110 is not getting updated. Is there any configuration I need to do .
    Please help.
    Thanks
    Sabu

    Hi,
    Thanks .
    After applying that note it has now updated the clearing document with reference number from its original document. But I want the reference document to flow/updated into the F110 screen -> DME attributes->refrence number. The table it has to get updated is REGUT-RENUM.
    I am not sure if this has to happen as a SAP standard functionality but this is the requirement given to me.
    Thanks in advance.
    SMS

  • Create internal order with reference - Do not copy distribution rule group

    Hi,
    I'm creating an internal order with reference to another order through tcode KO01. When i will display the new internal order, i already have distribuion rule group that was copied from the reference order. To delete the incorrect distribution rule group i execute tcode KO02, however this information do not appear in tcode KO02.
    What should be done to delete this settlement rule? I do not want to copy the settlement rules from the old internal order.
    Thanks in advance.
    Regards,
    Ana Fernandes

    Hi.
    'What should be done in order to do not copy this information when i create the internal order with reference?'
    in tcode kot2_opa do not maintain Settlement profile for Order category 3
    Also go to KOM2 and delete Settlement rule for order, from which you copying.
    'in table COBRB i can see the information however i can not delete it. The validy period is empty.'-in su53 check authority

  • External requirment number (PR #) in backend Service PO

    Dear All,
    We are implementing classic scenario with simplified pricing on SRM4.0 and ECC6.0 as backend.
    During strategic sourcing scenario i.e. for Bid Invitation out of external requirement (PR transferred from R/3 to SRM ),when we trigger a PO system doesn't populate the Purchase requisition number in backend PO for service items.
    In case of material items system populates PR number in backend PO.
    Please throw some light on how to get the PR number populated in the service PO.
    Kindly write back.
    Regards,
    Nilesh Swami

    Hi. Just configure the same types for Req and PO in the backend, that is the easiest solution.
    Regards,
    Dave.

  • Reference number not coming in the fotter of the sec pafe

    Hi,
    I am designing a interactive adobe form. In the master page i have a header witht he formname and a logo and in the footer I have page number and a text field binded with the interface field to display the reference number. Form has one page ,but at run time when in some condition data may flow to next page . Now Problem is on the second page evrything come fine header, data in the content area and the fotter. but In the footer the value of the text edit fields that is mapped to reference number is not coming as it is in the first page.
    Adding a picasaweb link for the footer pics for reference.
    http://picasaweb.google.com/118441215574862266574/UntitledAlbum
    Pooja

    >>In the master page i have a header witht he formname and a logo
    >>..
    >>on the second page evrything come fine header
    header info seems to be static, so no probs while displaying in the second page.
    >>in the footer I have page number and a text field binded with the interface field to display the reference number
    is your interface field that is binded a simple string field which can occur only once, or is it a part of multi occuring structure like table.
    >>Now Problem is on the second page ..In the footer the value of the text edit fields that is mapped to reference number is not coming as it is in the first page
    the problem seems to be in the binding of the text-field to the corresponding reference number coming from the interface-context.  for the text-field in the footer, verify: Object -> Binding -> Default Binding, make sure it does not contain any * in it.
    other check could be, you can apply some coloured border to the text-field in footer of master pages, and ensure the rectangle atleast visible in both pages
    regards,
    BJagdishwar.

  • Create sales order (return) with reference - PO number not copied

    Hello all,
    I have a question regarding creating a sales order (return, VA01) with the option "create with reference" where a sales order number can be added as reference.
    The system will copy values from the sales order into the return document like the item, the sold-to-party etc.
    The PO Number (customer PO number) is not being copied in our system, so I was wondering if there is a way to tell the system to copy the PO number from the sales order?
    Thanks,
    Anne

    Hi,
    In the transaction code VTAA, select the target and source document types (return order <- sales order) and click on the details button. Check the data transfer routine (the first one for VBAK) assigned here. You may need to clone this routine (in transaction VOFM -> Data transfers -> orders) and create a new routine to add field VBAK-BSTNK into it.
    Check with an ABAP'er for further details.
    Regards,

  • Batch Number Not copied over from Production order to Confirmation

    Dear Experts,
    In the production order, I specify the batch # for the components.  But when I do the confirmation, the batch number for the components is not getting copied over. 
    Can anyone suggest what has to be done.
    Regards
    Tom

    Dario, I have not saved my confirmation.  But when I execute CO11N and go to "Goods Movement" tab, I expect the Batch to be copied from the production order for the components.  But the batch field is Blank.
    How do we make the batch field to be copied over from the production order.
    Thanks in advance.
    Regards
    Tom

  • 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

Maybe you are looking for

  • Can you set up an automatic page update based on time?

    I was curious if, in dreamweaver, you can set up a page to automatically update at a certain time. For instance, I want the home page to replace 2 buttons at 12:30pm on November 3. Is this possible? Or do I have to upload a page manually at that time

  • Itunes causing Blue Screen of Death on Windows 7

    Every time I open Itunes 9 it eventually crashes my computer and takes me to the Blue Screen of Death. I recently updated from vista to Windows 7. I've reinstalled itunes repeatedly and tried both 32 and 64-bit installs. Any suggestions would be very

  • "Something is wrong with Plug-in SS Masks and Composing" ???

    Whenever i start up iMovie is get a prompt that reads "Something is wrong with Plug-in SS Masks and Composing". What does this mean and how can i fix it? Thanks, Bryan

  • MSI P55GD 85 Blue PCIe 1x not working

    I have added a sound card to my pc. Discover that the sound card is not found if I used the blue pcie 1x slot. However, if I shifted to the black pcie 1x, it is working fine. Is the blue slot spoil or there is a need to do some tweaking?

  • Spell check crashes ID

    We create a monthly current events newsletter that contains many suggested urls for teachers to visit. The entire document is about 32 pages long. When I spell check the entire file (prior to sending it out) there is a mix of regular text and urls in