AR Customer Site contact API

Hi,
We want to update/insert customer site contact details using API. Is there any reference. Pls help us.
For your information we succeeded in following:
1) Customer Communication insert/upd
2) Customer Contact insert/upd
3) Customer Contact Communication insert/upd
4) Customer Site Cummunication insert/upd
Thanks in advance.

The TCA API guide has all the necessary details along with examples. Thats what we used about 2 years back to get in customer, site data.

Similar Messages

  • Customer Org Contact API

    Hi all
    I'm trying to create customer org contacts using the API (HZ_PARTY_CONTACT_V2PUB.create_org_contact). I've seen it is possible to insert the basic information for the contact, like: Name (last and first names), Title, Possition, etc... But I haven't seen an option to add communications information: Phone numbers, email, etc...
    Thanks for your help

    Hi,
    Which version of applications you are working on?
    According to eTRM , in 11.5.9 and 11.5.10, the MAIL_STOP column of HZ_ORG_CONTACTS is 'no longer used".
    Regards,
    Ram

  • Customer Contact Vs. Customer Site Contacts....

    Hi,
    I need to query the contacts associated at the Customer Level only. When I query using the HZ_RELATIONSHIPS (or for that matter query the view AR_CONTACTS_V), I get 22 records whereas on the Customer Account Details screen under Communication Tab I see only 3 records.
    Could someone please guide me what table do I need to query to get only the contacts associated with the Customer Account and not with site level.
    Thanks
    TM

    Hi,
    You need to use the HZ_CUST_ACCOUNT_ROLES table. This table will have the party_id of the relationship between the contact and the customer party.
    Regards,
    Ravi

  • Customer Level Contact and Customer Site Level Contact

    Hi,
    How to create a customer level contact and Customer site level contact details for the existing Customer using standard API's. please Guide me any one with Queries.
    It will be great help for me.
    Thanks,
    Prakash

    Pl post your EBS version. For 11i, all public APIs are listed at http://irep.oracle.com. For R12, APIs can be explored using the Integration Repository responsibility in your instance
    HTH
    Srini

  • API and table of Account Site Contact

    hi,
    i can create the Account Site Contact from Customer > Customer Account > Account Site.
    What is the API that i can call to create/update this? and what is the table that store this?

    hi Hussein,
    i have run the API to create a new contact, but i go to screen, i could not see the new contact that i created.
    p_person_rec.person_first_name := 'Ash';
    p_person_rec.person_last_name := 'Lee';
    p_person_rec.created_by_module := 'TCA_V2_API';
    HZ_PARTY_V2PUB.create_person (p_init_msg_list=>'T'
    ,p_person_rec=>p_person_rec
    ,x_party_id=>x_party_id
    ,x_party_number=>x_party_number
    ,x_profile_id=>x_profile_id
    ,x_return_status=>x_return_status
    ,x_msg_count=>x_msg_count
    ,x_msg_data=>x_msg_data);
    DBMS_OUTPUT.put_line('creating PERSON with PARTY id:' || x_party_id);
    if x_return_status='E' then
    DBMS_OUTPUT.put_line('x_msg_count = ' || TO_CHAR(x_msg_count));
    DBMS_OUTPUT.put_line(SUBSTR('x_msg_data = ' || x_msg_data, 1, 255));
    IF x_msg_count > 1 then
    FOR i IN 1 .. x_msg_count loop
    DBMS_OUTPUT.put_line(i|| '. '|| SUBSTR(fnd_msg_pub.get(p_encoded => fnd_api.g_false),1,255));
    END LOOP;
    END IF;
    rollback;
    return;
    end if;
    p_org_contact_rec.created_by_module := 'TCA_V2_API';
    p_org_contact_rec.party_rel_rec.subject_id:= x_party_id; -- value of party_id from CREATING PERSON
    p_org_contact_rec.party_rel_rec.subject_type :='PERSON';
    p_org_contact_rec.party_rel_rec.subject_table_name:='HZ_PARTIES';
    p_org_contact_rec.party_rel_rec.object_id:= 10447; -- value of party_id from CREATING CUST ACC
    p_org_contact_rec.party_rel_rec.object_type:='ORGANIZATION';
    p_org_contact_rec.party_rel_rec.object_table_name:='HZ_PARTIES';
    p_org_contact_rec.party_rel_rec.relationship_type:='CONTACT';
    p_org_contact_rec.party_rel_rec.relationship_code:='CONTACT_OF';
    p_org_contact_rec.party_rel_rec.status := 'A';
    p_org_contact_rec.contact_number := '8888';
    --For Organization Address level contact, assign following value:
    p_org_contact_rec.party_site_id:=357430; value of party_site_id from step 3
    HZ_PARTY_CONTACT_V2PUB.create_org_contact (p_init_msg_list=>'T'
    ,p_org_contact_rec=>p_org_contact_rec
    ,x_org_contact_id=>x_corg_contact_id
    ,x_party_rel_id=>x_cparty_rel_id
    ,x_party_id=>x_cparty_id
    ,x_party_number=>x_cparty_number
    ,x_return_status=>x_return_status
    ,x_msg_count=>x_msg_count
    ,x_msg_data=>x_msg_data);
    DBMS_OUTPUT.put_line('creating ORG CONTACT ID:' || x_corg_contact_id);
    output is :
    creating PERSON with PARTY id:11504
    creating ORG CONTACT ID:2036
    SELECT org_contact_id,party_relationship_id,contact_number FROM HZ_ORG_CONTACTS where party_relationship_id in (3090,3091,3093);
         2031     3090     1041
         2033     3091     1234567
         2036     3093     8888
    select relationship_id,subject_id,subject_type,subject_table_name,object_id,object_type,object_table_name,party_id,relationship_code from hz_relationships where relationship_id in (3090,3091,3093);
         3090     10447     ORGANIZATION     HZ_PARTIES     10496     PERSON     HZ_PARTIES     10497     CONTACT
         3090     10496     PERSON     HZ_PARTIES     10447     ORGANIZATION     HZ_PARTIES     10497     CONTACT_OF
         3091     10447     ORGANIZATION     HZ_PARTIES     10502     PERSON     HZ_PARTIES     10503     CONTACT
         3091     10502     PERSON     HZ_PARTIES     10447     ORGANIZATION     HZ_PARTIES     10503     CONTACT_OF
         3093     10447     ORGANIZATION     HZ_PARTIES     11504     PERSON     HZ_PARTIES     11505     CONTACT
         3093     11504     PERSON     HZ_PARTIES     10447     ORGANIZATION     HZ_PARTIES     11505     CONTACT_OF
    select party_id,party_name,party_type,created_by_module from hz_parties where party_id in (10496,10502,11504);
         10496     George ACCOUNTS DEPARTMENT     PERSON     HZ_CPUI
         10502     Pak Budi     PERSON     HZ_CPUI
         11504     Ash Lee     PERSON     TCA_V2_API
    George ACCOUNTS DEPARTMENT with contact_number 1041 can be seen on screen
    Pak Budi with contact_number 1234567 can be seen on screen
    Ash Lee with contact_number 8888 CANNOT be seen on screen.

  • API to Nullify customer site level credit limits and currency

    Hi All,
    We need to nullify customer site level credit limits (CREDIT_LIMIT) and currency (CR_LIMIT_CURR_CODE) in prod. Is there any API to Nullify customer site level credit limits (CREDIT_LIMIT) and currency (CR_LIMIT_CURR_CODE) for Oracle 11i ( 11.5.9). There are many customers so its difficult to do it manually.
    Please let us know,its urgent.
    Thanks in Advance.
    Thanks,
    APAC

    Refer MOS note:
    Can we create Credit Limits at Party Level? [ID 414997.1]
    Different uses of TCA API. [ID 230753.1]

  • I paid for a license over the phone, and never got a confirmation email. Furthermore, CC does not recognize that I've paid. Your site makes it nearly impossible for a customer to contact your soulless, monolithic company. WHERE IS MY ******* PHOTOSHOP?

    I paid for a license over the phone, and never got a confirmation email. Furthermore, CC does not recognize that I've paid. Your site makes it nearly impossible for a customer to contact your soulless, monolithic company. WHERE IS MY ******* PHOTOSHOP?

    Membership and Payments http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html
    or
    Adobe contact information - http://helpx.adobe.com/contact.html

  • Can we create new customer site for existing customers using custm interfc

    Hi ,
    I have a requirement :
    version -- R12 .
    We need to add new customer site for existing customers , is it possible to create it through customer interface with insert_update_flag set as U / I .
    Any help in this is grate .
    regards ,
    Azzu .

    I am pretty sure I've done this on one of my past project..
    why don't you try it out?
    Another route would be use customer APIs (TCA APIs)...which I am sure can achieve what you're looking for.
    Edited by: James Kim on Mar 17, 2010 2:48 PM

  • Migrate the MOSS application that having custom site defination to SP 2013.

    Hi All,
    I need to migrate a SharePoint 2007 application that uses the custom site definition in to SP 2013. I believe custom site definition is no more supported in SP 2013. Can anyone please suggest me what should be the approach for migration?
    Regards Restless Spirit

    Hi Restless,
    According to your description, my understanding is that you want to migrate SharePoint 2007 application to SharePoint 2013.
    You cannot upgrade directly from the server products in the Office 2007 release to SharePoint 2013. The changes between versions are too great, and the hardware requirements differ so much between versions that a direct upgrade is not possible or supported.
    However, you can perform a series of database-attach upgrades to first upgrade your content to SharePoint 2010 Products and then to SharePoint 2013. More information, please refer to
    it.
    Or, you can use a third party to migrate SharePoint 2007 to SharePoint 2013.
    Here are some similar posts for your reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/e9542ff4-7812-4e41-9a31-1fe8966c2988/moss-2007-to-sharepoint-2013-migration?forum=sharepointgeneral
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/da49e742-5e38-4b13-9dee-84b2bb4a5cef/migrating-custom-site-definitions-from-moss-2007-to-sharepoint-2010?forum=sharepointdevelopmentprevious
    http://sharepointpromag.com/blog/migrating-sharepoint-2007-sharepoint-2013-part-1
    http://sharepointpromag.com/blog/migrating-sharepoint-2007-sharepoint-2013-part-2
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Assign Values to Category column in custom Site template by using save a s template method

    Hi All,
    I am trying to develop a new custom site/web template in SharePoint 2013. In the site  I  have used Issue tracking list. I rename Issue status  to Risk status. In the category column I gave my custom values e.g.
    <CHOICE>Change Management</CHOICE>
                        <CHOICE>Funding</CHOICE>
                        <CHOICE>Global Communication</CHOICE>
                        <CHOICE>Implementation</CHOICE>
                        <CHOICE>Interdependencies</CHOICE>
                        <CHOICE>Objectives</CHOICE>
                        <CHOICE>Organizational Culture</CHOICE>
                        <CHOICE>Resource Availability</CHOICE>
                        <CHOICE>Sponsorship</CHOICE>
                        <CHOICE>Supportability</CHOICE>
                        <CHOICE>Technical</CHOICE>
    I saved the site as template and uploaded the custom template into site collection. When I created a new site based on the custom template I noticed Risk status has been renamed to default Issue status and category  column has default values e.g. category
    1 category 2 etc. How can I fix it  ? Your help will be highly appreciated

    Hi,
    As the error message suggests, it is not supported to add this app into a site template. To work around this issue, it is recommended to remove this app from your
    site before saving it as template.
    The KB article below would provide more details about this issue:
    https://support.microsoft.com/en-us/kb/2885566?wa=wsignin1.0
    To install this app to the specific sites you want in a batch, administrators can also use the App Catalog to push apps to specific site collections, managed paths,
    and site templates.
    More information about this:
    http://blogs.msdn.com/b/richard_dizeregas_blog/archive/2013/03/04/sharepoint-2013-app-deployment-through-quot-app-stapling-quot.aspx
    https://msdn.microsoft.com/en-us/library/office/fp179896.aspx?f=255&MSPPError=-2147217396
    I would also suggest you submit a feedback to the Office Developer Platform if there any expectation about the future version of Office 365 SharePoint Online:
    http://officespdev.uservoice.com/
    It
    is a place for customers provide feedback about Microsoft Office products. What’s more, if a feedback is high voted there by other customers, it will be promising that Microsoft
    Product Team will take it into consideration when designing the next version in the future.
    Thanks 
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • OracleAS Web Cache Architecture - Web Cache placed at Customer site

    Thanks In advance for all your support.
    What I am looking for is an WebCache technical architecture slide where WebCache is placed at the customer sites and connecting to the APPS server @Oracle ADC.
    If you would have this information great or if you could provide any other place or person that I may contact that could provide this information, this would be greatly appreciated.
    Thanks -- Gary

    Hi Gary!
    In theory it does not matter where you place the webcache. However you need to make sure that the connection between the webcache and the origin server is encrypted using SSL (HTTPS).
    I would suggest not to set the webcache system at the customers site. Who is going to manage the box? Who is responsible for it?
    cu
    Andreas

  • Supplier Site Contacts Open Interface Import Program is erroring out.

    Hi,
    We are on 12.0.4 on solaris 10.
    Tomorrow is go-live in one of our client, When we doing data migration. Uploaded the data into Interface table. From there we are running this standard program to push th edata into standard table.
    Its erroring out saying:
    ================
    Enter Password:
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: unable to extend temp segment by 128 in tablespace TEMP2
    ==> SELECT INT.org_id C_Rejected_Org_Id,
    ===============
    I have added 2 GB of Tempfile to the tablespace even though it is erroring in the same. And it is taking too much time to give error.
    We are tried with only one record also it is taking 1 hr to give the error.
    Please help me out in resolving the same.
    Many thanks in Advance..
    Supplier Site Contacts Open Interface Import

    I believe you hit Bug# 6624764, so you may need to apply (Patch 6624764 - SUPPLIER REPORT ERROS WITH ENTER PASSWORD: REP-0069: INTERNAL ERROR REP-57054).
    Please log a SR to confirm this with Oracle Support.
    Note: 565898.1 - Oracle Financials Software Updates, Release Update Pack 5
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=565898.1

  • Custom PL/SQL API that inserts the data into a custom interface table.

    We are developing a custom Web ADI integrator for importing suppliers into Oracle.
    The Web ADI interface is a custom PL/SQL API that inserts the data into a custom interface table. We have defined the content, uploader and an importer. The importer is again a custom PL/SQL API that will process the records inserted into the custom table and updates the STATUS column of the custom interface table. We want to show the status column back on the spreadsheet.
    Defined the 'Document Row' import rule and added the rows that would identify the unique record.
    Errored row import rule, we are using a SELECT * from custom_table where status<>'Success' and vendor_name=$param$.vendor_name
    The source of this parameter is import.vendor_name
    We have also defined an Error lookup.
    After the above setup is completed, we invoke the create document and click on Oracle->Upload.
    The records are getting imported, but the importer program is failing with An error has occurred while running an API import. The ERRORED_ROWS step 20003:ER_500141, parameter number 1 must contain the value BIND in attribute 1.'

    The same issue.
    Need help.
    Also checked bne.log, no additional information.
    <bne:document xmlns:bne="http://www.oracle.com/bne">
    <bne:message bne:type="DATA" bne:text="BNE_VALID_ROW_COUNT" bne:value="11" />
    <bne:message bne:type="DATA" bne:text="BNE_INVALID_ROW_COUNT" bne:value="0" />
    <bne:message bne:type="ERROR" bne:text="An error has occurred while running an API import"
    bne:cause="The ERRORED_ROWS step 20003:ER_500165, parameter number 1 must contain the value BIND in attribute 1."
    bne:action="" bne:source="BneAPIImporter" >
    <bne:context bne:collection="collection_1" />
    </bne:message><bne:message bne:type="STATUS"
    bne:text="No rows uploaded" bne:value="" >
    <bne:context bne:collection="collection_1" /></bne:message>
    <bne:message bne:type="STATUS" bne:text="0 rows were invalid" bne:value="" >
    <bne:context bne:collection="collection_1" /></bne:message></bne:document>

  • Creation of customer with contact person detials using BAPI

    Hi, 
    What is the standard BAPI for creating customer.  I need to create the customer with contact person
    details, what BAPI i can use for this, i was trying with 'BAPI_CUSTOMER_CREATEFROMDATA1' by populating structure personal data and copy reference data..  but it is giving some problem like currency is not entered.....   can any  one send me the sample code with this BAPI. Any help will be highly appreciated.
    Thanks a lot in advance.

    Hi, 
    What is the standard BAPI for creating customer.  I need to create the customer with contact person
    details, what BAPI i can use for this, i was trying with 'BAPI_CUSTOMER_CREATEFROMDATA1' by populating structure personal data and copy reference data..  but it is giving some problem like currency is not entered.....   can any  one send me the sample code with this BAPI. Any help will be highly appreciated.
    Thanks a lot in advance.

  • Not able to change page layout in Custom Site definiton

    Hi All,
    I have created a custom site definition and deployed on server, it is successfully deployed and running.
    But when I change the page layout of default.aspx it is not changing the page layout.
    Please guide me where I am making mistake and what properties I need to set of default.aspx in ONET.xml.
    Thanks in advance
    Dharmender Sharma

    Below property is there in onet.xml file
    <Property Key="DefaultPageLayout" Value="~SiteCollection/_catalogs/masterpage/MyLayout.aspx"/>
    so change that property
    Please find the more references
    http://sharepoint.stackexchange.com/questions/70018/how-to-change-the-page-layout-of-the-default-page-in-share-point-2013
    http://blogbaris.blogspot.in/2010/11/setting-default-page-layout-in-onetxml.html
    Find the similar post
    http://social.technet.microsoft.com/Forums/en-US/da271908-ebab-4ddd-ae85-f36864669046/defaultpagelayout-in-onetxml-not-working?forum=sharepointgeneralprevious

