Creating Quotation directly in ISA

Hi,
We are using ECO 5 on ECC.
Currently in ISA when creating a Quotation, first an Inquiry is created and then somebody has to convert the Inquiry to a Quotation. My question is can we setup ISA to create Quotations directly or  "with reference to" an Inquiry (without any customer support people looking at an Inquiry and creating a Quotation).
Thank in advance,
Rajiv.

Paul,
Thanks for the reply. The way it is in ECO is -
- The web user creates a 'Quotation' in ECO but in SAP it actually creates an Inquiry.
- The employee of the client then review the Inquiry and creates a Quotation based on the Inquiry, using  "Create with reference to" .
- After this the web user is able to view the Quotation and save it as an Order.
I want to eliminate the second step. by any of the below options (if these are possible)-
- Directly be able to create an Quotation by ECO.
- Have an action so that as soon as an Inquiry is created it converts it to a Quotation. (My functional knowledge is limited, more of a web guy).
- execute a BAPI in ECO which would do the conversion.
here is some revelent help -
http://help.sap.com/saphelp_crm40/helpdata/en/ac/94cd9532cea440baae9ba7fffe6375/frameset.htm
Thanks
Rajiv

Similar Messages

  • Project Costing for Creating Quotations and Man power planning

    Hi All,
    I need advice about the following issues:
    1.I need to do costing for projects so that i can create quotations.
    Some times i have Sales Enquiry and some times there is no enquiry.Also sometimes they create PRs rest they are directly issuing POs.
    Pls suggust which cost planning i should do.if i am doing Network costing by assging the material componnets to various activitites,but if they dont prefer PR generation then what should i do.
    2.The project are turnkey so lot of departments are involved so how i plan manower as lot of cost centers are involved but they want to plan the total manpower seperately,
    Muzamil

    Hi,
    1. Costing for the Quotation: For you I recommend to go for the Easy cost planning option.
    Please go through the following link:
    http://help.sap.com/saphelp_47x200/helpdata/en/86/98853478616434e10000009b38f83b/frameset.htm
    2. For the workforce planning: you can carry out in SAP via capacity planning and if you wish to do it outside SAP then only the cost can be captured for the labour cost via activities in Project System.
    Please see the link below:
    http://help.sap.com/saphelp_47x200/helpdata/en/ed/b7853488601e33e10000009b38f83b/frameset.htm
    For the configuration purpose:
    http://help.sap.com/saphelp_46c/helpdata/en/3d/72369adc56d11195100060b03c6b76/frameset.htm
    Reward points if found useful.
    Revert back for any other questions.
    Thanks!

  • Selected Quotations directly not comparable - ME49

    Dear All,
    I had created 2RFQ and then maintained the quotation in ME47 for 2 vendors.
    Now when i am comparing in ME49 system giving Exception log as  "Quotation item not yet maintained".
    Giving message that  "Selected Quotations directly not comparable".
    Please suggest.
    Regards,

    Ustav/Manohar,
    Thanks for your comments.
        -  Same material group using in both Quotations.
        -  Same purchasing organization using for both Quotations.
    Price comparison is working fine for services but not working for materials. Only thing I observe is, The amount in the item conditions(In ME47) of Quotation is not populating. When I come back then it is showing 0.00 in Net Price.
    Is this the issue with Condition type related, if it is what need to be maintained ?  We are using PB00 condition type here.
    Response will be appreciated.
    Regards,
    Ranjith.

  • Create quotation based on notification

    Hello All,
    Can any one tell me hwo to create quotation based on notification.
    I know the BAPI's BAPI_QUOTATION_CREATEFROMDATA2 has to be used to create quotation
    i get diffrent errors like
    1) in sufficient parameters
    2) Sales document  was not changed
    I don't know what these error means and How to solve it.
    Here is my code
    data: ls_quotation_header  type bapisdhd1,
          ls_quotation_headerx type bapisdhd1x,
          lt_items             type table of bapisditm,
          lt_itemsx            type table of bapisditmx,
          lt_partners          type table of bapiparnr,
          ls_partner           type bapiparnr,
          ls_item              type bapisditm,
          lt_return            type table of bapiret2,
          ls_return            type bapiret2,
          ls_itemx             type bapisditmx,
          ls_diadr             type diadr,
          lv_parnr             type ihpa-parnr.
    ls_quotation_header-sales_org = '1000'.
    ls_quotation_header-distr_chan = '10'.
    ls_quotation_header-division = '20'.
    ls_quotation_header-doc_type = 'AS'.
    ls_quotation_header-ref_1_s = '63693'.
    lv_parnr = ls_quotation_header-ref_1_s.
    ls_quotation_headerx-notif_no = '000350000002'.
    *ls_quotation_header-SALES_GRP = 'SOG'.
    *ls_quotation_header-SALES_ORG = '0001'.
    *ls_quotation_header-DOC_TYPE
    *PURCH_DATE
    ls_quotation_headerx-sales_org = 'X'.
    ls_quotation_headerx-distr_chan = 'X'.
    ls_quotation_headerx-division = 'X'.
    ls_quotation_headerx-doc_type = 'X'.
    ls_quotation_headerx-ref_1_s = 'X'.
    ls_quotation_headerx-notif_no = 'X'.
    *ls_quotation_header-SALES_GRP = 'X'.
    *ls_quotation_header-SALES_ORG = 'X'.
    *ls_quotation_header-DOC_TYPE
    call function 'CONVERSION_EXIT_ALPHA_INPUT'
      exporting
        input  = lv_parnr
      importing
        output = lv_parnr.
    break-point.
    call function 'PM_PARTNER_READ_MASTER_DATA'
      exporting
        parnr                  = lv_parnr
        nrart                  = 'KU'
      importing
        diadr_wa               = ls_diadr
      exceptions
        no_valid_parnr         = 1
        no_valid_parnr_today   = 2
        no_authority           = 3
        parvw_and_nrart_inital = 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.
    elseif sy-subrc = 0.
      move-corresponding ls_diadr to ls_partner .
      append ls_partner to lt_partners.
    endif.
    ls_partner-partn_role = 'AG'.
    ls_partner-partn_numb = lv_parnr.
    append ls_partner to lt_partners.
    *ls_item-hg_lv_item = 5.
    *ls_item-material = 31999.
    *ls_item-sales_unit = 'LE'.
    *ls_item-item_categ = 'ZEQU'.
    *APPEND ls_item TO lt_items.
    *ls_itemx-hg_lv_item = 'X'.
    *ls_itemx-material = 'X'.
    *ls_itemx-sales_unit = 'X'.
    *ls_itemx-item_categ = 'X'.
    *APPEND ls_itemx TO lt_itemsx.
    call function 'BAPI_QUOTATION_CREATEFROMDATA2'
      exporting
    *   SALESDOCUMENTIN                =
        quotation_header_in            = ls_quotation_header
       quotation_header_inx           = ls_quotation_headerx
    *   SENDER                         =
    *   BINARY_RELATIONSHIPTYPE        = ' '
    *   INT_NUMBER_ASSIGNMENT          = ' '
    *   BEHAVE_WHEN_ERROR              = ' '
    *   LOGIC_SWITCH                   =
    *   TESTRUN                        =
    *   CONVERT                        = ' '
    * IMPORTING
    *   SALESDOCUMENT                  =
      tables
       return                         =  lt_return
       quotation_items_in             =  lt_items
       quotation_items_inx            =  lt_itemsx
        quotation_partners             = lt_partners
    *   QUOTATION_SCHEDULES_IN         =
    *   QUOTATION_SCHEDULES_INX        =
    *   QUOTATION_CONDITIONS_IN        =
    *   QUOTATION_CONDITIONS_INX       =
    *   QUOTATION_CFGS_REF             =
    *   QUOTATION_CFGS_INST            =
    *   QUOTATION_CFGS_PART_OF         =
    *   QUOTATION_CFGS_VALUE           =
    *   QUOTATION_CFGS_BLOB            =
    *   QUOTATION_CFGS_VK              =
    *   QUOTATION_CFGS_REFINST         =
    *   QUOTATION_KEYS                 =
    *   QUOTATION_TEXT                 =
    *   EXTENSIONIN                    =
    *   PARTNERADDRESSES               =
    regards,
    Lisa

    In the meantime we have found the solution to this problem. 
    The objectkey must contain the notification number (12 digits):
    <b>METHODS</b>
    000001  HEADER     CREATETONOTIF  %00000000001000010000188
    000001  OPERATION  CREATE         %000000000010010
    000001             SAVE           %00000000001
    Kind regards,
    Lieselot

  • Filter on the reports created using DIRECT DATABASE ACCESS in obiee 10g

    How do i filter on the report that is created by using DIRECT DATABASE ACCESS in obiee 10g?
    I have reprot A with link to report B, report B is created using DIRECT DATABASE ACCESS. so it is just a table, but i need to filter out 2 columns.
    here is the query in REPORT B:
    select strm, acad_group, crse_id, class_section, count(emplid) from v_crse_enrl
    group by crse_id, strm, class_section, acad_group;
    the link in REPORT A:
    '<a target="_blank" href="'||VALUEOF("bi_link")||'Go&Path=CF_CROSS_TEACHING_LIST&ACTION=Navigate&col1=STRM&val1='||view1_DIMEN.STRM||'&col2=CLASS_SECTION&val2='||TRIM(view1_DIMEN.CLASS_SECTION)||'">' ||view1_dimen.class_id||'</a>'
    from this link to report B.
    thank you!!

    I didnt tested using url, but the same works with using presentation variables.
    To your direct sql add where clause for those two columns like WHERE col='@{col1}' and col ='@{col2}'
    and try to run from url.
    let me know updates

  • "Create quotation for order" is not allowed (ORD 80000119 )

    Hi,
    After creation of service order I want to create quotation then  system gives error massage as below,
    "Create quotation for order" is not allowed (ORD 80000119 )
    Message no. BS002
    Diagnosis
    The transaction 'Create quotation for order' is not allowed for  ORD 80000119, because no status is set to permit it.
    System response
    You cannot carry out the transaction 'Create quotation for order'.
    Procedure
    You can carry out this transaction if you set a user status, which permits 'Create quotation for order'.
    Thanks & Regards
    kapil

    Kapil,
    Check the System status and user status of the order. Quotation can be created only before releasing the order (REL). or Any user status that may prevent creation of Quotation.
    Babu

  • OIM11gR2 - Is it possible to create a direct link to a specific area in the oim plattform?

    hi,
    is it possible to create a direct link to specific area in the oim self service plattform? for example a link to the users account list, or a link to a specific resource account?
    br,
    max

    Hi,
    Yes, Its very much easy in R2 as compared to R1. You can use following link to achieve your requirement:
    http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/uicust.htm#BABIDJAB
    ~J

  • Problem with FM for creating quotations

    Hello,
    we are trying to use the FM BS01_MM_QUOTATION_CREATE for creating quotations in an ECC6.0.
    Following failure keeps reappearing:
    " In programme "SAPLBOS04 " in include "LBOS04F01 " in line 711
    following syntaxerror occurs: "The data object "IESLL" does not have a component called "EXTDES". "
    Any options for this?
    Regards
    Micha

    Hi André,
    sorry, cannot provide an answer. I am waiting for an answer from SAP support.
    Best regards,
    Micha

  • Z quotation type not getting picked up in create quotation workcenter link

    Dear Webui experts,
    We have a custom quotation type created from copying the standard one AGIS.
    The workcenter link for create quotation works fine and displays list of quotations standard available in the system, but does not display the custom created quotation.
    And the following message is displayed;
    "Details" No transaction type is available for creating a transaction. On clicking on details its says either the transaction type is not configured or the user doesnot have authorisation. I have checked both and that is not the issue.
    The pfcg fole has create authorisation for this transaction type in the authorisaion objects;
    CRM_ORD_PR
    CRM_ORD_LP.
    I have checked for any SAP notes with th system message but did not find solution.
    Can you pleaes guide what needs to be done
    Thanks
    Satish

    Thanks Pankaj and Kunstej,
    The problem still exists.
    I made the entry for 'CRM webclient UI' in the channel for the Z transaction type for quote. But still it is not appearing in the webui. Rather all other transaction in the sytem disappeared. As you explained it was because if I maintain it for one it has to be maintained for all.
    So I had to revert the channel entry 'CRM webclkient UI' as it actually did not solve the problem.
    Also I noticed that other custom transaction types are visible in webui although ''CRM webclient UI' entry is not maintained for transaction type in channel. so it seems that the channel entry is not mandatory.
    So may be problem is elsewhere. Please guide me if I need to check anyting else.
    Also I was curious that anywhere (unlike R/3) in the transaction type we do not tell the system that it is a quotation or order, then how does system know that it has has to popuplate certain transaction types in 'Create quotation' link and certain in the 'Create Order' link.

  • Change VA21 Screen Title from "Create Quotation" to "Create Reservation"

    Hi Experts,
    We are trying to change/edit the selection screen title of Transaction VA21 from "Create Quotation" to "Create Reservation".
    The screen doesn't display the expected output when we changed the transaction title in SE93.
    Please guide us on what to do.
    I am generous enough to reward points for any contributions.
    Many thanks,
    Reymar Ellazo

    You need to change the TITLE which is used for that screen.
    Go to SE41.
    Put the program name SAPMV45B.
    Select the "Title List"
    Here You can see the A21, A22, A23 for the Quotation.
    You need to change them to Reservation.
    You will need the Access key to change this.
    Regards,
    Naimesh Patel

  • Create quotation item text thru bdc

    hi all,
    I have created  quotation upload BDC in that
    how to create item text thru BDC program..
    i used save_text function module,
    after creating quotation i included this logic, but i want create text at the same time while creating quotation.
    concatenate i_zvbap1-vbeln  i_zvbap1-posnr into v_textname.
    move v_textname to tname-tdname.
    move 'VBBP' to tname-tdobject.
    move '0001' to tname-tdid.
    move sy-langu to tname-tdspras.
    append tname.
    read table i_upload1 with key matnr = i_zvbap1-ematnr
            if sy-subrc = 0.
              lines-tdformat = '*'.
              move i_upload1-refid to lines-tdline.
              move i_upload1-refid to i_zvbap1-refid.
              modify i_zvbap1.
              append lines.
              clear lines.
            endif.
          endloop.
          call function 'SAVE_TEXT'
            exporting
              client          = sy-mandt
              header          = tname
              insert          = 'X'
              savemode_direct = 'X'
            importing
              newheader       = tname
            tables
              lines           = lines
            exceptions
              id              = 1
              language        = 2
              name            = 3
              object          = 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.
    how can i achieve this
    thanks

    thanks for ur reply..while creating quotation i have to create text...
    but i think i need to pass parameters like
    NAME
    OBJECT
    ID etc..
    name will be concatenation of quotation number and item number, before creating i will be not having those info..
    can u explain me in detail...
    what parameters i have to give
    thanks

  • How to create playlist directly onto Ipod Classic?

    How to create playlist directly onto Ipod Classic?

    Create an On The Go Playlist. For instructions on how to do this, either see your iPod's User Guide or this article.
    http://ipod.about.com/od/introductiontotheipod/ht/otg_playlist_ip.htm
    B-rock

  • Create quotation and contact person

    Hello Experts,
    I have an <removed by moderator> requirement mentioned below:
    Our client will send some Quotation information along with Contact Person data from a E-commerce portal to ECC using Webservice. And then I have to:
    1) Create a Contact Person for Bill To Party Customer. 
    2) And when Contact Person gets created then assign this Contact Person to Bill To Party
    3) create Quotation assigning this contact person.
    All this processing has to be done in background mode.
    Kindly provide any lead, <removed by moderator>
    Thanks,
    Message was edited by: Manish Kumar

    Hi Malik,
    Please refer the below SCN links for creating Contact Person.
    http://scn.sap.com/thread/159981
    http://scn.sap.com/thread/1237915
    To create quotation, use the BAPI - 'BAPI_QUOTATION_CREATEFROMDATA2'.
    Hope, this helps.

  • HowTo create a direct link to an approval

    Hi all,
    did someone of you tried to create a direct link to an approval?
    The link looks like this: "u2026/ProcessRequest?RequestID=12345&TaskID=111&EntryID=01234"
    So my question:
    Is it possible to use SQL statements in these scripts to read out the needed data from "MXP_PROVISION"?
    I have tried out this:
    Configuration in "EMailNotifiaction_Approval" Pass:
    MSKEY     %MSKEY%
    MX_APPROVERS    %MX_APPROVERS%
    MX_ENTRY_REFERENCE     %MX_ENTRY_REFERENCE%
    Coding in the script of "Next data entry" (just the relevant part)
    var entryReference = Par.get ("MX_ENTRY_REFERENCE");
    var sql = "SELECT MSKEY FROM MXP_PROVISION WHERE AUDITREF = " + entryReference;
    var sqlresult = "";
    sqlresult = uSelect (sql);
    I don´t get a Value into "sqlresult". I think one problem is that he doesn´t read the value of entryReference
    Br,
    Philip

    Thank you Thomas,
    the privilege was the problem.
    Maybe someone of you had the same problem.
    I have solved it like this now: (All with * marked lines can be found in the HowTo guide)
    *var pendingValue = Par.get("MSKEY");
    *var approverList = Par.get("MX_APPROVERS");
    *var entryReference = Par.get("MX_ENTRY_REFERENCE");
    *// uErrMsg(logLevel,"Approver List: " + approverList);
    *var approvers = new java.util.Vector();
    *approvers = uSplitString (approverList, "|");
    *var i = 0;
    *var result;
    *var emailAddress = "";
    *var idStore = uGetIDStore();
    *var emailAttribute = "%$MAILATTRIBUTE%";
    var sql = "SELECT APPROVALTASKID, AUDITREF, PARENTMSKEY FROM MXWV_PENDING_APPROVALS WHERE MSKEY = " + pendingValue;
    var sqlresult = "" ;
    sqlresult = uSelect(sql);
    var part = new java.util.Vector();
    part = uSplitString (sqlresult, "|");
    actionid = part.get(0);
    auditref = part.get(1);
    usermskey = part.get(2);
    // This line was made to get the unique name of the requesting person
    var sqlname = "SELECT AVALUE FROM MXIV_SENTRIES WHERE (ATTR_ID = 2 AND MSKEY = " + usermskey + ")";
    var name = "";
    name = uSelect(sqlname);
    var url = "http://10.44.110.68:50000/webdynpro/dispatcher/sap.com/tcidmwd~workflow/ProcessRequest?RequestID=" + auditref + "&TaskID=" + actionid + "&EntryID=" + pendingValue;
    I think there are much more solution. (Iam new at IdM )
    Br,
    Philip

  • Create quotation from DP81

    Hello Experts,
    I run DP81for creating quotation from the sales pricing which comes from the planned cost of my project.
    Dynamic items are created based on the activity type. Eg: Junior consultant - 100 hrs - $10000,
    Senior Consultant-100hrs-$20000
    When I convert the dynamic items to quotation, each dynamic items are converted to each quotation line item.
    I dont want this to happen because I am going to send quotation to my customer as services. Eg: Line item 1 - Implementation service - $30,000. I want all the dynamic items aggregated to one quotation line item.
    How to do this? I have tried with "individual quantity not checked". I have selected Activity type as the characteristics.
    Any thoughts would be great for me.
    Regards
    Srinivasan Desingh

    Hello all,
    To achieve this,
    1. Check the check box - 'Product' in the DIP profile characteristics.
    2. Configure the pricing in the item category of the service level material as statistical.
    This will aggregate all the dynamic items into your Service level material in the sales order/contract and shows the value in the service level material.
    Regards
    Srinivasan Desingh

