How to attach ERP smartform to a ERP Quotation generated from CRM 7.0

Hi,
I have this requirement of calling the ERP smartforms in CRM 7.0 where ever applicable.
I don't want to use Transaction Launcher and also creating the same smartform in CRM would be double work.
1. Can we attach a smartform of ERP to LEAD/OPPORTUNITY when we click on the MORE button on toolbar and choose PREVIEW OUTPUT/ TRIGGER OUTPUT. I think in ACTION we can just assign a smartform which is created in CRM system.
Actually this is my client requirement and since my first CRM implementation do't know whether this is a valid point and how to go on.
2. Also on ERP Quotation view page (toolbar) there is no button called MORE to PREVIEW OUTPUT. Can we assign a smartform to ERP Quotation?
If any body can direct me on this issue would be of great help and full points will be given.
Thanks,
Jaya

Hi,
as far as I know there is no standard way of doing this in CRM 7.0.
I imaging it would be possible to call an ERP smartform from CRM by :
- writing an RFC capable function module in ERP that wraps the call of the smartform and returns the generated PDF data.
- writing a function or method in CRM that calls the ERP function module and displays the returned data.
In the lead and opportunity the print preview is done by having a print relevant action in the action profile assigned to the transaction type and I guess for these it should be possible to call a function module by creating an own smart forms method.
But I think this is not possible for an ERP quotation, so you would have to create an own button. In the event handler for this button, one could call the ERP function module and display the result.
Paul

