CRM Creating Quotation with particular status

Dear folks,
I have one requirement in CRM system:
Generally, We are creating Quotation from the follow-up of Lead transaction. In lead transaction, we have 5 statuses, now the user wants that system should only allow to create Quotation only with the particular Lead status (accepted by sales).. for rest of the 4 status, the system should restrict the user to create the quotation.
I checked with status profile (for remaining 4 statuses), but it is not only stopping Quotation, it is also stopping all the transactions like activity and task. which is required.
I checked with Action Profile, (Copy-Document)....it is just creating automatically quotation, once the lead status is accepted. (still user can create followup quotation from other lead statuses).
Please let me know, how i can achieve this functionality.

Hi Ravi,
Thanks for your reply,
1. Action profile - my condition is status profile....but it is not working, it is not stopping to create the followup transaction in open, in process statuses.
2. Is it possible to stop creating the quotation only in in-process or Rejected by sales statuses by using status profile... I checked there was an option of create quotation, i set it to forbidden and warning, still it is allowing to create the quotation in the user status (in -process, and rejected by sales).
I am also working on it.

Similar Messages

  • Creating Idocs With 64 Status.

    Hai Friends,
    My requirement is like this...
    Scenario:- my client says...They Get some idocs from a external system and then a program runs in the background to read these idocs and post Inbound delivery and IR documents.
    And Now As These IDOCs are not coming ...We have to read this data from a excel sheet and Create exactly the same type of IDOCs so that They can RUN the same Program to post Documents.....
    Now my doubt is ...How do i create IDOCs with status 64 and that too in the same same..as here there wont be any target system..
    Please help me with ur solution....How should i Approach...I know how to fetch data from excel and all..I need Help specially in
    Creating IDOCs with 64 status and what should be in the Control Records..
    Waiting for your insight.
    Thanks,
    Jeevan...

    Hi,
    You can use below FM for your requirement.
    CALL FUNCTION 'IDOC_INBOUND_SINGLE'
        EXPORTING
          pi_idoc_control_rec_40  = w_control_rec
        IMPORTING
          pe_idoc_number          = g_idoc_number
        TABLES
          pt_idoc_data_records_40 = i_idoc_recposting
        EXCEPTIONS
          idoc_not_saved          = 1
          OTHERS                  = 2.
      IF sy-subrc = 0.
    Idoc created if sy-subrc = 0
      Endif.
    The Control records should be like this  ( You need to check the partner profile)
      w_control_rec-mandt   = sy-mandt.
      w_control_rec-docrel  = <sap_release>
      w_control_rec-direct  = '2'.
      w_control_rec-idoctyp = < Idoc type >.
      w_control_rec-mestyp  = < message type>.
      w_control_rec-sndpor  = <sender port>
      w_control_rec-sndprt  =  < Sender partner type>
      w_control_rec-sndprn  = < sender partner>.
      w_control_rec-rcvpor  = < recv port>
      w_control_rec-rcvprt  = < recv partnertype >
      w_control_rec-rcvprn  =  < recv partner>
    Let us know if it helps you. Thanks.
    Edited by: Atul Mohanty on Jun 23, 2011 10:59 PM

  • Create Quotation with reference to Quotation

    After we create a Quotation with reference to second quotation. It is coming all data with material and pricing in second quotation.
    Since only one Condition type value is not coming. This condition value is maintaining the manual and mandatory in pricing condition.
    I have created the condition class u2013 (Price) and calculation type -(Percentage) in this condition.
    What is problem, it not coming the percentage in this condition?
    Regards,
    Devendra

    HI,
    in copy control t-code vtaa>>>item  level settings>> maintain pricing type as " C"
    Problem should be solved.
    Pls rewad points accordngly

  • Product Hierarchy and creating quotations with brands - require solution

    Hi,
    We are using product heirarchy in our system ( its a 18 character key), the first 8 character is for the brand.
    Material is created with a different character combination and the material is assigned the complete 18 character key in the material master record.
    Now the requirement is that the distributor places a plan to buy a particulat brand ( not material i.e with specific colour, which he will do it at a later stage) with quantity and price, this has to be captured in the SAP.
    Once the distributor's plan is approved, he will place a purchase order and Sales order gets created automoatically.
    My line of thought is capture his plan in quotation and once he places orders , an sales order is created with reference to the sales order.
    The challenge is how to capture brand in a quotation with price. 
    Can we create material master records for these brands which are used only in quotations and SO can be created with original materials ( the final finished product).
    Please provide me your valuable solutions and suggestions.
    Thanks
    Venkata Rama Reddy.K

    Hi Hans,
    We don't want to wait for until billing to update price since we have the CI created at the time of delivery not billing.  CI document also needs to display correct pricing for custom purposes.
    Also, we would like to keep pricing on the Sales Doc. and Billing Invoice the same.  This is why we would like to trigger re-pricing on sales order.   And when pricing is re-invoked, we need to re-read the PRODH data to ensure new price is retrieved.
    Thanks for your response.
    Hannah

  • Header Text pop up not coming up when creating Quotation with reference when created from CJ20N

    I have done my configuration in VOTXN and it works.
    If I create a quotation with reference with transaction VA21 the pop up comes up and the header texts are copied.
    But if I do the same from transaction CJ20N (it also executes transaction VA21) the pop up windows does not come up and the text is not copied.
    If someone can please tell me why this is happening?
    Regards,
    Carlos

    Hi carlos,
    with reference to existing quotation you are creating new quotation ?
    but Quotation creation from project will done using DP81 ( not by VA21)
    can you explain a bit ?
    thanks
    santosh

  • How create documents with "Open" Status

    Hello!
    I create purchase orders in SAP using SDK:
    Set oOPOR = oCompany.GetBusinessObject(SAPbobsCOM.oPurchaseOrders)
    lRetCode = oOPOR.Add
    But all my docs have "close"-status, that is why I can't create following invoices in my system.
    DocumentStatus property of doc-object iis read only.
    Can you help me? What should I do to create "open" docs?
    Thank you!

    Hi Andrey,
    Try This.....
    By using this code creating a purchase order with docstatus=open in my system
      Dim RetVal As Long
            Dim ErrCode As Long
            Dim ErrMsg As String
            Dim oPurchaseOrder As SAPbobsCOM.Documents
            oPurchaseOrder = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
            oPurchaseOrder.CardCode = "V1010"
            oPurchaseOrder.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
            oPurchaseOrder.DocDate = DateTime.Today
            oPurchaseOrder.Lines.ItemCode = "A00002"
            oPurchaseOrder.Lines.UnitPrice = 2.36
            oPurchaseOrder.Lines.Quantity = 50
            oPurchaseOrder.Lines.DiscountPercent = 10
            oPurchaseOrder.Lines.Add()
            oPurchaseOrder.Lines.ItemCode = "A00002"
            oPurchaseOrder.Lines.Quantity = 8
            oPurchaseOrder.Lines.UnitPrice = 5
            oPurchaseOrder.Lines.DiscountPercent = 10
            RetVal = oPurchaseOrder.Add
            If RetVal <> 0 Then
                MsgBox(ErrCode & " " & ErrMsg)
            End If
    Thanks
    Shafi

  • Create jar with particular path

    I create a jar file using the API (package java.util.jar).
    My application works fine but it creates a jar and save this path (an example):
    fileA - c:\dir1\dir2\fileA
    fileB - c:\dir1\dir2\dirA\fileB
    How can I create a jar file and save this path ?
    fileA - fileA
    fileB - dirA\fileB
    Thanks in advance and sorry for my english.
    Matteo

    Alright, this package is not documented very well, so here's the help you need.
    The Zip entry, "ZipEntry" really doesn't care about the path like the file structure does. It just treats the path like a name, and when extracted with a program like unzip, the extractor creates the directories specified by the names, which are paths. You should always use relative paths in a zip archieve, and most programs will transform absolute path names just because it's dangerous.
    So here is a simple method that can zip up and directory tree, and take a base path off the start of the tree. In your example the arguments to this method would be...
    ("c:\\dir1\\dir2", new File("c:\\dir1\\dir2"), out)
    In this case the base and file are the same, because you didn't want any header directories. "out" is a ZipOutputStream that you created.... There is one problem though. I was a bad kid when I made this method, and it doesn't work on windows... so you're gona have to fix that before you can use it :)
       * Writes out all directories and contents of the given file
       * and all its decendents to the ZipOutputStream. Because it
       * it is unsafe and somewhat incorrect to use absolute paths
       * in ZipEnties, the base parameter must be non-null, have
       * length > 0 and start with a File.separator.
       * @param base The path to 'subtract' off the full path for
       * each file. For instance, if a file path is
       * "/home/joe/lovenotes/kelly.txt" and the base is "/home/joe"
       * Then the file would be placed under a ZipEntry of "lovenotes/kelly.txt"
       * @param file The file to start at. If it is a file, then it will be
       * the only entry written to the stream, otherwise, it will be recursed.
       * @param out The ZipOutputStream to write to.
       * @throws IOException if an underling IOException occurs, or if
       * a base condition is not met, such as the base not being the first part
       * of the file path.
      static private void writeTree(String base, File file, ZipOutputStream out)
        throws IOException {
        if(base == null || (!file.getCanonicalPath().startsWith(base))) {
          throw new IOException("parameter 'base' incorrect: '" + base);
        if(file.isFile()) {
          String path = file.getCanonicalPath();
          base = (base.endsWith(File.separator))
            ? base.substring(0, base.length() - 1) : base;
          // An Extra +1 so the path DOES NOT have a leading separator
          path = path.substring(base.length() + 1, path.length());
          if(DEBUG > 2)
            System.out.println(path);
          ZipEntry ze = new ZipEntry(path);
          ze.setSize(file.length());
          ze.setTime(file.lastModified());
          out.putNextEntry(ze);
          writeOutBuffer(createBufferFromFile(file), out);
          out.closeEntry();
        } else {
          File[] files = file.listFiles();
          for(int i = 0; i < files.length; i++) {
            writeTree(base, files, out);

  • Create Quotations with ref of Inquiry through Custom IB IDOC

    Hello Experts
    Can you please tell the process how we can create the quotations by using inbound idoc created from XI system.
    What is the FM, process code, message type.
    Thanks
    Cris

    No answers were provided so closing this one.

  • How to create Internal Order with LKD status

    Hi All Experts ,
    Can anybody tell me how can we create IO directly in LKD status ? Or it is manual acitivity by clicking on Set / Rest button and then check LKD and save. I tried in KOT2_OPA but not no any option found. If any experts can guide for the following configuration would be great.
    1 ) Is it possible to create IO with LKD status directly ?
    2 ) Where that configuration needs to be done ?
    3 ) What is significance of JEST Table relating to Internal Order ?
    Exprerts help would be great !
    Regards,
    Sharvari Joshi.

    Hi Ajay,
    It worked fine exactly. Thank you !
    Can we have facility to create IO with LKD ststus in System Status ?
    Is it true that there are only 4 SAP Standard system status CRTD, REL, CLSD, TECO.
    Is it possible to add LKD in that ? When I clicked on to the up / down arrow I am getting only these four values.
    Can we define additional values to this point ?
    Regards,
    Sharvari Joshi.

  • Quotation with Ref Opportunity

    Hi All,
        Users creating the quotations with ref to the opportunity.
    Now the Client requirement is quotation should created with reference to opportunity only those products status is completed.
       System should allow the user to create quotation with ref opp those product status is not completed.
    Opp ID   Product  Status
    200        aaa        In process
                 bbb         Completed
                 ccc        Completed
                 ddd         in process
    system should allow the user to create quotation with ref to opp only for those product, which their status is completed
      i.e quotation should created for the products   " bbb & ccc"
    Can any one help me to implement this, it urgent
    Thanks
    Gskumar

    Implement the copy control badi, CRM_COPY_BADI method -> COPY.
    Here you get the preceding documents item details in structure IS_REF_ORDERADM_I, from the item guid, obtain the item status, if its not complete then riase the execption do_not_copy and this item will not be copied.
    Attach the badi implementation to your copy control customizing.
    Regards,
    Kiran

  • Condition Tables with Release status

    When we create condition tables, we have the option of creating them with release status or without release status. What is the difference? What is release status?
    Thanks,
    Venkat

    hi,
    The release status for condition records in a sales deal enables you to limit the use of records that have already been created.
    Release status has the following characteristics:
    no entry: released
    A: blocked
    B: released for price simulation
    C: released for price simulation and planning
    The amount and significance of individual characteristics is defined using domain fixed values and can not be maintained.
    Maintenance of the release status is carried out in the sales deal itself (in the proposed values block), is transferred over to the condition records concerned and can then not be changed for these records.
    When setting up a new sales deal (with copy), a proposed value is suggested for the release status, which can be set up in Customizing for the agreement type.
    A record blocked for an application is treated in the access, as though it has been identified with a deletion indicator. It can however be recognized and displayed as such via the log functionality in Pricing.
    The characteristic Pricing Simulation is only used in the report SDNETPRO, which gives a net price list.
    If when maintaining individual condition records a sales deal is assigned to the condition record using the transaction VK12, the release status from the sales deal is used for this record. When changing the release status using this sales deal or changes to the sales deal, the user will be notified of any changes to the status.
    The release status of conditions in an agreement can only be changed, if
    the condition record has release status in the key
    the agreement has the release status released
    Otherwise the condition record always has the release status of the agreement.
    The processing status is always directly assigned to a release status. If conditions are assigned to an agreement, the agreement passes the release status on to all related conditions. The related processing status is then set accordingly.
    If you have several processing statuses assigned to a release status, the condition record receives the first (alphabetical) suitable entry as a processing status.
    The processing status, which the conditions have received indirectly from an agreement via the release status, can only be changed in the case of released agreements.
    source : Library.
    regards

  • My BDOCs in CRM are all waiting with yellow status

    I don't know why my BDOCs(transaction smw01) are all waiting with yellow status. Shouldn't they be automatically transfering data to my data source. If i manually process the BDOC then data goes to the datasource which can be seen via transaction RSA3. Help?
    Message was edited by: Prakash  Singh

    hi Prakash,
    again oss note 692195-FAQ: Sales Analytics and CRM-BW data Extraction ?
    bwa5 and bwa7, delta is activated ?
    and initialization performed in bw ?
    626214 619122
    3. If there are queues in SMQ1 with erroneous status then activate
       these queues.
       In Transaction SMQ1 if there are Queues existing with
       names beginning with CRM_BWAn (n is number) then
       activate these queues in the same transaction.
    4.a)If required activate the datasource
        Go to transaction BWA5   > select the required datasource and
        activate.
    4 b) The Delta may not be active ,activate the delta in BWA7 by
      selecting the name of the datsource and pressing the candle icon for
      'activate delta'.
    Symptom
    There may be problems or issues related to data tranfer from CRM to BW.
    Other terms
    CRM-BW extraction,upload,initial,delta,full upload ,Sales Analytics,
    Reason and Prerequisites
    There could be errors in customization or program errors due to which
    data may not be transferred or incorrectly transferred to BW.
    Solution
    Question 1 : The Extraction from CRM to BW takes a very long time. What
    can be done? (Performance Issues)
    Question 2 : On executing transaction RSA3 I get records but I find 0
    records when I load data from BW request.(No Data Available).
    How can I extract data in this case?
    Question 3 : The Deltas for my data source are not extracted . What can
    I do?
    Question 4: How can I extract the fields, which are not provided in the
    standard  data source extraction ?
    Question 5: I am unable to extract  user status correctly.What should I
    do?
    Question 6 : What can I  do when the activity/Opportunity/Complaint
    reasons(Code,CodeGruppe,Katalogart)  are not extracted?
    Question 7: What can I do if the deleted opportunities
    are not reflected in BW?
    Question 8: How do I activate the metadata?
    Question 9: I donot get any records for the delta upload of my attribute
    datasource(s).What is to be done?
    Question 10: What do the status BWSTONESYS0 , BWSTONEUSS0,BWSTTECSYS0
    and various other BW status mean ?
    Solutions
    Question 1 : The Extraction from CRM to BW takes a very long time. What can be done? (Performance Issues)
    Suggestion 1: Please implement notes  653645 (Collective note) and
    639072(Parallel  Processing).
    The performance could be slow because of the wrong control parameters
    used for packaging.
    You can change the package size for the data extraction.
    Also note that changing the package size in the transaction SBIW
    would imply a change for all the extractors. Instead, you could
    follow the path in the bw system.
    Infopackage (scheduler)    > Menu 'Scheduler'   > 'DataS. default data
    transfer'   > maintain the value as 1500 or 1000(This value is variable)
    The package size depends on the Resources available at the customer side
    (The no of parallel processes that could be assigned =
    1.5 times the no of CPU's available approx.)
    Question 2 : On executing transaction RSA3 I get records but I find 0
    records when I load data from BW request.(No Data Available)
    Suggestion 2: First check if there are any entries in the table
    CRMD_ORDER_INDEX.Only if there are entries in this table you can
    extract records.
    If this is not the case then,
    It is possible that the user does not have sufficient
    authorities for extraction of  the relevant objects.
    Additionally, please review and implement the following notes
    615670
    161570
    150315
    618953
    If you are in the release 4.0 then
    To do BW extraction with the user please see that the following
    authorization object exists(display mode is enough):
    CRM_ACT, CRM_OPP, CRM_LEAD, CRM_SAO, CRM_SEO, CRM_CO_SE, CRM_CO_SC
    CRM_CO_SA, CRM_CON_SE, CRM_CMP, CRM_ORD_OP, CRM_ORD_LP, CRM_ORD_PR
    CRM_ORD_OE, CRM_CO_PU, CRM_CO_PD, CRM_ORD_PO
    (all these objects are linked to transaction crmd_order).
    Question 3 : The Deltas for my data source are not extracted . What can I do?
    Suggestion 3: Please check the following.
    Please Check if the services have been generated in transaction GNRWB.
    If they are not active(not marked 'X' before their names) then activate
    the services following the steps here.
    Go to transaction GNRWB
    Select BUS_TRANS_MSG
    Select (on the right, the services) : BWA_DELTA3, BWA_FILL, BWA_queue
    Press Generate.
    Also check  for the following:
    1. The delta should have been initialized successfully.
    2. Confirm that all Bdocs of type BUS_TRANS_MSG
       are processed with success in SMW01.
    3. If there are queues in SMQ1 with erroneous status then activate
       these queues.
       In Transaction SMQ1 if there are Queues existing with
       names beginning with CRM_BWAn (n is number) then
       activate these queues in the same transaction.
    4.a)If required activate the datasource
        Go to transaction BWA5   > select the required datasource and
        activate.
    4 b) The Delta may not be active ,activate the delta in BWA7 by
      selecting the name of the datsource and pressing the candle icon for
      'activate delta'.
    5. In BW system
       Go to transaction RSA1   > modeling   > infosources   > select the
       infosource   > right mouse click on the selected
       infosource   > choose option replicate datasource
        Activate the infosource.
    6. Go to the scheduler for the infosource   > select delta  in the
        update  >choose the option PSA only (in the Processing tab)
        > start immediately
    Check the entry in the RSA7 in the OLTP(CRM system)
    Question 4: How can I extract the fields, which are not provided in the standard  data source extraction .
    Suggestion 4: Follow the steps mentioned below.
    1. Enhance Extract Structure with the required fields. (Create & include
       an append structure to the extract structure via transaction RSA6).
    2.a) Release the fields of the append  for usage. (  To do this, double
       click on the Datasource and remove the flags in the column 'Hide
       Field' for all fields of Append. )
    2.b)If the new fields cannot be seen in the extract structure of
        the transaction BWA1 then change and save the datasource, and then
        activate it in RSA6.
    3. Define your mappings in BADI (CRM_BWA_MFLOW) to fill these fields.
    Goto SPRO .
    Follow the path ->
    SAP Implementation guide ->Implementation with other mySAP components ->
    Data transfer to the Business Information Warehouse->
    Settings for the application specific datasources (CRM)->
    Settings for BW adapter->
    Badi :BW adapter :Enhancement of datasources in messaging flow.
    4. Replicate the new Datasource to BW.
    5. Expand the Communication Structure in BW.
    6. Maintain transfer Rules for the new Datasource.
    7. Activate the trasfer rules and perform the upload.
    Question 5:  I am unable to extract  user status correctly.What should I
    do?
    Suggestion 5 :Check the following notes
    531875
    616062
    713458
    700714
    765281
    Question 6 : What can I  do when the activity/Opportunity/Complaint
    reasons(Code,CodeGruppe,Katalogart)  are not extracted.
    Suggestion 6 :Check the following notes
    481686
    516820
    603609
    617411
    711146
    Question 7:Deleted opportunities are not reflected in BW.
    Suggestion 7: Check the note 706327.
    Question 8: How do you  activate the metadata?
    Suggestion 8:CRM BW adapter meta data has to be activated first before
    it is available in the system. You can use Transaction BWA5 to copy the
    meta data for selected DataSources. You can reach the transaction via
    the IMG maintenance 'SAP Reference IMG -> Settings for SAP Business
    Information Warehouse -> Activate BW Adapter Meta Data'. For more
    information, see the documentation on the IMG activity 'Activate BW
    Adapter Meta Data'.  (Note 432485)
    Question 9: I donot get any records for the delta upload of my attribute
    datasource(s).What is to be done?
    Suggestion 9: In case of attribute datasources, it is possible that the
    entry for the GUID is missing in the table SMOXAFLD.
    If , for example the datasource 0CRM_OPPT_ATTR is not giving deltas
    then you can follow the steps:
    1)If Delta process is active for the attribute datasource e.g.
         0CRM_OPPT_ATTR,  then stop the delta process in the BW
         system 
    2) In the CRM system, Make the entry in the table SMOXAFLD
       for the datasource with the Key
       as  0CRM_OPPT_ATTR     GUID 3) Save the entry.Activate the datasource                           4) Check that the above entry is replicated in smoxafld_s also    after this.               5) Create a transport request manually for the following    object             R3TR   SMO4   0CRM_OPPT_ATTR    
    Question 10: What do the status BWSTONESYS0 , BWSTONEUSS0,BWSTTECSYS0 and various other BW status mean ?
    Suggestion 10: The BW status are used to extract system and user defined
    status.
    The BW status are defined in the customization settings in SPRO.
    Check for-> Status Concept for BP/Product/CRM objects
    Here goto-> Process user status You will find the documentation attached here for the user status. Going inside the transaction you will find the status groups USS0, ZIOP,ZMOP etc. The names of the various BW status are derived from this For ex. BW + ST+ One + USS0 gives the name of the field BWSTONEUSS0 or BWST + ONE + ZMOP = BWSTONEZMOP (Master opportunity values) (which means BWST + (status group name) + status object group name) Double clicking on any of the object groups will take you to the values that these status can have . For ex. BWSTONEUSS0 in your system can have values E001 ,E002,E003,E007 which will be shown in RSA3 as BW status values 1,2,3,7, respectively.
    Similarly we have Goto -> Process system status (in SPRO). Here you can get the values for the system status in exactly the same way as BWSTONESYS0(Lifecycle status) , BWSTTECSYS2 (Error) etc. In RSA3 you get the names as BW status, To know which corresponds to which status here,Goto the record list in RSA3 . Here goto Settings - Layout -Current . Right click -> Press Show technical field names . You will be able to see the BW status names and will be able to adjust the layout accordingly.

  • SOLMAN 7.1 SP10 CRM UI Service Desk - How to clear / remove Message Processor on a particular status

    Hi Experts,
    I have a requirement to remove the stated Message Processor, when the incident / Service Desk ticket is being saved using a particular status (Eg: Sent to Level 1).
    Appreciate if someone can guide me how this can be done (whether using simple PPF (tcode SPPFCADM) or we are forced to use BFR+
    Thanks in advance
    Regards
    Shahul

    The solution is here
    SOLMAN 7.1 CRM UI - "Reported By" Empty
    Thanks to Ash.

  • How to create complaints with reference to ECC Billing document (CRM 7.0)

    Hi experts!
    I use ECC 6.0 and CRM 7.0.
    I have to create CRM complaints (ZCLR - CLRP) with reference to ecc billing documents.
    I read the following topics and help:
    1. How to create complaints with referenceto ECC Billing document
    2. Re: How can we transfer billing documents from SAP ERP to CRM 2007?
    3. http://help.sap.com/saphelp_crm70/helpdata/en/46/029ba32e675c1ae10000000a1553f6/frameset.htm
    Made these settings:
    1. Define the Business object type
    Goto SPRO>CRM>Transaction>Settings for Complaints>Integration>Trnsaction Referencing>Define Object types for Transaction reference
    2. Assign Business Object Types to Transaction Types
    Goto SPRO>CRM>Transaction>Settings for Complaints>Integration>Trnsaction Referencing>Assign Business Object Types to Transaction Types
    3. Implement a BADI - CRM_COPY_BADI_EXTERN.Check Implementation CRM_COPY_BADI_BILLDO for more information on the coding for referencing the ECC Billing document.
    Goto SPRO>CRM>Transaction>Settings for Complaints>Integration>Trnsaction Referencing>BAdI: Create Complaint with Reference to External Transaction.
    but still do not know,
    1) if I should pre-replicate billing documents into CRM ?
    2) Or, the system uses the RFC to find these documents in ECC to create reference?
    Please help me.
    Best regards Kostya.
    Edited by: Kostya Khveshchenik on Oct 20, 2010 2:09 PM

    not resolved =(
    Edited by: Kostya Khveshchenik on Nov 19, 2010 8:50 AM

  • I am trying to find out how to assign files with particular extensions to the appropriate software. At the moment when I create a file using Word it is apparently given the extension .docx but Word doesn't recognise its own files. How do I alocate th

    I am trying to find out how to assign files with particular extensions to the appropriate software. At the moment when I create a file using Word it is apparently given the extension .docx but Word doesn't recognise its own files. How do I allocate the extension .docx to Word? There used to be a way of doing it, I think under "Preferences" but I can't seem to find it.

    Still in the same location:
    File > Get Info > Open with (select) > Change All (button)

Maybe you are looking for

  • Invoice Tax left after create credit memo (Receivable)

    Hi All, I have problem after creating Credit Memo(CM) in Receivable. The invoice line become 0 but invoice tax still appear. It's caused the tax in CM is 0, even the line value have match value. Can anyone help me? Best regards, Erie

  • Jdeveloper BPEL designer. not running

    Hi, Again i installed patch 1,2 &3 but when double clicking on the Jdeveloper designer it just close i'm not able to run it. Any solutino to fix this ?? PS: thsi happend right after i logged in to the BPEL console using the Default password! before i

  • Viewing photos on iPad

    Is there some way to use iPhoto on your Mac so that when you sync with the iPad, you can see some of the information (e.g. date, description) iPhoto attaches to the photos, when you browse the albums?

  • RING TONES DOWNLOAD ON NOKIA C2-01

    Recently purchased NokiaC2-01 mobile, want to download ring tone from web site. I Get a  text code to my mobile to input into web page, but then do not get text with download instructions. Any one with same problem -? or than can advise -????? drivin

  • What are .spc files in Solaris systems?

    I was tasked to remove certain certificate files as a security messure, but I cannot find any detailed information what .spc files are. I performed a search on two Solaris 9 systems and this is what I found: /usr/openwin/share/etc/devdata/profiles/kc