Partner func for vendor/cust. in inventory mangment

hi,
for partner function for vendor /customer in inventory management ,i found one note: SAP Note 193250
the note details
Summary
Symptom
In inventory management, the partner functions of vendors or customers are
not taken into account for goods movements.
Additional key words
MB01, MB1A, MB1C, MB1B, output determination
Cause and prerequisites
This function is not supported. The inventory management does not work in
the standard system with vendor or customer partner functions.
Solution
You can look up the partner roles of the vendor master record or customer
master record in the user exit routine USER_EXIT_KOMPBME_PARTNER (program
RVCOMFZ2) and fill table COM_PART. You can find the vendor or customer
number in structure COM_MSEG.
I found user exit USER_EXIT_KOMPBME_PARTNER in Program RVCOMFZ2,
FORM USEREXIT_KOMPBME_PARTNER.
COM_PART-PARVW =
COM_PART-PARNO =
APPEND COM_PART.
ENDFORM.
what changes i have to in this program ,please give the solution
Thanks and regards
Vijay.

Hi,
You wont be able to access COM_MSEG using SE11.
It actually fetches values from MSEG if you check the function module - KOMPBME_FILL, you can see COM_MSEG is like MSEG hence it will act like a internal table.
Hence you will get the values in COM_MSEG dynamically from MSEG.
Hope it helps.
Thanks & Regards,