Similar Messages

  • How to Attach a Smartform to a BOR method

    Hi Friends,
    I had a query How to Attach a Smartform to BOR method.To attach a customized Smartform to a Customized BOR Object.

    Hi,
    In the BOR object, create a method say display_SF. Now in the ABAP properties for that method give "OTHER" option.
    Now in the BOR object, you can find the program which is used. Inside that program, You need to write the code to fetch the required data (ONLY BASIC REQUIRED DATA WILL BE ENOUGH) and call the smartform by passing all the print parameters and all the required data for that smartform.
    Now inside the smartform, with imported required data, you can write all the logic and data fetch etc for the printouts.
    The following sysntax can be used to fetch the required data into the method and can use to pass the same while calling the smartform.
    SWC_GET_ELEMENT CONTAINER 'Plant' PLANT.
    Regards,
    Harish

  • How to attach a smartform in to an e-mail

    Hi All,
        My scenario is i wants to send a quotation details to customer for acceptance for this i prepared a smartform which contains quotation details. I wants to send this information to Customer for this i created a Outgoing email activity can i send by using this activity, if yes let me know how to attach smartform in to this activity and how this ourgoing email will reach to customer , what settings i need to do.
    Thanks in Advance.
    kumar.

    Hi,
    Go to SPRO Customer Relationhip management ->transactions->BasicSettings->DefineTransactionTypes.
    Here select your  order type and press on display appliction tool bar .
    you will see 5 different blocks.
    In Profiles block, for the field Action Profile select ZORDER_MESSAGES for email and ZORDER_MESSAGES_PRINT for printing.
    Thank You,
    Gajendra.

  • How to attach a smartform in BOR object

    Hi,
    I want to know how to attach a z smartform to BOR object? I tried to search out here but not able to have the result.
    Kindly provide the guidelines for it....
    Regards,
    Rickky

    Hi,
    In the BOR object, create a method say display_SF. Now in the ABAP properties for that method give "OTHER" option.
    Now in the BOR object, you can find the program which is used. Inside that program, You need to write the code to fetch the required data (ONLY BASIC REQUIRED DATA WILL BE ENOUGH) and call the smartform by passing all the print parameters and all the required data for that smartform.
    Now inside the smartform, with imported required data, you can write all the logic and data fetch etc for the printouts.
    The following sysntax can be used to fetch the required data into the method and can use to pass the same while calling the smartform.
    SWC_GET_ELEMENT CONTAINER 'Plant' PLANT.
    Regards,
    Harish

  • How to attach a MS Word document to Quotation/Sales Order?

    Hi all
    Can somebody let me know how to attach MS Word documents in Quotation (VA 21) or Sales Order (VA01) screens

    Hi,
    Please use the "Services for Object" Icon just below the menu bar in the Sales order overview screen for attaching any document into the sales order. Once you get into the drop down, select Create - Create Attachment" option.
    The attachment can be viewed from the same icon! In the drop down, select Attachment list!
    Hope, this helps!
    Thanks
    Siva
    Sorry,when I opened the message for replying, no one had replied till then. ***
    Message was edited by:
            Sivasubramanian Senguttuvan

  • How to attach a PDF / DOC file to quotation and refer to subsequent docmnt.

    Dear all,
    How can we attach a PDF or Word Document to Quotation Header and make it flow to Sales Order, Purchase Requisition generated from Sales order, Purchase Order, Outbound Delivery and Invoice documents.
    I can attach document at header by assigning a parameter value in User Profile (SU3). But it is not flowing down to Sales order and other documents.
    Your suggestions are most awaited and will be highly appreciated
    Thank you
    Raghu Ram

    Is there a way we can have the 'services for objects' icon show up in transactions such as VK11 and VK12. I have written to OSS and I am waiting for their response. Just trying all avenues for answer.
    Transactions VD01/VA01.... are all fine. But it is pricing master that is missing the ICON. The parameter id is set to SD_SWU_ACTIVE.

  • How to populate/import data in a XSD file generated from a webservice

    HI All,
      I have an XSD file generated from the webserive using the CRM FM E2C_DOWNLOAD_CRT_SCHEMA.
    I created a Adobe form with the Adobe life cycle designer using the XSD file.
    However Data will have to be entered manually in this adobe form and cannot be pre-populated with data, How do we pre-populate data in the Adobe form generated from XSD file of the above CRM FM.

    This is what you need:
    integer     li_fhandle, li_rcode = 1, li_sfound = 0, li_idx = 0, li_eqpos, i
    string ls_filename = 'C:\app.ini'
    string ls_line, as_key[], as_val[]
    string ls_section = '[General]'
    // OPEN INI FILE
    li_fhandle = FileOpen(ls_filename, LineMode!)
    IF IsNull(li_fhandle) OR li_fhandle < 1 THEN
      // DO NOTHING
    ELSE
      DO WHILE li_rcode > 0
      li_rcode = FileRead(li_fhandle, ls_line)
      IF li_rcode > 0 THEN
      IF POS(ls_section, ls_line) > 0 THEN
      li_sfound = 1
      CONTINUE
      END IF
      IF li_sfound = 0 THEN CONTINUE
      IF POS(ls_line, '[') > 0 AND POS(ls_line, ']') > 0 THEN EXIT
      li_eqpos = POS(ls_line, '=')
      li_idx++
      as_key[li_idx] = MID(ls_line, 1, li_eqpos - 1)
      as_val[li_idx] = MID(ls_line, li_eqpos + 1)
      END IF
      LOOP
    END IF
    FOR i = 1 TO li_idx
      messagebox('Key - Value',as_key[i] + ' = ' + as_val[i])
    NEXT
    // CLOSE INI FILE
    IF li_fhandle > 0 THEN
       FileClose(li_fhandle)
    END IF
    Adapt it to your needs... you probably should make it a function.

  • How to attach a smartform on a notification

    dear sdn,
    i am trying to add a smartform on a notification and when i am defining shop papers, i am getting a message "choose the key from the allowed name space"

    Dear Shah,
    While defining the shop paper, system asks for the program name, give your own z program there, and in that z-program, u can define the smart form and keep the next field as blank(since that is SAP script and not smartform).

  • How to discard skipped test results in XML report generated from TestStand

    Hello,
    I'm generating XML report from TestStand. I have more than 100 test cases & user has the flexibility to select the test cases to execute or to skip.
    Problem statement:
    1. In Configure\report options there is filter expression to filter test results to be logged. However, this filter is disabled for XML report.
    2. Is there a way to compress XML file using either encryption or any other methods?
    I understand that there would be two methods ideally for my problem statement #1 above:
    A. To have a workaround in reportgen_xml.seq to pragmatically log only executed test cases and discard skipped test results.
    B. Modify stylesheet supplied by NI to discard skipped test results.
    For problem statement #2 above:
    I am able to encrypt the data before logging it to XML. But I don't know how to modify the stylesheet to decrypt the same using either public/ private encryption keys. Can anyone bring in more ideas here !!!
    My preference would be to implement using #A above to reduce the XML file size which is ~4 MB will all test results (skipped + executed). If this is not possible my last option would be to implement using #B above
    I would appreciate if someone can help me for my problem statement? I'm using TestStand 2010
    Solved!
    Go to Solution.

    I have another solution and that is to actual discard the result before you get to the report stage.
    You can do this by use of the Override Callback SequenceFilePostResultList and if Skipped then discard the result from ResultList.
    Check out this link.
    Regards
    Ray Farmer

  • How to make a handling unit object (packing) automatically generate from inbound

    Hi guru,
    I just have a question which I am sure sure and puzzle, and hope you can give me an accurate information.
    Background:
    We are using EDI communication so that vendor can send us advance shipping notification and will lead to inbound delivery creation automatically.
    Question:
    We would like the vendor, when deliver the shipment for us to be packed base on our instruction, and we want the handling unit object to be created automatically upon inbound delivery creation from the EDI. How to do this in SAP?
    Thanks.
    Daniel

    if you are using message type DESADV / SHPCON then vendor needs to send the HU information in the E1EDL37(HU Header)  / E1EDL44 (HU Item) segment and during Inbound delivery creation system will update the IBD with HU . Have a look on the below standard Link to get more detail
    Delivery Interface - Shipping (LE-SHP) - SAP Library

  • How to replicate a customer from CRM to ERP?

    Hi you all!
    Can anybody help me!? A allready made the settings to replicate the ERP clients to CRM customers, but now I want that CRM be the leading system for customers creation, and I don´t know how to do the replication!
    Help Please

    Hi,
    For replication from CRM to ECC we need to go thru site setting in SMOEAC. This is what you need to do:
    1. Using tcode SMOEAC create a site for OLTP.
    2. Assign the subscription 'All Business Partner (MSG)' to this site.
    Please check this link for site creation information.
    http://help.sap.com/saphelp_crm50/helpdata/en/cc/da6289fd126e4581bbc4f509dede10/frameset.htm
    You can find more regarding site information in help.
    Hope this helps,
    Karuna.

  • How to Download Trial Version of SAP ERP 6.0 with Oracle?

    HI all,
                 Kindly help out how i can able to download SAP ERP 6.0 or Netweaver trial dump with oracle database in SAP Support portal.
    Awaiting for your valuable reply.
    Regard
    M.L.Gopinath

    Check if the Free Download Catalog has the trial version of PI7.0: http://www.sdn.sap.com/irj/scn/downloads
    Regards,
    Abhishek.

  • HOW CAN WE TRANSFER SAP DATA ---- ORACLE ERP

    HI MASTERS
    HOW CAN WE TRANSFER SAP DATA <----> ORACLE ERP
    BY USING LSMW . OK BUT IN REAL TIME HOW IS IT . WAY OF PROCESSING PLEASE TELL ME . AND ALSO PLEASE REPLY ABOOUT
    SCATT PROGRAM

    Also, when are we going to use the ff. when extracting SAP Data to BO:
    a. INFOSET
    b. Function Module
    c. Direct Table Query
    d. Unix Directory
    What are the advantages/disadvantages of choosing one over the other?
    Currently, we are using BO XI 3.0, can we have a direct connection between SAP & BO?
    Thanks in advance for any helpful information.
    Regards,
    Bale

  • How to transfer hierarchy level 1 or level 2  in Contract from CRM to ERP?

    Hi, Pro,
            I face a requirement that hierarchy in contract transfer from CRM to ERP by RFC, but the material number what we wanna to entry are maintained in hierarchy 3. Therefore after you entry the hierarchy 1 or 2 that not 3, it occur an error warning stop the process.
           Since I test manual entry a hierarchy by added a character '*" behind, it save and successfully archived that can using hierarchy 1, 2 and 3. I thought I solved the problem. But our ERP source is from CRM, so  the only confuse me is that  it can not transfer character '*' from crm to erp when it accour error like can match the hierarchy '12345*' .
          Pls help me solve this solution.
    Thanks a lot.
    Lorry

    I am using the bapi BAPI_CONTRACT_CREATEFROMDATA and BAPI_CUSTOMERCONTRACT_CHANGE.

  • How do replicate the contact person to ERP partner fuction from CRM

    All experts,
         I already replicated contact person from CRM to ERP,but the contact person just appeared in tab contact person in ERP customer general data.
         Actually,when i created contact person relationship in CRM,i could assgin contact person to a salse area,so  I want to replicate contact person to tab partner fuction in customer sales area data in ERP. pls give me a  light. thks
    Raymond J

    Hi Raymond,
    I believe the contact person in question is assigned only as a partner function in R/3. Therefore you will only see the usage of that BP as a partner function, but not the relationship specific data.
    You will need to create a contact person relationship for the BP.
    So the relationship specific data will not be visible for a contact person in R/3 which is only assigned as a Partner Function in R/3.
    Can you please check this on your system?
    I hope this helps.
    Best regards,
    Ita

