Data Services Fix Pack 12.2.1.2 issued to resolve XML loader problem

We've had a few customers contacting us about the following error message:
"The message type for datastore <my_ds> has not been set". Please notify Customer Support"
Note that the text "<my_ds> will be the name of the XML loader you have in your dataflow.  This error occurs when you are adding a new loader to a dataflow that is an XML type. 
The customers that have reported this issue were all building real-time jobs and the loader type was XML Message Target.
In order to address this issue you will need to download and install the latest update which is 12.2.1.2.  The above issue was introduced in 12.2.1.1 (3.2 SP1).  You will ONLY have to install the client components (Designer) in order to address this issue.  no updates are necessary to the server side of the application to address this problem.
An SAP Note has also been written up on this issue:  [1423045|https://bosap-support.wdf.sap.corp/sap/support/notes/1423045]
Thanks,
Ryan

there is a connection timeout when trying to contact the laptop.the last lines it shows are:
PCI: setting IRQ 0 as level-triggered
ALI15X3: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0x8080-0x8087, BIOS settings: hda: DMA, hdb:pio
ide1: BM-DMA at 0x8088-0x808f, BIOS settings: hdc: pio, hdd: pio
hda: IC25N060ATMR04-0, ATA DISK drive

Similar Messages

  • Data Service Wizard - How can I reconfigure return type field as XML (E4X) value

    The HTTP Data Service wizard - "Reconfigure Return Type" - does not allow XML (E4X) to be selected as a data type for a field.  For example , If my example XML payload looks like this (see below), I would like to set the datatype for "settings" field to be XML (E4X) and have the service decode the "string" value into an XML (E4X) value.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <ListOfUsers version="1.0.0">
        <User>
            <id>3</id>
            <subType>INTERNAL</subType>
            <authName>internal</authName>
            <name>Internal User</name>
            <settings>&lt;?xml version="1.0" encoding="utf-8" ?&gt;&lt;Settings&gt;&lt;Profile&gt;&lt;Region&gt;emea&lt;/Region&gt;&lt;Language&gt;en.g b&lt;/Language&gt;&lt;/Profile&gt;&lt;/Settings&gt;</settings>
        </User>
    </ListOfUsers>

    I find a (reasonably) elegant workaround which is to add a transient property in the "public" sub class of the value type - see below - I havent tested it much so not sure if it will work adequateky in all circumstances
    package services.listeningpost
    public class User_type extends _Super_User_type
    public function get xmlSettings():XML
    return new XML(settings);
    public function set xmlSettings(object:XML):void
    settings = object.toXMLString();

  • BO Data Services - Is it possible to archive/log a raw input XML?

    Hi all!
    I am fairly new to Business Objects Data Services (BODS).
    Scenario:
    I have a BODS job that is receiving an XML file (from external client), then breaking it down and transforming the data to my clients needs.
    Question:
    Is there any way for BODS to archive/log the original XML file received?  I tried to fiddle around with the Trace options but I have not been able to successfully find a way to see the original XML file in the log files.
    Reason:
    For troubleshooting purposes, I'd like to be able to see the original XML file received in order to investigate any problems like missing data, bad data, etc. Unfortunately we do not have access to the external clients logs.
    If there is no way to do this, then I will most likely have BODS dump the data into a temporary table, and build a script to re-construct the XML for if I want to resend the request.
    Thanks!
    Anthony

    Hi,
    There is a wiki which says how to do it, check this - Selective Reading and Postprocessing - Enterprise Information Management - SCN Wiki
    I do this through a much easier way, write a .bat file to do the archiving and call that .bat file from the DS.
    Arun

  • DI 11.5.0 to Data services 3.1 Sp2

    Can someone explain us the steps required to upgrade the DI to Data services,
    Data Integrator 11.5.0 to Data services latest pack,
    Database : Oracle
    OS: Windows.

    Hi,
    i know two ways:
    1. Generate an ATL from yout 11.5 Environment and import it in your DS XI 3.2 Environment
    2. Upgrade the repository and synchrinse it afterwards.
    I prefer step 1.
    See also
    http://help.sap.com/businessobject/product_guides/boexir32SP2/en/xi321_ds_mig_cons_en.pdf
    Regards
    -Seb.

  • Xcelsius 2008 SP1 Fix Pack 2 is out

    Just an FYI for all. Just noticed the fix pack has been published.
    [Download|https://websmp230.sap-ag.de/sap/bc/bsp/spn/bobj_download/main.htm]

    I'm pleased and excited overall with FP2 so far, but I can't use it due to the following change:
    ADAPT01134323 Description: If the Source Data of Icon is dynamic data that inserted by other selectors, changing the source data, destination data doesnu2019t update dynamically. New Behavior: This issue is resolved.
    This is a change from past behavior all the way back through v4, and a serious blow to custom solution development. Icon components have come to be the tool for many, many solutions due largely to the fact that they are the rare component that does not insert immediately upon receiving new source data. This is great for paging, or for creating buttons in multiple places on a page that control the same dynvis cells.
    And, most notably, there's already a component that behaves exactly as this new version of the icon does--the toggle button. Now we essentially have two toggle buttons, and no icon anymore.
    Please either bring back the old functionality on this one, or add more options under "Interaction Options" so users can decide how they want source data changes handled.
    Let me know if it would help for me to post an example.
    Thanks,
    Brian

  • Wcf Data Service fails when more than 8properties  in the 'select=' portion

    Hi:
    I am using WCF Data Service and Oracle
    EF Provider is ODAC11.2 Release 4
    Wcf Data Service fails when more than 8 properties are specified in the 'select=' portion of the URI
    here is my code
    var q = from c in this.ctx.SALESORDER_ITEM
    select new
    c.SORDERDETAILID,
    c.IID,c.DMFLAG,c.OWNERID,c.SKUID,c.SKU_ID,c.TRADENO,c.SOURCEID,c.SORDERID
    excetion:
    InvalidOperationException: An error occurred for this query during batch execution. See the inner exception for details
    The inner exception is null, but the DataServiceClientException states: Value cannot be null Parameter name: value
    the exception is thrown in base.OnStartProcessingRequest(args) method (overridden).
    Here is the call stack as well:
    at System.Data.Services.WebUtil.CheckArgumentNull[T](T value, String parameterName)
    at System.Data.Services.Internal.ProjectedWrapper.set_PropertyNameList(String value)
    at lambda_method(Closure , Shaper )
    at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
    at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
    at System.Data.Services.Internal.ProjectedWrapper.EnumeratorWrapper.MoveNext()
    at System.Data.Services.DataService`1.SerializeResponseBody(RequestDescription description, IDataService dataService)
    at System.Data.Services.DataService`1.HandleNonBatchRequest(RequestDescription description)
    at System.Data.Services.DataService`1.HandleRequest()
    Is there a max number of properties in $select statement
    I think may be it is oracle provider's problem ,but i don't konw how to debug it Can anyone help me
    Any help is greatly appreciated

    I believe the null/empty string issue is unrelated to the 8 column issue, at least for ODP.NET. For example, let's take the original query in the OBE:
    http://.../yoursvcfile.svc/EMPLOYEES?$select=EMPLOYEE_ID,FIRST_NAME,LAST_NAME,SALARY,DEPARTMENT_ID,DEPARTMENT,EMAIL,PHONE_NUMBER,MANAGER_ID
    Let's make all the columns selected not nullable. You can do this with the Oracle Dev Tools. Specifically, PHONE_NUMBER and FIRST_NAME are the only nullable fields. I make them non-nullable and re-run the query and the same error occurs. Thus, these values should never be made null. Moreover, in all 107 rows, none of these row values consist of empty strings anyway.
    Looking into the problem further, WCF DS is calling methods in the System.Data.Services.Internal namespace.
    http://msdn.microsoft.com/en-us/library/system.data.services.internal.aspx
    Specifically, we see your issue when the ProjectedWrapperMany method is called. You will notice that there is ProjectedWrapper0, ProjectedWrapper1...ProjectedWrapper8 methods also present in the same namespace. As soon as the number of columns exceeds 8, ProjectedWrapperMany is called and we see the error. We're going to ask MS to help analyze the issue since this is an .NET-internal method being called.

  • Data Services 12.2.3.0 BODI-1112015 Adapter metadata import failed

    Hi Experts,
    I am using Data Services 12.2.3.0.
    I have an issue in importing functions through 'Adapter' type datastore into Data Services. I can open the datastore and see the list of functions available, but when I try to import them, I get the error BODI-1112015 Adapter metadata import failed.
    The setup and the errors are as below.
    The adapter datastore is setup as below.
    I built a new keystore called clientkeystore.jks in the ..\bin.Then created the .CSR file, and then imported the signed chained (I believe it's chained certificate) certificate of the server hosting the wsdl into the keystore.
    Thanks for the post http://scn.sap.com/thread/1589052 . After changing the metadata character set to utf-8, I can see a list of functions when I open this New_Datastore in Data Services. It proves that the setup for the datastore has no problem parsing the wsdl file and give me the list of functions in it. 
    However, the error appears when I try to import them.
    Error is:
    Adapter metadata import failed. Error message: (BODI-1112015) Error parsing the <TheFunctionToBeImported> included in the XML sent by the adapter to represet a function <Error importing XML Schema from file <adapter_schema_in.xsd>:<XML parser failed: Error <Schema Representation Constraint: Namespace 'http://result.form.v81.api.keysurvey.com' is referenced without <import> declaration> at line <13>, char <46> in < < xsd:schema xmln:xsd=http://www.w3.org/2001/XMLSchema" xmln:tns="http://result.form.v81.api.keystore.com" xmlns:diws="http://businessobjects.com/diwebservice" targetnamespace="http://www.businessobjects.com/diwebservice"><xsd:import namespace='http://v81.api.keysurvey.com' schemaLocation='C:\Program Files\Business Objects\BusinessObjects Data Services\ext\webservice\FormResultManagemenetgetRespondentsgetRespondents0.xsd'/>
    <xsd: import namespace='http://result.form.v81.api.keysurvey.com' schemaLocation='C:\Program Files\Business Objects\BusinessObjects Data Services\ext\webservice\FormResultManagemenetgetRespondentsgetRespondents2.xsd'/> ........
    When comparing it with the wsdl file(as below), it is worth nothing that the schemaLocation is changed to a local directory under C:\Program Files\Business Objects\BusinessObjects Data Services\ext\webservice  while it was not the case in wsdl. The schemaLocation is on the server.
    I am wondering if the redirection from the server specified in the wsdl file to the local directory has caused this error. The error 'namespace is reference without <import>' is apparently wrong as the <import> is just there.
    Or there is any other reason behind this.
    I appreciate any adivce or question from you!

    I have reached the exact same error as this post http://scn.sap.com/thread/3190403
    The error is
    [Mon Jun 18 23:14:28 2012] [error] ..\..\src\core\deployment\conf_builder.c(876) Specifyingservices and modules directories using axis2.xml but path of the library directory is not present
    [Mon Jun 18 23:14:28 2012] [error] ..\..\src\core\deployment\conf_builder.c(261) Processing transport senders failed, unable to continue
    [Mon Jun 18 23:14:28 2012] [error] ..\..\src\core\deployment\dep_engine.c(939) Populating Axis2 Configuration failed
    [Mon Jun 18 23:14:28 2012] [error] ..\..\src\core\deployment\conf_init.c(195) Loading deployment engine failed for client repository C:\Program Files (x86)\SAP BusinessObjects\Data Services\ext\webservice-c\axis2.xml
    As it is identified as an version problem, this issue is not going to be investigated any further.
    As an alternative, can try to use Oracle 11g SOAP_API.sql.

  • Web Service as Data Service of a Combo Box?

    Hi,
    I tried to use a Web Service as Data Service for a dynamic entry list of a Combo Box. The problem is that I can’t see any entry in the resulting iView.
    The Web Service is working for sure; I can present the containing data in a table. I also tested BAPIS as Data Service for my Combo Box they are working properly.
    Has anyone an idea how to solve this problem?
    Thanks in advance
    Robert

    Hi Jarrod,
    I tried a drop down list instead, still the same Problem. The connection to the web service works properly there is no problem. I can choose it and the data service test is working fine.
    I also tried to use a value help instead of a drop down list, there encounters the problem that it’s not possible to select any of my data services, neither web services nor BAPI’s.
    Any idea?
    Robert

  • QAAWS does not work after upgrade to SP1 Fix Pack 3

    Hello experts,
    I have Xcelsius 2008 Ver 5.00.99 Build 12,1,0,247
    Today it was upgraded to SP1 Fix Pack 3 due to some issues with the Excel Formulas - it didn't help to resolve the issue with the showing Formulas in preview and I also discovered the QAAWS not working - either new generated connection or old ones causing the "Unable to load URL error" when I try to load the WSDL.
    Please give me any suggestion what can I try wrt this QAAWS issue.

    Brian,
    I have the same view.
    In BOXI R2 if you took the the URL and pasted it into internet explorer you would see the WSDL. In BOXI 3.1 this does not occur.  A list of newly define queries, or queries that have been re-run in BOXI 3.1 are displayed. The list contains links, but navigating using these links does not display the WSDL.
    I am not sure if not being able to see the WSDL is causing my problem but it would explain the 'null' error. I can also see that QAAWS now creates the URLs with a new format when compared to the BOXI R2 URLs, may be this is causing the problem?
    Regards
    Jason

  • Cant work with Data Services

    Hi,
    I am new to flex and I want to know step-by-step guidelines
    to smoothly install FDS on my laptop and easily run the sample
    applications. Currently when I install FDS on my machine,
    everything works fine and I am even able to access the
    http://localhost:8700/flex
    url and
    http://localhost:8700/samples
    url. But when I click on the link for any sample application on the
    samples page, it gives me a page not found. Also when I open a new
    Flex data services project in Flex Builder and write some code, I
    get an problem error in flex builder-"unable to open
    services-config.xml"
    I browsed to the folder in JRun\default\servera\flex and
    indeed there was no file called "services-config.xml"
    I am stuck at this point and hence cannot run any sample or
    my own application using data services. Please someone help me out
    here as maybe I am forgetting something trivial or there is some
    other issue.
    Thanks.

    Then I'd say you don't have a correctly setup web
    application... look for
    samples.war and expand it using winzip - notice the contents
    of /WEB-INF/
    directory. You should have /WEB-INF/flex/services-config.xml
    if you have
    a valid FDS war file.

  • Odbc connectivity with Data services 4.2

    Hi guys
    i have very general question to ask...
    presently i have dataflow which has one source table connects to query transform and further query transform connects with target table.. query transform has no filter, no order, no group by ... it is simple select * from source table ......... company where the source tables resides have given us their odbc driver to connect and extract same data... but it takes very long time to copy at our end.. i admit that data is more than 100 million (takes more than 4 hrs) records.. but could you please help me to debug what can be done to increase the performance and how can i check why it takes very long time...
    ODBC connection set up in administrative tools->ODBC application.. is there any other way to set up the odbc....
    when i run same query on the tool provided by them to connect with LIVE system.. it takes half of the time taken by data services to copy..
    I have tried changing the dataflow properties between in-memory/ pageable with degree of parallelism.
    what can i check on my end if anything wrong going at my end... before i tell anything to source company to see...
    I would be very greatful if anyone can help me to understand same.
    regards

    Hi,
    If your database is SQL server, install a SQL native client on the DS machine to connect to the DB. You don't need a ODBC for connection of DS with DB.
    Check this, assuming your DB is SQL.
    Can Data Services 4.1 Datastore connect to 32-bit MSSQL 2005 DB?
    SAP Data Services 4.1 - SQL Server Native Client issue
    Arun

  • Data Services Designer - Very Slow on VPN

    Hello,
    Any idea why Data Services Designer is very slow and many a times goes into Not Responding state. I'm using this client tool to connect to the Data Services Repository + Servers via VPN.
    It takes few minutes to load the jobs or to save the changes. Some times hangs.
    Wanted to know if anyone is facing similar issues, and any workaround/setup changes to eliminate these delays...
    Regards,
    Madan
    Edited by: Madan Mohan Reddy Zollu on Mar 12, 2010 9:24 AM

    Data Services Designer is communicating with the repo (to store/retrieve objects) and the jobserver (to execute jobs and get status/log files) so if there is a slow network connection, response time in the Designer could become problematic.
    One way to solve this is use CITRIX or terminal services to have your Designer close to the database and only screens are send over the slow connection. In the Windows installation guide there is a chapter that documents how to setupDesigner in a (multi-user) Citrix environment.

  • Sequence for Updates (Service Pack / Fix Pack)

    Hello everybody.
    I'm a bit confused about the update strategy.
    Until now I was convinced that the strategy for the updates is or should be like this:
    Service Pack 1 --> Fix Pack 1.1 --> Fix Pack 1.2 --> ... --> Fix Pack 1.x
    Service Pack 2 --> Fix Pack 2.1 --> Fix Pack 2.2 --> ... --> Fix Pack 2.x
    Service Pack 3 --> Fix Pack 3.1 ...
    and so on, and so on.
    There shouldn't be possible to install, e.g a Fix Pack 2.1 after the Service Pack 3 is installed.
    But because of an problem with the connection server under Windows 2003 I'm not that sure anymore.
    The story in short:
    We've got installed the Service Pack 4 on the Enterprise.
    After a few Windows updates the connection server didn't start anymore.
    In the forum some say that this issue is fixed with the Fix Pack 3.6.
    So first I wondered why the issue occurs on a system with a higher patch.
    But the I've seen in the SAP Service Marketplace that the Fix Pack 3.6 is released after the Service Pack 4. Does this mean it is "more up to date"?
    Is my image of the update sequence incorrect?
    Thanks for any explanation in advance.
    Regards
    PS: My connection service problem was solved by uninstalling the windows update KB2509553 and a restart of the system.

    Hi,
    the explanation of this is the following:
    At some point they start with the development of SP4. Lets say they start the dev. of SP4 during the release SP3 FP3.5. So all fixes after FP3.5 wont get packed into SP4. Thats why FP3.6 will fix a bug which SP4 wont. With the release of FP4.1 this fix from FP3.6 will be packaged aswell into FP4.1
    I hope this made it clear.
    Regards
    -Seb.

  • Since upgrading my iPhone 5 to ios 7, I cannot get the internet, email to work on 3g.  I get the message ""could not activate mobile data network. You are not subscribed to a mobile data service".  How do I fix it?

    Since upgrading my iPhone 5 to ios 7, I cannot get the internet, email to work on 3g.  I get the message ""could not activate mobile data network. You are not subscribed to a mobile data service".  How do I fix it?
    I've contacted o2, tried all of their suggested updates and changes, reset my phone 3 times and still no luck.
    Any help appreciated.
    Thanks,
    Louisa

    Hi, l have the same problem, were you able to resolve?

  • Which Fix Pack is included in which Service Pack?

    I found no exhaustive documentation on that.
    E.g. Fix Pack 2.6 is out now but I noticed that is also a new Fix Pack for Service Pack 1, namely Fix Pack 1.11 .
    If I am a User of Crystal Reports 2008 and have Service Pack 2 applied, which Fix Pack do I have to apply to get the fixes of FP 1.11 ? Do I have to wait for Fix Pack 2.7 then? Or did Fix Pack 2.6 also include Fix Pack 1.11?
    This is so confusing. I found no answers to these questions in the release notes.

    Hello,
    Previous versions of CR did not always follow the same versioning rules. We are now matching major and minor versions with Fix Packs to Service Packs.
    With Cr 2008 the major number of the Fix pack is the major number of the Service Pack. In your case if you are on SP 2 then Fix Pack 2.x can be applied. You cannot apply FP 1.11, that is for people still on SP 1.
    Fix Pack 2.7 is now available: https://smpdl.sap-ag.de/~sapidp/012002523100005755702010E/cr2008fp27.exe
    Thnak you
    Don

Maybe you are looking for