Similar Messages

  • Creation of new partner function for VENDOR

    Hi,
    I've a requirement to create some Partner functions for vendors while creation of vendor. Some Partner functions are available by default and some we need to add. but while doing a BDC we are not able to find how many of them are available or where to put the new Partner function?
    Please let me know, if there is any BAPI availble..
    Regards,
    Anupam

    Try below LSMW batch input method its very esay to upload data
    Object               0040   Vendor master
    Method               0001   Standard
    Program Name         RFBIKR00
    Program Type         B   Batch Input

  • Settign partner function for vendor

    Hi..
    I am trying to configure partner function for a vendor who has different  oredring adress,
    Can anyone explain me the stpes / details of how to configure a Partner function for vendor so that when i give the partner function in PO the adress of the partner function should be displayed.
    And secondly if i create different partner function where do i maintain the address for each partner function.
    Suggestions will be rewarded..
    Regards

    Hi,
    check this thread
    Partner function
    thanks
    suresh

  • Can I use one Business Partner repository for Vendor and Customer?

    Can I use one Business Partner repository for Vendor and Customer? or do we have to use Vendor and Customer Repository separately. How can we do that? What are the pros and cons? can any one provide some examples:

    Hi Deepak
    The key purpose of SAP "enabling" the facility of multiple main tables in a repository is to primarily "manage" those master data objects that are related to each other. Typical examples will be a) Customer - Material, b) Supplier - Material, etc.
    While, it is pretty easy to add multiple main tables in a repository, it is also important to understand the purpose of doing so based on the business requirements.
    Besides, you got to be aware that in case you are "fixing" any issues with one main table (master data object) for which you have to unload the repository, the users will not be able to use the repository that has a main table defined for other master data object. Hence, there are pros and cons of using this capability of multiple main tables.
    So, it is really important to understand the "W's" - What, Why, When, Where, Who of Data modeling before actually working on the "H" - How to in the SAP MDM tool.
    Hope this helps.
    Regards
    Neelesh

  • Classic Scenario PO has multiple OA Partner Functions for Vendor

    Hi,
    I have a 'design' issue. My R/3 Vendor has many OA Partner Functions for the different Branches they have and the PO needs to be Faxed to the OA Partner Function number, but the PO needs to be created against the VN Partner Function.
    So, how do i do this in SRM? I was going to have a seperate Catalog link for each OA Partner function, but this is not creating the R/3 PO with VN Partner Function of the 'core' Vendor number.
    Does anyone have any advice for this?
    regards Adam
    Using SRM 5.0 (Server 5.5) SP 8 and R/3 4.6C in Classic Scenario - my catalogs are external vendor.

    Hi
    Please see these links, which might help ->
    Partner function missing in backend PO
    Re: Error in transmission while PO cration
    "Multiple" partner data at PO header
    Partner functions in plan driven MM-SUS
    Re: Partner function not found
    Number range for business partner
    Re: Problem with BP. Assignment: Business partner person to user not unique
    Error in creation of Employee for Business Partner
    Re: enter exactly one partner of type vendor
    Re: Business partner as Vendor and Invoicing Party
    Partner functions in EBP for extended Classic Scenario
    Regards
    - Atul

  • Order Partner Functions for VENDORs

    Hi All,
    We are using CRM 5.0 and ECC 6.0. We successfully replicated all the VENDORs from ECC to CRM BPs with BBP000-VENDOR role as this features is supported from CRM 5.0.
    We are now trying to get the VENDOR Partner functions replicate from ECC sales order to the Partner Functions for the CRM ORDERS. Looks like SAP doesn't support this feature yet. I am getting the Partner Functions (say Z1 - Freight Carrier ) but the partner data is BLANK. So i am working on a workaround.
    My Issue I am using ORDER_SAVE BADI to enter a BP from CRM to this Partner Function that is coming empty to CRM. For some reason my code is not working. Below is my code
    Data declarations for VENDOR Partner Function*********
      data: lt_partner_ref           type CRMT_PARTNER_EXTERNAL_WRKT,
              ls_partner_ref          type CRMT_PARTNER_EXTERNAL_WRK,
              lt_partner                type CRMT_PARTNER_COMT,
              ls_partner               type CRMT_PARTNER_COM,
              lt_partner_act          type CRMT_PARTNER_COMT,
              lt_partner_attributes type CRMT_PARTNER_ATTRIBUTE_COM_TAB,
              ls_partner_attributes type CRMT_PARTNER_ATTRIBUTE_COM.
      data:lt_header_ref   type crmt_object_guid_tab,
             guid                type crmt_object_guid.
      guid =  iv_guid.
      insert guid into table lt_header_ref .
      call function 'CRM_ORDER_READ'
        EXPORTING
          it_header_guid       = lt_header_ref
        IMPORTING
          et_partner            = lt_partner_ref                 
        EXCEPTIONS
          document_not_found   = 1
          error_occurred            = 2
          document_locked       = 3
          no_change_authority  = 4
          no_display_authority  = 5
          no_change_allowed   = 6
          others                      = 7.
    Start of the code to VENDOR PARTNER FUNCTIONS for ORDER Heafer/Item ***********
        Read table lt_partner_ref into ls_partner_ref with key partner_fct = 'Z0000007'.
        if ( sy-subrc = 0 ).
            ls_partner-kind_of_entry = 'C'.
            ls_partner-partner_fct = 'Z1'.
            ls_partner-partner_no = '0010060331'.
            ls_partner-display_type = 'BP'.
            ls_partner-no_type = space.
            ls_partner-REF_HANDLE = '100'.
            INSERT ls_partner INTO TABLE lt_partner.
            ls_input_names-fieldname = 'KIND_OF_ENTRY'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'PARTNER_FCT'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'PARTNER_NO'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'DISPLAY_TYPE'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'NO_TYPE'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_names-fieldname = 'REF_HANDLE'.
            ls_input_names-changeable = ' '.
            INSERT ls_input_names INTO TABLE ls_input_field-field_names.
            ls_input_field-ref_guid = ls_partner_ref-ref_guid.
            ls_input_field-objectname = 'PARTNER'.
            ls_input_field-ref_handle = '100'.
            ls_input_field-logical_key = '0000'.
            ls_input_field-ref_kind = 'B'.
            INSERT ls_input_field INTO TABLE lt_input_field.
          Endif.
      call function 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_partner           = lt_partner                         "I added this for VENDOR PF
        CHANGING
          ct_input_fields   = lt_input_field
        EXCEPTIONS
          error_occurred         = 1
          document_locked    = 2
          no_change_allowed = 3
          no_authority           = 4
          others                   = 5.
    endmethod.
    Could anyone check my code and suggest any changes?
    Thanks,
    Karuna.

    Hi ROshan,
      Open customer master in XD02  sales view and save it then check in XD03 it should display the partner functions.
    As you said the account group has been changed I think the records needs to be saved again.

  • Partner functions  for vendor master in SRM

    Hi,
    We in SRM40 and extended classic scenario.
    we would like to implement Partner functionality in SRM.
    Do share the steps for configuration with details,
    Thanks,
    RK

    Hi
    Which SRM version are you using ?
    SPRO Path ->
    SRM SPRO - Configuration Path for maintaining Partner Functions
    SPRO -> Supplier Relationship Management -> SRM Server -> Cross-Application Basic Settings -> Define Partner Functions
    Refer to following IMG Configuartion path and ensure that Goods Recipient entry is maintained in the system.
    Function Function_type Usage Description Abbrerviation Created by
    00000020 0002 B2B Goods Recipient GR XXX
    For maintaining Pricing conditions, see the related links ->
    Conditions for Pricing
    Pricing Conditions
    Condition types from SRM to backend
    Other related links ->
    Partner function Payee in SRM
    vendor partner functions EBP
    Re: Partner function not found
    Invoicing party ADDR_BILLT
    /message/4395909#4395909 [original link is broken]
    Hope this will definitely help. Do update me.
    Regards
    - Atul

  • Partner Function for Vendor

    Hi Friends,
    I have requirement in partner function, when I configured a new partner function ZH and create vendor it auto picks up the this PF and same vendor number... but my requirement is number needs to blank and it should not be mandatory.. is it possible to achive this
    Thanks in adv
    Bhargava

    Hi
    I require typically like this by default
    PF          Name              Number        name
    VN         Vendor              12546           xxxx
    OA         ordering add     12546        xxxx
    ZH         Head office       ______          
    here for ZH number needs to blank but system expects if some thing is there in the PF then corresponding entry needs to be there in the number column.
    How to achive this
    With regards
    Bhargava
    Edited by: Bhargava ms on Mar 12, 2008 2:29 PM

  • Partner Function for Vendor Like UI

    Hi All,
    Version EHP7 , Vendor Like UI
    I am not able to find the Partner Functions tab in the Purchase Org Menu .
    But i can find it in the Customer Sales Org menu .
    Can any one help on this ??
    Regards,
    Vag Vignesh Shenoy
    PS : For the same vendor i see that in the ECC system the partner functions are updated perfectly.

    Hi Vag
    You  need to perform below settings
    Run transaction NWBC, enter the role SAP_MDGS_MENU_03 and choose Start NetWeaver Business Client for HTML.
    Choose Search Vendor.
    Choose (Customize Page).
    Note
    If an error message is displayed concerning missing object component Customizing proceed as follows:
    End of the note.
    Choose New.
    In the Create Customizing dialog box enter a description and choose OK.
    In the Select Transport Request dialog box choose OK.
    Mark Main Page BS_BP_OVP.
    On the Overview Page Schema tab, click on Section: BP_SECTION to open the UIBB structure.
    Mark UIBB: ERP Vendor: Sub-Ranges BS_SP_SUBRANGES.
    In the Hidden Element field in the Attributes of UIBB section select Visible and choose Save.
    Repeat the procedure as of step 4 using the following values:
    Edit Page BS_SP_PURCH_ORG
    UIBB: ERP Vendor Purchasing Organization: Different Purchasing Data BS_SP_PURCH2_ORGS
    UIBB: ERP Vendor Purchasing Organization: Partner Functions BS_SP_FUNCTIONS
    Edit Page BS_SP_COMPANY_CODE
    UIBB: ERP Vendor Company Code: Withholding Tax BS_SP_COMPANY_CODE_WITHHOLDING
    UIBB: ERP Vendor Company Code: Dunning Areas BS_SP_DUNNING_AREAS
    To show the corresponding UIBBs within Block and Mark for Deletion change requests, mark an existing vendor in the search result list, choose Block or Mark for Deletion and proceed as described above as of step number 3.

  • Partner Function for Vendor through IDOC

    Hi All,
    I have a requirement in which I need to create the vendor master through IDOC. I am using CREMAS basic type for that. In its functionality, I need to assign different partner functons to it. I identified the segment as E1WYT3M in it at hierarchy level 3. I passed the partner function like OA or PI in the PARVW field of it and provided the vendor number which I want to assign as partner function in the LIFN2 field.
    Vendor is getting created but Partnering details are not getting updated when I am seeing in the XK03 Txn. Am I missing something.
    Please help me on this.
    Thanks
    Natasha

    Hi All,
    Moving further, I got another issue in changing the partner details of a vendor. Changing includes assigning another partner function to an existing vendor or deleting any already assigned partner function. I am doing this through IDOC. I am getting an error message 'Deletion of mandatory partner function 'VN' is not possible.'
    I tried changing the msgfn also.
    How should I proceed here.
    Thanks
    Natasha Garg

  • To enter Trading Partner data for vendor posting using SGL indicator

    Hi,
    I am trying to post a vendor document using f-02, with posting key 29, with a special GL indicator. I need to input the trading partner data. However, I could not find the field under "more data". There was no "further data" selection. I was also not able to enter the trading partner via the path : Extras -> trading partner.
    Please advice how to pull out the field for trading partner for posting using special GL indicatior. I have checked the PK variant screen and the field status group variant ansd could not find the field trading partner.
    Thanks.
    Angel.

    Hi,
    already maintained in vend master data, OBA7, OBC4, OB41 were also maintained.
    But the thing is, the trading partner field did not appear on the posting screen. I was prompted with an message that trading partner is a required field as I have set it as mandatory. And the system ask me to input under "further data". But i cannot find that option. Neither can I find the trading partner field.
    Please assist.
    Angel.

  • Access Sequence for Vendor Partner Function

    The business requirement is to display Vendor name for a specific product on UI. Approach till now: Partner function for Vendor can be defined. Relationship between vendor and product can be defined. The following query remains:
    Can someone help me which access sequence (if any existing) can be used for determination of Vendor Partner Function for a Product?
    Any guidance related to the same is welcome.
    Thanks.

    thanks.

  • Partner functions OA and IP missing for Vendor in Extended classic PO

    As part of current Classic scenario, we have maintained OA (Ordering Address) and PI (Invoicing Party) for a vendor in R/3. We have also maintained different ordering addresses for multiple plants in the Vendor master: Partner functions screen --> Alternative data.
    I would like to acheive the same functionality in Extended Classic scenario. We have replicated the vendors from R/3 to SRM. After activating Extended Classic scenario, we see only VN as the partner function in R/3 PO.
    Q1. How can we enable OA and PI partner functions in R/3 PO (Extended Classic) ?
    Q2. How can we enable different ordering addresses for multiple plants in R/3 PO (Extended Classic) ?

    Hi
    Which SRM Server are you using ?
    <b>You need to maintain Partner Functions in the SRM Server - SPRO Transaction - Configuration Settings.</b>
    <u>Here is the Path from SPRO Transaction -></u>
    <b>Supplier Relationship Management -> SRM Server -> Cros Application Basic-Settings -> Define Partner Functions</b>
    <u>Maintain Similar entries as mentioned below.</u>
    Function      Function     Type    Usage     Description                           Abbreviation  
    00000016     0013     B2B     Requester               RQ
    00000017     0007     B2B     Contact Person               CP
    00000018     0011     B2B     Bidder                    BI
    00000019     0012     B2B     Vendor                    VD
    00000020     0002     B2B     Goods Recipient               GR
    00000025     0014     B2B     Portal Provider               PP
    00000026     0008     B2B     Responsible Employee          RE
    00000027     0017     B2B     Ship-To Address               DP
    00000028     0003     B2B     Invoice Recipient               IR
    00000029     0015     B2B     Invoicing Party               IP
    00000030     0018     B2B     Ship-From Address          SP
    00000034     0002     B2B     Plant                    PLNT
    00000038     0001     B2B     Sold-to Party               ORDR
    00000039     0026     B2B     Preferred Vendor               PRVD
    00000051     0019     B2B     Purch. Org. Auth. For Release     AREL
    00000074     0025     B2B     Service Agent               SERV
    00000075     0031     B2B     Location     LOCA
    00000097     0034     B2B     Invoicing Party Employee          IPEm
    <u><b>Hope this will definitely help.</b></u>
    <u>More details -></u>
    <b>For 1), see these links below -></b>
    Partner function missing in backend PO
    Re: Error in transmission while PO cration
    "Multiple" partner data at PO header
    Partner functions in plan driven MM-SUS
    Re: Partner function not found
    Number range for business partner
    Re: Problem with BP. Assignment: Business partner person to user not unique
    Error in creation of Employee for Business Partner
    Re: enter exactly one partner of type vendor
    Re: Business partner as Vendor and Invoicing Party
    Partner functions in EBP for extended Classic Scenario
    Classic Scenario PO has multiple OA Partner Functions for Vendor
    <u>For 2), see the pointers -></u>
    <u><i>There is an article written by Jason Didday at www.saptips.com entitled "mySAP SRM and SAP R/3 Partner Functions: Supporting OAs, VNs and IPs" that you may find useful.</i></u>
    <u>In SRM, there is no standard relation betwwen plant and vendor master data.
    You can use BBP_GET_VMDATA_CF BADI to add backend data in SRM while using BBPGETVD and BBPUPDVD transactions.</u>
    Replication of Ordering Address from R/3 to SRM
    Re: Adding Partner Function to R/3 PO from SRM in Classic using BADI
    Partner function Payee in SRM
    Adding Partner Function to R/3 PO from SRM in Classic using BADI
    Do let me know.
    Regards
    - Atul

  • Loading Multiple Partner Fuctions for a vendor using LSMW

    Hi Everyone,
    I need to upload multiple partner functions for vendors. I am using LSMW recording for transcation XK02.
    The LSMW runs fine but instead of adding a new line for each partner function for a specific vendor it keeps overwritting the previous one. As a end result I get only the last partner function in vendor.
    Any help in resolving this is highly appreciated.
    Thanks
    Zor

    you can use below LSMW batch input method and pass the tcode XD02.. for partner functions....
    TCODE                        Transaction Code
                        Rule :   Constant
                        Code:    BKN00-TCODE = 'XD02'.
    Object               0050   Customer master
    Method               0002   Extended PSM
    Program Name         RFBIDEK0
    Program Type         B   Batch Input

  • Partner Function for STO and relevant inbound delivery

    Dear Expert,
    i did the partner configuration for Vendor and STO with partner VN-vendor DP-delivery plant.
    When i create the STO vendor UP07, both of VN and DP are UP07, but when i create the STO for UP07, no partner data come out for the PO, the partner data didn't copy out from vendor master.For standard PO not STO, the partner data are copied from vendor master automatically. Any advice any further more setting need to do?
    I manually input the partner data for the STO, then i try to create inbound delivery, following incompleteness came out"Vendor : Account Number of Vendor or Creditor Missing",user need to manually input the partner number for LF-vendor.But when i check the partner setting for inbound delivery, LF is copied out from VN.Any more setting need to do to make sure the partner number of LF is auto copied from PO data.
    Look forward to your reply,
    Thank you and regards

    Hello,
    PLease check the vendor data created as a plant. Go to Vendor master and in purchasing view select extras -> additional Purchasing data-> in the plant assignment enter the Plant number. This will pull in the vendor details into the inbound delivery.
    Thanks!!

Maybe you are looking for

  • Wireless Music doesn't work with new software

    Hello- I can't get my wireless music to work after I update the software to the latest version. The only one that will work is when I install it from the CD. But, I would like to use the most recent version of the software. As soon as I update, the M

  • Employee Photo upload

    Hi Experts, I need to upload the photographs of employee to SAP. All the config required for photo upload is done These photograph path details and Emp Id will be available in a flat file. As BDC approach using OAAD is not able to workout (picking of

  • Changing a linechart background color upon a chartitem selection

    hello guys, I am displaying multiple lines vertically in a linechart. User can make a rectangular selection on chartitems. I want to change the linechart background color of the selected region only. So if user selects multiple region then I will be

  • Preventing the stupid itunes folder!

    I love everything about itunes, except the fact the it duplicates your music and puts the duplicates in an own itunes folder in my music. I don't want this, so how can I prevent it?

  • How to create Basic Key Figure, Key Figure and Characteristic

    Hello Gurus, I have copied a standard layout of KP06, named it as a Z- layout and made changes to it, like defined the plan data upload field as Object Currency enabled. However I want to add a Z-Field , tax holiday unit as a column to this layout wh