Maybe you are looking for

  • Purpose of L_TCODE

    What is the purpose of L_TCODE? Isn't it sufficient if we control the access using S_TCODE already? It seems that in 4.6C, when accessing LI11N, system only checks if L_TCODE.TCD = LI11. So all roles with S_TCODE.TCD = LI11N also have L_TCODE.TCD = L

  • Snow like display on screen

    Hi everyone, I've been experiencing an issue on and off for sometime now which I think is odd. I have an external lcd monitor connected to my MBP (2009) via an apple mini displayport and an HDMI cable. Occasionally, after the MBP turns the external m

  • When I go to the iTunes store I cannot get the content to play.  Also, much of the artwork is missing

    Just recently, I went into iTunes.  My iTunes music library is fine.  However, when I go to the iTunes Store I am unable to access the content or preview songs.   Also the artwork in the iTunes Store is missing.   Any suggestions?  Thanks for the hel

  • My ipad mini just stopped working and will not turn on again.

    I tried holding the home and power buttons, but one of two things happen; either the white apple comes up (and shuts off) or the screen goes to the "iTunes" screen (and shuts off).  What gives?  It's charged to approximately 90% and I am right in the

  • Problem with the synchronization by Desktop Software (6.1.0.35)

    Hi, i have a big problem with the  synchronization by Desktop Software (6.1.0.35). When I installed DS i set to folder sync photos not as ... Documents / BlackBerry / photo (created by default), but i chose ... Documents / Pictures / Photos from the