How do I know whatu0092s going wrong in XI

I’m developing a XI DEMO which extracts information from a DB using JDBC and sends it to a system using a File Adapter. I have finished with the configuration in the SLD, IR and ID; but nothing if happening: No messages on the ABAP Pipeline and neither in the RWB, JPR in green but there is a red message in the Adapter Engine with text “Is a user defined for component AF?”.
How am I supposed to start checking what’s going wrong?
Message was edited by: JAVIER PORRAS

Check the apps on your iPad that you are syncing with your iCloud account.  For example, if you are syncing contacts with iCloud, open Contacts on your iPad to see what contacts are in your iCloud account.  Similarly, the data for calendars, reminders, Safari bookmarks, iWork documents and notes could all be in your iCloud account if you are syncing with iCloud.  In addition to that, if you are backing up to iCloud, your backup is in your iCloud account.  If you enabled photo stream, your photo stream photos for the last 30 days are in your account (although they don't count against your storage).  Finally, if you enabled Mail, your iCloud email is in your iCloud account.
You can also view some of this data by going to icloud.com on your computer and signing into your iCloud account.

Similar Messages

  • I don't know whats going wrong but...

    Every couple of minute the page goes like this:
    Well I was going paste, but I'll attach instead. It looks like part of the page crashes (all black lines) and the rights itself when the page refreshes.

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • My mac desktop computer won't turn on how can I know what's wrong with it?

    It won't make the start up noise at all. Also the screen won't light. All I hear is a click noise when I click the power button. I've tried connecting it to other power outlets yet it still won't work?

    Michelle ~ Welcome to the Support Communities. This Apple doc may help:
    Troubleshooting: My computer won't turn on
    ...Found by searching Apple's Knowledge Base HERE.

  • I'm going to Poland this summer and I'm afriad my iphone5s won't wrong!how do I know it will work or will I have wifi??

    I'm going to Poland this summer and I'm afriad my iphone5s won't wrong!how do I know it will work or will I have wifi?? I need to contact my mom when I get there and I'm scared to won't be able to

    How do you normally do ti when you switch computers?
    Does Windows not have a method of transferring everything from one computer to another?
    You can use your backup copy of your computer to copy everything.
    For the itunes portion, you can type "move itunes library" into the google search bar.
    Windows should have a way to copy all doc/pics/files/contacts/calendars/etc.

  • Does anybody know if Windows 8 is causing a problem with iTunes?   Many songs on my old iPod are now missing in my iTunes library and I can't find them anywhere.  Also, I have a new iPod and am afraid of using it for fear of something else going wrong.

    Does anybody know if Windows 8 is causing a problem with iTunes?  Many songs on my old iPod are now missing in my iTunes library and I can't find them anywhere.  .  Also, I have a new iPod and am afraid of using it for fear of something else going wrong.

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • My iPhone has recently been crashing (or rather the apps) when I would try to access my text messages, contacts, phonebook, facebook, or email. I tried restarting my phone and lost all of my contacts. Anyone know what's wrong/how to fix it

    My iPhone has recently been crashing (or rather the apps) when I would try to access my text messages, contacts, phonebook, facebook, or email. I tried restarting my phone and lost all of my contacts. This has been happening more and more frequently. Today I was in my pictures and was trying to crop one and my phone shut off completely. Anyone know what's wrong with it or how to fix it?

    Make sure all apps are fully closed:
    - double tap your home button
    - hold your finger on an app
    - when the apps start to wiggle press the red "-" button on all the apps
    Now do a hard reset:
    - hold the home button and the sleeps/wake button down at the same time
    - the phone will shut off then when the apple logo ppears release both buttons
    If by then your contacts have not been restored you would need to try and retreive them from a back up on itunes/icloud that was made when the contacts were on the phone. You could even stream them from the cloud if they were synced to the cloud. The link beow will show you how to restore from an itunes/icloud back up:
    http://support.apple.com/kb/ht1766
    Also to prevent this issue which i have seen alot when users are still running iOS 5 it would be best to update the iOS on your phone. To do this follow the link below:
    http://support.apple.com/kb/ht4623
    Hope this helps

  • SQLException: how do I know where I went wrong?

    I just revolutioned the database I was using for my tomcat application, switching from MyIsam to InnoDB.
    But as soon as I tried an insert I got an SQLException.
    this is part of the code (which is called from a servlet):
        public void saveInitialize(String gameName) throws ClassNotFoundException, SQLException {
            Connection con = null;
         Statement stmt = null;
         PreparedStatement pstmt = null;
         ResultSet rs = null;
         try {
             con = DBConnect.connect("GAMES");
             con.setAutoCommit(false);
             stmt = con.createStatement();
             int IDGioco = 1;
             rs = stmt.executeQuery("SELECT ID FROM GAMES ");
             while (rs.next()) {
              IDGioco = rs.getInt("ID") + 1;
             rs.close();
             stmt.executeUpdate("INSERT INTO GAMES VALUES (" + IDGioco + ", '" + gameName + "', " + numeroPeriodi + ", " + numeroAziende + ", " + numeroProdotti + ", " + periodiGiocati + ")");
             for (int i = 1; i <= numeroAziende; i++) {
                 stmt.executeUpdate("INSERT INTO AZIENDE " +
                  "VALUES (" + i + ", '" + nomeAzienda[i] + "', ENCODE('" + passwordAzienda[i] + "','tbg'), " + IDGioco + ", " + periodiInseriti[i] + ")");
             for (int j = 1; j <= numeroProdotti; j++) {
                 stmt.executeUpdate("INSERT INTO PRODOTTI " +
                  "VALUES (" + j + ", '" + nomeProdotto[j] + "', " + IDGioco + ")");
             pstmt = con.prepareStatement("INSERT INTO P_UNITA VALUES ( ?, ?, ?, ?)");
             pstmt.setInt(1, parametroUnitaPrezzo);
             pstmt.setInt(2, parametroUnitaInvestimenti);
             pstmt.setInt(3, parametroUnitaPezzi);
             pstmt.setInt(4, IDGioco);
             pstmt.executeUpdate();
             pstmt.close();
             pstmt = con.prepareStatement("INSERT INTO P_DEFAULT_PRODOTTO VALUES ( ?, ?, ?, ?, ?, ?, ?, ?)");
             for (int j = 1; j <= numeroProdotti; j++) {
                 pstmt.setInt(1, parametroDefaultPrezzo[j]);
                 pstmt.setInt(2, parametroDefaultPromozione[j]);
                 pstmt.setInt(3, parametroDefaultPubblicita[j]);
                 pstmt.setInt(4, parametroDefaultPrevisioneDiVendita[j]);
                 pstmt.setInt(5, parametroDefaultDesign[j]);
                 pstmt.setInt(6, parametroDefaultTecnologia[j]);
                 pstmt.setInt(7, IDGioco);
                 pstmt.setInt(8, j);
              pstmt.addBatch();
             pstmt.executeBatch();
             pstmt.close();
    /// etc. etc. etc.this is the error message I get:
    java.sql.SQLException: Syntax error or access violation: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '800. 600. 1)' at line 1 at com.mysql.jdbc.MysqlIO.sendCommand(Unknown Source) at com.mysql.jdbc.MysqlIO.sqlQueryDirect(Unknown Source) at com.mysql.jdbc.Connection.execSQL(Unknown Source) at com.mysql.jdbc.PreparedStatement.executeUpdate(Unknown Source) at com.mysql.jdbc.PreparedStatement.executeUpdate(Unknown Source) at Game.saveInitialize(Game.java:7759) at SingletonGame.syncInitialize(SingletonGame.java:71) at SaveNewGame.doPost(SaveNewGame.java:316) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) at
    etc. etc. etc.
    how do I know where I went wrong (the insert code is about 1200 lines)?
    thank you
    alessandro

    While not related to your problem, I did notice that you're inserting into columns without specifying the column names, ie.
             stmt.executeUpdate("INSERT INTO GAMES VALUES (" + IDGioco + ", '" + gameName + "', " + numeroPeriodi + ", " + numeroAziende + ", " + numeroProdotti + ", " + periodiGiocati + ")");While technically it's not an error, it's really easy to introduce a bug into your code. There's no guarantee that the order of columns will always be the same as when you created the table. It's much better to do something like "insert into games (col1,col2,col3...) values(...)".

  • I have a big problem with my Iphone 4...the pics and videos that i capture, often shows as inverted or orientted by 90/180/270 degrees. photos, one can rotate, but how about videos... is there any way i'm going wrong? this wasn't happening earlier

    My question...
    any answers pl.
    I have a big problem with my Iphone 4...the pics and videos that i capture, often shows as inverted or orientted by 90/180/270 degrees. photos, one can rotate, but how about videos... is there any way i'm going wrong? this wasn't happening earlier

    If I've understood you correctly then the ALLEXCEPT function may be what you're after and it could be applied in a similar way to the following...
    =
    RANKX(
    ALL(Table1),
    CALCULATE(
    COUNTROWS(table1),
    ALLEXCEPT(Table1, Table1[ContactReason])
    DENSE
    If this has missed the mark, would it be possible to clarify the requirement further?
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com
    Blog: http://www.nimblelearn.com/blog
    Twitter: @nimblelearn

  • I recently bought a macbook pro retina and while I'm using it a yellow triangle pops up then disappears. I don't know what it says. How do I find out whats wrong?

    I recently bought a macbook pro retina and while I'm using it a yellow triangle pops up then disappears. I don't know what it says. How do I find out whats wrong?

    Oh, by all means. Uninstall it using its uninstaller if you have one. Do not install any anti-malware software as it's unneeded with OS X Lion or Mountain Lion.
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper 2.0.1
        2. AppDelete 3.2.6
        3. Automaton 1.50
        4. Hazel
        5. AppCleaner 2.1.0
        6. CleanApp
        7. iTrash 1.8.2
        8. Amnesia
        9. Uninstaller 1.15.1
      10. Spring Cleaning 11.0.1
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • HT204053 for some reason i have more than one apple id, not sure how, must have set one up ages ago and forgot about it. can i delete one, or merge them? how do i know im not going to lose info if i delete one account?

    for some reason i have more than one apple id, not sure how, must have set one up ages ago and forgot about it. can i delete one, or merge them? how do i know im not going to lose info if i delete one account?

    You can neither merge or delete them. Pick one and stop using the other. If they both have purchases associated with them you will have to keep using both.

  • I have just got an iMac 21" and it continuously freezes when it goes to sleep and also when the internet is trying to load, i have tried three different browsers but it still does it (safari, google chrome and firefox), does anyone know what is wrong?

    I have just got an iMac 21" and it continuously freezes when it goes to sleep and also when the internet is trying to load, i have tried three different browsers but it still does it (safari, google chrome and firefox), does anyone know what is wrong?

    To fix the freezing when sleeping problem go to System Preferences>Energy Saver and set 'Computer Sleep' to 'Never'. It seems there is a problem for some with Bluetooth failing to wake after sleep. This fixes it 100% for me and many others on here, until Apple issue a software update to address it.
    Not sure what to suggest on the internet problem. I assume you are connected and receive and send emails OK.
    Edit: To try to troubleshoot the internet issue maybe try turning the Firewall off: System Preferences>Security & Privacy>Firewall tab.

  • I have iphone 5c.  Having email problem.  Does not delete emails showing in inbox from date 8/27 thru 9/23.   When deleted, these same emails repopulate in inbox.  What is going wrong?  How do I fix the problem?

    Ihave iphone5c.  Does not permanently delete emails showing in inbox.  When they are move to Trash then inbox at first shows empty.  However if you leave Mailbox and return then all the emails that were previously deleted and now repopulated in Inbox.  I have tried various things like marking them "read" before deleting, then moving them to Trash, and they still return.  What is going wrong and how do I fix the problem?

    What your describing sounds lot like Nortons anti virus, but other do it to.
    Multiple copies of the same email over and over are almost always anti virus incoming mail scanning. Turn off scanning and the problem goes away turn it back on and it resumes.
    My guess is that your filter issues, and search problems are also related to this uniquitous and most ignored security tool that messes up far more than it should..
    Deleting the index
    I assume you mean the global-messages-db.sqlite. if you don't close Thunderbird and delete it now. Searches will be incomplete until it rebuilds and the time to do that will have a lot to do with how much mail there is and how busy the computer is.
    Now create an exclusion in your anti virus program for the Thunderbird profile folders. My guess is it is trying to scan the files in your profile every time Thunderbird tries to open them and generally turning things into a tug of war, which Thunderbird looses as it just does not wait around if files are locked. It expects exclusive access to it's files immediately, not in 10 minutes when the anti virus has done it's thing. So things get added to the index but not removed. Mails don't move as the destination or source file is "in use" etc.

  • I've just started using the App Tabs. I think this feature could be handy but why are the sites not updated when I start Firefox. Now I have to manually update the site which is somewhat of a downer. Does any of you know where I'm going wrong?

    I've just started using the App Tabs. I think this feature could be handy but why are the sites not updated when I start Firefox. Now I have to manually update the site which is somewhat of a downer. Does any of you know where I'm going wrong?

    To answer the post title FireFox save all downloads automatically in the download folder, which you can find in the Documents folder. If you want to choose where to save your downloads go to tools>options>check always ask me where to save files.
    Secondly, I am assuming you have IE 8 installed as this is the only version that supports this fix that is currently not in beta. Go to control panel>internet options>advanced tab and reset the settings at the bottom. This may or may not fix the problem but it is a good first step.

  • My FaceTime is active but it does not connect. Any one know what is wrong with it or how to solve the problem?

    My FaceTime is active but it does not connect. Any one know what is wrong with it or how to solve the problem?

    Please sign out of FaceTime and sign back in. If there's no change, log out or restart the computer and try again.

  • How do I know what the current version of fcpx w/o going to app store?

    How do I know what the current version of fcpx without going to the app store? I'm hoping this is obvious and easy but I can't see it yet.

    Thanks Neil, and thanks for figuring out that I wanted the general answer, not just the version right now.
    But here's the question I should have asked: How do I know when there is a new version of FCPX so I can update right away? Was there an email or alert I missed, or do I just keep checking ?

Maybe you are looking for

  • Issue in select query

    HI All experts,<br><br> i have  a program in which i have a select query <pre> SELECT  b~vertrag           a~anlage           a~operand           a~saison           a~ab           a~ablfdnr           a~bis           a~wert1   FROM ettifn AS a INNER J

  • ORA-25138

    Hi guru, Im doing R3SETUP -f DBMIG.R3S to oracle 10g but i hit error at this phase DBCREATEDB_IND_ORA the error is --> INFO 2008-02-13 15:46:53     Creating the Database INFO 2008-02-13 15:46:53 DBCREATEDB_IND_ORA SyPermissionSet:100     Changing the

  • Is it possible to do a light CMS using Edge for a photo gallery?

    I want to build a photo gallery in Edge for a friend's website, and I want to make it as easy as possible for her to add/rearrange photos to the gallery anytime she wants without having to call me everytime... Is something like this possible in Edge

  • Error referencing a Struts-Form element from a JavaScript function.

    As shown below, when referencing the form element named 'custRegion', from the JavaScript function, I get an error msg - document.forms[0].custRegion has no properties. It appears that this form-element, which also is present in the logic tag is not

  • SSL: %TAC+: no address for get_server

    Hi Giles, I've been trying to setup TACACS on the two SSL Modules that we have. The config on both are the same, and so are the firmware versions: Version 12.2(11)YS1 The config used for getting TACACS to work i've used is: aaa new-model aaa authenti