Data can not be transfered in "" Problem : WebService in Interactive FOrm

Hi everyone,
According to a tutorial I built a simple PDF Form with WebService as Data Connection (One textfield as input and one button to call the webservice). The WebService is tested in WSNavigator successfully.
The button is defined as an execution button on server side and with operation from the WS.
However as I clicked on the button in PDF, I got warning: Data can not be transfered in ""
I'm not very sure what it means. From the XMLSource i didn't recongnize any error. So just want to ask, if someone has idea. Many thanks in advance.
Br,
Bill

Thank you for your message. It has been forwarded to another of my mail-accounts. Therefore it might take some time to respond.
To avoid any delays in future, please request in another mail to this address my new mail id. It is not given here as this automatic message will be sent to spam providers, too.
Kind regards,
Volker
Vielen Dank für Ihre Nachricht. Diese wurde an eine weitere meiner E-Mail-Adressen weitergeleitet. Daher kann sich meine Antwort etwas verzögern.
Um künftige Verzögerungen zu vermeinden, erfragen Sie bitte in einer separaten Nachricht an diese Adresse meine neue E-Mail-Adresse. Diese ist nicht an dieser Stelle erwähnt, da diese automatische Nachricht auch an Spammer gesandt wird.
Viele Grüße,
Volker Müller

