Connection to the repository from AMT application

Hello all,
I have the following issue:
- I had Mobile Sales installed in my laptop.
- I have installed AMT application afterwards, by executing application SetupAMTRTOs.exe (no connection parameters where asked for this).
- I have created ODBC access to the Repository server (to the ars_db), Tested and it is OK.
-  I have assigned AMT user subscription and Authorization subscriptions to my site.
When I launch AMT, logon works OK, but message says: "Cannot connect to repository", then I cannot access objects from the repository.
What should I do to connect to the repository?
Thanks all!
Judit.

Hi,
I remember there is (should be) another registry node for the amtbol settings (as AMT is using a different BOL than MSA) -> see below for 4.0...
Did you also change the user/pwd for the DSN?
Regards,
Wolfhard
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\SAP\CRM\Mobile\BOL\Apps\amtbol]
[HKEY_LOCAL_MACHINE\SOFTWARE\SAP\CRM\Mobile\BOL\Apps\amtbol\ars]
"RelativePath"="
bol
apps
amtbol
ars
"Path"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\SAP\CRM\Mobile\BOL\Apps\amtbol\msgInfo]
"RelativePath"="
bol
apps
amtbol
msginfo
"Path"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\SAP\CRM\Mobile\BOL\Apps\amtbol\VBA]
"RelativePath"="
bol
apps
amtbol
vba
amtbol
prj"
"Path"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\SAP\CRM\Mobile\BOL\Apps\amtbol\VBA\BOL]
"0"="amtbol.classFactory"

