Exception in get_Monitor_Log/get_Error_Log after Data Services Batch error

I have a Data Services Job that has an error (intentional to test getting logs). I submit and monitor the job through the Web Service SDK. When the job completes with error and I call either get_Monitor_Log or get_Error_Log, these methods raise an exception as follows:
org.xml.sax.SAXParseException: The reference to entity "ERROR_STEP" must end with the ';' delimiter.
I can see both logs on the DS server under Administrator/Batch.
Why can't I retrieve the error log?

YES!!! I see the problem...SAX parser must not like the &. but how do I solve this, since it's the server
that sends this in a SOAP message? Probably needs to be packaged as CDATA, not text.
(12.1) 02-23-09 08:44:11 (E) (3920:0176) VAL-030159: |SESSION WF_CustomerAddress
                                                     Found erroneous expression < &ERROR_STEP('  sesleep(60000)
                                                     >. Please check its syntax and fix this expression.
(12.1) 02-23-09 08:44:11 (E) (3920:0176) VAL-030159: |SESSION WF_CustomerAddress
                                                     Found erroneous expression < &ERROR_STEP('  sesleep(60000)
                                                     >. Please check its syntax and fix this expression.
Running version 3.1 of Data Services (12.1.0)

Similar Messages

  • Flex Data Services tutorial error

    In the "Before You Begin" section of the Flex Data Services
    tutorial in "Getting Started with Flex", the first bullet is
    incorrect. It text should be:
    "Ensure that you have installed the Flex Data Services Beta 3
    release and that you can run the applications in the samples web
    application."
    The installation instructions are located here:
    http://www.adobe.com/go/flex2_installation
    The tutorial zip file is located here:
    http://www.macromedia.com/go/flex2beta1_quickstart_tutorial_zip
    - Mike Peterson
    Adobe Flex documentation team

    Hi, I found some more "issues" with these data services
    tutorial.
    First of working with the notes example at first I couldn't
    get the two browsers to talk to eachother until I found this
    comment by funk_sf on the livedocs:
    quote:
    after some searching, I located a link to the tutorial.zip
    here:
    http://www.macromedia.com/go/flex2beta1_quickstart_tutorial_zip.
    i unzip'd the contents into my samples directory so that I had the
    following path: C:\fds2\jrun4\servers\default\samples\tutorials
    the xml file in WEB-INF for the standalone flexbuilder 2b3 is
    located at C:\fds2\resources\config as mentioned in the comments on
    the previous page (
    http://livedocs.macromedia.com/labs/1/flex20beta3/00000129.html)
    as for creating the tutorial1.mxml file, i created a new Flex
    project with the following settings (this is from memory, so
    hopefully i recall all the steps right):
    File->New Flex Project
    How will you flex application access data? -> Flex Data
    Services -> Compile application locally in Flex Builder
    root folder: C:\fds2\jrun4\servers\default\samples
    root url:
    http://localhost:8700/samples/
    I left the build paths to their defaults (ie. blank)
    named the main application file: tutorial1.mxml
    output folder: tutorial
    output folder url: [blank]
    So I followed his advice, deleted my project and made it in
    the samples directory and the notes application started to work, so
    all appeared good.
    Until I was making the Java example and I'm now faced with
    the following errors:
    Severity Description Resource In Folder Location Creation
    Time Id
    2 Definition samples.contact:Contact could not be found.
    tutorial2.mxml Tutorials line 8 6 juni 2006 16:36:25 20
    Severity Description Resource In Folder Location Creation
    Time Id
    2 Type was not found or was not a compile-time constant:
    Contact. tutorial2.mxml Tutorials line 13 6 juni 2006 16:36:25 21
    I'm not sure what is happening, I think it can't find the
    data service files but I don't know how to make it so that it does
    find those files, the manual is still a bit vague on that and when
    I try to run this application it just shows a blue (flex) screen.
    The code I'm using is straight from the example documentation after
    tinkering around for 2 days to get this to work I thought using
    original code is the best way to go.
    My application tries to run from
    http://localhost:8700/samples/bin/tutorial2.html
    The documentation states:
    Open the following URL in two browser windows:
    [L=http://localhost:port/samples/tutorials/tutorial2.mxml
    The screenshots in the documentation show:
    Window1: /tutorial/tutorial1.mxml
    Window2: /dataservice/contact/tutorial_step4.mxml
    Now I'm just confused, tutorial1.mxml is my notes application
    which was the previous tutorial and there was no mention of a
    tutorial_step4.mxml file ?
    Someone help me please with where to place these files and
    why so I can understand what is happening here.
    Thanks :)

  • Data Services IDOC Errors when working with a newl Basic Type

    Hello,
    Just wondering if anyone else has encountered an issue similar to the one I am dealing with. We are trying to create business partners in SAP CRM from Data Services via IDOC. We are not using the standard IDOC, but instead we are using a new IDOC type.
    This IDOC type is generated by SAP CRM automatically through a transaction BDFG. This transaction creates a new basic type for an standard IDOC with the additional fields that we have added through the easy enhancement workbench (EEWB).
    The issue that we are having is that when we import the IDOC type into data services and we look at the schema many fields and sub-structures of the IDOC are duplicated. This means that we receive hundreds of errors when we try to validate our data flow. I can delete the duplicated sub structures in my query transformation but then the query transformation and the output schema and the idoc input schema are no longer identical.
    I have searched all over oss and different web forums for a solution but no one else it seems has even encountered this error. If anyone else has had a similar issue and can offer help it would be greatly appreciated.
    Bill

    Issue is resolved.
    After importing the meta data for the IDOC into data services I then proceeded to edit out all of the duplicate structures and fields from the IDOC.
    After making the IDOC structure in data services identical to the structure of the IDOC  in SAP I then proceeded to test this IDOC and it executed successfully.

  • Flash Builder 4.5 Auto-Gen Code For PHP Data Service Produces Errors

    Hello
    I'm currently running a fresh install of MAMP on my Mac and when I start a new flex project, add a php data service that pulls from a mysql database I have. Everything works fine until I try to compile. The error I'm getting is 'uid' being the primary key which is a bigint(20). The file _Super_Users.as (auto-gen based on the user table below) reports 2 errors: [Managed] requires uid to be of type 'String'. (same error on 2 lines of code) Now the MySQL table wants it to be a int, the auto gen code seems to want it to be an int as well but for some reason its putting in these requires for String on the getter and setters for 'uid'. The is before I even add any of my own code, just auto-gen then compile.
         * data/source property getters
    [Bindable(event="propertyChange")]
        public function get uid() : int /*error line*/
            return _internal_uid;
         * data/source property setters
        public function set uid(value:int) : void /*error line*/
            var oldValue:int = _internal_uid;
            if (oldValue !== value)
                _internal_uid = value;
    This is what my database looks when I export it:
    CREATE TABLE `users` (
      `uid` bigint(20) unsigned NOT NULL,
      `name` varchar(150) NOT NULL,
      `first_name` varchar(50) NOT NULL,
      `middle_name` varchar(50) NOT NULL,
      `last_name` varchar(50) NOT NULL,
      `gender` tinyint(1) NOT NULL,
      `locale` varchar(5) NOT NULL,
      `link` varchar(255) NOT NULL,
      `username` varchar(50) NOT NULL,
      `email` varchar(255) NOT NULL,
      `picture` varchar(255) NOT NULL,
      `friends` text NOT NULL,
      `created` datetime NOT NULL,
      `updated` datetime NOT NULL,
      PRIMARY KEY (`uid`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    It's empty right now...
    Apache 2.0.64
    MySQL 5.5.9
    PHP 5.2.17 & 5.3.5
    APC 3.1.7
    eAccelerator 0.9.6.1
    XCache 1.2.2 & 1.3.1
    phpMyAdmin 3.3.9.2
    Zend Optimizer 3.3.9
    SQLiteManager 1.2.4
    Freetype 2.4.4
    t1lib 5.1.2
    curl 7.21.3
    jpeg 8c
    libpng-1.5.0
    gd 2.0.34
    libxml 2.7.6
    libxslt 1.1.26
    gettext 0.18.1.1
    libidn 1.17
    iconv 1.13
    mcrypt 2.5.8
    YAZ 4.0.1 & PHP/YAZ 1.0.14
    I tried to give as much info as possible, if you need more let me know...

    I discovered my problem was uid seems to be a built in global or something and was filling in that data field with a bunch of letters and number, like the device id. Because of the letters flex was throwing a fit. So if you're using Facebook API in flex be sure to not go with uid for the user id, which is was facebook api calls it.

  • Data Services Designer - Error when pulling large source tables

    Hi all,
    I have been trying yo load data from an SAP table - BSIS into MS SQL server database using BO Data Services Designer XI 3.2.  It is a simple data flow with one souce table (BSIS).
    When we execute the job, it says what is mentioned below:
    *"Process to execute Dataflow is started"*
    *"Cache statistics determined that DataFlow uses <0> caches with a total use of <0> bytes. This is less than the virtual memory <1609564160> bytes available for caches. Statistics is switching the cache type to IN MEMORY."*
    *"Dataflow using IN MEMORY cache."
    It stays there for a while and says "Dataflow terminated due to error"
    In the error window, it says DF received a bad system message.
    Does not specify the error... It asks to contact the customer support with error logs, ATL files and DDL scripts.
    Can anyone help me out???
    Thank you and regards,
    Suneer.

    Hi,
    please do not post the short dump in this forum.
    I blieve the system will read from table dt_iobj_dest.
    The problem is that 0FISCPER, 0FISCYEAR and 0FISCVARNT  are not registered.
    You can register the infoobject 0FISCYEAR and 0FISCVARNT
    retroactively: 
    1) se24, CL_UG_BW_FIELD_MAPPING                
    2) F8 -> test environment                      
    3) GET_INSTANCE, do not use IT_FIELD_RESTRICT  
    4) IF_UG_BW_MAPPING_SERVICES                   
    5) REGISTER_INFO_OBJECT                        
    6) specify  I_RFCDEST                          
                I_INFOOBJECT                       
       attention: I_RFCDEST is case-sensitive      
    kind reg.
    Michael
    ps. please do not forget to assign points.

  • Business Objects 4.0 Data Services | Error

    I make connection between SAP ECC/ SAP HR and BusinessObject 4.0 Data Services (BODS)
    Error calling RFC function to get table data: <RFC_ABAP_EXCEPTION-(Exception_Key: DATA_BUFFER_EXCEEDED, SY-MSGTY:E,SY-MSGNO:046,SY-MSGV1: Z_AW_RFC_READ_TABLE)>

    Hi Usha,
    Can you please check the message in event viewer?
    You will ge the idea of the DLL which may be faulty or having problem.
    just for your reference go through KB Article 1626736 - SAP BusinessObjects 4.0 Client Tools crash
    Thanks,
    Vivek

  • Communication Failure exception on adapter in Data Services

    Hi,
    I have been trying to get rid of this error but no matter what i do, i cannot resolve this.
    I am using Edge 3.1 Data services on a 2008 Windows server. And i'm trying to login to salesforce ans retrieve data. This has been working for well for the past year. No change whatsoever to either salesforce or on the server. All of a sudden i'm unable to connect according to the error. But when i check in salesforce, it shows a successful connection from the server. That just blew my mind.
    These are the parameters which might help understand my issue.
    service endpoint: https://www.salesforce.com/services/Soap/u/16.0
    - I changed the sercurity token from salesforce.
    - I changed the retry count to 200000 in the DBconfig file
    - Restarted the OS
    - Restarted the adapters.
    My Additional Java Launcher is -Xms64m -Xmx256m
    I dont have a proxy
    I'm at my wits end. And have no more solutions in my bag. I tried everything i could find in this forum. Any help would be greatly helpful.
    Also, the weirdest part is, When i right click on Datastore and "edit", i can enter the password and it saves the data with no error. I get the above error only when i "open"the Datastore.
    Hence, I am unable to execute any batch job. All jobs hang in place for 3 hrs or so and then finally fail. It doesnt even pass the first Dataflow.

    i am able to connect to salesforce from a browser. Even more surprising, when i right click on adapter and click edit , I can save it, meaning it does connect to salesforce and on Salesforce, i see a successsful login history from the server. But, it does not let me browse the metadata and also, when any job starts, it just gets stuck and teha adapter throws the java socket timeout exception.

  • I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add

    I bought new i phone 5 3 days back, after that asked for new update which is 6.1.4, after updating my iphone i am not able to use cellular data services. I called up data provider, they says its the problem with new software update. There is no option add APN. Now when i switch to safari its showing you are not subscribed for cellular data. But I am able to use data on other phone.
    Will you please help me in this regard?
    Another issue, since i bought my new iphone there is dust inside back main camera.
    Your advises are highly appreciated.

    Hey Shaiju isac,
    I'd take a look at the following article, it'll guide you though steps to you troubleshoot cellular data issues on your iPhone:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Cheers,
    David

  • HT4623 Hi. After I updated ios6, I couldn't use my cellular network. It said "could not activate cellular data network - You are not subscribed to a cellular data service". I don't know why. My iphone is 4s

    Hi. After I updated ios6, I couldn't use my cellular network. It said "could not activate cellular data network - You are not subscribed to a cellular data service". I don't know why. My iphone is 4s

    Contact your carrier to ensure data access via their network is provisioned properly for your account and iPhone with the new iOS 6 update installed.

  • Data services stop working after updating to new OS version for Q10

    I am from Qatar, after i updated my device ( Q10 SNQ100-3 ) to new OS ( 10.2.1.537 ), the mobile data services stopped working, but it works everytime I connect to wifi. This is the same with Z10. Please need help.

    Hi and Welcome to the Community!
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (step 1 should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive
    2) Reboot
    Pre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. IF this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should contact your mobile service provider for formal support.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Non Exceptions error in DATA SERVICES

    Hello everyone.
    Anyone know how I can reassign the ranges for error exceptions in Data Services ?. For example an error when deleting a file that does not exist on disk, throws code 50616, but the catch object can not monitor it because it is not within the exceptions.
    How I can add exceptions to these groups, or, how I can monitor these errors as they occur ?.
    Error handling in Data Services is very bad in my opinion.

    Do you have an example of how this would work with the catch all and a script?  We are facing a similar issue where it seems our catch block is not catching all errors.  In this case it appears to be a stored procedure that is missing.
    (14.2) 09-09-14 07:08:50 (E) (9036:7600) DBS-070401: |Data flow DF_Subk_UpdateLetterContractData|Transform QRY_SP_TOUPDATELETTERCONTRACT-Function2  ODBC data source <10.25.34.140> error message for operation <SQLExecute>: <[Microsoft][SQL Server Native Client 10.0][SQL Server]Could not find stored procedure 'DBO.SP_UpdateContractLetterData'.>.
    The job is erroring but in the catch block we are trying to call an RFC back in the ECC system to update the status (job was triggered from ECC) and it never reaches the catch block to do this.

  • Change source path in batch Job in global variable in data services

    Hi Experts,
    my organization has created job in data services 3.2 to cleanse the data reading from excel flat files. the folder path was store in the global variable(I think) and now they have changed the directories hence is it throwing me below error.
    Error, Input file  does not exist please confirm existence and restart job, 16 ) >
    failed, due to error <50316>: <>>> Error, Input file  does not exist please confirm existence and restart job>. I want to update the folder path. I am sure it would be easy but I am very new to BODS.
    (12.2) 07-15-14 16:10:08 (14232:12656)  PRINTFN: > 'JOB DEBUG' : '>>> Sleeping for 35.000000 seconds...  '
    (12.2) 07-15-14 16:10:43 (14232:12656)  PRINTFN: > 'JOB DEBUG' : '>>> Waking up......  '
    (12.2) 07-15-14 16:10:43 (14232:12656)  PRINTFN: > 'JOB DEBUG' : 'Starting the timer loop number 6...'
    (12.2) 07-15-14 16:10:43 (14232:12656) WORKFLOW: Work flow <WF_Metadata_Files> is started.
    (12.2) 07-15-14 16:10:43 (14232:12656)  PRINTFN: > 'JOB DEBUG' : '>>> $G_FILENAME_IN : ALL_Metadata_SALES.xls...'
    (12.2) 07-15-14 16:10:43 (14232:12656)  PRINTFN: > 'JOB DEBUG' : '>>> looking for input file name
                                                     \\infra\finance\production\sales\Metadata\ALL_Metadata_SALES.xls'
    (12.2) 07-15-14 16:11:08 (14232:12656)  PRINTFN: > 'JOB DEBUG' : '>>>  Input file Name is '
    (12.2) 07-15-14 16:11:08 (14232:12656)  PRINTFN: > 'JOB ERROR' : '>>> Error, Input file  does not exist please confirm existence and restart job'
    I want to update the folder path\\infra\finance\production\sales\Metadata\ALL_Metadata_SALES.xls to \\Home\BIData\finance\production\sales\Metadata\ALL_Metadata_SALES.xls
    when i investigated WF_Metadata_files i saw there is a global called INPUT_DIR i assume I have to change the path there. I tried to find old directory in the batch job but i cant find it and even When i give value to global variable it is still pointing to old path.
    Can anybody please help me.
    Thanks
    Tim

    Hi Tim,
    If having specified the value in the global variable it is still pointing to the old path there can be a couple of scenarios applicable
    1. There is a different global varaiable being used for the file path
    2. The filepath is hardcoded in the file-format or Excel file definition despite the declaration of the global variable.
    Are you getting this error when running a dataflow within this workflow or in a script? It will be better to run the workflow in debug mode and look through the stages to find out where exactly in the workflow it fails.
    kind regards
    Raghu

  • No data services after 3.1 upgrade

    Hi All,
    Just did the upgrade to 3.1 on my iPhone 3G and it is now telling me I cannot activate cellular data network, I'm not subscribed to a cellular data service. there was no issue prior to the upgrade. I can't browse or receive any of my corporate mail. HELP!!!

    I'm having the exact same issues iwth my phone after I upgraded. The only way to get this issue fixed is to hard boot the iPhone.
    Does anyone have any thoughts on this one?

  • Data Services 4.0 - Batch Job - Export Execution Command - Error

    Hi,
    I'm new to Data Services and tried to get started with this "how to":
    http://wiki.sdn.sap.com/wiki/display/BOBJ/HowToUseBusinessObjectsDataServicesinSAPBIstagingprocess
    Just that I used BW 7.0 instead of BI.
    But I got stuck at the Export Execution Command. Everytime I klick "Export", I get a "java.lang.NullPointerException".
    (I can execute the job manually from the Designer and it completes successfully.)
    Any idea what I can do to export it successfully?
    Or is there a workaround so that I'll be able to initiate the process from the BW system?
    Thanks!

    Hi,
    I'm new to Data Services and tried to get started with this "how to":
    http://wiki.sdn.sap.com/wiki/display/BOBJ/HowToUseBusinessObjectsDataServicesinSAPBIstagingprocess
    Just that I used BW 7.0 instead of BI.
    But I got stuck at the Export Execution Command. Everytime I klick "Export", I get a "java.lang.NullPointerException".
    (I can execute the job manually from the Designer and it completes successfully.)
    Any idea what I can do to export it successfully?
    Or is there a workaround so that I'll be able to initiate the process from the BW system?
    Thanks!

  • How to update Data Services (ALDSP 2.5) from WebLogic Server 9.2 correctly?

    Hi,
    I need to update some physical data service in ALDSP 2.5 on WLS 8.1 SP6 (8.1.6) via Static Mediator API from WebLogic Server 9.2 MP2 (9.2.2) application. I have reviewed the article about interoperability of ALDSP 2.5 and WLS 9 here:
    http://edocs.bea.com/aldsp/docs25/appdev/ejbclt.html#wp1090900
    Firstly, I had a problems with the interconnection between 9.2 client and ALDSP 2.5 due to some missed methods/classes. Finally, I've added the following libs to my WLS 9.2.2 pre-classpath in such an order:
    MyDSPProject-ld-client.jar (built with Ant script using XmlBeans 2.0)
    wlsdo.jar (from ALDSP 2.5)
    xbean.jar
    xqrl.jar
    wlxbean.jar
    ld-client.jar (from ALDSP 2.5)
    I do the update in the way shown in attached java file.
    After submit method call, I've got two copies of a new item added in the DB and also an exception that is shown in attached log-file.
    What is the possible cause of this issue?
    I use MySQL DBMS version 5.0.45.
    I've also tried MS SQL 2005 but it simply had the same results.
    DSP audit log is also attached.
    Thank you in advance!
    Best Regards,
    Vitalii Tiutiunnyk

    The problem is that your client is WLS server, and WLS server has network class loading disable (for security), and the result from the call requires a class that is not on the client. The call succeeds, but the the network class load for the result fails, and the WLS 9.2 framework (incorrectly) retries the call (and you get either a duplicate key exception or a second row inserted). Putting the server jar in the client classpath solves the problem.
    If you wanted more information or help, you can contact BEA Customer Support and tell them it is regarding the CR I mentioned.

Maybe you are looking for

  • A TLC look with a FCP plug in

    I'm trying to achieve a blowout highlight look that is used on TLC shows like Miami ink and L.A.INK. With which plug in and how can I achieve this?

  • Code regarding Pie Chart, Bar Chart and Line Chart

    Anybody having code for Pie chart, Bar chart and Line chart.......?

  • ClassNoFound Exception

    Hi, After I call java.rmi.Naming.loopup ("xxx"); I got a message about java.lang.NoClassDefFoundError: yyy (1) Server and Client both on the same machine. (2) I used Naming.list to make sure "xxx" is there and registed. (3) the "yyy" is set on my CLA

  • IPad 2 sound issues

    I seem to only have sound on my iPad 2 via headphones. I have tried turning it off completely (attached and detached to my charger); I've checked all volume options, including the mute switch, but to no avail. The only thing I have not yet tried is h

  • JRC JSR 168 portlet integration

    <p>Hi,</p><p>I am planning a BI report dashboard portal.</p><p>Does/will JRC offer portlet interation for report viewing?</p><p>Thanks.</p><p>Nathaniel.</p>