Similar Messages

  • When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.

    Problem:
    When I plug in my iPhone to sync, it starts but does not complete the process and several pieces of data are not being transferred to my iPhone from my MacBook Air.
    Any help that you can provide in helping my iPhone accurately sync with iPhoto and iTunes will be greatly appreciated.
    Symptoms:
    1)   Sync:  It’s not completing the sync.  Below, I’ve provided all of my settings from the iTunes Summary tab so that you might tell me if I’ve selected any incorrect options.  I prefer to sync the “old school” way – by connecting to the computer – as opposed to syncing over the cloud. Perhaps this is what’s causing the problem? Here is a list of the steps displayed in the iTunes window as the sync progresses:
    waiting for sync to start (step 1 of 7)
    backing up (step 2 of 7)
    preparing to sync (step 3 of 7)
    determining apps to sync (step 4 of 7)
    preparing apps to sync (step 5 of 7)
    importing photos (step 6 of 7)
    waiting for changes to be applied (step 7 of 7)
    syncing apps / copying 1 of 4 (App name) (step 7 of 7)
    canceling sync
    apple icon
    2)   Photos: I've selected only certain of my iPhoto albums to sync to my iPhone.  All of the albums are correct/complete in iPhoto.  All of the albums are listed on my iPhone, both before and after the sync, but the albums are empty (no actual photos) before and after the sync. Perhaps this is tied to the fact that the sync isn’t completing, but because “importing photos” is one of the steps that the incomplete sync displays, I don’t know.
    3)   Apps: When I launch iTunes and click on the Apps folder under the Library listing, then click on the Updates tab, iTunes searches for any Apps needing to be updated and provides a list.  If I click on Update All, the Apps are successfully updated in iTunes.  But, when I plug in my iPhone so that the updates will transfer to the apps on my iPhone, the updates don’t transfer to the apps on my iPhone and those apps still reflect that they need updating on the iPhone.
    Other Potential Pertinent Info:
    The flash memory hard drive on my MacBook Air recently died (perhaps a month or two ago).  Apple had emailed me about a known issue and literally the next day, my MacBook Air crashed.  I installed a new flash memory drive and re-installed everything from a backup off of an external hard drive.  Everything seems to be working fine; it recreated accurately all of my software and data, including iPhoto and iTunes, the pictures and songs (respectively) for which are stored on that hard drive, as opposed to being on the flash memory in the MacBook Air itself.  However, I don’t recall if the start of the sync problem described herein started happening at the same time that I replaced the flash memory drive.  All I know is that the computer is working perfectly in all respects and that even as the sync is failing, it at least says that it’s doing the right things and looking in the right places (e.g., the list of albums on my iPhone matches the list of albums in iTunes, etc.).
    Settings/Status:
    MacBook Air
    OSX v. 10.9
    iPhoto ’11 v. 9.5 (902.7)
    iPhone iOS 7.0.4
    iTunes v. 11.1.3 (8)
    Summary Tab
    Backups (This Computer)
    Options
    Automatically sync when this iPhone is connected
    Sync only checked songs and videos
    Photos Tab
    Sync Photos from iPhoto (429 Photos)
    Selected albums, Events, and Faces, and automatically include (no Events)
    Albums – 9 are selected

    You need to download iTunes on your computer. iOS 6 requires the latest version of iTunes which is 10.7.

  • After call commit sql , data can not flush to disk

    I use berkey db which support sql . It's version is db-5.1.19.
    1, Open a database.
    2. Create a table.
    3. exec "begin;" sql
    4. exec sql which is insert record into table
    5. exec "commit;" sql
    6. copy database file (SourceDB_912_1.db and SourceDB_912_1.db-journal) to Local Disk of D, then use a tool of dbsql to open the database.
    7. use select sql to check data, there is no record in table.
    1
    sqlite3 * m_pDB;
    int nRet = sqlite3_open_v2(strDBName.c_str(), & m_pDB,SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,NULL);
    2
    string strSQL="CREATE TABLE [TBLClientAccount] ( [ClientId] CHAR (36), [AccountId] CHAR (36) );";
    char * errors;
    nRet = sqlite3_exec(m_pDB, strSQL.c_str(), NULL, NULL, &errors);
    3
    nRet = sqlite3_exec(m_pDB, "begin;", NULL, NULL, &errors);
    4
    nRet = sqlite3_exec(m_pDB, "INSERT INTO TBLClientAccount (ClientId,AccountId) VALUES('dd','ddd'); ", NULL, NULL, &errors);
    5
    nRet = sqlite3_exec(m_pDB, "commit;", NULL, NULL, &errors);
    Edited by: 887973 on Sep 27, 2011 11:15 PM

    Hi,
    Here is a simple test case program I used based on your description:
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include "sqlite3.h"
    int error_handler(sqlite3*);
    int main()
         sqlite3 *m_pDB;
         const char *strDBName = "C:/SRs/OTN Core 2290838 - after call commit sql , data can not flush to disk/SourceDB_912_1.db";
         char * errors;
         sqlite3_open_v2(strDBName, &m_pDB, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "CREATE TABLE [TBLClientAccount] ( [ClientId] CHAR (36), [AccountId] CHAR (36) );", NULL, NULL, &errors);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "begin;", NULL, NULL, &errors);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "INSERT INTO TBLClientAccount (ClientId,AccountId) VALUES('dd','ddd'); ", NULL, NULL, &errors);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "commit;", NULL, NULL, &errors);
         error_handler(m_pDB);
         //sqlite3_close(m_pDB);
         //error_handler(m_pDB);
    int error_handler(sqlite3 *db)
         int err_code = sqlite3_errcode(db);
         switch(err_code) {
         case SQLITE_OK:
         case SQLITE_DONE:
         case SQLITE_ROW:
              break;
         default:
              fprintf(stderr, "ERROR: %s. ERRCODE: %d.\n", sqlite3_errmsg(db), err_code);
              exit(err_code);
         return err_code;
    }Than I copied the SourceDB_912_1.db database and the SourceDB_912_1.db-journal directory containing the environment files (region files, log files) to D:\, opened the database using the "dbsql" command line tool, and queried the table; the data is there:
    D:\bdbsql-dir>ls -al
    -rw-rw-rw-   1 acostach 0 32768 2011-10-12 12:51 SourceDB_912_1.db
    drw-rw-rw-   2 acostach 0     0 2011-10-12 12:51 SourceDB_912_1.db-journal
    D:\bdbsql-dir>C:\BerkeleyDB\db-5.1.19\build_windows\Win32\Debug\dbsql SourceDB_912_1.db
    Berkeley DB 11g Release 2, library version 11.2.5.1.19: (August 27, 2010)
    Enter ".help" for instructions
    Enter SQL statements terminated with a ";"
    dbsql> .tables
    TBLClientAccount
    dbsql> .schema TBLClientAccount
    CREATE TABLE [TBLClientAccount] ( [ClientId] CHAR (36), [AccountId] CHAR (36) );
    dbsql> select * from TBLClientAccount;
    dd|dddI do not see where the issue is. The data can be successfully retrieved, it is present in the database.
    Could you try putting in the sqlite3_close() call and see if you still get the error?
    Did you remove the __db.* files from the SourceDB_912_1.db-journal directory?
    Did you use PRAGMA synchronous, and if so, what is the value you set?
    If this is still an issue for you, please describe in more detail the exact steps needed to get this reproduced and provide a simple stand-alone test case program that reproduces it.
    Regards,
    Andrei

  • What can not be transferred to a new iphone5?

    I will be upgrading to iphone5 in the near future. what can not be transferred from another iphone?

    Read this support document http://support.apple.com/kb/HT2109, it should explain what and how.

  • User start date can not be before the current date

    I'm creating users using the Reconciliation engine. The start date attribute doesn't appear to be reconciling. I get many different types of parse errors. The closest I appear to get is when I set the Xellerate User resource object recon field to have Start date as a date field, i receive the error:
    "User start date can not be before the current date.".
    I'm using 9.0.1.1. And I AM trying to create a user that has a start date before todays date.

    Resolution was to patch to 9.0.1.1578

  • Material availability date can not be after the delivery date

    Dear Experts,
    we are using the following scnario,
    1. Once the user creates the sales order, automatically system creates PO in the background.
    we have created Bapi program for creation of Background PO in SD User Exit.
    The following issue occurs in Prd, DS1, QS1 server, We have done Technical upgradation project, Now when we creates sales order automatically po created with error message of Material availablity date can not be after the delivery date. even sales order no also not updated in the PO.
    QAS server (without technical upgrade) i refered the same input parameter and used the same and create the sales order system generates PO automatically without error message.
    Does any one can through lights on this issue,
    Thanks and Best Regards,
    Muralidharan S

    Hi
    The dates are determined due to shipping and transportation scheduling settings. So check whether the shipping and transportation scheduling is being performed as per the cofiguration settings after Technical upgrade. Since the MAD date should not be after Delivery date but it seems that the dates are not determined properly.
    Also check the Transit  time, Loading time, Pick/Pack time and Lead time are retained as same as before the technical upgrade. Use the QAS server settings to validate the settings in other servers.
    Regards
    Rajkumar K

  • I have a ipod that had photos synchronised to an old computer that has sinced crashed and the data can not be recovered. How do I recover the photos stored on the IPOD to my new computer?

    I have a ipod that had photos synchronised to an old computer that has sinced crashed and the data can not be recovered. How do I recover the photos stored on the IPOD to my new computer?

    You'll likely need the assistance of some sort of 3rd party software.  Keep in mind that the photos on your iPod are only scaled down thumbnail versions of the originals.  So even if you do manage to copy them backt to your PC, they will not be in their full original resolution.
    Do a simple Google search for "copy photos from ipod" and you should get a number of hits that can assist you.
    B-rock

  • I can not resolve my billing problem with iTunes store in India

    I can not resolve my billing problem with iTunes store in India

    Hi there puttockjuan,
    You may find the troubleshooting steps in the article below helpful.
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    -Griff W. 

  • Date can not display correctly in excel from .jsp

    Hi,
    I create a .jsp report to export the data to excel. the report run OK, except the date field can not display correctly.
    for example in database :start date ='01-oct-2003'
    in the except it displays to 02/06/02.
    It seem all the date field can not be control in the report, and control by somthing else
    Doese anyone come accross this problem?
    Thanks

    Hi Rong,
    Are you using the following demonstration to build your JSP?
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    (Output to Excel with Oracle9i Report)
    I tried to do the same, and inserted a database date field in the JSP using Reports. I found the following:
    While making the template inside Excel, if I make sure that the format of the date cells is "Date" - some particular date format, the date field values from Reports does not get exported correctly.
    However, if you make sure that inside the template, the format of the date cells is not date, but "General", then the date field values are correctly exported to Excel.
    Pl try it and let us know.
    Navneet.

  • DataGrid data can not be selected after inlcluded automation library

    In order to use QTP for my Flex project, I included the automation libraries.
    But I found that the data in DataGrid can not be selected, and double click function not working.
    After I excluded the following two of the automation libraries, it works fine.
    automation_agent.swc
    qtp.swc
    FLex SDK version:  4.1.0.16076
    Anyone can help?

    It occurred to me that this might be a permissions problem - I had repaired permissions using TechTool Pro a few days ago and that may have caused this - who knows!
    Anyway, I'm just re-repairing permissions using Disk Utility. It says 'Estimated Time: 3 hours' which considering previous permissions repair seems a long time - maybe that is an indication of the problem.
    I'll post again in 3 hours!

  • Can not find dom4j jar problem

    i create an application which use dom4j. This application works well with no problem. But when i try to call this application from my plugin ( a menu from workbench) an exception appears
    java.lang.NoClassDefFoundError: org/dom4j/io/SAXReader
    I already import dom4j to my plugin classpath.
    Any suggestion will be highly appreciated.

    anyone who have any idea bout it please help me. i got stuck with it for weeks. I still can not find a runable solution

  • Hp Probook 4321s amount 1 year ago. Now I can not open it because problem of Battery

    I can not turn on my notebook :  HP Probook 4321s . It show batterry is expire. How many long times of battery use?
    Thanks you
    Pattarachai

      Start up in Safe Mode.  http://support.apple.com/en-us/HT1564

  • I copied itunes from a pc to an external harddrive then copied to itunes on my laptop it loaded all songs to itunes but can not play transfered music

    i copied itunes from a pc to an external hard drive then copied it to itunes on my laptop it loaded all songs but can not play songs

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Regards.

  • TS1702 All the up dates can not download ñor the new apps, only shows: "waiting"

    I can not updates my apps, and then are increasing in number. Nor download new apps or old ones . I already try to reset the IPad II, try to érase the updates, but no results, please need a hand on this?. Thanks.

    Check iTunes and see if you have a pending/stalled download e.g. Podcast, Music or Movies.  Finish off the download and Apps should start downloading.

  • Data Passing Problem with Adobe Interactive Forms

    Hello all,
    I am trying to create a Guided Procedure to implement an offline Adobe Interactive form. This form is based on the standard Requisition Request form used in MSS for e-Recruiting.
    I've copied the standard form and updated the layout to ZCI using the appropriate transaction (not manually). After that, I've changed the Interface and layout. But to get the Form in the portal you need to have a .xpd file. Therefore, I've tested the form in preview mode, saved a copy as a PDF file and opened this copy in the standalone Adobe Lifecycler Designer. In the standalone version you are able to save the form as a PDF (not possible using transaction SFP).
    My question 1 is if this is a wrong approach and there is a better way to retrieve the xpd file.
    Next to that, I wrote a RFC function to retrieve data in the backend. This function is working and now I try to pass the data to the Form in the GP (using prefilling). The data is never passed, any points that I need to check there. The data used to export is a structure that contains a number of table types, because Adobe has issues with importing tables it seems. The form is working correctly in the backend.
    Points will be rewarded for helpfull awnsers!
    Kind regards & thanks in advance...

    Check double post

Maybe you are looking for

  • Is there a way to speed up a UDP connection?

    Hello All I receive a UDP packets over a network generated on full speed by another (C#) application. Even with the "UDP read" placed alone in the while loop in a vi running in separated thread and with highest priority, it happens that "UDP read" do

  • Copying data from a tree to another

    Hi all! I am in a trouble when I try to copy somedata from one tree to another one. The interface allows the user to select one item from the first tree, and then when he clicks on a button, this item is copied to the second tree. The first tree stay

  • Batch Determination while putting Batch Manually

    Dear Friends, We just activated batch determination for Delivery process. now delivery determining automatically batch when we are going to create delivery. we have a question.. When we select any line from Delivery and press batch split and then del

  • Planning function to change date field value in layout

    Hello experts,                       I have 1 BPS layout with 2 date fields ( Start date, End date ). With a filter conditions, set of data comes in BPS layout on execution and 2 date fields also contain some value...I want to change values of these

  • Help with importing images in Premiere Pro CS5.5

    Hi all... I'm working on a widescreen ntsc project that mixes video footage with power point slides, which have been exported to BMP, JPEG, PNG and TIFF... when I look at the images in an external image viewer, they look great... when I import them a