Cannot retrieve business partners in SAP mobile iPad

Hello Colleagues,
since some days I'm not able to retrieve business partners in my SAP mobile App.
Neither in iPad nor in iPhone.
I tried it on 2 different test servers.
A couple of day's before I saw all the business partners.
The only change I did in the last days was executing the steps regarding the Java JRE that was recommended by SAP Note 1582526.
In the Message-Log I've found the following:
The SQL-Exception with the ErrorCode 242 points to a conversion error from the given Date-String to a DateTime Value.
The Date-String is automatically inserted by the (whatever) system, it is the current date.
Is there a possibility to change the DateTime Format so the query can pass thru and I can see the business-partners?
Thank you in advance
Rudy.

Problem solved
After setting the language of the sql server "sa" from german to english, everything works fine.
I don't know why this problem occurred. I never changed the language before...
Cheers
Rudy

Similar Messages

  • How to retrieve Business Partners Per Target group

    Hi experts!!!
    I am new to CRM development and i need to find the tables related to the target group.
    So far i have only found some tables that hold the T.G. GUID, but i cannot understand how these are connected among them.
    The requirement i have is to retrieve all the bussiness partners related to a specific target group.
    So in the selection screen i should use the target group. (Which field is that??)
    Please help!!!
    Thank u in advance!!!

    HI Grigoria,
    The tables that hold the information that you have requested for is as follows:
    Assuming you found the TG GUID for which you are trying to find the BP's inside it
    Go to Table CRMD_IM_ML_HEAD
    Paste the TG Guid value in the TARGETGRP_GUID field.This would return you "ML_GUID_H" value.
    Take this Guid value and go to table "CRMD_IM_ML_ITEM"
    Paste the ML_GUID_H value from the previous table in the field "ML_GUID_H" of the above table.
    This will return all the BP Guids associated in that TG , which you can convert into the BP # using an FM or from the table BUT000
    Hope this Help's
    Regards,
    Naveen

  • Adobe Form with XML interface cannot retrieve all data from SAP

    hi all
    I want to use the Adobe forms for the real estate module.
    I had seen that adobe forms can have an interface with XML input and output as parameter.
    In the interface type only the /DOCPARAMS an the DOCXML are INPUT parameters which are available.
    No other INPUT parameter can be added to it.
    When i try to retrieve the data in real estate there are some default function modules for retrieving the data from real estate.
    But this function modules also are going to find out if the form which asks for this information has a IMPORT parameter
    for the required data. For example, the SENDER data is retrieved, but before the default function module retrieve this data
    the function module checks if the form has a INPUT parameter SENDER.
    And that is not the case. And i cannot create the SENDER parameter to it, because this INTERFACE type does not allow it.
    Does anybody know a solution herefore?
    kind regards,
    Anton Pierhagen

    Hi Bhaskar
    It is a long time ago, almost 2 years.
    I created my own custom development for calling the Adobe form. This custom development uses the correct function module interface with the IMPORT XML.
    The XML which i sent as IMPORT PARAMETER to the form is also created by own custom development. Via the default XML class of SAP
    So that was my solution
    Kind regards,
    Anton Pierhagen

  • Relationship cannot be created between identical business partners

    Hello,
    I am implementing CRM 5.0 and trying to create business partner relationships to the identical business partner.  For example, I am trying to makbe BP#1 have te relationship 'Has a Contact of' to BP#1.  However, I am getting the error message:
    'Relationship cannot be created between identical business partners'.
    (Message no. R1776)
    Has anyone ever encountered this error?  Is there any way to create a relationship in SAP-CRM to the same business partner?
    Thanks much for your help,
    Dan

    Hi Daniel
    In short: No, it is not possible to have a relationship "between" a BP and itself.
    In long: In R/3 there are partner roles like Sold to, ship to and others. When CRM was designed the people at SAP did want to simplify a bit and implemented the following logic for partner determination: If there is no relationship of a searched type, the BP itself is taken. As a result a relationship pointing to its source is not allowed as it would duplicate the information already existing.
    Hope this helps,
    Kai

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • I get a Notice of..."This iPad cannot be used because the apple mobile device service is not started....what is this and how do I fix it..Help please

    I get a notice when trying to sync my iPad. "this iPad cannot be used because the Apple Mobile Device Service is not started".....What is this and how can I fix it? Help please

    Here is a YouTube video which should guide you through a solution:  http://www.youtube.com/watch?v=VLFAo-FWLxE

  • When I try to sync by Ipad into my Itunes on my PC, I get the message on my PC "The Ipad cannot be used becaused the Apple Mobile Device service is not started". What do I need to do to get it started so I can sync my Ipad?

    when I try to sync my Ipad into my Itunes on my PC (first time I have done this) , I get the message on my PC "The Ipad cannot be used because the APple Mobile Device service is not started". What do I need to do to get it started? I went into my account and there is no obvious way to get it started.

    See Here
    AMDS for Windows
    http://support.apple.com/kb/TS1567

  • I get an error message on my netbook when I plug my Ipad into it to sync. the ipod cannot be used because the apple mobile service is not started

    I am getting an error message when i try to sync my ipad and my netbook. It used to work. this ipad cannot be used because the apple mobile device service is not started.

    I'd start with the following document with that one:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • This ipad cannot be used because the apple mobile device service is not started

    Can someone please help me with this. All of a sudden my computer keeps popping up with a message saying "this ipad cannot be used because the apple mobile device service is not started" I am trying to sync some programmes that my son has deleted off his ipad. Previously I have been able to log into itunes, plug my ipad into the computer and it just syncs automatically. Can someone PLEASE help me.

    There are instructions on this page for starting the AMDS : http://support.apple.com/kb/TS1567

  • I have this message "This Ipad cannot be used because the Apple Mobile Devices serivce is not started"

    i just bought an ipad2 and this is my first setup, and once i hock it up i recieve the below message
    "This IPAD cannot be used because the Apple Mobile Device is not working"

    There are instructions on this page for starting the AMDS and how to set it to start automatically : http://support.apple.com/kb/TS1567

  • SAP Connector: Retrieve Business Components?

    Hello,
    i am evaluating the features of the SAP Connector. I deployed the login-data and checked the connection ("Success!"). Then I tried to import metadata.
    I see the Message "Retrieving Business Components.." for e few seconds, then it disappears. There is no metadata imported and no error message.
    I tried this both with 10gR1 and 10gR2.
    Can you help me?
    Tobias

    Which version of SAP system are you connecting to?

  • Hyperion Business Rule Error: Cannot retrieve connected root element for

    Hi,
    I am trying to open a business rule in EAS and I am recieving the following error: Cannot retrieve connected root element for Planning/Servername/Application/Database.
    I am able to connect to the application via Planning Web, but I am recieving this message when I am trying to open the business rule in eas.
    hoping if someone has come across this issue before and has been able to successfully fix it.

    Hi,
    I have 2 BRs, one is with RTP and another without RTP (basically a clacscript as BR).
    I don't have any issue with the BR without RTP.
    When I try to validate BR withRTP, validation is failing with
    Unable to run or validate this rule (ConsolidateTestRTP) against the following location: Planning/servername/appname/dbname for user abcd.
    Detail:Exception occurred. Please check your log file for details.
    2009-04-09 12:35:58,803 WARN AWT-EventQueue-0 com.hyperion.hbr.core.MetadataManagerServerRemote - Cannot retrieve connected root element for Planning/servername/appname/dbname
    Restarted RMI,Planning,EAS services. Logged into planning first and then to EAS. Still getting error
    2009-04-09 12:41:39,881 FATAL AWT-EventQueue-0 com.hyperion.hbr.client.LauncherWindow - Exception:
    With thought of may be the syntax of RTPs in BR changed, deleted RTP in the code but still BR has RTP (I mean BR has RTP and is not used in calculations), still getting error during validation. I can create new BRs and associate to outline.
    Thanks

  • Error message on iTunes "This iPad cannot be used because the Apple Mobile Device service is not started

    Can anyone help me with this?  When I plug in my iPad I get the error message from my "This iPad cannot be used because the Apple Mobile Device service has not started.  I saw the suggestion to turn off my iPad, wait a few minutes and turn it back on but that didn't work. 
    Hope someone can help me.  I am using Windows 8 and my iPad is the 3rd generation 64G.
    Thank you.

    I'd start with the following document with that one:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • When i connect my ipad to my computer i get this message "this ipad cannot be used because the apple mobile device service is not started" what does this mean

    hi, i connected my ipad to my computer to transfer movies i downloaded from itunes...never had problem untill now...when i connected the ipad i recieved this message " this ipad cannot be used because the apple mobile device service is not started" i do not know what this means or how to fix?

    Take a look at this link, http://support.apple.com/kb/TS1567

  • HT1386 Why can't I sync my iPad to pc, it says this iPad cannot be used because the apple mobile device service is not started

    Why can't I sync my iPad to pc, it says this iPad cannot be used because the Apple mobile device service is not stated, the last time they were synced was December and I had no problem.

    Log in as an Admin User on your PC. Type 'Services' in the search area above when you click on start. (or see control panel and select Admistrative Tools.)
    Select the Services shortcut.  In the window that appears with your listed service, navigate to ipod service, Apple Mobile Device service, and, Bonjour Services.  Doubleclick them to get the property page.  Change startup to automatic, click apply.  Then click start,
    There is a known issue that when iTunes updates it incorrectly sets the Service startup type - this is normally due to installations on Vista and win7 services and  drivers that run in the Local Sstem requiring Admin account permissions that are not always granted with User Account Elevation, when running installations or updates in User account.
    Normally the Local System is set to inherit the User account permission token when being set up - but Apple in their infinite wisdom have a higher token in place for their services.  so a standard user cannot derogate the required elevation, even with the UAC to admin prompt, since the local system is owned by the Machine account and only Admin, bBackup, Restore, Machine, operator accounts carry the same descriptor permissions on process ownership to set these services correctly.
    Third party security programs, such as Kaspersky can also limit installations by User account installations, which adds to the problem.  I have had a few installations fail, even in Admin mode - because Kaspersky sits on par with the Main Machine Administrator account for watching program and installation directories and registry keys - (which have  higher privilege levels in some respects than the ordinary Admin account you normally start a new machine in before you add any other user accounts- all very confusing - but that's Microsoft all over for you.
    Follow Ralph's advice if you do not have the necessary software already installed.  You should install Apple's Application Management Software - which will look after the installation of all required elements for you and notify you of updates pending.  In options have it set to Notify only - not all updates may be requred, and this option allows you to see what is being installed.  It is good practice to set all updating software to Notify only - especially any thirdparty software - much of which carry all sorts of little 'extra's' you  may not need or want.
    It is also good practice to keep an eye on your Program and Features option in control panel, just to see what is being installed and when - including Windows updates.
    Sorry about the long reply, but with December being your last sync - a lot can change in the meantime. Best be prepared.
    Best wishes, Ct

Maybe you are looking for