CRM Document Flow

I need to create the document flow in CRM to link leased contracts to its SPM. So far, i tried CRM_ORDER_MAINTAIN and BAPI_ACTIVITYCRM_CHANGEMULTI but i still can't create the document flow. I also tried CRM_CREATE_DOC_FLOW. It creates the doc flow but in the wrong 'Role' field.
Any idea how?
PS: I am very new to CRM. :P

hi gregor wolf ,
i tried the same code but unable to create a link .i used same code as urs but could not suceed can u suggest?
code is as follows.
PARAMETERS: lv_id_a TYPE crmt_object_id OBLIGATORY,
lv_id_b TYPE crmt_object_id OBLIGATORY.
DATA: guids TYPE crmt_object_guid_tab,
      guid_a LIKE LINE OF guids,
      guid_b LIKE LINE OF guids.
* Read GUID for Activity A *
CALL FUNCTION 'CRM_ORDERADM_H_GUID_GET_DB'
  EXPORTING
    iv_object_id = lv_id_a
  IMPORTING
    et_guid      = guids.
READ TABLE guids INTO guid_a INDEX 1.
REFRESH: guids.
* Read GUID for Activity B *
CALL FUNCTION 'CRM_ORDERADM_H_GUID_GET_DB'
  EXPORTING
    iv_object_id = lv_id_b
  IMPORTING
    et_guid      = guids.
READ TABLE guids INTO guid_b INDEX 1.
DATA: it_activity_h TYPE crmt_activity_h_wrkt,
      ls_activity_h LIKE LINE OF it_activity_h,
       it_requested_objects TYPE crmt_object_name_tab,
       ls_requested_objects LIKE LINE OF it_requested_objects,
        it_orderadm_h TYPE crmt_orderadm_h_wrkt,
         ls_orderadm_h LIKE LINE OF it_orderadm_h,
         it_doc_flow TYPE crmt_doc_flow_wrkt,
         ls_doc_flow LIKE LINE OF it_doc_flow,
         it_header_guid TYPE crmt_object_guid_tab,
         ls_header_guid LIKE LINE OF it_header_guid.
Append GUID_A to Header GUID Table
APPEND guid_a TO it_header_guid.
What should we read
ls_requested_objects = 'ACTIVITY_H'.
APPEND ls_requested_objects TO it_requested_objects.
ls_requested_objects = 'DOC_FLOW'.
APPEND ls_requested_objects TO it_requested_objects.
* Read Activity A *
CALL FUNCTION 'CRM_ORDER_READ'
  EXPORTING
    it_header_guid       = it_header_guid
    it_requested_objects = it_requested_objects
  IMPORTING
    et_orderadm_h        = it_orderadm_h
    et_activity_h        = it_activity_h
    et_doc_flow          = it_doc_flow.
DATA: it_activity_h_comt TYPE crmt_activity_h_comt,
       ls_activity_h_comt LIKE LINE OF it_activity_h_comt,
        ct_doc_flow TYPE crmt_doc_flow_comt,
         ls_doc_flow_comt LIKE LINE OF ct_doc_flow,
         ref_guid TYPE guid_16,
lt_doc_link TYPE crmt_doc_flow_extdt,
ls_doc_link LIKE LINE OF lt_doc_link,
  ct_input_fields TYPE crmt_input_field_tab,
   ls_input_field TYPE crmt_input_field,
    ls_input_field_names TYPE crmt_input_field_names,
     log_handle TYPE balloghndl.
LOOP AT it_activity_h INTO ls_activity_h.
  MOVE-CORRESPONDING ls_activity_h TO ls_activity_h_comt.
  APPEND ls_activity_h_comt TO it_activity_h_comt.
