Specifying input/output schemas

In 10g, the input/output schemas could be specified via BPEL Project Creation Wizard in JDev; but I don't see a comparable option in 11g (when I create a new app using the "Composite
from Oracle BPA" template). What am I missing?

What I meant was there is no option to choose the input/output schemas when I create a composite using the "composite from oracle bpa" template.
Unlike the case when I use the "composite with bpel" template as seen here ... where I can click on the "browe schema" option for Input and Output.
(This is 10g, but listed for illustration).
Creating BPEL Process
The first step is to use JDeveloper to create an Asynchronous process initiated by a request message with a payload containing an element of type mailMessage (defined in Mail.xsd installed as part of BPEL PM).
To do this use the BPEL Project Creation wizard to create a BPEL Process in the normal way. After entering the process name and specifying the process template to be asynchronous, select "Next".
This will take you to the next step in the wizard where you specify the Input and Output Schema Elements, click on the flash light for the input schema and select Mail.xsd (located in <SOA_HOME>\bpel\system\xmllib) as shown in the figure 1 below.
Edited by: user756777 on Jul 1, 2009 12:45 PM

Similar Messages

  • Need PAPI WebService WSDL files - INPUT & OUTPUT schema will do

    Dear Friends,
    I need all the wsdl files or atleast input and output schema for all PAPI Web Services. Currently I dont have access to development env but need to put this in a document. The Oracle documents related to PAPI WS does not include this. They just show a few examples and code snippets.
    Thanks,
    Som
    Edited by: user10880245 on Sep 20, 2010 9:44 PM

    Try using SoapUI to view the PAPI-WS... It will list out all the methods that are available, and should allow you get what you need. You can even do this from studio, so a DEV environment isn't needed.
    HTH,
    -Kevin

  • How to Map N number of  columns from input to output schemas at a time?

    Hi,
    I am new to BODI. In my project we are using DAT files, which contains more than 100 columns, as Source. At the Data Flow Level, in Query Transformation we are manually mapping columns from INPUT Schema to OUTPUT Schema one by one.
    Is there any way to MAP all the columns at a time from INPUT schema to OUTPUT schema.
    Hope I am clear with my question.
    Thanks for your support.
    Sudhakar

    Hi,
    Thanks for your answer.It's really helpul.
    But in my case, Source Filed names and Target Field names are different. As we know, OUTPUT column names should be same as Target Field names.
    I am just wondering is there any option to MAP columns between INPUT schema and OUTPUT Schema at a time, like Informatica.
    In Informatica you can MAP all the columns at a time between any 2 Transformation by using their port order, even though the Filed names are different .
    Do we have any option like this in BODI?
    Regards,
    Sudhakar

  • How to change the input and output schema in BPEL process

    hi',
    Please tell me how to change the input and output schema in BPEL process after the process is made.
    thanks
    Yatan

    If your intention is just changing the content you are passing to bpel/returning from bpel
    Here is another way
    just update your default created xsd files with new elements, update wsdl elements in message definition and chnage bpel code to reflect new elements in activities
    Regards,
    Praveen

  • Map input schema with highest id value in the node to output schema

    <job job_reference="4444">
    <jobnotes/>
    <appointments>
      <appointment id="1" slot_id="1" slot_ref="0830-1030" slot_start_time="08:30" slot_end_time="10:30" slot_description="0830-1030" date="19/02/2014" time="" tk_rowid="7367"
    kept="" reason_code="" narrative="" status="DEL" scheme_id="1" day="4" created_by="" creation_date="19/02/2014 11:58:09" amended_by="" amended_date="19/02/2014 11:58:15"
    apb_exported="N" />
      <appointment id="2" slot_id="2" slot_ref="1030-1230" slot_start_time="10:30" slot_end_time="12:30" slot_description="1030-1230" date="19/02/2014" time="" tk_rowid="7368"
    kept="" reason_code="" narrative="" status="ENT" scheme_id="1" day="4" created_by="" creation_date="19/02/2014 11:58:38" amended_by="" amended_date="19/02/2014 11:58:38"
    apb_exported="N" />
    </appointments>
    </job>
    The above is the input schema. I need to map the elements in appointment node with highest ID to the elements in the output schema. Of the two appointment nodes above, I should only pick up one node with highest ID and map the elements of it to
    the output schema.

    My apologies for not giving the input schema right.
    <jobs>
    <job job_reference="4444">
    <jobnotes/>
    <appointments>
      <appointment id="1" slot_id="1" slot_ref="0830-1030" slot_start_time="08:30" slot_end_time="10:30" slot_description="0830-1030" date="19/02/2014" time="" tk_rowid="7367"
    kept="" reason_code="" narrative="" status="DEL" scheme_id="1" day="4" created_by="" creation_date="19/02/2014 11:58:09" amended_by="" amended_date="19/02/2014 11:58:15"
    apb_exported="N" />
      <appointment id="2" slot_id="2" slot_ref="1030-1230" slot_start_time="10:30" slot_end_time="12:30" slot_description="1030-1230" date="19/02/2014" time="" tk_rowid="7368"
    kept="" reason_code="" narrative="" status="ENT" scheme_id="1" day="4" created_by="" creation_date="19/02/2014 11:58:38" amended_by="" amended_date="19/02/2014 11:58:38"
    apb_exported="N" />
    </appointments>
    </job>
    <job>
    <job job_reference="1111">
    <jobnotes/>
    <appointments>
      <appointment id="1" slot_id="1" slot_ref="0830-1030" slot_start_time="08:30" slot_end_time="10:30" slot_description="0830-1030" date="19/02/2014" time="" tk_rowid="7367"
    kept="" reason_code="" narrative="" status="DEL" scheme_id="1" day="4" created_by="" creation_date="19/02/2014 11:58:09" amended_by="" amended_date="19/02/2014 11:58:15"
    apb_exported="N" />
      <appointment id="2" slot_id="2" slot_ref="1030-1230" slot_start_time="10:30" slot_end_time="12:30" slot_description="1030-1230" date="19/02/2014" time="" tk_rowid="7368"
    kept="" reason_code="" narrative="" status="ENT" scheme_id="1" day="4" created_by="" creation_date="19/02/2014 11:58:38" amended_by="" amended_date="19/02/2014 11:58:38"
    apb_exported="N" />
    </appointments></job></jobs>
    I should pick up details of the appointment with Higesht ID for every job. For every job one record should exist as the ouput.
    With the existing mapping, i am getting just one record as output no matter how many input jobs are there.
    Input schema has got multiple jobs and within each job there are many appointments. So in each job I should pick up the one
    with highest ID

  • How to set input/output "use" attribute in the WSDL file of BPEL process?

    Hello,
    I have a BPEL process that I want to deploy it as an RPC web service. I want to access it from a Java module (via an automatic generated Java stub from the WSDL file exposed by the BPEL process).
    I wrote manually the corresponding WSDL file for my BPEL process, where I stipulated for the operations exposed by my process ( in <soap:binding> tag) the value of the attribute "style" to "rpc". Also, for each <input> and <output> of the operations (inside the <operation> tag), I set manually the attributes "use" to the values "encoded". Something like this:
    <operation name="getCustomers">
    <soap:operation style="rpc" soapAction="getCustomers"/>
    <input>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="Trial"/>
    </input>
    <output>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="Trial"/>
    </output>
    </operation>
    The issue is that, when the BPEL process is built and deployed, the WSDL file generated automatically by BPEL (based on the one manually writen) set the values of the "use" attributes to "literal". This is what is generated:
    <operation name="getCustomers">
    <soap:operation style="rpc" soapAction="getCustomers" />
    <input>
    <soap:body use="literal" namespace="http://acm.org/samples" />
    </input>
    <output>
    <soap:body use="literal" namespace="http://acm.org/samples" />
    </output>
    </operation>
    Is there any chance to keep the original values (written by hand) for the "use attributes?
    Many thanks in advance!
    Regards,
    Marinel

    I am not sure I understand your question. If you want all your BPEL service to be rpc still by default, you can change the templates: C:\eclipse\plugins\bpelz_0.9.XXX\templates.
    The BPEL PM engine support both style of invocation.
    I hope this helps. -Edwin

  • Frequency problem in input-output control loop, LabviewRT

    Hello,
    I want to write a cotrol loop in LabView real-time. My target is to acquire a data from 5 channel in frequncy about 100 kHz, integrate the data and send them to the output in frequency about 10 kHz (every 10th sample). I made twou time-loops. One for acquiring and integrating, second for sending them to output. This loops are connected throug the rt fifo. 
    My problem is with a speed of acquisition. When I use "Hardware-timed single point" for acquiring, the result frequency is about 50 kHz. Continous sample and finite samples give me the desired frequency, but the output is not in in the same time as input (output waits until the input collects all data). Is there any problem with communication with the input and output channels in the same time?
    My Hardware: 
    Computer: NI PXIe-8108 in NI PXIe-1062Q
    card: NI PXIe-6358
    My vi is attached
    Attachments:
    rt_headless_v1.2.vi ‏133 KB

    Dear Kocman,
    thanks for including your VI, it is useful to understand better your application.
    However, the detailed requirements are still not entirely clear for me.
    I think, starting with the right architecture and proper timing and synchronization schemes could save you a lot of effort while they ensure proper operation.
    First, it should be defined what kind of timing your application requires. More specifically, if it needs to be hardware or software timed.
    From your description it sounds like you would need hardware timed aquisition synchronized with generation, although your code tries to implement it using timed loops, which are inherently software timed.
    You can find some useful additional information about the two methods and a nice white paper about synchronization techniques here:
    http://zone.ni.com/reference/en-XX/help/370466V-01/TOC11.htm
    http://www.ni.com/white-paper/4322/en
    Probably it helps to review them or even try to test some of the methods to get a better feeling about it.
    I hope this helps you to get to the proper solution.
    Best Regards,
    Adam Cseh
    Applications/Systems Engineer
    National Instruments

  • Input output parameters

    Hi, I don't know if this message should be posted in the Test Stand or LabView forum.
    I
    need to call a LabView VI from within TestStand which will update a
    station global upon exitting. How do I specify input parameters into my
    VI and return parameters out?
    I'm sure there must be documentaion somewhwre on how to do this and it must be fairly straight forward but I can't seem to be able to find it or figure it out.
    Solved!
    Go to Solution.

    Dennis Knutson wrote:
    There is documentation on this. Included with TestStand is the manual 'Using LabVIEW with TestStand'. It's even a printed manual though an electronic copy is also included. Try using Help>Guide to Documentation.
    When you add a LabVIEW step, In the step settings window, you will see something like the image below once you have picked the VI. To assign TestStand variables to the VI's inputs or outputs, click on the 'f(x) button and browse to your TestStand variable. For inputs, make sure you unselect the 'Default' box.
    Hi Dennis, thanks for your response. I do have quite a bit of Test
    Stand experience so calling a VI isn't an issue for me. However, I have
    very limited experience with LabView and am not sure how to specify
    input and return parameters to and from a VI i built. I've attached a
    screen shot of my current VI. I would like to pass in a refernece to an
    error container and return the platform selected from the combobox.
    Attachments:
    get_platform.PNG ‏52 KB

  • Could not read boot block (input/output errror) powerbook g4

    Hello
    My friend gave me a powerbook g4 and a copy of osx lion, I would like to install it but the internal hardive is not available within the "select Destination" area of the  installation process. I tried to repair the disk which is labelled Disk0s1, but shortly after it is underway i recieve this message.
    **/dev/disk0s1 could not read boot block (input/output error) Error: The underlying task reported failure on exit. 1 non HFS volume checked, 1 volume could not be repaired because of an error.
    Within disk utilities the Disk01s is grey, I can try to repair it but the above error occurs. Do you know what the problem is and how I can fix it?

    Since you are going to install system fresh, it sounds like, you should erase the drive.  Boot from the installer disc, then select the language but do not start the installer.  From the menu bar, you should have either an Applications or an Installer menu. From one of the menus, you can then start Disk Utility.
    From the drives and volumes pane, select the internal drive hardware listing. 
    This will now allow you to partition or erase the disc.  Now click the Erase tab and select Mac OS Extended (Journaled) as the format and then click the "Erase" button.  You can name the volume that will actually be created, like for instance "MacintoshHD" or whatever you want.)
    Once the erase has completed, you need to check the information for the hard drive at the bottom of the window.  Be sure that the partition scheme is Apple Partition Map.  If for some reason it is something else, like GUID, you won't be able to install MacOS on it.  You will need to click the Partition tab, click the "Options..." button and select Apple Partition Map, then click the "Partition" button.
    Once this is done, then you can quit Disk Utility and you should be able to install Tiger on that HD.

  • How to automatically retrieve a task Input/Output structure in SAPUI5?

    Hi guys,
    I am trying to figure out a way to automatically retrieve the complex type specified as a task input/output without hard coding the name of the complex type. So far I have a process with two reporting activities and a task, built as a custom technologies with specified Input and Output from the process context. Then I built a UI where I created an OData model, whose properties I bound to properties of the model, but this happened by exactly specifying the name of the complex type in the controller:
    // bind customer data (i.e. the task input data) to the panel
      customerDataPanel.bindElement("/InputData('" + taskId + "')", {expand : "Customer"});
    and the exact attribute names in the view:
      oMatrix.createRow(
       new sap.ui.commons.Label({text : "First Name", design : sap.ui.commons.LabelDesign.Bold }),
       // property binding of a text field to the attribute in Customer object
       new sap.ui.commons.TextField({value : "{Customer/firstName}"})//property binding
       oMatrix.createRow(
       new sap.ui.commons.Label({text : "Last Name", design : sap.ui.commons.LabelDesign.Bold }),
       new sap.ui.commons.TextField({value : "{Customer/lastName}"})//property binding
       oMatrix.createRow(
       new sap.ui.commons.Label({text : "Street", design : sap.ui.commons.LabelDesign.Bold }),
       new sap.ui.commons.TextField({value : "{Customer/address-street}"})//property binding
       oMatrix.createRow(
      new sap.ui.commons.Label({text : "City", design : sap.ui.commons.LabelDesign.Bold }),
      new sap.ui.commons.TextField({value : "{Customer/address-city}"})//property binding
       oMatrix.createRow(
      new sap.ui.commons.Label({text : "Zip", design : sap.ui.commons.LabelDesign.Bold }),
      new sap.ui.commons.TextField({value : "{Customer/address-zip}"})//property binding
       oMatrix.createRow(
      new sap.ui.commons.Label({text : "Country", design : sap.ui.commons.LabelDesign.Bold }),
      new sap.ui.commons.TextField({value : "{Customer/address-country}"})//property binding
       oMatrix.createRow(
      new sap.ui.commons.Label({text : "Currency", design : sap.ui.commons.LabelDesign.Bold }),
      new sap.ui.commons.TextField({value : "{Customer/currency}"})   //property binding
      oMatrix.createRow(
        new sap.ui.commons.Label({text : "RequestNr", design : sap.ui.commons.LabelDesign.Bold }),
        new sap.ui.commons.TextField({value : "{Customer/requestNr}"})   //property binding
    Is it possible for this binding to happen automatically in some kind of way without me specifying every single attribute name? As you can imagine in a real project, there will be even more complex types used in the UI and it is not feasible at all to have to specify each and every single attribute's name.
    Any suggestions will be much appreciated.

    Hi Deepa,
    How about adding another action to the "Add Company" Button which will also trigger the search?
    See:
    http://help.sap.com/saphelp_nwce711/helpdata/en/48/17fbc3a3050be8e10000000a42189d/frameset.htm
    And:
    http://help.sap.com/saphelp_nwce711/helpdata/en/ae/facedea03743f18aaf2edf12465fd8/frameset.htm
    For more details.
    Hope this helps.
    Regards.
    Omer.

  • Input / Output error for new HDD on MacBook Pro 5.5

    Hi there,
    New to Apple Support Communities
    I have a problem with a MacBook Pro 5.5 Intel Core 2 Duo
    Original Fujitsu 160GB HDD crashed and I replaced it with a Hitachi 250GB HDD.
    Hitachi 250GB drive is partitioned to GUID Partition Scheme but when I try to format the drive in Disk Utility to Mac OS X Extended Journaled, I keep receiving an Input / Output error. I tried even erasing the drive and I get the same error.
    I also tried using Diskutil in terminal window and I get Input / Output error.
    I talked with a guy in work who knows about the Mac and he said the drive could be locked in which the Mac can't unlock to format the drive.
    There is nothing wrong with the drive at all. It works perfect. I'm at a loss as to why the Mac won't install the OS X 10.5.7
    I've looked at many Mac support sites for problems / solution but no solution
    Could someone who has experienced this before please help to resolve my problem.
    Regards,
    DTreacy

    Hi there,
    An update on the MacBook Pro 5.5 problem.
    Mac OS X seems to only install when the HDD is connected to the laptop as a USB drive.
    When I put the drive back into the laptop, it won't boot to the OS.
    The mount is /volume/Macintosh_HD.
    I even tried reformatting the drive but got an error that it could not unmount the drive. I tried a force unmount which worked but the drive disappeared from the disk utility.
    My only way to get the drive back was to connect it again as a USB drive and again I was able to install the OS again.
    Can some help to resolve the problem. How can I make the drive boot to the OS when it is connected as an internal drive
    Regards,
    Dtreacy

  • Input / Output Error when creating GUID Partition on External Drives

    I've been trying to setup an install of OS X on an external device and therefore need to partition them to the GUID Partition Scheme.
    I've tried it with my iPod and an External Hard Disk Drive and no matter what I do, I get the error:
    Exited with Error: Input / Output Error
    Thats all I get. I can partition them with either of the other two choices, but of course those wont let me boot an Intel Based Mac.
    The External HDD is USB 2.0, the iPod I've tried both USB and Firewire, and have not had any luck. I know it can be done, but am not sure why I'm having this problem.
    Any suggestions?

    I'm having the same problem. Trying to format an external drive with the GUID scheme fails.
    # diskutil eraseDisk HFS+ Test GPTFormat /dev/disk1
    Started erase on disk disk1
    Creating Partition Map
    error writing partition map: Invalid argument (22)
    Partitioning encountered error Invalid argument (22) on disk disk1
    I've tried this on my Intel MacBook and on my PPC Mac Mini. Tried using a generic USB2 flash disk and also an iPod shuffle. Always the same error.
    Is GUID broken on external drives?

  • Partition failed with error input output

    Hi All,
    I installed a new hard drive (WD 500G) into my 2006 Macbook, Mac OS X 10.4.10.  I also increased the RAM to 2G.  My Macbook reconized the hard drive. However, I followed the steps below to format the HD, but got the partition failed with error input output msg.
    1. Went to  Disk Utility, selected the name of new hard drive in the sidebar.
    2. Select the Partition tab, and selected 1 partition from the drop down menu.
    3. Click Options, then choose GUID .
    4. Select Partition
    In previous posts someone suggested updating the softward to 10.4.11 or the erasing the HD, but erasing the hard drive would take 13 hours according to my Macbook.  Any suggestions?  Please Help!

    The error usually means the drive is bad. But you can try this:
    Erase and Install OS X
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    7. After formatting has finished quit DU and return to the installer. Install OS X.

  • Audio Input Output on MacBook Pro 13 inch

    I want to buy a MacBook Pro 13 inch but the problem is the audio input output port.
    I usually need to use both jacks because in one I record my guitar and in the other I use my headphones.
    Is it possible to get a splitter and to make from one jack, two, input and output or do I need to buy USB headphones?
    A splitter would be the best solution

    From the manual:
    +"*Audio out port.* Connect external speakers, headphones (including iPhone), or digital audio equipment. You can specify audio analog line in functionality, to support line-level microphones and audio equipment, by selecting Audio In in the Sound pane of System Preferences."+
    +"Choose Apple () > System Preferences, and open Sound preferences. Specify whether you want the port to be used for audio input or audio output."+
    This means you must choose whether you want the single audio port on the 13" MBP to be input or output. It mentions iPhone headphones, but those will work only as headphones, not as a combined mic/headset when connected to the MBP.
    (As in, "Oh, now I get it!")
    Thinking on your comment, I see what you mean by 'an extra port' - the iMic has both in and out, meaning you'd actually have three counting the internal port on the MBP.
    Looking back at your first post, you mention USB headphones. That would be fine as well - set the MBP's audio port to be used for input, and connect the USB headphones and use those for output. No 'extra' port that way, and USB headphones are cheaper than an iMic.
    EDIT: The caveat there is that the audio in on the MBP (true for all MBPs, not just the 13") is a line-level input, not a microphone input. So, the MBP is expecting a line-level signal, meaning preamplified audio. If your guitar puts out a line-level signal or you're using a powered mic, fine. Else, you may need the iMic, which can take either line-level or microphone (non-preamplified) input.

  • Empty Business Rule Facts while assigning input/output facts

    jdev version - 11.1.1.2
    I am trying to call business rules from a BPEL. But when I try to assign input/output facts, business rule facts portion is shown empty.
    Please note that I have defined input and output facts while defining the business rule component. The input/output facts are based on following xsd:
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.globalcompany.com/ns/CaseStudy/rules"
    targetNamespace="http://www.globalcompany.com/ns/CaseStudy/rules" elementFormDefault="qualified">
    <xsd:element name="approveInput">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="amount" type="xsd:double"/>
    <xsd:element name="approvalRequired" type="xsd:boolean"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="approveOutput">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="status" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    Input fact is of type "approveInput" while output fact is of type "approveOutput".
    I can share my project/application if required.
    Please let me know if something is incorrect/missing here.
    Thanks in advance

    HI,
    Do you have any question? The forum is for questions and discussions,
    if you want to share your Biztalk blogs, it's recommended to post it to TechNet Wiki, and you could follow the article below to join TechNet Wiki,
    Join TechNet Wiki: http://social.technet.microsoft.com/wiki/contents/articles/129.technet-wiki-how-to-join.aspx 
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

Maybe you are looking for

  • How do I get my Macbook Pro to stream?  It is about 1 year too old.

    How do I get my Macbook Pro to stream?  It is about 1 year too old.

  • Noob needs help...bet​ter way to calculate values than exporting to excel?

    Hi. Using Labview version 8.2. I have 4 stripcharts outputting data to an excel spreadsheet (time and voltage), another excel spreadsheet importing those values and running some calculations on the numbers, and a word document (that must be used for

  • Modes in ALV

    Hi Experts, I got the requirement of Creating a New column next to G/L account number as G/L account Description . I created it with the logic of CLASS LCL_EVENT_RECEIVER1 DEFINITION.   PUBLIC SECTION.     METHODS:     HANDLE_DATA_CHANGED     FOR EVE

  • Call Bean from normal java class

    Dear Friends, Is it ok to call an entity bean or session bean frm normal Java class. (Java class is in the same application as the beans). Is there a special way to lookup the beans from normal java classes. Thanking You, Chamal.

  • Creating UWL tasks in 2004 Portal

    Hi all, we have a 2004 SP 19 Portal and would like to build a scenario in UWL. Because of this i need a programming way for creating an UWL Task. Is this possible for a 2004 Portal. I only raed that an UWL API ist only available for 2004s. Thanks a l