Basic i/o and pass parameters

I'm trying to work with shell scripts and set of stored procedures and I have a few problems with the basics, the manual is simply not seeming to give me the answers to.
I think I can go a long way, I can tell how to proceed:

Create a procedure very very simple that takes one argument (a name of table for example), attributes this arg in a variable, this variable is used in a sql and also uses it to an output file and then returns the results to the file.

Something like this:
Pseudocode

Create procedure testproc (tabname (varchar (200)) AS)
tabowner varchar (200);
BEGIN
coil tabname.out
Select the owner from user_objects where object_name = tabname in tabowner;
"dbms_output.put_line (' the owner of ' | 'is' tabname | tabowner)"
END;
/


Thank you!
Floyd

Hello

You cannot call SQL * Plus commands in PL/SQL, as you try here (although it is possible to use the PL/SQL in SQL * more). If you want to write to a file in PL/SQL, you can use an integrated as UTL_FILE package.

It is quite possible, however, to achieve what you want through SQL * Plus, something like:

#!/bin/ksh

export TABLE_NAME=$1 # table passed in to script

sqlplus username/password << EOF
set pagesize 1000
spool tabname.out
BEGIN
FOR cur_rec IN (SELECT owner FROM ALL_TABLES WHERE table_name = '${TABLE_NAME}')
  LOOP
  dbms_output.put_line('the owner of ' || ${TABLE_NAME} || ' is ' || cur_rec.owner);
  END LOOP;
END;
/
spool off
quit
EOF

exit $?

Tags: Database

