Date type in BI Publisher

Hello all,
I have some problems regarding the date format from BI Publisher. Dates in the XML generated file includes timpestamps, like this :
*2010-03-01T00:00:00.000+02:00*
When showing the date in the template, the above example comes out as February 28, 2010 (...?!?). Also some days are delayed by 1 day.
I suppose it's beacause the timestamp formatting, but how can i remove it, instead of transforming the date into a char ?
Thank you in advance,
Simion

It still doesn't work. I tried formatting the date with <?format-date:TRANSACTION_DATE;'SHORT';'UTC'?> or America, and still shows me 2/28/2010 instead of 1st of March. Seems that TO_CHAR is the only solution.

Similar Messages

  • How to display images in BI Publisher from a LONG data type

    We are storing images in Oracle Database as LONG data type. When I am giving query in BI Publisher and view the XML generated, I am getting the following error.
    name was started with an invalid character. Error processing resource 'http://.......
    <X_SIGNATURE>"N!0$$$$$$$#B!0$$$"X$$$$!3$$$!2$$#a$$$!1$!1$$$$$d$$$$#7$"X!0$"}@E$e"1"XM">K#@!P!P!Ga}!1!@!P!C#C"O!>...
    Can anyone suggest the solution?

    Hi
    my problem is, for each job_id there is many users. Oh that's something completlty different...
    I Strongly Recommand to_
    1.*create 2 tables Jobs & users*
    2.*create a relation between them* 1 to many to get for each job more than a user that's the way that Must be -- execuse me the bad design of the db pulled u into this trap -
    3.then u can deal with it normally no need to a sample code but just a form with Jobs as  (Master) and Users as (detail) with a relation and with a simple query u can display each job_id is for many users.
    no null values no commas r needed.
    Hope this helps...
    Regards,
    Amatu Allah.

  • Need Date manipulation in BI Publisher report template

    Hi All,
    I need date manipulation in BI Publisher report template for e.g sysdate+4 this means i need 4 days after todays sysdate.
    That menas if today date(sysdate) is 09/01/2008 then i need (sysdate+4) i.e 13/01/2008.
    Please help me.
    Thanks
    Edited by: user562690 on Jan 9, 2009 3:21 PM

    Hi M14,
    I have doubt on similar type.I have AgreementStartDate as
    <AgreementStartDate>12/03/2008 07:24:10</AgreementStartDate> in XML format.
    I am not able to apply same formula for thsi date format in similar manipulation.
    Please help me.
    TIA
    skr

  • How to deal with LONG data type in RTF template

    Hi,
    I'm developing a PO request report in which I should print some attachments. The attachments are stored in the database in table fnd_attachments_long_text in column long_text which data type is LONG. In my case the content of the column long_text is always plain text.
    The query I use to get the text from the table is something like:
    select long_text
    from fnd_documents_long_text
    where <some_conditions....>
    The query runs fine in SQL developer but when I run the XML report I get following error: "Stream has already been closed". The XML file generated is complete in its structure but the XML node which should contain the text of the attachment is empty, therefore I cannot print the attachment in the report.
    I made some researches on metalink and I've found note 832903.1 which explains the same error I'm getting. Looks like I cannot execute more than 1 query using the same JDBC connection if one of these queries retrieves a LONG data type.
    Any advice on how can I get the attachment text to show correctly in my report?
    Thank you

    Hi,
    Thank you for your reply,
    Yes, I tried to get the text as described in that article but maybe I'm missing something because my data template doesn't show the attachment text.
    The article talks about support for BLOB, CLOB and RAW and at the end it states "but we do not have support for RAW and LONG column types at the moment - we're looking into that for a future release". So this makes me think that I won't be albe to retrieve my text since it's stored in a LONG column.
    I think that the error I'm getting is not strictly related to XML publisher but it is in some way related to the JDBC connection used to get the data. Infact I have an old version of the same report I'm trying do develop which is made in Report Builder and it is retrieving the attachment text correctly.
    Right now I'm trying to use the Report Builder engine to get the XML data and then use XML Publisher to create the PDF output. Anyway, if it is possible, I would like to avoid Report Builder and use only XMLP.
    Thanks

  • Saving result from sp_executesql into a variable and using dynamic column name - getting error "Error converting data type varchar to numeric"

    Im getting an error when running a procedure that includes this code.
    I need to select from a dynamic column name and save the result in a variable, but seem to be having trouble with the values being fed to sp_executesql
    DECLARE @retval AS DECIMAL(12,2)
    DECLARE @MonthVal VARCHAR(20), @SpreadKeyVal INT
    DECLARE @sqlcmd AS NVARCHAR(150)
    DECLARE @paramdef NVARCHAR(150)
    SET @MonthVal = 'Month' + CAST(@MonthNumber AS VARCHAR(2) );
    SET @SpreadKeyVal = @SpreadKey; --CAST(@SpreadKey AS VARCHAR(10) );
    SET @sqlcmd = N' SELECT @retvalout = @MonthVal FROM dbo.CourseSpread WHERE CourseSpreadId = @SpreadKeyVal';
    SET @paramdef = N'@MonthVal VARCHAR(20), @SpreadKeyVal INT, @retvalout DECIMAL(12,2) OUTPUT'
    --default
    SET @retval = 0.0;
    EXECUTE sys.sp_executesql @sqlcmd,@paramdef, @MonthVal = 'Month4',@SpreadKeyVal = 1, @retvalout = @retval OUTPUT;
    SELECT @retval
    DECLARE @return_value DECIMAL(12,2)
    EXEC @return_value = [dbo].[GetSpreadValueByMonthNumber]
    @SpreadKey = 1,
    @MonthNumber = 4
    SELECT 'Return Value' = @return_value
    Msg 8114, Level 16, State 5, Line 1
    Error converting data type varchar to numeric.

    Please follow basic Netiquette and post the DDL we need to answer this. Follow industry and ANSI/ISO standards in your data. You should follow ISO-11179 rules for naming data elements. You should follow ISO-8601 rules for displaying temporal data. We need
    to know the data types, keys and constraints on the table. Avoid dialect in favor of ANSI/ISO Standard SQL. And you need to read and download the PDF for: 
    https://www.simple-talk.com/books/sql-books/119-sql-code-smells/
    >> I need to select from a dynamic column name and save the result in a variable, but seem to be having trouble with the values being fed to sp_executesql <<
    This is so very, very wrong! A column is an attribute of an entity. The idea that you are so screwed up that you have no idea if you want
    the shoe size, the phone number or something else at run time of this entity. 
    In Software Engineering we have a principle called cohesion that says a model should do one and only one task, have one and only one entry point, and one and only one exit point. 
    Hey, on a scale from 1 to 10, what color is your favorite letter of the alphabet? Yes, your mindset is that level of sillyity and absurdity. 
    Do you know that SQL is a declarative language? This family of languages does not use local variables! 
    Now think about “month_val” and what it means. A month is a temporal unit of measurement, so this is as silly as saying “liter_val” in your code. Why did you use “sp_” on a procedure? It has special meaning in T-SQL.  
    Think about how silly this is: 
     SET @month_val = 'Month' + CAST(@month_nbr AS VARCHAR(2));
    We do not do display formatting in a query. This is a violation of at the tiered architecture principle. We have a presentation layer. But more than that, the INTERVAL temporal data type is a {year-month} and never just a month. This is fundamental. 
    We need to see the DDL so we can re-write this mess. Want to fix it or not?
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Getting error when view - Requested data type does not match with existing

    I have the siebel web service
    In the BI publisher as mentioned in the 'Siebel_BI_Publisher_Integration_Concepts.pdf', I have imported the siebel web service
    BI can recognize the 'Web service' and methods.
    I have created the paramters. The data type is 'String'
    When I try to view the report using the BI publisher, I am getting teh following error in th UI
    "Requested data type does not match with existing data type"
    This is the first time I am using BI publisher to call the Siebel web service. I don't know what this error means
    I don't know whether any log file generated wit the details of this erro message
    Any help is much appriciated
    Thanks,
    Kavitha

    Hi all,
    have you find a fix for this issue? Im facing the same situation, using Complex type, and String data type both in the service and Bi publisher. We are consuming CC&B services, and we have noticed this error appears when BIPublisher is running on WebLogic (10.3) but it does not appear when BIPublisher is running on OC4J , of course running the same report on both application servers.
    Any idea?
    Thanks a lot, regards
    Nestor

  • How to change data type of content type column.

    Hi all,
    I am having one content type. I have 10 columns in it. There are two rich text columns in my content type. I have attached this content type to pages library. I want to change the data type of this rich text column  to "Full
    HTML content with formatting and constraints for publishing".
    Please assist me with this issue.
    amol

    Hi,
    From your description, my understanding is that you want to change the data type for rich text column in content type.
    The field type of Full HTML content with formatting and constraints for publishing is "Invalid", you could refer to this article:https://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfieldtype.aspx.
    You also could test it by create a Full HTML content with formatting and constraints for publishing column and get the its type with C# code below:
    //change the URL to your SharePoint site
    using (SPSite site = new SPSite("http://sp/sites/sharepoint2013"))
    using (SPWeb web = site.OpenWeb())
    SPFieldType type = web.Fields["Column name"].Type;
    I have tested it with the PowerShell, it cannot hange the rich text column to “Full HTML content with formatting and constraints for publishing” column. If you want to edit the rich text column, you could not change the type of the column as the screenshot
    below:
    As a workaround, you could follow these steps to accomplish your requirement:
    Create a “Full HTML content with formatting and constraints for publishing” type column in the content type.
    Enter your site columns by clicking gear icon -> Site Settings -> Site columns under Web Designer Galleries under section.
    Find and delete the rich text column you want to change.
    Find the column you have created in step 1, and change the column’s name to the name of the text column you have deleted in step 3.
    But you will lose the data of the rich text column in pages library with this method.
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Date type in xml schema

    The date type in schema processor doesn't work. I can replace the date in the xml with any character and still get the xml validated. Same problem with year and month type.

    Hi,
    The behaviour I posted above has been identified as a bug by Oracle and a patch(#6053186) now exists for this problem. This patch is available for database version 10.2.0.3 and the bug would eventually be fixed only in database version 11g according to the details published for the bug.
    Rgds,
    Rakesh.

  • How do i add a new data type in this Bubble sort

    i have tried to i add a new String data type (String publisher) but my program has an error.
    please show me
    // libmainsys.java
    // demonstrates bubble sort
    // to run this program: C>java BubbleSortApp
    class ArrayBub
    private String[] a; // ref to array a
    private int nElems; // number of data items
    public ArrayBub(int max) // constructor
    a = new String[max]; // create the array
    nElems = 0; // no items yet
    public void insert(String value) // put element into array
    a[nElems] = value; // insert it
    nElems++; // increment size
    public void display() // displays array contents
    for(int j=0; j<nElems; j++) // for each element,
    System.out.print(a[j] + " "); // display it
    System.out.println("");
    public void bubbleSort()
    int out, in;
    for(out=nElems-1; out>1; out--) // outer loop (backward)
    for(in=0; in<out; in++) // inner loop (forward)
    if( a[in].compareTo(a[in+1])>0 ) // out of order?
    swap(in, in+1); // swap them
    } // end bubbleSort()
    private void swap(int one, int two)
    String temp = new String(a[one]);
    a[one] = a[two];
    a[two] = temp;
    } // end class ArrayBub
    class libmainsys
    public static void main(String[] args)
    int maxSize = 100; // array size
    ArrayBub arr; // reference to array
    arr = new ArrayBub(maxSize); // create the array
    arr.insert("Manuel"); // insert 10 items
    arr.insert("Portillo");
    arr.insert("Kike");
    arr.insert("Pedro");
    arr.insert("Mono");
    arr.insert("Cuca");
    arr.insert("Zoila");
    arr.insert("Karina");
    arr.insert("Joto");
    arr.display(); // display items
    arr.bubbleSort(); // bubble sort them
    arr.display(); // display them again
    } // end main()
    } // end class libmainsys
    /////////////////////////////////////////////

    nope i mean like this
    // libmainsys.java
    // demonstrates bubble sort
    // to run this program: C>java BubbleSortApp
    class ArrayBub
    private String[] a; // ref to array a
    private Sting[] publisher;
    private int nElems; // number of data items
    public ArrayBub(int max) // constructor
    a = new String[max]; // create the array
    nElems = 0; // no items yet
    public void insert(String value) // put element into array
    a[nElems] = value; // insert it
    nElems++; // increment size
    public void display() // displays array contents
    for(int j=0; j<nElems; j++) // for each element,
    System.out.print(a[j] + " "); // display it
    System.out.println("");
    public void bubbleSort()
    int out, in;
    for(out=nElems-1; out>1; out--) // outer loop (backward)
    for(in=0; in<out; in++) // inner loop (forward)
    if( a[in].compareTo(a[in+1])>0 ) // out of order?
    swap(in, in+1); // swap them
    } // end bubbleSort()
    private void swap(int one, int two)
    String temp = new String(a[one]);
    a[one] = a[two];
    a[two] = temp;
    } // end class ArrayBub
    class libmainsys
    public static void main(String[] args)
    int maxSize = 100; // array size
    ArrayBub arr; // reference to array
    arr = new ArrayBub(maxSize); // create the array
    arr.insert("Manuel"); // insert 10 items
    arr.insert("Portillo");
    arr.insert("Kike");
    arr.insert("Pedro");
    arr.insert("Mono");
    arr.insert("Cuca");
    arr.insert("Zoila");
    arr.insert("Karina");
    arr.insert("Joto");
    arr.display(); // display items
    arr.bubbleSort(); // bubble sort them
    arr.display(); // display them again
    } // end main()
    } // end class libmainsys
    but i have no idea what to do next

  • Custom data type causing trouble in deploying shared variable to RT target

    I seem to be having some difficulty in using a network published shared variable created from a custom data type when deployed as an executable on an RT cRIO target.  I'll start by describing why I believe this is where the problem lies.  I created my RT VI in the LabVIEW development environment (LV 2012) and everything works fine.  This VI is pretty simple because it rapidly devolved in to a debug exercise.  The RT VI starts by simply blinking the User LED a couple of times and then starts a simple acquisition loop to read a few values off the hardware using the scan engine (while still blinking the User LED).  After reading the hardware, the values are bundled in to a cluster and written to a network-published shared variable defined by a type def custom control.  The custom control contains five dbl precision floats.  If it matters, the cRIO RT system hosts the shared variable in this case.
    So, I deploy this under the development environment and everything works fine.  The LED blinks merrily along, telling me that the program is running properly.  Running a host VI that reads the network-published shared variable yields the desired result.  All is good.
    Now I want the cRIO system to run this simple program autonomously at startup.  I build it, set it as the startup VI, deploy it and then restart the cRIO target.  The LED never starts blinking... the VI does not seem to run.  I will spare you most of the debugging work and jump to the end.  I basically "Diagram Disabled" various sections of code until the VI started running correctly as an executable.  I kept reducing the size of the disabled code until only one thing was disabled:  the write to the custom data type shared variable.
    So, I guess my question is this:  Are custom data types defined by type def'd custom controls allowed in executable RT programs?  I've read through the cRIO Developers Guide, my NI Real Time Development course book and the Using Shared Variables white paper and I didn't see anything that forbade it.  I know that there are some things not allowed in executables that are allowed in the development environment (front panel property nodes, dialog VIs, OS-specific calls, etc), but no mention of custom data type shared variables.  Any ideas as to why my VI runs in the development environment but fails when compiled unless I remove the write to the network published shared variable?
    Thanks in advance for your help!!
    Solved!
    Go to Solution.

    Paolo,
    So I thought that you meant to disconnect them in the build specification.  Under the Additional Exclusions in the build specification, there is a check box for Disconnect Type Defs.  I checked that box, recompiled, redeployed and it did not work.  At this point I had to give and move forward, so I was going to convert the data typed from a cluster to an array.  When I went in to change the data type in the shared variable pop-up from the project explorer, there was a big button under the variable definition that "Disconnect from Type Def".  Clicked that button, recompiled, redeployed, restarted and everything worked great.  Thank You!!
    I suspect that I'll have to be careful if I change the definition of that data type (add an element, etc) since it is no longer connected to the data type.  We'll cross that bridge when we need to.
    Thanks again

  • Incorrect data type when writing to FPGA Read/Write Control

    I have run in to a problem this morning that is causing me substantial headache.  I am programming a CompactRIO chassis running in FPGA mode (not using the scan engine) with LabVIEW 2012.  I am using the FPGA Read/Write Control function to pass data from the RT Host to the FPGA Target.  The data the RT host is sending comes from a Windows host machine (acting as the UI) and is received by the RT Host through a network published variable.
    The network published shared variable (shared between the RT and Windows system) is a Type Def cluster containing several elements, one of which is a Type Def cluster of fixed point numerics.  The RT system reads this shared variable and breaks out the individual elements to pass along to various controls on the FPGA code's front panel.  The FPGA's front panel contains a type def cluster (the same type def cluster, actually) of fixed point numerics.
    The problem comes in the RT code.  After I read the shared variable I unbundle the cluster by name, exposing the sub-cluster of fixed point numerics.  I then drop an FPGA Read/Write Control on the RT block diagram and wire up the FPGA reference.  I left click on the FPGA Read/Write Control and select the cluster of fixed point numerics.  I wire these together and get a coercion dot.  Being a coercion dot hater, I hover over it the dot and see that the wire data type is correct (type def cluster of fixed point numerics), but the terminal data type is listed as a cluster containing a Boolean, code integer and source string, also known as an error cluster.  I delete the wire and check the terminal data type on the Read/Write Control, which is now correctly listed as a type def cluster of fixed point numerics.  Rewiring it causes the terminal to revert back to the error cluster.  I delete the wire again and right click on the terminal to add a control.  Sure enough, a type def cluster of fixed point numerics appears.  Right clicking and adding an indicator to the unbundle attached to the network shared variable produces the proper result.  So, until they are attached to each other, everything works fine.  When I wire these two nodes together, one spontaneously changes to a error cluster.
    Any thoughts would be appreciated.

    My apologies I never got back to responding on this.  I regret that now because I got it to work but never posted how.  I ran in to the exact same problem today and returned to this post to read the fix.  It wasn't there, so I had to go through it all over again.
    The manifestation of the problem this time was that I was now reading from the Read/Write FPGA front panel control and writing to a network published shared variable.  Both of these (the published shared variable and the front panel control) were based on a strict type defined cluster, just like in the original post.  In this instance, it was a completely different cluster in a completely different project, so it was not a one-off thing.
    In addition to getting the coercion dot (one instance becoming an error cluster, recall), LabVIEW would completely explode this time around.  If I saved the VI after changing type definition (I was adding to the cluster) I would get the following error:
    Compile error.  Report this problem to N.I. Tech Support.  Copy cvt,csrc=0xFF
    LabVIEW would then crash hard and shutdown without completing the save.  FYI, I'm running LabVIEW 12.0f3 32-bit.
    If I would then reopen the RT code, the same crash would occur immediately, ad nauseam.  The only way to get the RT code to open was to change the type defined cluster back to the way it was (prior to adding the new element).
    I didn't realize it last time around (what originally prompted this post), but I believe I was adding to a type def cluster when this occurred the first time.
    So, how did I fix it this time around? By this point I tried many, many different things, so it is possible that something else fixed it.  However, I believe that all I had to do was to build the FPGA code that the RT code was referencing.  I didn't even have to deploy it or run it... I just had to build it.  My guess is that the problem was the FPGA Reference vi (needed to communicate with the FPGA) is configured (in my case) to reference a bit file.  When the development FPGA Main.vi ceases to match the bit file, I think that bad things happen.  LabVIEW seems to get confused because the FPGA Main.vi development code is up and shows the new changes (and hence has the updated type def), but when you ask the RT code to do something substantial (Open, Save, etc), it refers to the old bit file that has not yet been updated.  That is probably why the error getting thrown was a compile error.
    I'm going to have to do an additional round of changes, so I will test this theory.  Hopefully I will remember to update this post with either a confirmation or a retraction.

  • Data Modeler Logical Data Type confusion!

    I don't get it.
    When defining a logical model, I want to assign data types to the attributes in my model.
    I understand a logical datatype like money, and that a logical datatype might be implemented differently in different databases. The concept makes perfect sense to me.
    I pick a datatype from the Logical Types.
    It ignores the logical datatype that I picked and puts in another datatype instead. I'm guessing that it's a physical mapping. I would understand the logical-to-relational mapper doing that , but I don't understand it happening at this point in the model life cycle.
    Let's say I pick Money. It puts Double into the logical datatype, not money.
    If I pick Date or DateTime, it puts Date into the logical datatype, so what is the point of giving me two types to pick from?
    Seems kind of wonky.

    David,
    We will publish soon a document on how the data types work.
    If you go to tools, Types administration you will see that a logical type is mapped to a native type and a native type is mapped to a logical type.
    The logical type MONEY is mapped to DOUBLE for Oracle.
    Types and domain files can be customised.
    One could argue that the logical name MONEY should show up and not the native name. Showing the native name has the benifit that you see what the logical type is mapped to. Both approaches could have their supporters, no?
    Kind regards,
    René De Vleeschauwer
    SQL Developer Data Modeling.

  • VISA data types not compatible with ODBC SQL_C_ datatypes

    This is strange: I have a CVI app which reads data from Access 2.0 into VISA
    datatype structures throught ODBC 3.51 and so far it worked properly but
    when I upgrated the ODBC drivers to 4.0 (the application remins the same
    exe) then all cases where I use ViInt16 recieves zeros instead the correct
    data.

    Hi vaibhav
    Thanks for help. Actually my requirement is that I have one database on sql server 2005 version. I am planning to migrate it to sql server 2012 version. I want to publish a list of all objects across all databases which cannot be replicated to sql server
    2012.How can I do this. Are there any data types which were in sql 2005 version but are depreciated in sql server 2012
    Regards
    Rahul
    yes there are
    but why not look at here for breaking changes
    http://msdn.microsoft.com/en-us/library/ms143179(v=sql.110).aspx
    The deprecated features would still work though new development using them is discouraged
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • NAD010 data type must be 'Alphanumeric' in EDIFACT D96A INVOIC

    Hi B2B GURUS,
    I am new to B2B, I was trying to integrate EDIFACT D96A INVOIC from BPEL to B2B.
    I got below error in B2B:Can some one please help on this.
    Element NAD010 data type must be 'Alphanumeric'. Segment NAD is defined in the guideline at position 0120.{br}{br}This error was detected at:{br}{tab}Segment Count: 6{br}{tab}Element Position: 3 {br}{tab}Characters: 2012 through 2049
    XML published to B2B ==>
    <Invoke_SendInvoiceToB2b_Enqueue_InputVariable_1><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Transaction-INVOIC"><Transaction-INVOIC xmlns:ns1="urn:oracle:integration:b2b:EB1F987EE11A4A3E98E3345554E5DB13" Standard="EDIFACT" Version="VD96A" GUID="{2d333538-3630-3735-3039-313132343638}" xmlns="urn:oracle:integration:b2b:EB1F987EE11A4A3E98E3345554E5DB13">
    <ns1:Segment-UNH>
    <ns1:Element-0062>3210012325</ns1:Element-0062>
    <ns1:Composite-S009>
    <ns1:Element-0065>INVOIC</ns1:Element-0065>
    <ns1:Element-0052>D</ns1:Element-0052>
    <ns1:Element-0054>96A</ns1:Element-0054>
    <ns1:Element-0051>UN</ns1:Element-0051>
    <ns1:Element-0057>EAN008</ns1:Element-0057>
    </ns1:Composite-S009>
    </ns1:Segment-UNH>
    <ns1:Segment-BGM>
    <ns1:Composite-C002>
    <ns1:Element-1001>380</ns1:Element-1001>
    </ns1:Composite-C002>
    <ns1:Element-1004>3210000019</ns1:Element-1004>
    </ns1:Segment-BGM>
    <ns1:Segment-DTM>
    <ns1:Composite-C507>
    <ns1:Element-2005>137</ns1:Element-2005>
    <ns1:Element-2380>21120821</ns1:Element-2380>
    <ns1:Element-2379>102</ns1:Element-2379>
    </ns1:Composite-C507>
    </ns1:Segment-DTM>
    <ns1:Loop-Group_1>
    <ns1:Segment-RFF>
    <ns1:Composite-C506>
    <ns1:Element-1153>VN</ns1:Element-1153>
    <ns1:Element-1154>3210012325</ns1:Element-1154>
    </ns1:Composite-C506>
    </ns1:Segment-RFF>
    <ns1:Segment-DTM>
    <ns1:Composite-C507>
    <ns1:Element-2005>171</ns1:Element-2005>
    <ns1:Element-2380>21120821</ns1:Element-2380>
    <ns1:Element-2379>102</ns1:Element-2379>
    </ns1:Composite-C507>
    </ns1:Segment-DTM>
    </ns1:Loop-Group_1>
    <ns1:Loop-Group_2>
    <ns1:Segment-NAD>
    <ns1:Element-3035>BY</ns1:Element-3035>
    <ns1:Composite-C082>
    <ns1:Element-3039>541218011234</ns1:Element-3039>
    <ns1:Element-3055>9</ns1:Element-3055>
    </ns1:Composite-C082>
    <ns1:Composite-C058>
    <ns1:Element-3124>Flex ABC Division GH-94404</ns1:Element-3124>
    </ns1:Composite-C058>
    <ns1:Composite-C080>
    <ns1:Element-3036>ABC ABC Ltd</ns1:Element-3036>
    </ns1:Composite-C080>
    <ns1:Composite-C059>
    <ns1:Element-3042>tyu Wei 45</ns1:Element-3042>
    </ns1:Composite-C059>
    <ns1:Element-3164>werentem</ns1:Element-3164>
    <ns1:Element-3251>B-455</ns1:Element-3251>
    <ns1:Element-3207>BE</ns1:Element-3207>
    </ns1:Segment-NAD>
    </ns1:Loop-Group_2>
    <ns1:Loop-Group_7>
    <ns1:Segment-CUX>
    <ns1:Composite-C504>
    <ns1:Element-6347>2</ns1:Element-6347>
    <ns1:Element-6345>EUR</ns1:Element-6345>
    <ns1:Element-6343>4</ns1:Element-6343>
    </ns1:Composite-C504>
    </ns1:Segment-CUX>
    </ns1:Loop-Group_7>
    <ns1:Loop-Group_8>
    <ns1:Segment-PAT>
    <ns1:Element-4279>5</ns1:Element-4279>
    <ns1:Composite-C110>
    <ns1:Element-4277>30</ns1:Element-4277>
    </ns1:Composite-C110>
    <ns1:Composite-C112>
    <ns1:Element-2475/>
    <ns1:Element-2009/>
    <ns1:Element-2151>D</ns1:Element-2151>
    <ns1:Element-2152>30</ns1:Element-2152>
    </ns1:Composite-C112>
    </ns1:Segment-PAT>
    <ns1:Segment-DTM>
    <ns1:Composite-C507>
    <ns1:Element-2005>12</ns1:Element-2005>
    <ns1:Element-2380/>
    <ns1:Element-2379>102</ns1:Element-2379>
    </ns1:Composite-C507>
    </ns1:Segment-DTM>
    <ns1:Segment-PCD>
    <ns1:Composite-C501>
    <ns1:Element-5245>12</ns1:Element-5245>
    <ns1:Element-5482/>
    </ns1:Composite-C501>
    </ns1:Segment-PCD>
    <ns1:Segment-MOA>
    <ns1:Composite-C516>
    <ns1:Element-5025>21</ns1:Element-5025>
    <ns1:Element-5004/>
    </ns1:Composite-C516>
    </ns1:Segment-MOA>
    </ns1:Loop-Group_8>
    <ns1:Loop-Group_25>
    <ns1:Segment-LIN>
    <ns1:Element-1082>1</ns1:Element-1082>
    </ns1:Segment-LIN>
    <ns1:Segment-PIA>
    <ns1:Element-4347>NH</ns1:Element-4347>
    <ns1:Composite-C212_1>
    <ns1:Element-7140>LDI323010</ns1:Element-7140>
    </ns1:Composite-C212_1>
    </ns1:Segment-PIA>
    <ns1:Segment-IMD>
    <ns1:Element-7077>F</ns1:Element-7077>
    <ns1:Element-7081>DSC</ns1:Element-7081>
    <ns1:Composite-C273>
    <ns1:Element-7008>ABCD IND/ Lux</ns1:Element-7008>
    </ns1:Composite-C273>
    </ns1:Segment-IMD>
    <ns1:Segment-QTY>
    <ns1:Composite-C186>
    <ns1:Element-6063>46</ns1:Element-6063>
    <ns1:Element-6060>10</ns1:Element-6060>
    </ns1:Composite-C186>
    </ns1:Segment-QTY>
    <ns1:Loop-Group_28>
    <ns1:Segment-PRI>
    <ns1:Composite-C509>
    <ns1:Element-5125>AAA</ns1:Element-5125>
    <ns1:Element-5118>769.31</ns1:Element-5118>
    </ns1:Composite-C509>
    </ns1:Segment-PRI>
    </ns1:Loop-Group_28>
    <ns1:Loop-Group_29>
    <ns1:Segment-RFF>
    <ns1:Composite-C506>
    <ns1:Element-1153>ON</ns1:Element-1153>
    <ns1:Element-1154>3210000025</ns1:Element-1154>
    <ns1:Element-1156>1</ns1:Element-1156>
    </ns1:Composite-C506>
    </ns1:Segment-RFF>
    </ns1:Loop-Group_29>
    <ns1:Loop-Group_33>
    <ns1:Segment-MOA>
    <ns1:Composite-C516>
    <ns1:Element-5025>124</ns1:Element-5025>
    <ns1:Element-5004>461.59</ns1:Element-5004>
    </ns1:Composite-C516>
    </ns1:Segment-MOA>
    </ns1:Loop-Group_33>
    <ns1:Loop-Group_38>
    <ns1:Loop-Group_43>
    <ns1:Segment-TAX>
    <ns1:Element-5283>7</ns1:Element-5283>
    <ns1:Composite-C243>
    <ns1:Element-5278>6</ns1:Element-5278>
    </ns1:Composite-C243>
    <ns1:Element-5305>S</ns1:Element-5305>
    </ns1:Segment-TAX>
    </ns1:Loop-Group_43>
    </ns1:Loop-Group_38>
    </ns1:Loop-Group_25>
    <ns1:Loop-Group_50>
    <ns1:Segment-MOA>
    <ns1:Composite-C516>
    <ns1:Element-5004/>
    </ns1:Composite-C516>
    </ns1:Segment-MOA>
    </ns1:Loop-Group_50>
    <ns1:Segment-UNT>
    <ns1:Element-0074>#SegmentCount#</ns1:Element-0074>
    <ns1:Element-0062>3210000019</ns1:Element-0062>
    </ns1:Segment-UNT>
    </Transaction-INVOIC>
    </part></Invoke_SendInvoiceToB2b_Enqueue_InputVariable_1>

    Hi Vikky,
    Glad that it worked but I am wondering why alphanumeric will allow only UPPERCASE characters. It works properly for me with lowercase characters as well. If you don't mind, can you please forward your ecs, xsd and the sample payload to my id (in my profile). Just want to check where is the gap.
    Regards,
    Anuj

  • Custom/Complex data types in web services

    Hi,
    I've read in several articles here on otn that JDev 9.0.3 would have better support for
    creating web services with complex datatypes (like java.util.LinkedList), but still (in the 9.0.3 Preview)
    theese methods are greyed out on the web service wizard. Am I missing something?
    Until now I've worked with Custom Serializers, but they are time consuming and hard to work with.
    /Mattias

    Here are the two articles that will help:
    JavaBeans as Web services parameter types:
    http://otn.oracle.com/tech/webservices/htdocs/samples/customtype/content.html
    Registering Web services custom serializers:
    http://otn.oracle.com/tech/webservices/htdocs/samples/serialize/content.html
    The new support in JDev 9.0.3 is that JavaBean parameters are now recognized by the JDev publishing wizards whereas in JDev 9.0.2 there was the workaround pointed to by the first article. In 9.0.2 the publishing support was only for primitive data types.
    The upside of the custom serializers, is you can re-use your existing serializers if they happen to have been written to Apache SOAP.
    Mike.

Maybe you are looking for

  • CS5 crashing every time I open a file or begin a new document

    Hi everyone, I am currently on CS5 and upgraded my Mac to OSX 10.7.4 (Lion) in June. I have been using PS every day with no dramas, but on Wednesday PS stopped working and was crashing every time I opened a jpg file or even started a new document. I

  • Saving as PDF file and emailing not working

    This began today.  I always save my Illustrator CS5 15.0.2 files to PDF's.  I send them to my clients as final proofs for them to approve.  Today I have had 2 recipients say (these are multiple page files) that the are seeing only portions of each pa

  • HT4623 Can the I-Pod 4th generation communicate with TV to be used as a mirror?

    Can the I-Pod 4th generation communicate with TV to be used as a mirror?

  • Spreading Capacity Problem

    Hello All, I am using a Workcenter in an activity. The Work-center has capacity of 8 hrs/per day. I assign 40 hrs of work to this activity and with the 'basic dates' using start date & finish date use 2 weeks ( i.e, 10 working days ) to finish the wo

  • MV45AFZZ confusion

    Hi All, I have been asked to restrict only certain users to be able to specify a pricing date that is in the past for VA21/VA01 or that is less than the one already specified in VA22/VA02. I already have the authorization object set up to check but I