Maybe you are looking for

  • Shared Stream not showing all shared photos on all devices

    So, we have setup a shared stream in Photos to share family moments.  The main issue we are experiencing is that on my iPhone I am not able to see contributions from one family member, but on my iPad they show up.  Both are iOS 7, and have been throu

  • Preview in browser stopped working

    Running CS4 version 10 build 4117 and today when I went to do some work I cannot use "preview in browser" Edit List has both firefox and IE listed but when I click the globe it tells me no browsers selected. tried removing browsers and re-selecting t

  • InDesign Link to specific page in a .pdf file

    I have an article index that I keep in InDesign.  Each item in the index points to a specific page in a separate .pdf file.  Is there a way, in InDesign, to create a link that will open the .pdf file to a specific page?  The InDesign file contains bu

  • Retrieving license codes...

    I recently purchased a new Intel Mac. I transferred all my data from my five year old eMac to my new iMac with little trouble. Most everything went fine, but I have hit a few small snags. Firstly my HP PSC1210 AIO printer will not work at all. It is

  • HP Software - photo printing

    I used to have a HP Inkjet 932C and All-In-One 2170 and the HP software that came with it allowed you to print multiple size photo prints on a 8.5"x 11".    For example, I want to print out three (3) 5"x7" photo prints on an 8.5"x11", or ten (10) wal