ENDLOOP.
* Fill DOC_FLOW Structure *
ls_doc_link-objkey_a = guid_a.
ls_doc_link-objtype_a = 'BUS2000126'.
ls_doc_link-objkey_b = guid_b.
ls_doc_link-objtype_b = 'BUS2000111'.
ls_doc_link-vona_kind = 'A'.
ls_doc_link-reltype = 'VONA'.
ls_doc_link-brel_kind = 'A'.
APPEND ls_doc_link TO lt_doc_link.
CLEAR: ls_doc_flow_comt.
ls_doc_flow_comt-ref_guid = guid_a.
ls_doc_flow_comt-ref_kind = 'A'.
ls_doc_flow_comt-doc_link[] = lt_doc_link.
APPEND ls_doc_flow_comt TO ct_doc_flow.
* Fill INPUT_FIELDS which indicate what Values where changed * and had to be updated *
ls_input_field_names-fieldname = 'OBJKEY_A'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'OBJTYPE_A'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'OBJKEY_B'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'OBJTYPE_B'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'VONA_KIND'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'RELTYPE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'BREL_KIND'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'BREL_MODE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'RELATIONID'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field_names-fieldname = 'RELATION_HANDLE'.
INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
ls_input_field-objectname = 'DOC_FLOW'.
ls_input_field-ref_guid = guid_a.
ls_input_field-ref_kind = 'A'.
INSERT ls_input_field INTO TABLE ct_input_fields.
* Update Document Flow *
CALL FUNCTION 'CRM_ORDER_MAINTAIN'
  CHANGING
    ct_input_fields   = ct_input_fields
    cv_log_handle     = log_handle
    ct_doc_flow       = ct_doc_flow
  EXCEPTIONS
    error_occurred    = 1
    document_locked   = 2
    no_change_allowed = 3
    no_authority      = 4
    OTHERS            = 5.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
DATA: it_saved_objects TYPE crmt_return_objects.
* Save Changes *
CALL FUNCTION 'CRM_ORDER_SAVE'
  EXPORTING
    it_objects_to_save   = it_header_guid
    IV_UPDATE_TASK_LOCAL = 'X'
    IV_SAVE_FRAME_LOG    = 'X'
  IMPORTING
    et_saved_objects     = it_saved_objects.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF.
  DATA: lt_return TYPE TABLE OF bapiret2,
         ls_return LIKE LINE OF lt_return.
* Commit Changes *
  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      wait   = 'X'
    IMPORTING
      return = ls_return.
  WRITE: / ls_return-message.
* Read Error Messages *
  IF NOT log_handle IS INITIAL.
    DATA: is_msg_handle TYPE balmsghndl,
           es_info TYPE crmt_msg_info,
            es_msg TYPE bal_s_msg,
            ev_ref_object TYPE crmt_ref_obj_text.
    is_msg_handle-log_handle = log_handle.
    CALL FUNCTION 'CRM_MESSAGES_GET_MSG_INFO'
      EXPORTING
        is_msg_handle      = is_msg_handle
        iv_get_caller_name = 'X'
      IMPORTING
        es_info            = es_info
        es_msg             = es_msg
        ev_ref_object      = ev_ref_object.
  ENDIF.

