Create multiple addresses in master data

Hi all,
Can anyone tell me if it's possible to create in the master data multiple addresses for the same supplier?
Thanks in advance,
Ana

Hi,
Please check if you can use partner function in the supplier master data.
Check SAP link which details about it
http://help.sap.com/erp2005_ehp_05/helpdata/en/75/ee1fa755c811d189900000e8322d00/frameset.htm
Regards
K.R

Similar Messages

  • Multiple addresses in master data

    Hi all,
    Can anyone tell me if it's possible to create in the master data multiple addresses for the same supplier?
    Thanks in advance,
    Ana Mendes

    I think you have posted the thread in the wrong forum!!
    However, it is possible to store multiple address of a supplier as different types of addresses: Shipping address, bill-to address, delivery address etc.
    Check the following thread for further reading:
    Multiple Vendor Addresses to be Maintained

  • How to create Multiple Address for a single customer

    Respected Members,
    In tcode Xd01 we create on customer but there we can maintain only one address but sometimes a scenario can be that single customer can have different address .
    How to do that.Any exit is available to create multiple address with creation of single customer.
    This provision is given while creating a Business Partner.Tcode is BP .In this Address Overview tab is there and you maintain multiple address to single Busines partner.
    Same thing can we do for the customer.
    Any solutions or suggestions,please give me your support.
    Thanks

    Hello Manish,
    Unfortunately Customers have only one address. However you can use contact persons to store different addresses, or (in the Sales view) you can assign other partner functions with different addresses (e.g. one customer acting as the Sold-to partner may have different Ship-to partners).
    If these options do not meet your requirements, you could extend the customer master data with your own functionality and enhance transaction XD01 with your own screens for holding alternate addresses.
    Regards,
    John.

  • How do i get to know when Person record is created in SAP HR Master Data?

    Hi there,
      How do i know as and when a person is created/inserted into HR Master data from SAP R/3 SAPGUI? in relation to SAP .NET Connector(SDNC)... Must i use SDNC? or any SAP process? i am new to SAP R/3.
      I need that immediate information of the person created so that i can manually create the user in Exchange account using a .NET program. Please advise regarding the part within SAP to external signaling.
      Thanks.
    Cheers,
    Derek Tan

    Unfortunately I can't answer your question directly (you may ask in ABAP-forum if there are some BAPIs that allow you to poll for new users/employees or a user exit that would allow you to do a custom call to an NCo-based RFC server.
    However I would suggest you to search for information about the so-called "LDAP-connector" which is part of MySAP and NetWeaver products, and is intended exactly for your kind of scenarios.

  • How to create process chains for Master Data?

    I need information on " how we can create process Chains for Master Data"

    Hi Sachin,
      http://help.sap.com/saphelp_bw33/helpdata/en/ad/6b023b6069d22ee10000000a11402f/frameset.htm
    and also Modelling aspects in process chains (ppt)
    https://websmp109.sap-ag.de/~sapidb/011000358700002337702003
    Hope this helps.
    Srini

  • Pane level is not working for created button in Employee Master Data

    Hai,
    I have created a button in Administration tab of Employee Master Data. I set the Pane level 3 for that button. Even though, when the Employee Master Data is opened, that button appears. ie., When Employee Master Data menu is clicked, Employee master data is opened in find mode and by default Address tab is active.But my button is visible here itself. I want that button visible only in Administration tab.
    How to resolve this.
    Thanks in advance.

    Hai,
    Thanks for answering.
    Actually coding  is as follows:
      oNewItem = oForm.Items.Add("XXX", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
                            oItem = oForm.Items.Item("61")
                            oNewItem.Top = oItem.Top
                            oNewItem.Height = oItem.Height
                            oNewItem.Width = oItem.Width
                            oNewItem.Left = oItem.Left
                            oNewItem.FromPane = 3
                            oNewItem.ToPane = 3
                            oNewItem.Visible = True
                            Butt1 = oForm.Items.Item("XXX").Specific
                            Butt1.Caption = "Click"
    I got solution by commenting the line  "oNewItem.Visible = True"
    Thanks once again. But I don't know how it works.
    Edited by: ParvathaSolai on Jun 7, 2011 2:11 PM

  • Using BAPI's or RFC's to Create a new BI Master Data

    Hello SDN Guys.
    I am trying to create an application to mantain BI master data and would like to know if you can help me to find a specific RFC or BAPI that I can use in VC .   The parameter should be the infoobject name and their attributes to be created in BI.
    My Infoobject is Zarea and has one attribute Zresp
    Zarea      Zresp
    1            Mike
    2            Oliver
    3            John
    I would like to create a new one using RFC or BAPI services on Visual composer.
    The problem is , Name of BAPI/RFC ?  Or I have to create a new one based on other standard RFC ?
    Best Regards,
    Mauro.

    Hi All,
    We have copied some standard RFC BAPIS and use it with sucess in Visual Composer.

  • Creating report based on master data

    Hi Guys,
    I want to create a specific report based on master data in BI cube. for example... a report which takes cost center and period as variable and display expenses for that period and cost center. This report I want to create for all cost center in BI database separately. any idea how can we do this?
    There are 2000 cost centers and I need to print/send 2000 reports one for every cost center.
    If I store all cost center in excel file, can it be easier?
    broadcasting and creating 2000 schedule - not option.
    Thanks..SM

    Hi  stuti misra,
    Create ONE Query with selection Cost Center and Period are inputs.
    Create text variables for Cost Center and Period and add in Query Description.
    After query execution you can see description based on selection in workbook or webtemplate.
    Hope it Helps
    Srini
    [Dont forget to close the call by assigning poings.... - Food for Points: Make a Difference through Community Contribution!|https://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/007928c5-c4ef-2a10-d9a3-8109ae621a82]

  • Abap logic not fetching multiple rows from master data table

    Hi
    I just noticed that my logic is fetching only 1 row from master data table.
    ProdHier table
    PRODHIERACHY            Level
    1000                                  1
    1000011000                      2
    10000110003333              3
    10000110004444              3
    '10000110005555              3*
    logic only fetches one row of level 3, I would like to fetch all level 3 rows.
    DATA: ITAB type table of /BI0/PPROD_HIER,
          wa like line of ITAB.
    Select * from /BI0/PPROD_HIER INTO wa where /BIC/ZPRODHTAS = 3.
    IF wa-PROD_HIER(10) = SOURCE_FIELDS-PRODH2.
         RESULT = wa-PROD_HIER.
         ELSEIF wa-PROD_HIER(5) = SOURCE_FIELDS-PRODH1.
         RESULT = wa-PROD_HIER.
    ENDIF.
    ENDSELECT.
    thanks

    Hi,,
    I have implemented the logic in end routine and it still reads only the first row.
    I am loading only PRODH1 and PROD2 but now I want to get all values of PRODH3 from the master data table.
    The first 5 values are PRODH1 and first 10 values belongs to PRODH2.
    Whenever PRODH2 = 1000011000 in source I should get the following values
    10000110001110
    10000110001120
    10000110001130
    I have multiple rows of 1000011000 so my result should be
      1000011000               10000110001110
      1000011000               10000110001120
      1000011000               10000110001130
    DATA: ITAB type table of /BI0/PPROD_HIER,
    wa like line of ITAB.
    data rp type _ty_s_TG_1.
    Select  * from /BI0/PPROD_HIER INTO table itab where /BIC/ZPRODHTAS = 3.
    LOOP AT RESULT_PACKAGE INTO rp.
    read table itab into wa with key PROD_HIER(5) = rp-PRODH1.
    IF sy-subrc EQ 0.
         rp-PRODH3 = wa-PROD_HIER.
         ELSE.
    read table itab into wa with key PROD_HIER(10) = rp-PRODH2.
    IF sy-subrc EQ 0.
         rp-PRODH3 = wa-PROD_HIER.
    ENDIF.
    ENDIF.
    MODIFY RESULT_PACKAGE FROM rp.
    ENDLOOP.
    Edited by: Bhat Vaidya on Sep 10, 2010 11:27 AM
    Edited by: Bhat Vaidya on Sep 10, 2010 11:37 AM

  • Multiple datasource for Master data object

    I need to enhance Customer master data with few attributes.
    can i have a ztable with the fields needed and can i link this via a generic datasource to Customer master data ?
    Can a master info objecte get data from more than one data sources?

    hi,
    in case the additional attributes are based on certain conditional fields present in another datasource then both datasources can be used .The data can be brought to respective write optimized DSOs and then linked through suitable routine.
    Edited by: dpabaskar on Mar 14, 2011 10:38 AM

  • Creating multiple address books

    Is there anyway to sync multiple groups onto the iphone. I have ms outlook 2007. Iv'e created a personal contact list and a buisness contact list. Is there anyway to sync both on to the phone but still keep them in seperate folders. I would think there must be a way. If not this is a serious short sight on Apples part. Even my rim pearl could do this. Any help would be much appreciated.

    There is but not via Outlook.
    The iPhone supports Groups, which are compatible with OSX Address Book and Windows Address Book. The equivalent in Outlook is Categories which do not sync.
    If you sync the contacts via Windows Address Book rather than Outlook you can have a Business group and a Personal group.

  • How to create multiple editable PDFs from data merged Indesign file

    Hi
    This is quite complicated but I'm hoping someone can help me and hoping I can explain it too!
    I am working on a project for a client. She wants to send 150 people a 6 page PDF with fields to complete and return to her.
    She has an Excel spreadsheet with some of the fields completed already so these will be Data Merged into InDesign CS6.
    The short version of the question goes like this:
    Can you automate the process so that once all the data is in the InDesign file, it can then create a PDF every 6 pages all in one go?
    For those still interested, the long version of the question goes like this:
    I have created 3 pages in InDesign with fields to complete and used the 'Data Merge' facility to add the Excel info.
    I have created 3 more pages with blank fields to fill in.
    Then I have made all fields editable using the 'Buttons and Forms' facility in the Interactive menu.
    Then I have created an interactive PDF. Then I have opened that PDF in Adobe Acrobat X Pro and saved it as 'Reader Extended PDF' and 'Enable Additional Features'
    I now have an Editable PDF with half the fields filled in and half blank to be filled in and this can be saved and returned.
    Now, this would be great if it was only one or two. But I need to create 150 different versions and this is just for the Pilot study. If all goes well, this will go to 5,000 people and I can't be creating 5,000 seperate PDFS!!
    At this stage, I am just focussing on the 150. So again, going back to the original question, is there a script that could be written either to break up the 1st PDF every 6 pages into 150 different PDFS? Is there even a way of extending that script to Save as Reader Extended etc? Is there a simple idea that I'm missing? Are there any ways to do this? I can use 'Created Merged Documents' to make 150 x 6 pages in Indesign so can anything be done from there?
    Any advice greatly appreciated
    Thanks
    G

    Hi Akash,
    1) Pass the three header data in header table. 2) Pass all the item data in item table. here explain where you struck.
    Regards,
    Madhu.

  • How to locate the user id of user which created a Business Partner Master Data set

    Hi everyone,
    First post on here, on a number of occasions I have found either the answer to or a steer towards when facing a issue, hopefully someone can help with this question.
    I'm working with SAP B1, v9 PL11 on SQL 2008R2.
    I have to create a query which displays; cardcode, cardname, createdate, cardtype, username of creating user, on or after a date variable.
    Having looked over the OCRD table I can't see a specific field containing data that would correspond to a user code.
    OUSR looks like a good candidate with the user details but I don't think I can see any data types which are directly comparable so not able to make a workable join.. I've tried a number of combinations, such as ocrd.usersign = ousr.usersign and while it returned data it was not correct.
    Please can someone help me find the name of the relevant field, or table which would contain this value so I can then complete my query.
    Many thanks in advance!

    Hi,
    Welcome to SAP B1 forum.
    Try this query:
    SELECT T0.[CardCode], T0.[CardName],T0.usersign, T1.[U_NAME] FROM OCRD T0 left join  OUSR T1 on t1.userid  = t0.usersign WHERE T0.[CardType]  = 'c'
    Thanks & Regards,
    Nagarajan

  • BAPI_MATERIAL_SAVEDATA -        Create and Change Material Master Data

    Hi,
    I want to delete a record an EAN record(MEAN table entry) available in addtitional data tab in Basic data in Material master.
    I am making use of the BAPI BAPI_MATERIAL_SAVEDATA -  to delete the record..
    However I am not able to do the same ..,
    Kindly guide me what all details needs to be passed,, to do the same ...
    I cannot delete directly from MEAN table...
    Regards
    Irfan

    Hi,
    Pass the details in the table INTERNATIONALARTNOS of the BAPI.
    Set the deletion indicator field DEL_FLAG to delete teh record.
    What error messgaes are you getting?
    Regards,
    Ankur Parab

  • Create attachment in equipment master data

    Helio expert,
    The sub menu of the 'service of object' - create is gray, (Tcode IE02) which means that it is impossibe to create attachment, create note etc.
    What can I do for make those actions active ?
    Thanks,
    Eli
    Edited by: eli dom on May 17, 2010 8:03 PM

    Hi
    Go to the t code SGOS there enter the object 'CREATE_ATTA' and make it active and check whether create is getting activated. hope this helps. Check this object also 'PCATTA_CREA', revert with your comment. For more details check the SAP help
    http://help.sap.com/saphelp_47x200/helpdata/en/1f/370b374e4e7c64e10000009b38f839/frameset.htm
    Generic Object Services
    reagrds
    ramakant
    Edited by: ramakant shekapure on May 18, 2010 8:39 AM

Maybe you are looking for