Maybe you are looking for

  • Ressource Explorer - up to date?

    Hello I told a user to uninstall PC games I saw some time ago in SCCM Reports. Now I see some games in ressource explorer under his PC again. I do not know if these are the same games or new games. But I would like to make sure that the applications

  • Compile error when using DRAM

    I am using the NI PCIe-1473R Framegrabber on Labview 2010 SP1. I would like to do some image processing on the FPGA. I started off with the 10-Tap 8-Bit Camera with DRAM example. I am trying to replace the DRAM FIFO with DRAM circular buffer. I need

  • [bug] Album arrange is wrong sequence

    I'm Classical Music lover, and I have rip my large amount of CDs to iTune. I rename those album in to the sequence, such as Album No.1, Album No.2, Album No.3, ... Here I found a bug, if I have more than 9 album (going to have 2-digit), the sequence

  • Update project fields including custom fields

    Hello forum members, i am trying to write a utility that would migrate project data from Oracle database into Project Server by using CSOM. However, SetCustomFieldValue() method is not working for me. I am getting the following  'Microsoft.ProjectSer

  • Upgrading my MBP to 16 gigs of RAM - 1.35 volt vs. 1.5 volt?

    Hey all, There does not seem to be a diffinitive answer to this question.  The picture below is of the existing ram in my Apple MacBook Pro 2.2GHz Intel Core i7 (15-inch DDR3) Early-2011.  When I look this RAM up to find out the voltage, it appears t