Default dynamic attributes and weightings on BID invitation

Based on certain business logic i need to default dynamic attributes and weightings on bid invitation transaction BBP_BID_INV,
I tried to do some code in method BBP_QUOT_CHANGE of BADI
BBP_DOC_CHANGE. The execution doesn't stop at that method as i put a breakpoint there.
However it does stop at  BBP_BID_CHANGE method, i could not use this method because et_weight internal table is not available there ( i need to populate something in weightings) although ET_DYN_ATTR is available.
Question is , for what purpose BBP_QUOT_CHANGE is used ?
Let me know if you have any inputs ..
-With Thanks
Alok Pathak

Hi,
  BBP_QUOT_CHANGE  method is used for QUOTATION.Whenever any change is done in the Quotation then this method is triggered.
BR,
Disha.
Pls reward pointsfor useful answers.

Similar Messages

  • Defaulting dynamic attributes and weightings for BID INVITATION

    Hi Friends
    I have a task at hand to default the dynamic attributes( some custom defined fields for the bidder) for bid invitation.
    Can anyone help me with this?
    Thanks in Advance
    Regards

    Hi Ankur,
    I assume you are looking for attributes automatically populated, when a user
    creates a bid invitation. Did you try to work with a template and define the
    bid invitation in the way required and create a bid invitation based on the template?
    Another option is to define the attributes for well defined categories and let the
    users use the "propose" button.
    Thanks,
    Claudia

  • Fixed values of dynamic attributes are not displayed for bid response

    Hi
    I have created a bid with dynamic attributes and have weighted the options with fixed values. I publish the Rfx (bid) and all is ok. The problem is that the fixed values are not displaying when doing a bid response.
    We are using SRM 7.0
    Can anyone help?

    No. Not yet. I think it is a bug. You should create an OSS message to SAP and ask them to pay special attention to the following code block:
    Class: /SAPSRM/CL_CH_WD_DODM_DYNATTR
    Method: /SAPSRM/IF_CLL_MAPPER~REFRESH
    At the end of the method, look for code context:
    IF lv_object_type = c_qte.
    *Set the Fixed Values Table to Invisible
        lv_visible = abap_false.

  • Send Bid invitation to Email and Fax

    Hi,
    I would like to know if is it possible to send the bid invitation to the vendors via Email and Fax.
    I'm looking in the PPF administration (transaction SPPFCADM) at condition configuration but i'm kidda lost....
    can someone help?
    Thank you,
    Joseph

    Hi,
    Pls see the foll related threads:
    email on  bid invitation publication
    Email on Bid Invitation publication
    Re: Bid Invitation Email Subject
    Re: Bid invitation email content text modification
    Re: email on creation/change of  bid invitation and auction
    Re: Bid invitation email content text modification
    BR,
    Disha.
    Pls reward points for useful answers.

  • Seeburger AS2 Adapter - Dynamic Attributes

    Dear all,
    We have a scenario where, we are sending an IDOC from our SAP system via XI to one of our partner using AS2.
    We have to manipulate the file name at the receiver end using the dynamic attributes of the AS2 communication channel.
    As per the documentation and the following threads
    Re: File to AS2 File Name? we have done the necessary configuration in the communication channel. The following activites are done
    Selected the checkbox "Use dynamic attributes"
    Under the Module tab
    In Processing sequence added a new entry
    Number 1
    Module Name : localejbs/Seeburger/solution/as2
    Module Type  : Local enterprise bean
    Module Key   :  "dynfile"
    Under the Module Configuration added the following details
    Module key  :  "dynfile"
    Parameter Name : "http://seeburger.com/xi/AS2/dtAS2FileName"
    Parameter Value : "DYNFILENAME"
    However, I understand that this configuration is incomplete, as somewhere i need to pass the value to the variable "DYNFILENAME".
    As per the thred Re: File to AS2 File Name?, Mr Srinivas Reddy mentioned 5 steps, however I am not clear about the step 3 & 4.
    FYI : What I want to map as the file name is the Parter Profile in the EDIDC40 segment of the idoc and the date+time stamp
    Many thanks for the help , in advance
    Regards : Bobby Bal
    Edited by: Bobby Bal on Sep 20, 2010 9:52 PM

    Hi,
    Use the below UDF in your mapping..
    public String FileName(String a,Container container){
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters()
    .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://seeburger.com/xi/AS2","dtSubject");
    conf.put(key, a);
    As per your requirement, Use Concatenate function  Idoc + Date + Time .
    Pass the resultant value to the UDF and pass this to any unused Target node.
    IDOC + Time+Date --> UDF --> Target node.
    In your receiver AS2 adapter, Click on use dynamic attributes and  Subject check boxes.
    If you want to use other Dynamic attributes like dtAS2FileName, dtAS2ContentType ..
    Simply replace the dtSubject with dtAS2FileName or  dtAS2ContentType . No need to use any modules.
    Thanks
    Deepthi.

  • Bidder Not able to filter Bid Invitations with custom fields

    Dear Community,
    Need some ABAP help.
    Know many experts are in our community.
    We have added 3 custom fields to the Bid Invitation and Bid header
    Coded Badi BBP_CUF_BADI_2 for them to appear in the Search criteria for Find Bid Invitation for both the logins(purchaser and bidder).
    The custom fields now appear in the Extended search for both.
    These custom fields extract values from custom tables.
    But we found that the search criteria seems to be filtering Bid Invitations only in the Process Bid Invitation screen(Find Bid Invitation) of the purchaser login.
    Template:       bbp_bid_inv/99/saplbbp_bid_inv_1010.html
    And NOT filtering Bid Invitations in the Process Bid screen(Find Bid Invitations and Auctions) of the Bidder login.
    bbp_quot/99/saplbbp_quot_ui_its_1010.html
    The ABAPer has already incuded the custom fields in structures INCL_EEW_PD_HEADER_CSF_BID and INCL_EEW_PD_HEADER_CSF_QUOT,
    What is required in addition so that the search criteria will work in the Bidder login as well??
    Thanks in Advance,
    Dinesh
    (Will appreciate with points)

    Thanks, Disha.
    We have alreday activated BBP_WF_LIST
    and tried some code in method
    BBP_WF_LIST_SOCO
    but did not help us.
    Can you suggest any specific code to try?
    You are right for template modification for values of this custom fields.
    If we do that Bidder CAN filter the BI correctly with these values of custom fields.
    But customer does not want that way because in future the values would be changing.
    and so it would be an additional task to correct templates.
    Also they have to redo these changes with every upgrade.
    So we are fetching the values from custom tables for these custom fields.
    Would like to again draw the attention towards purchaser's search with these custom fields.
    Why purchaser can search correctly with these custom fields fetching values from custom tables?
    Can we debug or take any hint from there?
    Any futher thoughts?
    Landscape - SRM 5.0 SP11 CLASSIC
    BR
    Dinesh
    Already raised an OSS for this issue.
    Will keep updated about any responce.

  • Standard process for PO creation from Bid Invitation or Bid

    Hi everybody,
    I would like to know what is the standard process to create local Purchase Order (i mean in a extended classic scenario) from Bid Invitation or Quotation.
    In the current process, Bid Invitation are created form Shopping Cart using Sourcing Cockpit. Then, Purchaser will send its Bid to supplier (by publishing Bid Invitation) using BBP_BID_INV transaction.
    Then, supplier will submit its Bid.
    At this step, what it is the standard process (does it exist ?) to create a Purchase Order linked to this Bid ?
    The need is to have a PO as follow-on document to Bid.
    Thank you to clarify this point.
    Regards.
    Laurent Burtaire.

    Hi,
    After the bids are submitted and when the bid invitation opening date arrives, there will be a map for you to compare the bids received.
    To see this map, go to BBP_BID_INV transaction and the map will be there when you search your document.
    When you click on this map, you will find one column for each of the companies that sent quotations.
    You can click on the company's name and then you need to click on button 'Accept', in order to accept the company's quotation.
    Then you click on 'Refresh'.
    Then you click on 'Create Purchase Order' or 'Create Contract'.
    In order for that to happen, you must have defined number ranges and document types for bid invitation, quotation and purchase order.
    Let me know if it helped.
    Regards,
    Henrique

  • Bid invitation query

    Hello Folks
    In EBP, there is a list of suppliers maintained.  When users create a Shop cart, where he donu2019t have source of supply. Now, he creates a bid invitation, now my question is how the suppliers will receive the bid invitation in version SRM 5.0 / SRM 6 and SRM 7. And their way of response to the received bid and how the bid invitation comes from the supplier into purchaser SRM system in all  the versions.
    Please let me know, looking for your reply.
    Thanks
    Edited by: santhosh.s on Mar 5, 2012 12:03 PM

    Hello Yanvi / Sahil
    Thank you for the replies.
    But my question here is, how the supplier (contact person) receives the bid is it via email and what all the possible ways the supplier can get it.
    second, how the supplier respond to the bid invitation received, is it again via mail or directly via portal (if so, he might need login details etc.).
    Can you all please tell me how this can be achieved in detail.
    Thank you in advance.
    Edited by: santhosh.s on Mar 5, 2012 1:25 PM
    Edited by: santhosh.s on Mar 5, 2012 1:25 PM

  • Bid Invitation  - assign Bidder

    Hi All,
      I am working on the configuration part of Strategic sourcing in SRM. I am facing a situation in the process. Let me explain you the flow folloed by me.
    1. I created a Shopping cart and did approve it successfully.
    2. I created a Bid Invitation from SC and did publish.
    3. Now If I am not wrong this Bid Invitation should go to the Bidders, who should be able to quote their prices.
    But I am not able to figure out that how to handle this.
    Infact I did assign a vendor while converting the SC to Bid Invitation and assumed that this bid invitation should go to the vendor but it is not happening.
    can someone guide me how to do this?
    It would be better if you tell me how to create a bidder and assign the bid invitation to him?
    I am basically an technical, so I apreciate if you explain in detail. thanks in advance.

    Hi Roopesh,
    Have you maintained Vendor root organization in EBP and under this root organization you to maintain Vendors on whom you want to place bid invitation.
    Pls. check this and confirm.
    Regards
    Sanjay

  • The sender of the bid invitation

    Hi gurus,
         Why the sender of the bid invitation to the suppliers turns to the approver after the bid invitation has been released. how to change to the creator of the bid invitation?
          I mean the email.
          thank you very much.

    Hi wang,
    There are two ways a bidder can receive / send his bid. One is via mail and the other by looging into portal using his own user i.d & password provided by the purchaser.
    As mentioned by Yeu Sheng Teo the bidder gets a mail whenever a bid invitation is sent to him / her.
    He then logs on to portal with his user i.d & password and selects the bid invitation and submits his bid which the purchaser can access using Process Bid Invitation link and the status against the particular bidder shows a bid submitted under Bidder / Bids tab.
    You maintain the contact person for bidder / vendor using personal data tab in Manage Business Partners link.There you choose employee as contact person and maintain User i.d & password and communicate the same to vendor / bidder.
    Hope this makes you more clear.
    Award points for helpful answers.
    Rgds,
    Teja

  • Bid Invitation Responses tables

    Dear Gurus,
    Please let me know how to retrieve Bid Invitation Responses for a given Bid Invitation (RFx)? Appreciate all your help.
    Sincerely,
    GSM

    Hi,
    You can use table- bbp_pdhgp to know the bids agains a bid invitation. Query this table for fields src_object_type as 'bus2200' and src_guid with bid invitation guid no. src_guid is the bid invitation no. guid.This guid you can get from table crmd_orderadm_h.
    Regards,
    Sanjeev

  • Bid invitation XML

    Hi,
    I want to send the bid invitation to vendor via XML. I choose output media XML and publish the bid invitation.
    I get a success message that the Action is successfully completed, but I don't know what happened.
    Does it works with XI?
    Thank you
    joseph
    Edited by: joseph fryda on Jan 2, 2008 9:28 AM

    Hi
    Which SRM / SUS version are you using ?
    You can create a Bid Inv in SAP EBP from the SC item. You do not set up Bidding Engine separately. It is part of EBP, you just need to enable the Sourcing/Bidding transactions, Assign Roles and Authorizations.
    It is LAC, SUS, CCM, those are setup separately.
    Bids are created in SRM Bidding Engine (ABAP part). If you don't want to use SRM Bidding Engine, then you should use the DPE scenario where the RFQ is not created in SRM but in your external Sourcing tool (Exostar).
    This scenario is still present in SRM 4.0 or 5.0 (even if not intented to a futur extension).
    You will trigger this RFQ export manually from Sourcing Cockpit, except if you have customized "automatic creation of bid invitation for items without source of supply" in SPRO --> SRM --> Sourcing --> Define Sourcing for Product Categories (this option is not available in EBP 3.5, thats' why I was asking about your SRM release).
    Related links ->
    http://help.sap.com/saphelp_srm50/helpdata/en/33/16533d6dd60610e10000000a114084/frameset.htm
    The bid invitation creation service is bbp_bid_inv.
    Please look at following thread:
    Email to Vendor and Creator while creating PO
    Run report RSWUWFMLEC to convert work items to mail. In transaction SCOT you can send it to preffered vendors.
    Related notes:
    Note 837179 - SUS3.0: Possible changes for e-mail-notification
    Note 738370 - E-mail notification: Composite SAP note
    Re: Create and Send  Bid Invitation
    Hope this will help.
    Regards
    - Atul

  • Default  Transaction Attribute for EJBs

    Guys,
    Can you tell me the default transaction attributes if any in Weblogic 7.0 i.e.
    the attributes used
    if not explicitly specified for a bean method when using in CMT ?
    For CMP entity beans,
    MDBs,
    Other beans (?) :
    thanks for your help
    regards
    Ved

    Hello Mr. Woollen,
    As always, thank you for your excellent insight into the internals of BEA WebLogic.
    I now have a better understanding of what happens "by default" in WLS. I do agree
    that changing this now would definitely break existing applications. It's always
    difficult to decide when to officially deprecate a "feature" or to leave it in
    forever.
    Best regards,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    Rob Woollen <[email protected]> wrote:
    For better or worse, MDBs default to NotSupported and everything else
    defaults to Supports.
    I say for better or worse because I would have liked to change it to
    always require the user to set a default transaction attribute.
    Unfortunately we have many customer's applications who depend on this
    behavior, and I believe if we change it we will break all of them.
    Regardless, I would not recommend depending on our default tx attribute
    and instead always set one for '*'.
    In general, entity beans should run as Required or Mandatory. Session
    beans are usually required or notsupported. MDBs are required or
    notsupported.
    -- Rob
    Ved Gangaputra wrote:
    Guys,
    Can you tell me the default transaction attributes if any in Weblogic7.0 i.e.
    the attributes used
    if not explicitly specified for a bean method when using in CMT ?
    For CMP entity beans,
    MDBs,
    Other beans (?) :
    thanks for your help
    regards
    Ved

  • Bid invitation output related

    Hi guys,
    I am able to send the bid invitation to the bidders.The output medium is email.It sends the bid invitation in .pdf format. (we have implemented a smartform)
    Requirement is:can we send it in say word or excel format instead if .pdf?
    Reason being,the bidder can download the form, enter required information in the word or excel doc and email it back.
    Any solution/bright ideas?Please share your inputs.
    Thanks
    Trey

    Thanks,guys!
    Wow Masa! That was great.
    Should have been clearer.We are implementing <u>surrogate bidding</u> functionality. The bidder will get the bid invitation by email.
    Our requirement is here: if the bid invitation can be sent in word or excel format, the bidder can download and save the bid invitation on the local system, fill out the invitation and submit the bid via email back to the buyer.
    Hence,the word/excel is needed so that the bidder can edit/modify it on the local system(there is no acrobat writer with the bidders:-))
    Can you elaborate on 1 and 4,please?
    Thanks a lot.
    Points will be awarded surely!
    T

  • Bid Invitation attributes and weighting function

    Attributes are transferring to Weighting section. This did not haqppen in the past.    
    During bid invitation creation the dynamic attributes that are used are
    automatically transferred to the weighting function. Along with this
    there is a message that is displayed "Specify the parameters of
    weighting function". This never happened in the past before
    implementing ECC 6 Enhancement pack 5, SAP_BASIS Component: Support
    Pack 7 for 7.02, and SAP Kernel: 720 patch 115.
    I found note 1662288 but it is applicable to server 701 and 702. Our
    server is 550.

    Hi,
    1. make sure email set up is done as per note 455140. To send e-mails after bid is published  for the bid invitation transaction 'BID' attach relevant event schema. This will take care of sending mails whenver bid invitation is published or changed.
    2. Provide the role  BBP_EC_SUS_BIDDER to the bidders to enable them to see bid invitaions and send bids from SUS portal.  For this you also need to enable SSO (single sign on) between  EBP and SUS. Please refer the below link for further information.
    sending RFQs from SRM EBP to SRM SUS
    3. It is possible to down load the Bid invitation. Further update the mail  id of the bidder with your id so that you can receive the bid invitation smartform. This you can take a print out and send it to bidders. You can make config setting in SPRO 'define actions for document output' to send the   bid invitation smartform.
    Hope this clarifies all your doubts here.
    rgds,
    RRK

Maybe you are looking for