Similar Questions

  • How to run and pass parameters to the exe file in the txt file.

    Hello

    I am facing problem with passing parameters in the .exe file, which is run by labview.firstly that I have script .txt with the settings that I have to go to the .exe file. This .exe file is also a software, and this script is written for her. And now I have to create program in labview which should satisfy the following points.

    1. I have to use a button named "Run script". If I pressed the button, it should open the browser where I can choose the script .txt file.

    2 .exe application is expected open(Path already chossen).

    3. After passing the .exe application settings should be closed.

    4 and labview should now update its parameter

    I just open using Exce.vi .exe file, but I didn't get any idea to do more than this.can someone please help me?

    Thanks norbert. CAN I love it? What should I change now? VI attached below...

  • Calling shell script program SQL and passing parameters

    Hi guys,.
    Greetings from Toronto. Is it possible to move one or more strings as parameters to a sql from shell script program?

    Shell script
    # Accept system input parameters
    p_user_id=$1
    p_job_id=$2
     
    sqlplus.exe -s $p_user_id @$RD_PATH/rd_test.sql $p_user_id $p_job_id
    SQL program (rd_test.sql)
    -- Accept system input parameters
    define p_user_id = &1
    define p_job_id = &2
    
    -- Wondering if its possible to pass these 3 parameters from a shell script program.
    -- (1) rd_test-$p_job_id-3-1.lis
    -- (2) RD_PRINTER(rd_test,3)
    -- (3) t_data
    
    select
    t_data=''rd_test-'||'''$p_job_id'''||'-1-1.txt''
    t_data_dir=''.''
    ksh $RD_PATH/another_shell_prog.sh $p_user_id $p_job_id '||a.rd_value||' '
    ||b.rd_value||' rd_test-$p_job_id-3-1.lis $RD_PRINTER(rd_test,3) '||
    '$t_data $t_data_dir'||'
    exit_status=$?
    check_command'
    from rd_job_parameter b, rd_job_parameter a
    where a.job_id = &2
    and a.jp_module_id = 'RDTEST'
    and b.job_id = a.job_id
    and b.module_id = a.module_id
    /
    As always, this is not something I have to solve that minute. Any help would be appreciated
    and I will think of the problem.

    Thank you
    REDA

    Published by: Raj404261 on June 25, 2009 11:40

    Published by: Raj404261 on June 25, 2009 17:29

    OK, just a few pointers possible if you need to go the way of shell script.

    I suggest that you have a separate SQL script for each of your options, which retains the fairly well-defined lines and keeps the maintenance as simple as possible. Therefore, in your shell script, you can have something like:

    #!/bin/ksh
    # Accept system input parameters
    p_user_id=$1
    p_job_id=$2
    
    # Deduce which script you'll call here
    # using if statements, or even a case:
    
    if [[ p_job_id -eq 1 ]]
    then
      SQL_SCRIPT=sql_script1.sql
    else
      SQL_SCRIPT=sql_script2.sql
    fi
    
    # Or using case
    
    case $2
      in
        1)     SQL_SCRIPT=sql_script1.sql;
    
        2)     SQL_SCRIPT=sql_script2.sql;
    
        3)     SQL_SCRIPT=sql_script3.sql;
    
        *)     SQL_SCRIPT=sql_script4.sql;
    esac
    
    export ${SQL_SCRIPT}
    
    #If you need to query the database at all to deduce which script to cal
    #Then something like this:
    
    SCRIPT_VAR=`sqlplus -s username/password << EOF
    set heading off
    set feedback off
    set verify off
    SELECT * FROM DUAL;
    EOF`
    
    export {SCRIPT_VAR}
    
    SQL_SCRIPT=sql_script${SCRIPT_VAR}.sql
    
    # Then just call your script:
    sqlplus. -s $p_user_id/password @${SQL_SCRIPT}
    
  • Threads and passing parameters to it

    Hello everyone,

    now I play with sons and I am wondering how to change the setting to the thread function.

    I created a thread function is

    void CVICALLBACK (char id [], char value []) doThread

    {

    do something

    }

    and I want to call the thread like this

    CmtScheduleThreadPoolFunction (DEFAULT_THREAD_HANDLE, doThread(FIX_ARG1,FIX_ARG2), NULL, & threadID);

    But somehow, it does not work. How can I pass strings to the thread function?

    Thank you all...

    Common to pass data to a thread is to pick everything up in a structure, and then past the address of this structure to the function that installs the thread. Then tapped him, cast the parameter passed to a pointer of type structure, and you can then reference the data. As:

    typedef struct {}

    int executed;

    Short flag;

    char string [32];

    } structThread, * pstructThread;

    ...

    structThread tData;

    ...

    tData.run = 1;

    CmtScheduleThreadPoolFunction (..., & tData,...)

    ...

    int MyThread (void * param) {}

    pstructThread td = param (pstructThread);

    so that {(td-> run)

    ...

    }

    return 0;

    }

    JR

  • CFLock and passing parameters

    Hello, I have two questions...

    Many examples of security of the site, I noticed the use CFlock tag. Hwoever, when you look at the documentation of CF9, in a specific example of the security of the site that includes user roles (using an application.cfc file) there is no mention of the herds. They are required to authenticate users or not? I don't see why they would. The variable being edited is the status of users (authenticated or not), and since it is in the session scope, it is already unique, no? So why bother with CFLock?

    Secondly, how can I redirect a person to the same page that they where after having submitted a form? I have a form letter of new present on all pages of the Web site, and I would like to than the person to return to the same page they where, the when they presented the form.

    In pre - mx days, i.e. ColdFusion 4.5, ColdFusion was leaking bad memory with the memory shared as session variables.  Popular workarounds should all reads and writes these variables.  That has long been useless, but there are always tons of old code examples and senior developers who continue to utilze this work around.

    The action of a form page is defined in the

    parameter.  If you name the form page itself as the action of the user page will remain on the same page.

    You can also name another page of the action, and then at the end of the processing of the page use a tag to redirect the user to the desired page.

  • Switches and uses parameters in the fragments of the page

    I spent the weekend trying to get information on the use and passing parameters into areas (page fragments) with little success.
    I use JDev 11.1.1.3. with the merger of ADF for the project.

    I got a train set that uses a jspx and is long of 5 elements (all fragments of the page).
    I have a page of research as an entry point (page fragment). This contains the main table, the remaining elements (page fragments) in the train are children to the master.

    I need to pass the primary key of the mastery of all the fragments and you also have to set the field in the table when records are inserted (it is a data control).

    I found no examples - and the tutorial uses no - one Bean support for fragments or primary jspx who maintains the region.
    Ideally, the bean of support would be in the jspx that contains the box (as would be, and the fragments are changed).

    Also, as the primary key (foreign key in fragments) is never displayed - I'll have to update these keys the records are inserted (some are tables and forms).
    I read on the triggers of context - and think that they could be used (inform the parent of selection and insert actions) and the parent may be able to capture and define these values.

    I would have thought the DC would have been smart enough to understand the relationship - but alas - I get the error message saying that the foreign key is missing.
    I suspect that the domain controller can be unique to each fragment (I updated the scope of Commons - but not sure that this will help).

    Can someone give me a hand (I'm sure this has been done before) or point me to an example (tutorial), who can give me information.

    Also, is there a way to put an exit point on the train (e.g. as terminus) If users can leave at any time (it is a train not sequential).

    Page of the fragments in train stations that contain the details of the main line, that you select on the first page, wouldn't have new lines created on these fragments of page automatically linked to your selected master? Therefore no primary key would not even should be passed to fragments of the page because framework would make the link master / detail appropriate for you.
    If this is not the case, have you tried using pageFlowScope variable to hold the values through fragments of page? If everything is in the same taskflow, then pageFlowScope variable would be ideal for this. Even if you agree on each train stop, values would be always kept there so you can use them again and again until the workflow ends.
    Also, have you taken into account the built in 'CreateWithParameters' operation to set default values during the creation of new lines on the detail of the fragments of page? In this way, you could use passed parameters and set the values of your attributes without writing a single line of backup code bean :)

    I hope this helps!

    Kristjan

  • Pop-up - passing parameters

    I need some help w / pop-up windows and pass parameters in both directions.

    Page 7 (reports page), I have:
    -TXT_P7_SALESREP displays the name of the sales reps selected, by default, all the
    -CMD_P7_PICKSALESREP opens the popup window when you click
    -H_P7_SALESREPIDLIST stores the list of IDS (used to generate the report) currently selected sales rep

    Page 10 (page popup), I have:
    -CBL_P10_SALESREP a list check box, all of the VRP (by name)
    -H_P10_SALESREPIDLIST stores a list of the IDS of representative sales currently selected
    -CMD_P10_OK to submit the changes and close the page
    -CMD_P10_CANCEL to close the window without saving changes (I got this work already through the process of close popup window)

    The process should be something like:
    1) User opens report page, 'All' is displayed in the text box, and H_P7_SALESREPIDLIST contains all the sales rep ids 
    2) User clicks CMD_P7_PICKSALESREP to change list of sales reps 
          2a) Popup window opens & the value of H_P10_SALESREPIDLIST is set to the value of H_P7_SALESREPIDLIST
          2b) CBL_P10_SALESREP has values checked based on the value of H_P10_SALESREPIDLIST (all by default, but a user could change sales reps multiple times)
    3) User makes their changes and hits OK
          3a) Value of H_P10_SALESREPIDLIST is updated w/ list of currently selected sales reps
          3b) Value of H_P7_SALESREPIDLIST is updated w/ the value of H_P10_SALESREPIDLIST
          3c) Popup window is closed, returning the user to the report page
          3d) TXT_P7_SALESREP is updated via the contents of H_P7_SALESREPIDLIST
    4) User runs the report which is processed/displayed based on the values of H_P7_SALESREPIDLIST
    I tried to put some javascript:popupURL('f?p=&APP_ID.:10:&SESSION.::NO::H_P10_SALESREPIDLIST:&H_P7_SALESREPIDLIST'); in the target URL for CMD_P7_PICKSALESREP, but it did not work. I don't know enough about the passage of parameters and APEX-details to implement myself. Any help would be appreciated.

    I prefer this w / do as little javascript as possible coding, but I understand that it may be necessary.

    Hmmmm, this is weird @ no alerts

    Probably a syntax error in the JS (missing order, quote, brackets etc.)?

    CITY

  • Pass parameters using SFWLoader

    I need to load a SWF (AS2/AS3) go in an AS3 SWF and pass parameters to the child. It works fine using FlashVars when loading a SWF from JavaScript. Now, I need to do the same thing with a Flex2 SWF file.

    I read several posts where people succeed in passing a flex application settings 2 to the SWF, using SWFLoader. I spend a day trying to get this to work but not luck. Read a lot of forum posts and some people claim that it works for them.

    The following code is an example. A swf file that loads again all showing the parameters in a label. If you run this in a browser with "test.swf? var1 = hello-world"then it shows well-Hello everyone in the label. Click the load button and it is supposed to load the same swf with another parameter var1. The SWF file loads well but CCET times that the label is empty. The query part of the URL that contains the settings seems to be ignored. What I'm doing wrong here?

    Quote:

    <? XML version = "1.0" encoding = "utf-8"? >
    < mx:Application
    xmlns:MX =' http://www.adobe.com/2006/mxml'
    verticalAlign = "top".
    Width = '100% '.
    Height = "100%".
    creationComplete = "init ()" "
    >
    < mx:Label id = "appParmsLabel" text = "parameters of the URI:" / >
    < mx:Button label = "Load test.swf? var1 = 123" click = "load1 (); "/ >

    < mx:Script > <! [CDATA]
    public var SWFURL:String = ' test.swf? var1 = 123;
    private function init (): void {}
    application.appParmsLabel.text += getAppParms();
    }
    Get the settings of the application
    private function getAppParms (): String {}
    var result: String = "";
    for (var name: String in application.parameters)
    {
    name of result += + ': ' + application.parameters [name] + ",";
    }
    return the result;
    }

    load swf flash
    private void hearings1 (): void {}
    Child.source = SWFURL;
    }
    []] > < / mx:Script >

    < mx:SWFLoader id = "child" / >
    < / mx:Application >
  • apex_web_service.make_rest_request: passing parameters and the type of content

    Don't know if I'm missing something, but should this API show the content type (application/x-www-url-formencoded) when there are values for the p_parm_name and p_parm_value parameters.

    The example in the docs is a Yahoo API. I'm not sure that an individual (see: http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_web_service.htm#BABEDJHJ), and I think that it requires an appid (yahoo account), so I went with the example here:

    http://developer.Yahoo.com/YQL/guide/YQL-code-examples.html#yql_php

    If I run the following from a file html on my desktop, it works:
    <form method="POST" action="http://query.yahooapis.com/v1/public/yql">
    
    <input type="hidden" name="q" value="select * from upcoming.events where location='San Francisco' and search_text='dance'"></input>
    <input type="hidden" name="format" value="json"></input>
    <input type="submit"></input>
    
    </form>
    In other words, it returns a JSON result.

    The raw data of HTTP are as follows:
    POST http://query.yahooapis.com/v1/public/yql HTTP/1.1
    Host: query.yahooapis.com
    Connection: keep-alive
    Content-Length: 110
    Cache-Control: max - age = 0
    Origin: null
    User-Agent: Mozilla/5.0 (X 11; Linux x86_64) AppleWebKit/536.11 (KHTML, like Gecko) Ubuntu/12.04 Chromium/20.0.1132.47 Chrome/20.0.1132.47 Safari/536.11
    Content-Type: application/x-www-formulaires-urlencoded
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Encoding: gzip, deflate, sdch
    Accept-Language: en-, FR; q = 0.8, fr; q = 0.6
    Accept-Charset: ISO-8859-1, utf-8; q = 0.7, *; q = 0.3

    q = select +upcoming.events+where+location%3D%27San+Francisco%27+and+search_text%3D%27dance%27 & format = json >

    However, running the following returns nothing: (nothing, nothing of which depends on the parameters passed in)
    set serveroutput on
    
    declare
    
    l_c CLOB;
    
    begin
    
    
      l_c := apex_web_service.make_rest_request(
        p_url => 'http://query.yahooapis.com/v1/public/yql',
        p_http_method => 'POST',
        p_parm_name => apex_util.string_to_table('q:format'),
        p_parm_value => apex_util.string_to_table('select * from upcoming.events where location=''San Francisco'' and search_text=''dance'':json'),
        p_proxy_override => 'http://192.168.1.3:8888');
    
      dbms_output.put_line(substr(l_c, 1, 4000));
    
    end;
    Raw data from HTTP:
    POST http://query.yahooapis.com/v1/public/yql HTTP/1.1
    Host: query.yahooapis.com
    Connection: Keep-Alive
    Content-Length: 106
    Connection: close

    q = 2 Select + % + of + coming % 2Eevents + where + % 3D 'San + Francisco' + and + % 3D search_text 'dance' & format = json >

    I note that one key difference is that content type is not defined in the web service API.

    It was just to test a public service. I note that the foregoing has slighty different encoding request (percentage of tanks). However, I experienced the same behavior on a procedure that I wrote (I can also give this example of test cases if you wish), which is where I first noticed the issue.

    Using utl_http and affecting the type of application/x-www-url-formencoded content, does not solve the problem. However, just thought I'd see the possibility of using the service API Web that is made available.

    The example is in the valid docs, or am I missing something obvious?

    It's Dev days on ApEx 4.1 on the virtual machine in the RTO.

    Thoughts?

    I had a similar problem:
    apex_web_service.make_rest_request packaging missing header parms

    I endedup an SR for Oracle to open. I discovered that the headers (content-type) are defined in global variables before calling apex_web_service.make_rest_request.

    See http://docs.oracle.com/cd/E17556_01/doc/apirefs.40/e15519/apex_web_service.htm#autoId4 for a description of headers and cookies.

    I endedup have to add the following to my code before apex_web_service.make_rest_request:

    apex_web_service.g_request_headers (1) .name: = "Content-Type";
    apex_web_service.g_request_headers (1) .value: = ' application/xml ';

    Once I did, my service works. Odd. Not sure why they did it this way because their internal packages use parameters of the header, but the wrappers do this way, I guess.

    I hope this works for you!

    Jennifer

  • Faced with HTML5 - only may not even pass parameters to the script .jsx

    I am really struggling to get acquainted with HTML5 and the conversion of my existing extension.  A general request first - what are the best resources to help a general grounding in HTML5?

    Now a specific question.  In the default example functions in the .jsx are all processed in $._ext_.  What is the purpose of this?  How do you pass a parameter in a function that is defined like this.  Now, I'm trying just to pop up an alert with a parameter passed.  I tried many things, but here I am:

    In my index.html file, I have a button:

    < li > < button class = "default" id = "btn_LoadPresets3" onClick = "wizClickButton('10')" > myFunction < / button > < /li >

    In the ext.js script, I have a function which gets this:

    function wizClickButton (inParam) {}

    Alert ("press me" + inParam);

    var csInterface = new CSInterface();

    csInterface.evalScript ('myFunction2()');

    }

    In my script .jsx, I have the following function:

    function myFunction2()

    {

    Alert ("Yo");

    };

    Now - when I run this and press the button, the first alert box shows and shows me my parameter ("press me 10" in this case).  But that's all - so the function in my script .jsx never gets called.  I don't know why.  So - I look at the example functions and they are all preceded with the $._ext - I change the function in my script .jsx for:

    $._ext_myFunction2 =

    {run: function() {}}

    Alert ("Yo");

    }

    };

    and modify the ext.js call to call the same

    function wizClickButton (inParam) {}

    Alert ("press me" + inParam);

    var csInterface = new CSInterface();

    csInterface.evalScript (' $. _ext_myFunction2.run () ');

    }

    So now, when I run it I get the second alert box.  Everything is good.  Only how I pass my parameter down in the script .jsx?  Where the parameter is both the definition of the function and the call to the function?  That brings the ._ext_ $ to the party?  Why not my definition of the standard function without the ._ext_ $?

    Many thanks in advance,

    Richard

    Hi Richard,

    I first suggest you use reusable code David Deraedt (and not Extension Builder, which treats the $. useless _ tips): davidderaedt/CC-EXT-SDK · GitHub. I don't know why you get the error: I don't use $._ext_ me so it shouldn't be a requirement.

    You can find a few first aid signs in my HTML signs quick tips. You will also find the way to pass parameters of JS-> JSX (as simple or complex objects parameters) and vice versa, JSX-> JS

    HTML: personally I found useful tutorials on www.tutsplus.com (HTML, JS, etc) but I guess there are a lot of free resources out there (the one that comes to mind is a A Practical Guide to HTML & CSS - learn how to build Web sites, Apple made one too Safari Web content Guide: HTML Basics).

    Concerning

    Davide Barranca

    ---

    www.davidebarranca.com

    www.cs-extensions.com

  • How to pass parameters in local html files using InDesign?

    How to pass parameters in local html files using InDesign, or how to pass info environment, such as the image, the html code is sitting on top in local html files in InDesign?  I try to use the code html-javascript, then simply pass parms to behave differently depending on where the code is placed in the folios of InDesign.  I don't know how to do it.  If I could read in some environment of the folio InDesign info by using html or javascript, which might work as well.  Please advise, thank you!

    In indesign, you can draw a box and connect the html code to display in this box, if you do it this way you don't let the application in browser.  In the control panel overlays folio, its web called overlays.

    I suggest you download Bringhursts ipad Bob application called DPS tips, it will give you a quick overview of all different overlays and basic opportunities.

    https://iTunes.Apple.com/us/app/Digital-Publishing-Suite-tips/id436199090?Mt=8

    Joe

  • Passing parameters to dynamically loaded screws

    Hello

    I have a data acquisition application that uses an analog input, PCI-Hardware.
    With this material I enjoy different channels and display them in audio
    In operation 'Preview' I enjoy 4 channels and display them in 4 audios.
    I have therefore a quarter of the maximum sampling for each channel.
    Operation 'zoom' I only enjoy a channel (at the material max sampling rate)
    and display the data in the selected channel (the other channels are igored in zoom mode)

    My idea is to launch the different screws according to the mode (overview, zooom).
    I could imagine, that a good approach to perfom this task calls different screws
    of the main program.

    Unfortunately, I do not understand how to pass parameters to the VI if I call them
    using knots "reference open VI", "call for reference" and "close reference VI.
    I tried to understand the Labview "Example of dynamic load", but it's too complicated for me.
    Can someone give me a simple example to dynamically load the screws or y at - it white papers
    or nugets on this topic?


  • Impossible to run old Basic programs TurboBasic and GWBasic

    I old Basic, GWBasic programs and TurboBasic I need to run, but they doesn't mode full screen.  I get the following notice "this system does not support the mode full screen."  Choose 'close' to terminate the application"...  They used to run Windows XP SP 3.  I tried all the combinations in the compatibility of the pop-up tab properties, including all the previous windows from 95 to Vista SP 2, as none (uncheck).  I chose all combinations of the parameters one choice at a time and in combinations, including all the choices of disable, as none (all unchecked).  Programs are going back to the old line 25, 80 window column, but I need the mode "full screen" graphics to 640 x 480, but this choice does not work too.

    In a reply in the forum there are comments on the deactivation of its 'characteristics of the infrastructure"in the"Tools"menu, but I can't find this specific choice in one of my research and testing.

    Any help would be greatly appreciated, as I look forward to recode all.

    They will run under DosBox, but they run more slowly you might like.
     
    I have about 30 programs in-depth that I wrote and compiled under QuickBasic MS years ago and their autonomous update under the name of .exe files. Unfortunately Microsoft support more base fast and the programs will not work with Vista or 7. They will run under the BACK window, but they run too slowly it. My programs are very complex. In fact, they treat each pixel on the screen.
    I would like to convert it into another language, or even rewrite it, but Microsoft argues that they do not have a program to support. They said maybe I could do this in Visual Studio Professional, but they want about $700 for this software.
    Do you have any suggestions?
    Thank you
  • Passing parameters using ADR - 404 error

    Hi all

    I'm all new development APEX. We use the DEPT tables in the sample application oracle provided for practice.

    We currently use ADR to pass parameters, but it does not work as expected, or at all. We receive a 404 when you try to run the page.

    Objective: User enters number of Department for an article and a 'Change' event (or "lose focus", we have not yet decided) on a dynamic action fills the name field with the name of the service dept.

    Has anyone else got this error?

    If there is another method recommended, please let me know.

    Thanks for your time.

    Thanks for the answers, but we have understood the question.

    We have changed the JavaScript code as follows:

    $.getJSON ("https://apex.oracle.com/pls/apex/mfajertest1/department/"+ $x value ('P2_DEPT_NO'), function (json))

    {

    Console.log (JSON);

    $x('P2_DEPT_NAME').readOnly = false;

    $x('P2_DEPT_NAME').value = json.items [0] .dname;

    $x('P2_DEPT_NAME').readOnly = true;

    $x('P2_DEPT_LOC').readOnly = false;

    $x('P2_DEPT_LOC').value = json.items [0] .loc;

    $x('P2_DEPT_LOC').readOnly = true;

    });

    Thanks for the effort.

  • Anyone know how to pass parameters of taskFlow entry in MultitaskFlowBinding?

    How to pass parameters of taskFlow entry in MultitaskFlowBinding?

    While we might get these within regions in multiTaskFlow Binding input parameters.

    Check -http://www.awasthiashish.com/2014/08/create-taskflow-and-region-binding-at.html

    Download and view the sample application, it shows how to pass inputParameter using a HashMap for multiTaskFlowBinding

    Ashish

Maybe you are looking for

  • Motorola to cut 20% of staff, Xoom to suffer

    Just when you thought that the owners NO Xoom could not suffer more than they... CE Motorola to cut 20% of staff The giant INTERNET Google said that it plans to lay off about 4,000 employees at Motorola.the mobile phone manufacturer, that she bought

  • A3000 camera

    Is there a way to remove the sounds of the camera when capturing the images?

  • Error 646 in Windows Update dt000

    I tried to install this update since 10 December and even tried a few suggestions when I went for troubleshooting.  Is this update very important for me to continue to try, can someone give me the best way to fix it (I'm not a computer's brain), and

  • Laptop display problems

    I have an HP dv2854se laptop.  I had a problem with a screen that seems to get progressively worse.  No matter what I do it will start to have some diagonal and white lines.  If I move/wiggle the display a little it will make lines appear and the scr

  • Restarting Vista guard

    If have Vista Ultimate 64-bit. Things seem fine but then it restarts. I'm starting to think that there may be a motherboard problem (I hope this isn't). I have two monitors connected to my computer. Both monitors sometimes show my desktop computer, o