Error in developerguide examplecode for creating contacts

The code on pages 9-25 and 9-26 of the developer guide does not work.
The used method doesn't seem to exist.
Contact createdContact = DeviceManagerFactory.getDeviceManager() .findContacts.createContact(aContact);
It looks like a typo or copy error.
I cannot check the javadoc because I do not have the ADF Mobile source code.
There is also a duplicate declaration of the emails property.
ContactField[] emails = null;
The functionality to create contacts however works very well.
Both in javacode and by using the bindinglayer directly.
Luc

Thank you - there has been some changes between different versions of beta and also with final GA version. The JavaDoc should be fully available in the GA version, and you should be able to reference it for details.
Thanks,
Joe Huang

Similar Messages

  • Error in transaction pa30 for create form

    Hi,
    I want create new form in the transacion pa30... For do it, i go to:
    - PA30
    - Personnel no. 1
    - Infotype: 16
    - Click on edit
    - Click on printing.
    - Select the logical form name: HR_ES_COINEM_PE_202
    - Click on create form
    - When download the xml, appear an error: Internet Explorer can not download the HR_ES_COINEM_PE_202.xml from server
    What happend? Any idea?
    Thanks in advace,
    Regards,

    Why? What could be the problem?
    Thanks in advance,
    Regards,

  • OUTPUT tab is blank, it doesn't show options for creating contact sheet

    Bridge CS5 on 3.1 GHz Intel Core i5 iMac running 10.6.8
    The title says it all. When I go to the output tab to create a contact sheet. None of the options show up anymore.
    I've reset preferences and the issue still persists.
    Does anyone have any ideas on how to fix this issue?
    Thanks!

    I am connected to a network but we don't share applications. CS5 Design Premium is installed on my machine.
    See screenshot below:
    What is the relevance of this? We seem to have the same location for the output module file.
    Why does mine not work?
    See screenshot below:
    The Adobe Output Module is in my Startup Scripts but it still doesn't work.

  • Error (11556) on itunes for creating ringtone???

    So i right click on purchased song from itunes and go to create ringtone and get a error coming up everytime i try it.
    it reads-
    "Itunes cannot connect to itunes store. An unknown erroe occurred (11556).
    Make sure you network connection is active and try again."
    i checked my network and its all working fine so has anyone else had this heppen and if so have you figured this out or does anyone know what this error is???

    Yep! Once again, a 'bad apple' for Canadian. I got that 115566 error every time I tried to make a ringtone in iTunes. Happened no matter what. Then here in this forum I saw the thing about the country. I switched to United States and voila! I can make ringtunes. I still can't buy anything until I get back to the U.S. store, but it DOES make the Ringtunes problem go away.

  • What is the standard API for Customer Contact creation in R12

    Hi All,
    What is the standard API for Customer Contact creation in R12. my requirement is I need to create contact against Customer(Person/Organization).
    I need to develop pl/sql package for create Contact using the following fields
    First name , Last name , Email, Phone no, Ph ext,Mobile no,Contact no,Job title, Job title code,Country,Address1,Address2,Address3,Address4,
    City,State,Postalcode.
    Please help me.
    Thanks,
    K.Murugesan

    Hi All,
    Please update if you have any solution.
    Thanks
    Maanasa

  • Error while trying to create Contact for Bank in Cash Management

    Hi,
    I have a Bank created in Cash Management. I am trying to create a Contact for the bank but when I click on the Create Contact button, the page appears with the following error on top
    "No field listener is registered to resolve field CUST.CUSTOMER_NUMBER referenced by the flexfield with application short name AR and name RA_PHONES_HZ. Please contact your system administrator. "
    I can enter the desired values in the contact details fields like name , job code etc but then nothing happens when I click on the Apply button.
    I found the following notes on metalink for similar errors but none of them explains how to resolve the issue.
    1087754.1,
    889794.1
    791190.1
    Could someone please help me resolve the issue? I am a newbie to Oracle Apps.
    Thanks
    Susovan

    Please see the solution in (The Descriptive Flexfield With Application Name Receivables (AR) and Name Party Site Information (HZ_PARTY_SITES) Is Not Frozen [ID 743262.1]).
    Thanks,
    Hussein

  • Error while creating contact through API in Install Base

    Hello
    I am trying to create contacts when creating a install base through API...
    I tried below code as per metalink note# 215456.1 and giving the below error. I checked setup andI have 'Ship To' exists in Instnace Party Account Relationsship setup in the aplication and also I have a party Id 1232890 exist in hz_parties table with party type as 'Person' and I passed contact_ip_id as instance_party_id from CSI_I_PARTIES table for the instance to be update...
    Also, can anybody help me how to purge the error messages before calling the API, suppose if i have 2 records and all two records will error then my second record error getting contatenated with my first error and message count also getting increased(see error message below as message count coming as 2 even though there is only one error)
    SET SERVEROUTPUT ON SIZE 1000000
    DECLARE
    p_instance_rec CSI_DATASTRUCTURES_PUB.INSTANCE_REC;
    p_ext_attrib_values_tbl
    CSI_DATASTRUCTURES_PUB.EXTEND_ATTRIB_VALUES_TBL;
    p_party_tbl CSI_DATASTRUCTURES_PUB.PARTY_TBL;
    p_account_tbl CSI_DATASTRUCTURES_PUB.PARTY_ACCOUNT_TBL;
    p_pricing_attrib_tbl CSI_DATASTRUCTURES_PUB.PRICING_ATTRIBS_TBL;
    p_org_assignments_tbl CSI_DATASTRUCTURES_PUB.ORGANIZATION_UNITS_TBL;
    p_asset_assignment_tbl CSI_DATASTRUCTURES_PUB.INSTANCE_ASSET_TBL;
    p_txn_rec CSI_DATASTRUCTURES_PUB.TRANSACTION_REC;
    x_instance_id_lst CSI_DATASTRUCTURES_PUB.ID_TBL;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    x_msg_index_out NUMBER;
    t_output VARCHAR2(2000);
    t_msg_dummy NUMBER;
    BEGIN
    p_party_tbl(1).instance_party_id := null;
    p_party_tbl(1).instance_id := 1216497;
    p_party_tbl(1).party_source_table := 'HZ_PARTIES';
    p_party_tbl(1).party_id := 1232890;
    p_party_tbl(1).relationship_type_code := 'Ship To';
    p_party_tbl(1).contact_flag := 'Y';
    p_party_tbl(1).contact_ip_id := 1699185;
    x_msg_count := 0;
    p_party_tbl(1).OBJECT_VERSION_NUMBER := 1;
    -- Now call the stored program
    csi_item_instance_pub.update_item_instance(
    1.0,
    'F',
    'F',
    1,
    p_instance_rec,
    p_ext_attrib_values_tbl,
    p_party_tbl,
    p_account_tbl,
    p_pricing_attrib_tbl,
    p_org_assignments_tbl,
    p_asset_assignment_tbl,
    p_txn_rec,
    x_instance_id_lst,
    x_return_status,
    x_msg_count,
    x_msg_data);
    -- Output the results
    if x_msg_count > 0
    then
    for j in 1 .. x_msg_count loop
    fnd_msg_pub.get
    ( j
    , FND_API.G_FALSE
    , x_msg_data
    , t_msg_dummy
    t_output := ( 'Msg'
    || To_Char
    ( j
    || ': '
    || x_msg_data
    dbms_output.put_line
    ( SubStr
    ( t_output
    , 1
    , 255
    end loop;
    end if;
    dbms_output.put_line('x_return_status = '||x_return_status);
    dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
    dbms_output.put_line('x_msg_data = '||x_msg_data);
    -- COMMIT;
    END;
    ERROR
    SQL> @p
    Msg1: The Party Relationship Type (Ship To) entered is either invalid or it does
    not exist in the Installed Base Lookups
    Msg2: The Party Relationship Type (Ship To) entered is either invalid or it does
    not exist in the Installed Base Lookups
    x_return_status = E
    x_msg_count = 2
    x_msg_data = The Party Relationship Type (Ship To) entered is either invalid or
    it does not exist in the Installed Base Lookups
    PL/SQL procedure successfully completed.

    Hi
    We are in 11.5.10.2 and I already checked notes which you sent before and setups are fine as the relationship type' Ship to' having 'contacts' enabled in the setup.
    I am also seeing a differernt issue as once I update existing item instnace with the status 'Return for Credit' through API, system is not allowing me to update the extended attributes through front end application manually and I am seeing a note at the end of the screen as 'Note: This item instance cannot be updated. ' and this is only happening when I update the item instance status to 'Returned for Credit' not when I create new item instances with status as 'Created'. Is this intended functionality to restrict update on extended attributes if I change the status of item instnace to 'Return for Credit' ?
    Thanks

  • Unable to create custom phone labels for new contacts since the upgrade

    I have a AT&T iphone 4 version 4.3.1 and since the last couple of recent upgrades I have been unable to create custom phone labels for any new contacts because the lower label options are gone. This is only a problem with new contacts. My existing contacts with custom labels are still there and if I edit those contacts the table that has create custom labels is also still there, but not for new contacts. Has anyone else noticed this problem.

    If you read the error above about the hash and manifest, you will se this is a RB Setup error and not a CM12 error. You would be better to post your question in the SQL forum or better yet to use BIDS instead.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Setup encountered an error and cannot continue. Please contact Adobe Support for further assistance

    I have encountered the following error an all the systems I have attempted to run the CS4 install on.
    Setup encountered an error and cannot continue. Please contact Adobe Support for further assistance.
    We are using a modified XP SP3 image. Modified meaning unique GPO's and permission sets. I do not know what all has been changed or is out of the ordinary. We receive this error during the Checking System Profile screen. The blue bar doesn't even begin to move. It takes a couple of seconds, then fail with above stated error. The event viewer shows a security failure audit, but it shouldn't as I have full admin rights into the PC, and the network.
    My main question is what is the Checking for System Profile actually checking? Is it something in the Registry? The System32 directory? Maybe trying to create a file in the temp folder? Does anyone know what it actually does? And where I might begin to look at where my systems are hosed up at?
    Of course if you have seen this error, and know a fix, that's just as good.
    Thanks in advance.

    Hi All,
    I have exactly the same problem as Chris. I downloaded the free trial version for Adobe Photoshop Extended (CS 4) today and when trying to install, the same error message prompted when checking profile... I do not know what they are at all.
    I checked the log and it says this:
    [    3560] Sun May 10 23:52:59 2009 ERROR
    -------------------- BEGIN - Initialization Failures - BEGIN --------------------
    Fatal error initializing from proxy files.
    The following proxy files could not be loaded
    E:\Adobe_CS3\payloads\AdobeWinSoftLinguisticsPluginAll\AdobeWinSoftLinguisticsPluginAll.bo ot.xml
    E:\Adobe_CS3\payloads\AdobeXMPPanelsAll\AdobeXMPPanelsAll.boot.xml
    E:\Adobe_CS3\payloads\BridgeStartMeeting\BridgeStartMeeting.boot.xml
    --------------------  END  - Initialization Failures -  END  --------------------
    I do not have hdd storage for E drive. It is a DVD drive actually and the folder is located at the Desktop. I wonder whty the path pointed to E ~_~
    Also, should i have the CS3 prior to this CS4 Extended ?
    Any ideas?
    - cleoleeps

  • Applescript create contact sheet Error

    Hi all,
    I'm using Applescript to filter my images and create a contact sheet from those filtered images. Now I'm stuck at creating the contact sheet. The error I get is:
    error "Can’t get list of {alias \"Macintosh HD:Users:stopar:Desktop:sorted:OA0001-1.jpg\", alias \"Macintosh HD:Users:stopar:Desktop:sorted:OA0002-1.jpg\"....
    My script looks like this:
    tell application "Finder"
    set sourceFolder to choose folder  -- temporary testing by selecting a folder. File filter script will be placed here
    set filesList to (files of entire contents of sourceFolder) as alias list
    end tell
    tell application "Adobe Photoshop CS4"
    activate
    create contact sheet from files list of filesList
    end tell

    It looks at first glance that you are asking for a list twice… This worked for me… Just tested with a bunch of TIFFs. Put a basic filter in there too.
    tell application "Finder"
    set sourceFolder to choose folder
    set filesList to (files of entire contents of sourceFolder whose file type is "TIFF") as alias list
    end tell
    tell application "Adobe Photoshop CS2"
    activate
    create contact sheet from files filesList
    end tell
    and as if by magik Im back to the other me… again…

  • Error while creating a task for creating an generic task  /app/dac/CustomSQ

    Hi ,
    I have created a sql file in DAC server /app/dac/CustomSQLs/ ,just to fire an update sql in database
    In DAC task tab i have created a task with the following:
    Command for incremental load :/app/dac/CustomSQLs/DBNameBeforeLoad.sql
    Primary source :flatfileconnection
    target source:DBCONNECTION_OLAP
    Execution type:SQL FILE
    Task phase:GENERAL
    I created subject area and assembled ,then created a Execution plan.
    When i try to execute this EP ,it shows the following error in DAC log:
    ANOMALY INFO::: Error while creating a task for creating an generic task /app/dac/CustomSQLs/DBNameBeforeLoad.sql
    MESSAGE:::/app/dac/CustomSQLs/DBNameBeforeLoad.sql - invalide template name!
    EXCEPTION CLASS::: com.siebel.analytics.etl.etltask.TaskInitializationException
    com.siebel.analytics.etl.etltask.SQLFileTask.doInit(SQLFileTask.java:69)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.init(GenericTaskImpl.java:194)
    Does my above configuration is correct ..?

    verify the following settings:
    1. mapping of ECC plant and storage location and logical system number with the appropriate availability group code since this links the stock types in EWM to ECC org elements (SPRO -> EWM -> Interfaces -> ERP Integration -> Goods movement)
    2. ensure the availability group configuration is correct (SPRO -> EWM -> GR Process -> Configure availability group for putaway) - check all applicable nodes in this configuration since the availability group code is assigned in the pertinent storage types

  • Is there a way to create different groups for my contacts using the installed contact app

    I am trying to make a group on my contacts. So that it's easier to just make messages to people and not having to make group messages every single time. For example, making a group for a sports team so that I can just message everyone in the group at once.

    No not possible but you can create contact groups at www.icloud.com and if you have contact synced thru cloud the groups you make at www.icloud.com will appear on your phone

  • Getting an error while configuring VMM for System Center 2012. error - An internal error has occurred trying to contact an agent on the WIN-NTJU8CNU server: : . Ensure the agent is installed and running.

    Hi,
    I am trying to install "System Center 2012 - Virtual Machine Manager by Using a Pre-Configured VHD".
    I downloaded install guide & the binaries from http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=10712
    I have followed the installation document & getting an error while configuring VMM for System Center 2012.
    error details from log file given below:
    01:12:24:VMMPostinstallProcessor threw an exception: Threw Exception.Type: Microsoft.Carmine.WSManWrappers.WSManProviderException, Exception.Message: An internal error has occurred trying to contact an agent on the WIN-NTJTNEJ1UCN.mydomain.com server: : .
    Ensure the agent is installed and running. Ensure the WS-Management service is installed and running, then restart the agent.
    01:12:24:StackTrace:   at Microsoft.Carmine.WSManWrappers.ErrorContextParameterHelper.ThrowTranslatedCarmineException(WsmanSoapFault fault, COMException ce)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.RetrieveUnderlyingWMIErrorAndThrow(SessionCacheElement sessionElement, COMException ce)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.Invoke(String actionUri, WSManUri targetUri, Hashtable parameters, Type returnType, Boolean isCarmineMethod, Boolean forceResponseCast)
       at Microsoft.Carmine.WSManWrappers.AgentManagement.AssociateLibrary(WsmanAPIWrapper wsmanObject, String CertificateSubjectName, String& ExportedCertificate, ErrorInfo& ErrorInfo)
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.AssociateAgentServer(String fullyQualifiedServerName)
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.AssociateDefaultLibraryServer()
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.SetupLibraryShare()
       at Microsoft.VirtualManager.Setup.InstallItemCustomDelegates.PangaeaServerPostinstallProcessor()
    01:12:24:InnerException.Type: System.Runtime.InteropServices.COMException, InnerException.Message: There is a time and/or date difference between the client and server.
    01:12:24:InnerException.StackTrace:   at WSManAutomation.IWSManSession.Invoke(String actionUri, Object resourceUri, String parameters, Int32 flags)
       at Microsoft.Carmine.WSManWrappers.MyIWSManSession.Invoke(String actionUri, Object resourceUri, String parameters, Int32 flags)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.Invoke(String actionUri, WSManUri targetUri, Hashtable parameters, Type returnType, Boolean isCarmineMethod, Boolean forceResponseCast)
    01:12:24:ProcessInstalls: Running the PostProcessDelegate returned false.
    01:12:24:ProcessInstalls: Running the PostProcessDelegate for PangaeaServer failed.... This is a fatal item.  Setting rollback.
    01:12:24:SetProgressScreen: FinishMinorStep.
    01:12:24:ProcessInstalls: Rollback is set and we are not doing an uninstall so we will stop processing installs
    I have completed MSSQL server configuration and while configuring VMM the below error displayed in the wizard:
    An internal error has occurred trying to contact an agent on the WIN-NTJTNEJ1UCN.mydomain.com server: : .
    Ensure the agent is installed and running. Ensure the WS-Management service is installed and running, then restart the agent.
    I have checked that the following services are running:
    1) Verified WS-Management srvice 2) MSSQL server + MSSQL (agent)  3)SC VM Manager Agent  4)  Windows management instrumentation .
    I have joined the VM (on which installing SC VMM) in a domain(as per install guide) and installing VMM using domain account & it is in local Administrators group.
    Also I would like know if there is any stand alone SC VMM installer. If yes then please let me know the installer location & install guide.
    thanks.
    ====

    Have you installed AppController on the same machine with VMM?

  • Error using BAPI_PO_CREATE1 for creating PO with services

    Hi,
    I'm getting an error saying 'EnTER account assignment data for item' when I use BAPI_PO_CREATE1 and try to create POs with Service Items. I have filled all the required details, even then the system throws up this error message. Thanks for any help.
    Regards,
    Vijay

    what have you passed to the table POACCOUNT? and POACCOUNTX?
    Regards,
    Ravi

  • Hi, i am not able to get a Free icloud ID. Error is my device is not eligible for creating new free icloud ID. What do i do to create new one

    Hi, i am not able to get a Free icloud ID. Error is my device is not eligible for creating new free icloud ID. What do i do to create new one

    Sir, your Apple ID can be used as an iCloud account as well. They are both the same thing.
    You can learn more from --> Set up your Apple ID for iCloud and iTunes - Apple Support

Maybe you are looking for

  • Two T61's - connected, yet not resolving - other computers do

    Hello All, We have two identical T61's that suddenly stopped (even though connected to the wireless router both wirelessly and hard wired) resolving to anything on the Internet, including email client activity, etc.   Anoher older R52, which I am sen

  • How can I add a new account that has a Inbox Icon?

    Hey folks. I know it's a funny question... basically what I wanna do is add a new email account, I currently have one allready and I just created another. Now that I set up both emails, what I don't like is that their both under the INBOX so I wanna

  • View for privillage

    Hi gurus, which view will help me to konw about user priviillage . thanks

  • Can't see my photos on the screen of my laotop.

    The Photos are in the library but they will not appear on the screen. I only get a dotted frame. If I check the info it will give me all the details about the picture.How can I get these pictures to be visible. Thanks for the help

  • How to use the recovery DVD's

    Hello,  I have the Hp Pavilion Dv3-4305se, which has the Windows 7 home premium 64-bit Edition. I have the revocery DVD's but i didn't know how to use them. 1-the F11 doesn't work. it doesn't give me HP recovry, it direct me straight to the users pa