Vendor Product Number field

Can anyone please help us finding the field  " Vendor Product Number". We have the information that this is a standard field on the shopping cart and is part of the standard content and This field is also available on Catalog Purchase Orders
Please help us recognizing the appropriate field tech name from the  shopping cart extractor.
Hints are appreciated

Hi Masa,
Appreciate your prompt response. My issue is not Vendor Part Number. We are using Manufacturer Part Number field in our SRM-MDM catalogs. OCI is transferring the data in this field to SRM SC but it is not displaying in Item Data tab in SC. I can see the Manufacturer Part Number value transferred from catalog in Tcode BBP_PD. As per your earlier reply, I added field MANU_PROD (Manufacturer Part Number) in Customer Meta Data for Item fields in Personalization is SPRO. After adding this field here, it should be displayed in SRM SC Item Data tab but it is not displaying there.
We are not facing any problem with field  Supplier PArt Number and iit is displaying correctly in the SRM SC.
Thanks

Similar Messages

  • SRM Vendor product number field populating to PR

    Hi,
    We are trying to pass "Vendor product Number" value from non-catalog sc to purchase requisition "Vendor Mat" field using BAP_REQUISITION_CREATE. However, the value entered on shopping cart is not coming to PR.
    We are on SRM 50. searched oss notes and found couple of them..but it seems they are not relevant for our version.
    appreciate any inputs on this.
    Thanks
    Krish

    Hi Krishna,
    In whcih field you are entering vendor mat no in shopping cart
    Thnaks
    Ravi

  • Search for Vendor product number

    Hi everyone,
    When i create a shopping cart from internal goods and services, i can search a product on product id, product description etc.
    How can i modify this page so that i can search for the vendor product number?
    All information is welcome!!
    Regards,
    Jordi

    I know where i can change the template.
    I am working in transaction se11 with searchhelp: bbph_product --> bbph_product_general, here i can add fields to the search screen(vendor product number?).
    This searchhelp is linked to the Function module: bbp_f41f_shlp_exit_product_gen.
    In this function module is the logica maintaind how to search(ABAP code).
    From here i don't know what to do further.
    I want the system (searchhelp) to search for the vendor product number in the inforecords located in ECC.
    Annybody who can help me?
    Regards,
    Jordi

  • Where Vendor Product Number mapped to in ORDERS05 idoc?

    When the back-end Purchase Order is created where is the Vendor Product Number placed in the idoc? Which segment, which field?

    Hi Matt,
    it should be at item level, in segment E1EDP19-IDTNR with E1EDP19-QUALF = 002 for Vendor Product Number.
    Rgds
    Christophe
    PS: please reward points for helpful answers

  • Use of vendor product number in shopping cart from personal template

    Hi all,
    I have the following scenario:
    We use ECC 6.0, SRM 5.0 MDM 5.5 sp6 catalog 2.0.
    In the inforecord master data in ECC we use the vendor product number (vpn). When a inforecord is created or changed, the inforecords (or changed data in the inforecord) get's replicated to SRM-MDM, just like all of the other masterdata (product, vendor and conditions).
    The vpn is included in the details of a catalog product.
    When a personal template is generated from a product in the catalog, it's saved with the vpn included.
    When the vpn changes in ECC, this number is replicated to the SRM-MDM catalog.
    So if you choose the product from the catalog after the canged vpn, the new, right vpn is used in hte shopping cart. But when you use the template that was created before the time the vpn was changed, the old vpn is used in the shopping cart and subsequently the pr and po.
    This leads to wrong delivery's.
    I've logged an oss call for this, because in my opinion this is a product default. But SAP points me on "standard design". This seems always to be the case when something difficult is asked.
    They said it can be solved with a BADI implementation. To be more specific a validation in SRM-MDM with the doc-change Badi.
    Is there some one who has experience with this kind of development and knows if this is the whight Badi of has an alternative?
    Thanks in advance!
    Best regards,
    JvE

    Hi,
    When a personal template is generated from a product in the catalog, it's saved with the vpn included.
    When the vpn changes in ECC, this number is replicated to the SRM-MDM catalog.
    So if you choose the product from the catalog after the canged vpn, the new, right vpn is used in hte shopping cart. But when *you use the template that was created before the time the vpn was changed, the old vpn is used in the shopping cart and subsequently the pr and po.
    *Solution:
    you have told that in MDM -VPN is updated from ECC
    Say for Eg : VPN  is 12345  in MDM
    you have created a shopping cart template with thie VPN : 12345 .
    you have ordered the shopping cart the VPN number will be 12345.
    After a week this VPN is updated from ECC by 12345ABC
    now you have to Delete the old shopping cart template what you have created 12345.
    You have to create a new template with VPN :12345ABC and create a  shopping cart
    How will the VPN change in the Old Template? It  is not possbile.
    It is not A product bug.
    Please try this method what I  have suggested
    Regards
    G.Ganesh Kumar

  • Vendors PAN Number field Mandatory in Vendor Master Data

    HI,
    I am working in 4.7 EE version. I want to make Vendors Pan Number field mandatory while creating Vendor Master Data. As per my knowledge we cannot use Validation for this purpose.
    Regards
    Sudhakar

    Hi Parag,
    In ECC 6.0 you get a tab CIN details in vendor master itself wherein you can maintain PAN no. sales tax no. etc of the Vendor.
    you dont need to use any field for PAN no... If this is followed then wht you are saying is correct. But the problem is that we want to make PAN no. in CIN details tab mandatory and that is not possible.
    Regards,
    SAPFICO

  • A/P Invoice Vendor Ref Number Field updating after adding the Invoice Copy

    Hi All,
                  I am able to change the Vendor Reference number in A/P Invoice Document after adding the Document.  I want to restrict this to happen. Plzz help how to do this????
    Regards,
    Sree.

    1.The Modify Posted A/P Documents authorization refers to some fields only, e.g. the Due Date or Pay to address.
    2. Additional authorization can be defined only for full forms, not for fields.
    3. The SP Joseph suggests will refuse those modifications when the Vendor ref is empty.
    To avoid modifying the Vendor ref you can use this code:
    IF @Object_type = N'18' and @transaction_type = N'U'
    BEGIN
    declare @li int
    set @li=
    (select max(t.LogInstanc)
       from ADOC t
       where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del)
    IF
       (select isnull(t.NumAtCard,'')
        from ADOC t
        where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del
          and t.LogInstanc=@li-1)
    !=(select isnull(t.NumAtCard,'')
       from OPCH t
       where t.DocEntry=@list_of_cols_val_tab_del)
    begin
      Set @error = 10
      Set @error_message = N'Vendor refernce not modifiable !'
    end
    END
    Or if you want to allow modifying an unfilled reference, then this:
    IF @Object_type = N'18' and @transaction_type = N'U'
    BEGIN
    declare @li int
    declare @pref nvarchar(100)
    set @li=
    (select max(t.LogInstanc)
       from ADOC t
       where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del)
    set @pref=
    (select isnull(t.NumAtCard,'')
        from ADOC t
        where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del
          and t.LogInstanc=@li-1)
    If @pref !='' and @pref !=
    (select isnull(t.NumAtCard,'')
       from OPCH t
       where t.DocEntry=@list_of_cols_val_tab_del)
    begin
      Set @error = 10
      Set @error_message = N'Filled vendor refernce not modifiable !'
    end
    END

  • Offset for Vendor Account Number(field VENDR) in table BSED

    Hello experts,
    I need to know the Offset where i can find the Vendor Account Number in field VENDR in the table BSED.
    This field is used for Localisation for TURKY in Reports like RFIDTRBOE1, RFIDTRBOE2.
    Thanks in advance!
    Regards,
    Sandeep

    Hi,
    Table LFA1 and ADR6 are right but in query, these tables will not be linled by system authomatically.
    You have to link these table manually by using field ADRNR in table LFA1 and field ADDRNUMBER in table ADR6.
    I hope it will resolve the issue.
    Regards,
    Vinod

  • A/P Invoice Document Vendor Reference Number field..................

    Hi All,
                I have a senario:
            I have Posted A/P Invoice With Vendor XXX, Vendor Reference number is 111. I should be able to post another A/P Invoice using the same Vendor Reference number-111 but Vendor is YYY.
        But I should not be able to post same vendor reference number - 111 in two A/P invoices where the vendor is same. (Say Vendor is XXX).
            How do I satisfy these two conditions??????
    Regards,
    Sree.

    Hi Sree,
    SAP Business one will not allow you to to have the same reference number even if it is for another supplier.
    This is known SAP validation.
    Regards,
    Rakesh

  • Vendor part number for non catalog item in shopping cart?

    I have a requirement to get the vendor part number field in shopping cart basic data for non catalog item. This field is available for catalog items, would it be possible to make the same field available for non catalog items as well?

    Hi Gummadi,
    You can create custom fields in Shopping cart uisng a BADI and can populate the information.
    BBP_CUF_BADI can be used to create customer fields.
    Please get discuss with your ABAP fellow for the creation of customer field.
    Award points for helpful answers.
    Rgds,
    Teja

  • Vendor name & Reference field to be copied to payment document

    Hi Gurus,
    I am doing vendor paymen by t.code F110 .   I want to copy vendor name and reference field to be copied from original booked billing document to payment document TEXT Field and Reference respctively.  How do i do the same ??  pleae advise.
    Regards
    AVINASHt

    Hi Avinash,
    Were you able to populate the field XBLNR in the payment document with the Vendor invoice number field? Kindly let me know how you were able to successfully do it.
    Thanks,
    Thameem

  • Vendor material number in purchase order

    Hello,
    I have the following problem :
    When i create a purchase order (transaction ME21N), the vendor material number (field IDNLF) will be suggested from the purchasing info record.
    It isn't the case, the vendor material number is empty.
    I don't understand why.
    Do you have an idea ?
    Thank you

    Hello,
    Vendor Material Number;  Material number used by the vendor, Usually we saw this field in Info records.
    We can see the same field in ME21N in Material data tab ( Item level of the PO), If Vendor and Material combination have correct info record and if suppose user has maintained  Vendor Material number field,  then while creation of PO for the combination of particular material and vendor system will get Inforecord price in PO and  system will populated Vendor Material number in Material data tab of the PO in item level.
    Thanks and Regards
    Mahesh Naik

  • SRM-How to disable Supplier Product Number in shopping cart portal

    Dear SAP,
    We have "Supplier Product Number" field exist in SRM portal but it is used for catalog PO.
    And, we would like to disable the field for free description SC. which means we allow the user to view the field but not editable.
    Please advise.
    Thank you.
    Regards,
    William

    Hi,
    Look at the below blog. it might help you
    Web UI modifications in SRM7
    thanks,
    sankar.

  • Vendor Master Sensitive Field Confirmation (Account Number field) - Manual Payments

    Hi All,
    After reviewing a number of threads on this forum around what happens to payments when a vendor has a 'sensitive field' awaiting confirmation I had a a specific question around having the 'account number' as a sensitive field.
    I have an instance when the 'Account Number' has been defined a sensitive field. In an example scenario a user has changed the Vendor Bank Account number and it is awaiting confirmation (through using FK08). Whilst it is awaiting confirmation a manual payment is posted against that Vendor, which Vendor Account number is used, the old one or the new one awaiting confirmation?
    It also brings about the wider question of, if a sensitive field is awaiting confirmation and a payment is made against that Vendor what value is used, the old one or the new one that hasn't yet been confirmed?
    Any insight would be great, thanks.

    Hi Johnny
    We had a lenghty debate with SAP very recently and the thing is Automatic Payment (F110) wont happen if a Vendor is awaiting confirmation... But manual payments can be done
    So, the system does not stop you for manual payments F-53 or 58... It should pick up the latest Account number
    br, Ajay M

  • PAN Number Field Mandatory in Vendor Master

    Hi
    We have created Account Group for Service Vendor and for this group we want to make PAN Number Field Mandatory . This Field appears in CIN Details Tab in Vendor Master .
    In standard field selection I did not found that field . Please provide solution

    Hi
    I tried in my system and  able to make  PAN number as  mandatory  field.
    see once u create the  transaction variant ,kindly actiuvate the same  by going to standard variants
    one more thing until unless you go to the  tab Withholding tax the system will not show as mandatory
    Regards
    Damu

Maybe you are looking for