Similar Messages

  • How to connect to  Oracle database from webdynprojava application

    Hi
    How to connect to  Oracle database from webdynprojava application. where can we provide the code to connect to database.?
    Thank You.

    Hi,
    You need to create  Java Bean model. The bean is a typical java bean with default constructor, getter and setter. You can have additional methods for query etc. The attributes in the class will be your model node and attributes.
    However you need to configure the connection and create JNDI using visual administrator before writing the code.
    You can also consider writing Session EJB with oracle and using them in WD.
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/dcaa4f05535591e10000000a1553f7/frameset.htm
    Srini

  • Data Services 12.2.2.0 cannot open connection to the repository NEW Install

    I can connect to the repository DB using Toad and SQL Management Studio, but I cannot connect with DS. I've tried 12.2.0.0 and most recently 12.2.2.0 - nothing is working, any helpful advice is appreciated.
    DS SERVER
    SAP BusinessObjects Data Services XI 3.2 on Windows 2008 Server Standard 64bit SP2
    DBMS SERVER
    SQL 2005 (Microsoft SQL Server Standard Edition (64-bit)) on Windows 2K3 Server R2 Enterprise SP2 64bit (Microsoft Windows NT 5.2 (3790))
    ERROR
    Cannot open connection to the repository.  The error message from the underlying DBMS is <ODBC call <SQLDriverConnect> for data source <10.101.212.35> failed: <[Microsoft][ODBC SQL Server Driver][DBNETLIB]Invalid connection.>. Notify Customer Support.>. (BODI-20006)
    DS VERSION
          SAP BusinessObjects Data Services
            Version: 12.2.2.0

    Hi,
    which middleware are you using to connect to the sql2005 server ? For DS3.2 SP2 noyl the following middleware is supported to connect to MS SQL2005 RTM - SP3
    Microsoft ODBC MDAC 2.8 SP1 or later
    Regards
    -Seb.

  • Search Error: This item could not be crawled because the crawler could not connect to the repository.

    Our Search Service got hosed after install of SP1/June CU (didn't upgrade), so I re-created it, but when setting up rules, content sources, I am getting the following error:
    This item could not be crawled because the crawler could not connect to the repository.  I tried crawling using admin account, so I don't think it is permission related.  The DisableLoopbackCheck in the registry is already set...
    We previosly had crawl working on this farm, so shouldn't be because we are using host headers and the loopback issue.  Does anybody have any ideas?  Another error that may be related...
    SharePoint Web Services Round Robin Service Load Balancer Event: EndpointFailure
    Process Name: OWSTIMER
    Process ID: 1612
    AppDomain Name: DefaultDomain
    AppDomain ID: 1
    Service Application Uri: urn:schemas-microsoft-com:sharepoint:service:edd515218442481abce89e54e3c63a64#authority=urn:uuid:a297b0fb965f465ca42051f55fa3f4bd&authority=https://spapp-wc-2p:32844/Topology/topology.svc
    Active Endpoints: 4
    Failed Endpoints:3
    Affected Endpoint:
    http://[ourservername]:32843/edd515218442481abce89e54e3c63a64/ProfileService.svc
    Any suggestions are appreciatted, this is a tricky one...
    Jonathan Herschel

    Make sure your hosts file on each server in your farm has 127.0.0.1  webappname in it for each SPSite you're trying to crawl
    Look in %systemroot%\system32\drivers\etc and edit the hosts file so that it has entry for web app
    make sure search account listed as access account is also service admin for search service
    check user policy on web app, make sure that account has full read
    Check that SharePoint Web Services Root app pool is started on server that is indexing farm
    if still cant crawl, give search account db_owner on content db using sql server management studio
    Set BackConnectionHostNames for site collection.
    Then in a non prod environment, reset index and perform a full crawl, repeat in prod.
    Stacy Anothersharepointblog.blogspot.com

  • Attn - The correct way to connect to the repository

    From iFS Product Management.
    Many people appear to be having trouble connecting to the repository and are using the wrong API calls to do. The recommended API calls changed between beta and production. For the production release here is the correct way to connect:
    1. Four pieces of information are need to connect to the repository
    1. The iFS User Name
    2. The iFS User's password
    3. The properties file to be used
    4. The database password of the user who owns the iFS Schema
    This is different from the beta where the database password was hardcoded into the properties file.
    Note that any TNSNAMES information is still containing in the databaseURL entry in the properties file.
    package ifs.demo.samples;
    import oracle.ifs.beans.*;
    import oracle.ifs.common.*;
    import java.util.Locale;
    public class ConnectionTester extends Object {
    public static LibrarySession testConnection()
    throws IfsException
    LibraryService service = new LibraryService();
    CleartextCredential me = new CleartextCredential("gking","ifs");
    ConnectOptions connect = new ConnectOptions();
    connect.setLocale(Locale.getDefault());
    connect.setServiceName("IfsDefault");
    connect.setServicePassword("manager");
    return service.connect(me,connect);
    public static void main(String[] args)
    try {
    LibrarySession ifs = testConnection();
    ifs.disconnect();
    } catch (IfsException e) {
    IfsException.setVerboseMessage(true);
    e.printStackTrace();
    Note that in this example "gking" is the iFS user name, "ifs" is the gking user's ifs password. "manager" is the password of the database user who owns the iFS Schema.
    "IfsDefault" is the server properties file that describes the ifs connection. This file is in called "IfsDefault.properties" and is located in the package oracle.ifs.server.properties". This means that the folder that contains the 'oracle' folder that is the root of this package must be referenced in the class path when running this example.
    Note, if you use the older, 3 argument form of the connect you will get an unable to connect exception as the iFS will not have the Schema Password.
    null

    When I run the example below on Solaris (after setting the CLASSPATH etc., I get a oracle.ifs.common.IfsException: IFS-21008: Login Failure
    oracle.ifs.common.IfsException: IFS-10170: Invalid name/credential.
    (I am providing all 4 pieces of information for connecting)
    When using the web interface the same userid and password work fine (system/manager).
    Please help.....
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mark_d_Drake ():
    From iFS Product Management.
    Many people appear to be having trouble connecting to the repository and are using the wrong API calls to do. The recommended API calls changed between beta and production. For the production release here is the correct way to connect:
    1. Four pieces of information are need to connect to the repository
    1. The iFS User Name
    2. The iFS User's password
    3. The properties file to be used
    4. The database password of the user who owns the iFS Schema
    This is different from the beta where the database password was hardcoded into the properties file.
    Note that any TNSNAMES information is still containing in the databaseURL entry in the properties file.
    package ifs.demo.samples;
    import oracle.ifs.beans.*;
    import oracle.ifs.common.*;
    import java.util.Locale;
    public class ConnectionTester extends Object {
    public static LibrarySession testConnection()
    throws IfsException
    LibraryService service = new LibraryService();
    CleartextCredential me = new CleartextCredential("gking","ifs");
    ConnectOptions connect = new ConnectOptions();
    connect.setLocale(Locale.getDefault());
    connect.setServiceName("IfsDefault");
    connect.setServicePassword("manager");
    return service.connect(me,connect);
    public static void main(String[] args)
    try {
    LibrarySession ifs = testConnection();
    ifs.disconnect();
    } catch (IfsException e) {
    IfsException.setVerboseMessage(true);
    e.printStackTrace();
    Note that in this example "gking" is the iFS user name, "ifs" is the gking user's ifs password. "manager" is the password of the database user who owns the iFS Schema.
    "IfsDefault" is the server properties file that describes the ifs connection. This file is in called "IfsDefault.properties" and is located in the package oracle.ifs.server.properties". This means that the folder that contains the 'oracle' folder that is the root of this package must be referenced in the class path when running this example.
    Note, if you use the older, 3 argument form of the connect you will get an unable to connect exception as the iFS will not have the Schema Password.<HR></BLOCKQUOTE>
    null

  • Connecting a KM repository from another portal to KM via WebDAV - meda data

    Hello there,
    we are evaluating the option of connecting a KM repository from another portal to KM via WebDAV in our Federated Portal Scenario (in fact, we wish to get rid of the the remote roles as soon as possible).
    This can be accomplised as described here [Connecting a KM repository from another portal to KM via WebDAV|https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/2783].
    Or for BI as described in Note 969040 - Federated portal network and Information Broadcasting .
    One question : in case meta- data properties are set, where are these stored? In the consumer portal, or in the source system, the producer portal?
    I.e when I set properties on documents of the WebDav repository, and I go to the source system, will the same meta- data properties be set there?
    Many thanks!

    For testing I've integrated the remote KM repository as WebDAV and enabled the properties repository service :
    - custom meta- data defined on the source (producer) KM system is not visible in the consumer portal if no value has been set on the source system :
    Let's say you have a property 'country' on the source system, define a value for it + save, you can view the property in the consumer system.
    - if you define both the same properties in consumer & producser system, you can view the properties in both system, and the value set in either one of the systems is displayed in both of them.
    In short : the custom meta-data properties need to be defined on both systems

  • Unable to connect to the repository for this domain

    Hi,
    on the Application Server Control interface of my ContentDB Middle-Tier instance, I have the following error on top of the "Content" Domain :
    Error: Unable to connect to the repository for this domain
    Due to this error, I'm not able to start the default Node (OC4J_Content is started) and I don't see any Domain properties, Node Configurations, Service Configurations within the Administration of the domain. This means that I cannot change any of these properties, but ContentDB is up and running...
    When I try to start the Node, I have the following error in the opmn log:
    2007/04/12 18:47:32 [oracle.ifs.management.domain.NodeManager] [10] INFO: Initialize: starting service IfsDefaultService
    2007/04/12 18:47:32 [oracle.ifs.management.domain.NodeManager] [10] SEVERE: Node Manager, unable to start service, throwing
    oracle.ifs.common.IfsException: IFS-45083: Unable to start service (IfsDefaultService)
    oracle.ifs.common.IfsException: IFS-20102: Unable to start service (IfsDefaultService)
    oracle.ifs.common.IfsException: IFS-20010: Unable to get service configuration properties (SmallServiceConfiguration)
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-02248: invalid option for ALTER SESSION
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
         at oracle.jdbc.driver.GetCharSetError.processError(T2CConnection.java:3260)
         at oracle.jdbc.driver.T2CConnection.getCharSetIds(T2CConnection.java:2966)
         at oracle.jdbc.driver.T2CConnection.logon(T2CConnection.java:318)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:433)
         at oracle.jdbc.driver.T2CConnection.<init>(T2CConnection.java:141)
         at oracle.jdbc.driver.T2CDriverExtension.getConnection(T2CDriverExtension.java:78)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at oracle.ifs.beans.LibraryService.getServiceConfigurationProperties(LibraryService.java:812)
         at oracle.ifs.beans.LibraryService.startServiceUsingDatabaseUrl(LibraryService.java:607)
         at oracle.ifs.beans.LibraryService.startService(LibraryService.java:520)
         at oracle.ifs.management.domain.NodeManager.startService(NodeManager.java:2486)
         at oracle.ifs.management.domain.NodeManager.bootstrapServices(NodeManager.java:3201)
         at oracle.ifs.management.domain.NodeManager.run(NodeManager.java:1012)
         at oracle.ifs.management.domain.NodeManager.main(NodeManager.java:594)
    Does anyone have an idea on how to solve this ?
    Regards,
    Nicola
    PS:
    I have OracleDB, ASInfrastructure and ContentDB (only one instance) installed on the same Windows 2003 server with the following versions:
    - Oracle Database 10.2.0.1 + Oracle Database Companion CD (for Ultra Search) + Patch 10.2.0.2
    - Oracle Metadata Repository Creation Assistant 10.1.2.0.2
    - Oracle Application Server Infrastructure 10.1.2.0.2
    - Oracle Content Database 10.2.0.0

    I called Apple support at 5 pm, it is now 10:30 pm. I am STILL getting the SAME error, saying it is unable to connect to the iphone restore (for upgrading to iOS 4), they said to wait and try every thirty minutes, but it's getting old...

  • Can anybody tell me how to send/receive  the sms from java application

    Hi All,
    Can any body tell me, how to send/receive the sms from java application to mobile phones.
    I have installed the jsms engine and when i try to connect to the mobile device ,the jsms server is giving
    the following error.
    Cannot connect to GSM Device, error : -11

    Which jsms? Google finds several.
    Try the website where you downloaded it.

  • Can any body tell me, how to send/receive the sms from java application

    Hi All,
    Can any body tell me, how to send/receive the sms from java application to mobile phones.
    I have installed the jsms engine and when i try to connect to the mobile device ,the jsms server is giving
    the following error.
    Cannot connect to GSM Device, error : -11

    The best place to ask your question is at the JSMS website, forum or mailing list since this is no error that directly comes from a class belonging to the core Java classes.

  • I can no longer connect to the internet from any other device.

    Having successfully upgraded to OS X Mavericks from Snow Leopard I can now no longer connect to the internet from  any other device.  I have an iPhone 4S, a Galaxy Tab, and an internet radio, none of which can connect to the internet since the upgrade.  They connect to my BT Home Hub without a hitch, it’s just that they do not connect at all to any website.  All was fine before the update. 
    The upgrade was to my iMac and that’s fine, no connection or surfing issues. 

    Hi t0ad1e,
    The article below may be able to help you troubleshoot your Wi-Fi issue with the iPhone:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398?viewlocale=en_US
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings.
    Note: This will reset all network settings including
    previously connected Wi-Fi networks and passwords
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    I hope this information helps ....
    Have a great day!
    - Judy

  • I have a iMac with a built in airport extreme card.  Does the imac act as a wireless router so that I can connect to the internet from my iPad by tethering through my iMac?

    I have a iMac with a built in airport extreme card.  Does the imac act as a wireless router so that I can connect to the internet from my iPad by tethering through my iMac?

    Depends which iMac exactly and your network setup, you can go into System Preferences and under the Sharing pane you can enable internet sharing from ethernet (or whereever you get your internet from) to Wi-Fi.

  • Cannot connect to the internet from my MAC on WRT160Nv2 - no problems connecting from my PC

    Hi,
    I have just bought a WRT160Nv2, but I am having problems connecting to the internet from my MAC (a powerbook with OS X) when I connect to the router wirelessly. If I try from my PC the Internet works fine. Also if I connect the MAC directly to the routers LAN port, the Internet works.
    When I connect wirelessly from the MAC I do get an IP adress, and I am able to access the routers web configuration page. I can also see that the correct DNS gets assigned, so I am low on suggestions to what could be the problem.
    Currently I have the router set up to WPA2 encryption, but I have tried different settings, e.g. no security at all with the same result.
    I just tried upgrading to the newest firmware (WRT160Nv2_v2.0.02_008), also with no luck.
    Also I should mention that the MAC can connect to other wireless connections without problems, e.g. my previous ZyXel DSL router. 
    Any ideas to what could be the problem?
    Thanks,
    Rasmus

    Well maybe WPA2 Security is not compatible with Mac so change the Security mode to WEP or WPA and prepare security key of 10 digit password and while connecting to the wireless network on Mac type a $ sign first followed by the 10 digit passoword and it should work.

  • HT1766 How can I bring back the information from an application that was mistakenly deleted?

    How can I bring back the information from an application that was mistakenly deleted?

    Only if you backed up the phone before that and did not back up after that. App settings and data are part of the backup. But all other data will be set back as well, you can't choose a single app to be restored from the backup.

  • Safari doesn't connect to the internet from my mailbox or from Google. I use a MAC, OS X version 10.8.4

    My MAC desktop doesn't connect to the internet from an email or from  safari.  Only the first few letters of the web address I want to use appears in the address bar and then the wheel spins and spins non-stop.  Thanks for any suggestions on how to fix this problem.

    Power off the router. Wait awhile. Power it back on. Wait until all the lights are lit up properly.
    It will take a while.
    Restart the computer.
    Start up in Safe Mode
    http://support.apple.com/kb/PH11212
    Best.

  • Get all the objects from an application

    Hi
    Does anybody know how to get all the expression from an application via ABAP?
    Thanks !

    Try this:
    * Get the BRFplus factory and query.
      lo_factory = cl_fdt_factory=>get_instance( ).
      lo_query = lo_factory->get_query( ).
    * Get Application id.
      lo_query->get_ids(
        EXPORTING
          iv_name        = p_appln
          iv_object_type = if_fdt_constants=>gc_object_type_application
        IMPORTING
          ets_object_id  = lt_id_application ).
      READ TABLE lt_id_application INTO lv_id_application
                 INDEX 1.
    * Build selection.
      ls_selection-queryfield = if_fdt_admin_data_query=>gc_fn_application_id.
      ls_selection-sign   = 'I'.
      ls_selection-option = 'EQ'.
      ls_selection-low    = lv_id_application.
      INSERT ls_selection INTO TABLE lt_selection.
      ls_selection-queryfield = if_fdt_admin_data_query=>gc_fn_object_type.
      ls_selection-sign   = 'I'.
      ls_selection-option = 'EQ'.
      ls_selection-low    = if_fdt_constants=>gc_object_type_expression.
      INSERT ls_selection INTO TABLE lt_selection.
      ls_object_category_sel-customizing_objects = abap_true.
      ls_object_category_sel-masterdata_objects  = abap_true.
      ls_object_category_sel-system_objects      = abap_true.
    * Perform selection.
      lo_query->select_data(
        EXPORTING
          its_selection          = lt_selection
          is_object_category_sel = ls_object_category_sel
        IMPORTING
          eta_data               = lt_id_expression ).
    * Process the Expressions.
      LOOP AT lt_id_expression INTO lv_id_expression.
    *   Get Expression object.
        lo_expression = lo_factory->get_expression( lv_id_expression ).
    *   Check Expression is not deleted or obsolete.
        lo_expression->if_fdt_admin_data~get_change_info(
          IMPORTING
            ev_deleted           = lv_flg_deleted
            ev_marked_for_delete = lv_flg_marked_for_delete
            ev_obsolete          = lv_flg_obsolete ).
        IF lv_flg_deleted           EQ abap_true OR
           lv_flg_marked_for_delete EQ abap_true OR
           lv_flg_obsolete          EQ abap_true.
          CONTINUE.
        ENDIF.
    *   Process the Expression.
        lv_name_expression = lo_expression->if_fdt_admin_data~get_name( ).
        WRITE: / lv_id_expression, lv_name_expression.
      ENDLOOP.
    Regards,
    Grogan

Maybe you are looking for

  • Using Time Machine with 3rd party drive connected to Airport Extreme

    In Snow Leopard, I connected a G-Tech drive to my Airport Extreme via USB and used that with Time Machine for backups.  It worked flawlessly most of the time, although my understanding is that this technique has not been supported by Apple since Snow

  • Trying to download itunes and its not working, can someone help plz??

    I am trying to download itunes to my computer, and everything seemed to be loading ok, but then when I get to the terms&conditions and I try to hit agree, nothing happens, it's as if I can not even click it, does anyone have any idea on what i can do

  • ORA-00933 error when selecting from remote DB

    Hi to all. Consider the following: SELECT col1, col2 FROM Table1@remoteOK. SELECT col1, col2 FROM Table1@remote LEFT JOIN Table2@remote ON (...)OK. INSERT INTO Local_Table (a, b)SELECT col1, col2 FROM Table1@remote OK. INSERT INTO Local_Table (a, b)S

  • Is there any hardware differences for iPad Wifi, depending on countries ?

    My company is a large worldwide group. Our marketing team would like to distribute iPads (Wifi only) to some sales people in several countries : Thailand, Malaisia, Vietnam, South Africa, Brasil, China, Turkey, Egypt, India, Russia. They'd like to ac

  • Left outer join with NVL as part of the join criteria

    Hi, I have query like this: Select Main.X_ID, NVL(Option1.Y_ID, Option2.Y_ID), Main.Z_ID from TableMain Main left join (Select X_ID, Y_ID from TableOption where type_cd = 'Type1') Option1 on Main.X_ID = Option1.X_ID left join (Select X_ID, Y_ID from