Similar Messages

  • Lean Order Interface document flow in ERP

    Hi experts,
    As I currently do not have a system available which uses the LORD interface, I was hoping anyone could help me out on this question.
    When an ECC-quotation is created from an opportunity in CRM and it is then viewed in ECC. Will the CRM opportunity be visible in the ECC document flow? And if it is, is the document flow registered in ECC as well, or retrieved from the CRM document flow tables?
    Thank you!

    Hi B. Verhoefen,
    sorry for answering on such an old question, but I found it while searching for another issue.
    It will be visible in the transaction history but you need at least LORD version 2. ERP document flow isn't possbile in version 1.

  • Document flow reference from ECC invoice to mySAP CRM complaint to be made

    Hi,
    I am using a BAPI program to create complaints in the mySAP CRM system; however the complaints have to be created with reference to invoices that are residing in the back end ECC system.
    Since the complaints are not being created using the GUI, I cannot establish the doc flow while creating the complaints.
    Is there someway I can make some table entries, etc... so that when I create the complaint in mySAP CRM using the BAPI:
    1. I can see the invoice in the document flow as the preceding document
    2. The reference of the line items from the invoice is also available in the relevant fields in the complaint line item (fields such as invoiced qty, net value, billing doc number, billing line item, etc)
    Kindly advice on the same. Thanking you in anticipation.
    Warm regards,
    Dhaval.

    > See if the below one answers your query.
    >
    > Go to SPRO -> Financial accounting -> FA Global
    > setting -> Company Code -> Multiple currencies
    >
    > See if anything is activated here.
    >
    > Raj
    >
    > Reward points if helpful
    Hi Raj. Here i see the following settings :
    1) Define additional local currencies. Here is only 1 company code (not mine) with settings.
    2) Define additional local currencies for ledgers. Here is a setting saying ;
    Ledger =0, Summary Tabel =GLT0, Valuation =Legal valuation, Second Currency =Comp.Code currency, Third currency =Group Currency.
    I have no idea whether these settings have anything to do with my problem. I had more the feeling that it is an error in the document flow program.
    When you know more i would appreciate your info. Thanks. Ed

  • Document Flow not updated in CRM from ECC

    Hi Experts,
    We are having a scenario where we are creating Service Orders in CRM, which in turn creates a meterial reservation document in ECC for the spare part items. However, the material reservation number is not getting updated in the document flow of the service order in CRM. We are using CRM7.0. Any suggestions anyone?

    Hi,
    Do we need to make any MW settings for the document flow to be updated with the material reservation document created in ECC.
    Rgds,
    -Sweta

  • View CRM transaction in ECC through document flow

    Hi ,
    we have a requirement where we need to show a CRM document in document flow of another document in ECC. There is no replication for these documents. I also need to display the CRM document in ECC when it is selected from document flow.
    Can any one please help on this?
    Regards,
    Sharf.

    This is all going to be custom development but here is the idea:
    In theory, you can read the docflow of the CRM parent document (which is in ECC) by an RFC into CRM and get the subsequent documents. The major assumption I am making here is simple: the docflow is established between the parent and the child in CRM.
    Once you have the docflow, you can show the document numbers in the R/3 and again access the individual documents and show relevant header and item details of the "CRM" docment in the ECC screen.
    FYI, an exactly "reverse" feature is available in CRM Web Channel (E-Commerce application). Here, you can see the Invoice details in the web, even though the billing documents are never replicated from ECC. We even see the document flow about the Shipping documents (Deliveries).
    Easwar Ram
    http://www.parxlns.com

  • View CRM document in ECC through document flow

    Hi ,
    we have a requirement where we need to show a CRM document in document flow of another document in ECC. There is no replication for these documents. I also need to display the CRM document in ECC when it is selected from document flow.
    Can any one please help on this?
    Regards,
    Sharf.

    This is all going to be custom development but here is the idea:
    In theory, you can read the docflow of the CRM parent document (which is in ECC) by an RFC into CRM and get the subsequent documents. The major assumption I am making here is simple: the docflow is established between the parent and the child in CRM.
    Once you have the docflow, you can show the document numbers in the R/3 and again access the individual documents and show relevant header and item details of the "CRM" docment in the ECC screen.
    FYI, an exactly "reverse" feature is available in CRM Web Channel (E-Commerce application). Here, you can see the Invoice details in the web, even though the billing documents are never replicated from ECC. We even see the document flow about the Shipping documents (Deliveries).
    Easwar Ram
    http://www.parxlns.com

  • Extraction of document flow from CRM

    Hi experts,
    I am currently struggeling with a generic extractor that will load the document flow from CRM into BW. My problem is that the load takes too long, due to the number of links in the document flow. I use a SAP FM called SREL_GET_NEXT_RELATIONS to get the document links and it works fine. The problem occurs when a campaign is linked to a transaction, since the campaign at my client can have more than 10 000 transactions and those transactions is then linked to other transactions and so on. This makes extraction of the document flow very large and slow to load.
    Is there any standard way of extracting the document flow that I am missing?
    Does anyone have any experience regarding extracting the document flow from CRM and would like to share their knowledge?
    Help are appreciated!
    /Sebastian

    there's a reason why SAP does not deliver extractors for things like this
    sometimes you need to face the end users (or project managers) with the "impact" of their requests... who would ever be able to look at a document flow that contains 50 transactions each of which linked to 1000 (or more) campaigns again each of which linked to a couple of other transactions?
    anyways, you should talk to some very experienced ABAPers if you really wish to continue with this request, rethink your approach or, what I would strongly suggest, rethink your initial request to get this into BI (if your not using web reporting, reporting on this will already crash in Excel versions 2003 and lower)

  • CRM Table to see the Document Flow

    HI,
        Is their a Table to find the Document flow in CRM.
    With regards,
    Selvam T

    CDBD_DOC_FLOW
    Contains the Header Information for a Business Transaction.
    Note:
    1. It doesnu2019t store the Business Partner responsible for the transaction. So, to get the Partner No, link it with CRM_ORDER_INDEX.
    2. This table can be used for search based on the Object Id (Business
    Transaction No).

  • CRM: How to create document flow

    Hello together,
    In the process framework I defined a new process which can be started from a sales qutotation. This process loads my own compentent where the user can upload technical objects (such as connection objects or points of delivery) and create a new object set (IsuOrderBasketSet) with the uploades technical objects.
    The requirement is to link the quotation with the created object set and vice versa so that the user can see the object set in the quotations assignment block "transaction history" and the qoutation in the object sets assignment block "transaction history".
    Does anybody know how I can meet this requirement?
    Thanks in advance,
    Sebastian

    Hi,
    I found a solution using the following Code. I have successfully created a document flow between two quotations:
        DATA guid_a TYPE crmt_object_guid.
        DATA guid_b TYPE crmt_object_guid.
        DATA: it_activity_h TYPE crmt_activity_h_wrkt,
            ls_activity_h LIKE LINE OF it_activity_h,
            it_requested_objects TYPE crmt_object_name_tab,
            ls_requested_objects LIKE LINE OF it_requested_objects,
            it_orderadm_h TYPE crmt_orderadm_h_wrkt,
            ls_orderadm_h LIKE LINE OF it_orderadm_h,
            it_doc_flow TYPE crmt_doc_flow_wrkt,
            ls_doc_flow LIKE LINE OF it_doc_flow,
            it_header_guid TYPE crmt_object_guid_tab,
            ls_header_guid LIKE LINE OF it_header_guid.
      DATA: it_activity_h_comt TYPE crmt_activity_h_comt,
            ls_activity_h_comt LIKE LINE OF it_activity_h_comt,
            ct_doc_flow TYPE crmt_doc_flow_comt,
            ls_doc_flow_comt LIKE LINE OF ct_doc_flow,
            ref_guid TYPE guid_16,
            lt_doc_link TYPE crmt_doc_flow_extdt,
            ls_doc_link LIKE LINE OF lt_doc_link,
            ct_input_fields TYPE crmt_input_field_tab,
            ls_input_field TYPE crmt_input_field,
            ls_input_field_names TYPE crmt_input_field_names,
            log_handle TYPE balloghndl.
      DATA: lt_return TYPE TABLE OF bapiret2,
            ls_return LIKE LINE OF lt_return.
       guid_a = '0026B98B6AD11ED2B9F49BA972EC069E'
      guid_b = '0026B98B6AD11ED2B9E27FFF042682F6'
      REFRESH it_header_guid.
    * Append GUID_A to Header GUID Table
      APPEND guid_a TO it_header_guid.
    * What should we read
      ls_requested_objects = 'ACTIVITY_H'.
      APPEND ls_requested_objects TO it_requested_objects.
      ls_requested_objects = 'DOC_FLOW'.
      APPEND ls_requested_objects TO it_requested_objects.
    * Read Activity A
      CALL FUNCTION 'CRM_ORDER_READ'
        EXPORTING
          it_header_guid       = it_header_guid
          it_requested_objects = it_requested_objects
        IMPORTING
          et_orderadm_h        = it_orderadm_h
          et_activity_h        = it_activity_h
          et_doc_flow          = it_doc_flow.
      LOOP AT it_activity_h INTO ls_activity_h.
        MOVE-CORRESPONDING ls_activity_h TO ls_activity_h_comt.
        APPEND ls_activity_h_comt TO it_activity_h_comt.
      ENDLOOP.
    * Fill DOC_FLOW Structure
      ls_doc_link-objkey_a   = guid_a.
      ls_doc_link-objtype_a  = 'BUS2000115'."BUS2000126'.
      ls_doc_link-objkey_b   = guid_b.
      ls_doc_link-objtype_b  = 'BUS2000115'.
      ls_doc_link-vona_kind  = 'A'.
      ls_doc_link-reltype    = 'VONA'.
      ls_doc_link-brel_kind = 'A'.
      APPEND ls_doc_link TO lt_doc_link.
      CLEAR: ls_doc_flow_comt.
      ls_doc_flow_comt-ref_guid   = guid_a.
      ls_doc_flow_comt-ref_kind   = 'A'.
      ls_doc_flow_comt-doc_link[] = lt_doc_link.
      APPEND ls_doc_flow_comt TO ct_doc_flow.
    * Fill INPUT_FIELDS which indicate what Values where changed
    * and had to be updated
      ls_input_field_names-fieldname = 'OBJKEY_A'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname  = 'OBJTYPE_A'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname  = 'OBJKEY_B'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname  = 'OBJTYPE_B'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname  = 'VONA_KIND'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname  = 'RELTYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname  = 'BREL_KIND'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'BREL_MODE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'RELATIONID'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'RELATION_HANDLE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field-objectname = 'DOC_FLOW'.
      ls_input_field-ref_guid = guid_a.
      ls_input_field-ref_kind = 'A'.
      INSERT ls_input_field INTO TABLE ct_input_fields.
    * Update Document Flow
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        CHANGING
          ct_input_fields   = ct_input_fields
          cv_log_handle     = log_handle
          ct_doc_flow       = ct_doc_flow
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      DATA: it_saved_objects TYPE crmt_return_objects.
    * Save Changes
      CALL FUNCTION 'CRM_ORDER_SAVE'
        EXPORTING
          it_objects_to_save   = it_header_guid
          iv_update_task_local = 'X'
          iv_save_frame_log    = 'X'
        IMPORTING
          et_saved_objects     = it_saved_objects.
    * Commit Changes
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait   = 'X'
        IMPORTING
          return = ls_return.
    Regards,
    Saravanan.C

  • Confirmation of service in the document flow, where it comes from?

    Dear all,
    I found a confirmation of service after I picking and posting goods issue, from the document flow.
    I just wondering, where it comes from? Or, how can I configure it on or off for display?
    (This is a standard ERP system, should not involve in the CRM module)
    Thanks,
    Edited by: Peng Li on Apr 29, 2008 10:04 AM
    Edited by: Peng Li on Apr 29, 2008 10:38 AM

    Hi Peng,
    This usually happens for inbound deliveries usually happens when a movement type is not found for the relevant item. Please check in the delivery item if a movement type is maintained.
    Another possibility is that the material is a non-stock (service) material type for which goods movement are not relevant. Check the material type from the material master.
    Regards
    Nikhilesh

  • No document flow updated in Service Order regarding MM flow i.e. PR, PO, GR

    Hello,
    On creating a service order in CRM, the purchase requisition is created automatically in R/3 for the spare parts entered.
    But this PR information is not getting updated in the service order's document flow in CRM.
    I analysed the flow and found that PR gets successfully created and sends back the document flow data to CRM inbound queue.
    The BDoc type involved is CRM_SRV_XTN.
    In it's Extended part, there is a field called ORDERADM_H_GUID which is correctly filled in the BAPIMTCS structure in R/3 which is converted to probably XML format through macro MOVE_CASTING and sent to CRM inbound queue (function module BAPI_CRM_SAVE).
    However, on debugging the respective inbound queue in CRM, I noticed that the field ORDERADM_H_GUID value is not the same as filled in R/3 but some CONSTANT value like 00230023002300560023002300230023 in all the cases.
    Also, FYI, the fieldu2019s value in R3 after conversion looks like as following u2013
    #########################0000000000 ########䣴Ώ삷#耀諣뢮########     48F4038FC0B70093E10080008AE3B8AE
    While in CRM i.e. FM BAPI_CRM_SAVE it looks as follows u2013
    #########################0000000000 ########################     48F4038FC0B70093E10080008AE3B8AE
    So there I feel that the value what is sent from R/3 is not the same as recieved in CRM, on XML conversion.
    Please advise what could be the reason for this anomaly.
    Thanks and regards,
    Manish

    unfortunately document flow in PS is not like in SD
    only in ECP there is a limited possibility
    you can see the line item report and activate the relationship browser which will give the details of the documents related to that posting
    other than that nothing

  • CRM - ECC flow

    Hi Experts,
    We have a requirement to extract data from CRM to BI.
    Please clarify few doubts related to CRM.
    1. What is the common data between CRM and ECC.
    2. What is the document flow from CRM to ECC i.e. which will be created first and why i.e. Prospects, Contract, Lead, Oppurtunity,Quotation etc
    I am little bit confused why CRM is integrated with ECC.
    Needs your inputs.
    Thanks in advance.
    Regards,
    Bhadri M.

    Hi Deepa & All,
    Thanks for your valuable inputs.
    Few questions,
    1. In CRM, I want to see
    Across a Business Partner how many Leads are there, against each Lead how many Opportunities are there with Opportunity status and the Quotations against each Opportunity.
    Please provide if there are any tables where all these data is stored. If 2 or more tables are involved please provide the link from one table to other.
    2. Are Business Partner in CRM and Customer in ECC same i.e. If a business partner is created in CRM say 1 then will the same 1 will reflect in ECC automatically ?
    3. In CRM we are having Quotation, do we have even Contract ? If yes for Quotation & Contract status do we need to go for CRM or ECC ?
    Are Quotation & Contract in CRM & ECC same i.e. same data ?
    Please clarify what ever is possible from your end.
    Thanks in advance.
    Regards,
    Bhadri M.

  • Scnario A resulting in document flow missing

    Hello All,
    We have a scnario to change Debit memo request to be chnaged in ECC.
    so i have maintained a parameter in CRMPAROLTP table for Scnario A.
    now i am able to change the document in ECC but the problem is, if i bill it in ECC, corresponding document flow is missing in CRM.
    If i remove the parameter, i m getting doc flow.
    Can anyone give me a hand pls..
    Regards,
    KP.

    Hi
    I think you have copied the standard t-code and customised it.
    Check the document flow of the delivery in table and also in T-code.
    Check the document flow of the deliivey during the runtime by debugging.
    Regards
    Shiva

  • Change the document flow, table CRMD_BRELVONAI

    Hi experts,
    We are using CRM and ISU. For few cases the ISUCONTRACT displayed in the CIC0 is wrong.
    I would like to know if it's possible to change the document flow ? (the datas in table CRMD_BRELVONAI).
    By transaction ?
    by FM ?
    Thanks in advance if you could help me.
    Regards,
    Nicolas.

    Nicolas,
    Though I myself have not tried deleting any existing Doc Flow, but you can try using the Function Module: CRM_DOC_FLOW_UPDATE_DU.
    If you get a better option please share.
    Regards,
    Shyamak

  • Tree view of document flow

    Hi Experts,
    in former CRM releases, the document flow could be displayed in a tree view (similar to document flow in ecc).
    As far as I know, in CRM 7.0 the assignment block document flow only contains the predeccessor and successor, but it is not possible to display maybe the initial contact which led to actual billing document.
    Does anybody knows if this feature could be activated through customizing?
    Kind regards
    Hannes

    Hi Hannes,
    You can change the layout behavior of output list of DocFlow in the BSP coding.
      <chtmlb:configTable id                    = "Table"
    Just change this line to :
        <chtmlb:configTable id                    = "ItemTree"
    This will make your output list look like in Tree View Mode rather than Table View mode.
    You can also go to the particular document hyperlink and look at the parties involved Assignment Block which can give you the information about the creator of original document.
    I hope this helps.
    Thanks
    Vishal

Maybe you are looking for

  • How do I transfer photos from iPad mini to SD card for backup?

    How do I transfer photos from iPad mini to Sd card for backup?

  • Error in db conn using HFR Studio

    Hi Folks, I'm getting the following error msg while trying to establish a new db connection on HFR Studio: *"Error connecting to database connection Sample: Sample"* I'm using the following values in DB Connection Properties: DB Connection Name: Samp

  • DBconsole is terminated with signal 99 from time to time in 10g RAC!!

    Hi, all. The database is 2 node RAC 10.2.0.2.0 on 32-bit Windows 2003 EE SP1. We are not using Grid Control. I installed Enterprise Manager by using DBCA. From time to time, Console and agent processes are restarted "automatically". --> emdb.nohup --

  • Can i use id on html:select syntax...

    Hi, i am using the following code to take data from the database directly to a dropdown box. <html:select property="lddate" style = "width:160"> <html:option value="--SELECT--">SELECT</html:option> <html:options collection="loadDateList" name="almRec

  • IMAP vs Exchange IMAP Differences

    I've searched high and low and can't seem to find any documentation on the differences between a Mail IMAP vs Exchange IMAP account. If no one has this info, I could possibly set up both account types and then compare their preference settings. Thank