Problems with the stubborn workflow

Hi all

I'm having some trouble with the stubborn workflow. I created the parameters of entry and exit on the workflow and I can't make them work.

Version: 11.1.1.4

Here is my scenario:

1. I created a display on the adf-config to use as my home page
2. I created two points of view on flows of different delimited tasks two (one for data on employees - a table and one to show the details of the Department - a form)
3. I dropped two workflows bounded as areas on my main page
4. I wanted to click on the employee in the area of the employee id and pass the service id in the region of the Department
5. I converted my employee_id rank to a link and added property inspector set so that I could capture the value of line department id
6 configure the parameters input and output both bounded task flows (the employee) and pronounce on the Department.


However, the value does not seem to the Department defined in the workflow... or so it seems. I'm sure it's user error I'm not sure what I'm doing wrong.

Any suggestions or advice would be appreciated. Are there good ways to see if the values of the parameters are ongoing value and actually passed (as step via the stream in any way and see if my #{pageFlowScope.) Param} is ready?

Thanks as always!

S

Published by: Scarpacci on March 14, 2011 23:12

I guess you need to pass the parameters in a contextual event. The flow of work in the region begins, but normally doesn't end, if you do not get an output parameter.

Here are some links:
http://download.Oracle.com/otn_hosted_doc/JDeveloper/11gdemos/ADF-region-interaction/ADF-region-interaction.html
http://andrejusb.blogspot.com/2010/10/contextual-events-framework-and-ADF-11g.html
http://andrejusb-samples.blogspot.com/2011/02/jdevadf-sample-ADF-region-communication_13.html

If you google you'll find many others...

Timo

Tags: Java

Similar Questions

  • Problems with the servers from Adobe in Germany (Workflow: InDesign-> Content Viewer)

    We had some problems with the download of our fact sheets on Adobe servers end of January / beginning of February. Also our iPads test often could not connect to the content viewer. There are outages of server in Germany during this period?

    Updates are always displayed at http://status.adobedps.com/. You can check messages to see if all coincides with when you download problems.

    Neil

  • ADF: Can ignore us the default activity of the ADF train in the stubborn workflow. ?

    Hi all

    I am a newbie for ADF and JDev. Start learning about the documentation provided for the ADF, I try to create a stubborn workflow that has an element of train and every stop on the train should be activated/skippered by program. I am able to jump the train stops after reading the content provided at http://www.oracle.com/technetwork/developer-tools/adf/learnmore/82-programmatically-navigate-trains-396873.pdf.
    But I'm not able to jump to the default train stop which is the first call of the activity in my case during initialization.
    Here are the steps I followed:
    1 creating a project of viewController and created a workflow in bounded with the component train activated.
    2. added 4 displays with train component marking the first view as default activity appeal.
    3. According to the document, which I mentioned above, I've added bean managed to ignore the train stop by program files.

    Now when I run the workflow, I'm able to jump the number of train stops 2/3/4, but I'm not able to jump stop number 1 (first stop which is the default activity) at initialization.
    According to documents from the ADF, for a stubborn workflow must be assigned default activity that is always called first when we enter the stubborn workflow. Which means, default activity will always be called initialization of said defined workflow and never to be ignored by the program. ? Alternatively, if there is a way to jump to the default activity, so please let me know the documentation/measures to do this.

    Thanks in advace.

    Published by: 1004973 on May 9, 2013 02:52

    Thanks Timo. Your idea has solved my problem. :)

    I created a new page in my workflow narrow-minded that I realized as a default activity for the workflow bounded. Then I applied the navigation via router and under certain conditions, I am now able to switch my order to my desired train stop. By this design, I can make another customization on train button(Back/Next).

  • ExecuteWithParams in the stubborn workflow?

    Hello

    I use ADF 11 g and I am trying to achieve the following:
    < ul > < li > I have a page with a read-only table.
    < li > the user selects a row in the table, and then click one of the buttons above the table action.
    < li > A popup appears, which shows some details on selected lines, as well as some edit fields to add an entry for the action to perform on the selected record.
    < li > the user clicks OK, a PL/SQL procedure in the database is called to perform the action on the record selected with the input values given. < /ul >

    I have already created most of the features:
    buttons of selection and action < ul > < li > the homepage with the read-only table, single line.
    < li > delimited the workflow based on fragments of the page.
    < li > a fragment of page for each action.
    < li > popup has a region to incorporate fragments in. < /ul >

    I followed the diagram of the Incorporation of the regions inside the pop up windows to implement all of this. Most works very well. When I select a line and press action buttons, popup appears with the right fragment in it. The only problem is that the selected record does not appear, the fragment always shows the first record in the table.

    Here are some of my code:
    My definition defined workflow :
    <?xml version="1.0" encoding="UTF-8" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="editPerceel">
        <default-activity>ExecuteWithParams</default-activity>
        <input-parameter-definition>
          <name>soortActie</name>
          <value>#{pageFlowScope.soortActie}</value>
          <class>java.lang.String</class>
        </input-parameter-definition>
        <input-parameter-definition>
          <name>pclNummer</name>
          <value>#{pageFlowScope.pclNummer}</value>
          <class>oracle.jbo.domain.Number</class>
        </input-parameter-definition>
        <task-flow-return id="ok">
          <outcome>
            <name>editPerceelFinished</name>
            <commit/>
          </outcome>
        </task-flow-return>
        <router id="soortActie">
          <case>
            <expression>#{pageFlowScope.soortActie == 'AMW'}</expression>
            <outcome>wijzigAmCode</outcome>
          </case>
          <!-- other cases left out for brevity -->
          <default-outcome>wijzigAmCode</default-outcome>
        </router>
        <view id="wijzigAmCode">
          <page>/percelen/wijzigAmCode.jsff</page>
        </view>
        <!-- other views left out for brevity -->
        <task-flow-return id="cancel">
          <outcome>
            <name>editPerceelCancelled</name>
            <rollback/>
          </outcome>
        </task-flow-return>
        <method-call id="ExecuteWithParams">
          <method>#{bindings.ExecuteWithParams.execute}</method>
          <outcome>
            <fixed-outcome>ExecuteWithParams</fixed-outcome>
          </outcome>
        </method-call>
        <control-flow-rule>
          <from-activity-id>soortActie</from-activity-id>
          <control-flow-case>
            <from-outcome>wijzigAmCode</from-outcome>
            <to-activity-id>wijzigAmCode</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
          <control-flow-case>
            <from-outcome>cancel</from-outcome>
            <to-activity-id>cancel</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule>
          <from-activity-id>wijzigAmCode</from-activity-id>
          <control-flow-case>
            <from-outcome>ok</from-outcome>
            <to-activity-id>ok</to-activity-id>
          </control-flow-case>
          <control-flow-case>
            <from-outcome>cancel</from-outcome>
            <to-activity-id>cancel</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule>
          <from-activity-id>ExecuteWithParams</from-activity-id>
          <control-flow-case>
            <from-outcome>ExecuteWithParams</from-outcome>
            <to-activity-id>soortActie</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <!-- other control flow rules left out for brevity -->
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>
    As you can see, the default activity is an ExecuteWithParams. The idea is that this ExecuteWithParams selects a record unique, based on the pclNummer value, which must be unique. The ExecuteWithParams is defined in the pageDef as follows:
        <action IterBinding="TelerHeeftPercelenIterator" id="ExecuteWithParams"
                RequiresUpdateModel="true" Action="executeWithParams">
          <NamedData NDName="pclNummer" NDValue="#{pageFlowScope.pclNummer}"
                     NDType="oracle.jbo.domain.Number"/>
        </action>
    The button that triggers it, is defined as follows:
                      <af:commandToolbarButton text="#{aanvragenboviewBundle.WIJZIG_AM_CODE}"
                                               icon="/images/pencil.png"
                                               disabledIcon="/images/pencil_disabled.png"
                                               id="btnAm" partialSubmit="true"
                                               clientComponent="true">
                        <af:clientAttribute name="pclNummer"
                                            value="#{viewScope.percelenBean.selectedPerceelNummer}"/>
                        <af:clientAttribute name="soortActie" value="#{'AMW'}"/>
                        <af:showPopupBehavior popupId="::pclPopup"/>
                      </af:commandToolbarButton>
    My questions are:
    < ul > < li > by passing the value of key of the selected record and then retrieve the record again seem a bit too complicated for me. Is somehow possible to just get the record selected in the main page in the stubborn workflow?
    < li > if this is not possible, what I am doing wrong in my current approach? Why the ExecuteWithParams works not as long as expected? (It is actually running, I checked that, by setting a breakpoint on this subject). < /ul >

    Any help would be appreciated!
    Best regards
    Bart kummel

    Hello

    If you launch the TaskFlow in a dialog you must pass information as an input TaskFlow parameter. And then read you in the TaskFlow and run the query using a method activity.

    Frank

  • Issue of 'no networks detected. Problems with the AR5BWB222 driver for WiFi adapter. Help, please!

    Hi all

    I need your help!

    then a few days ago my wifi started playing on my acer Windows 8 V5-552 and I have decided to update the driver for the card. I did this by unistalling and re-istalling the driver for the Atheros AR5BWB222 map I downloaded from this site acer very (it turns out it's the same version), now I have no WiFi connection at all (I am currently using ethernet cable but I need to be mobile around the House!). Troubleshooting does not help and said "there could be a problem with the driver for the WiFi card" and when I click fix problem there is no NOTHING (why did even give the option?). Did a system restore and that didn't work because of my antivirus and there still nothing when I turned antivirus off the coast. Then I read a lot of forum preveous questions on this driver and no solutions helped, maybe because everything is last year.

    I really want to avoide a factory reset as I have some programs here that will be very difficult to acquire again.

    If you're still here after my speech, I am greatfull and also want your knowledge and advice about this superior! Please help me!

    What antivirus program you are wrong with turning off? I know that some may be stubborn. If the AV program refuses to turn off this feature with a selective startup in MSCONFIG, then you can try to uninstall it completely in the PANEL. Then try to restore to the previous new date

    Jack E/NJ

  • My customer is having a serious problem with the Contact form Widget

    My Client is to have a serious problem with the Contact form Widget that I can't seem to figure out how to fix.

    I created a website for a client and inserted a widget of Contact form on the "Contact us" page Whenever someone uses the form, e-mail receive my client shows my e-mail address as the sender. So when they "meet" the email, the response is sent to me and not the person who sent the original message. This creates a major problem in that I get flooded with answers e-mail while my client's potential customers go without a response.

    When I look at ' Site Manager > email system > Workflow information > e-mail address on the site administration Console, it displays my e-mail information. This is what needs to be changed?  If this is the case, what needs to be placed in this field for the email address of my client receives presents information email senders in the field "from".  My client wants to be able to click on reply and the message sent to the right side. They would be very angry if should be cut and past shippers Correo electronico of the body text on all the contacts they receive.

    Their feeling is that if I can't find a way to make the contact form works as it should, then there is no need for them.

    Can someone help me understand this? I really don't want to disappoint my first client.

    Congratulations for your first customer! =>

    Looks like you can have your email in places where your customers email should be.

    Here are the places you need to change your e-mail address.

    First adjust the answering of your web form is your customer email. Screenshot: http://screencast.com/t/YWiZZ30E0jE and http://screencast.com/t/u4t69anTLR

    Second set Emails to come your clients e-mail system. Site management > system email > set default "from" e-mail. Screenshot: http://screencast.com/t/EAr2sfXk

    I always go through each email system and check the e-mail address after you set the default value. I found that it doesn't always change them for some reason any. Note: If you are on a lower to webCommerce plan your list can be shorter than what is shown.

    Make sure that the email you the list of customers is also an email they want in public.

    Also provide information on the TSA that thetrickster888 is good information.

    I hope this helps.

    Lynda

  • Premiere Pro CS4 - problem with the monitor program.

    Hello. I am not able to solve the problems with the monitor using PremiereProCS4. When I drag a photo (also only one photo) in the timeline panel and read it in the monitor program, vision in the monitoring program is not monitor of race: black or a small part of the picture appear... sometimes changing colors. ASUS P5QPRO Intel 9550 and Sparkle Nvidia GeForce 9800 GTX + 1024 DDR3; directX and the latest gpu driver are installed. Different configurations of Strath discs have been tested. Where I'm wrong?

    Although largely in the max. PrPro range, which is always likely to much larger size than that required. This ARTICLE will give you general information and a workflow possible.

    Coming from the camera, JPEG should be RGB already, so no problems with CMYK.

    Good luck and hope that helps.

    Hunt

  • Anyone having problems with the new iPhone LTE connection 7 on Verizon?

    I am now on my iPhone second 7 with Verizon. I had four phones for me and my family. I have now had issues where I have no signal in the same areas where my signal allows to be strong. I can't solve the problem with the activation/deactivation of the airplane and then mode again in normal mode. My phone will rest with no signal for 5 minutes, then going to LTE with three bars. I also had the problem where I had only 1 x signal, while my son standing right next to me has LTE. And he had the same questions, where I'm on LTE and it gets no signal. I use to have LTE where I live and work all the time, now it's spotty at best. Apple has replaced me and my sons iPhones but not luck. Still do. Any ideas or an any other suffering?

    (1) go to settings/cell phone/cellular data Options/enable LTE and select ONLY the DATA. This seems to solve the problem (as a temporary solution) for most of the people affected by this problem. The bad part is your request might not be as clear (since they cannot use the highest LTE signals) and you can make calls and data at the same time. But it does not solve the issue.

    (2) there are rumors (but you didn't hear that from me that we only are not supposed to discuss beta software program Apple in this forum) that the new version of Apple Beta for iOS (which also includes an update of the software carrier Verizon to 26.0) seems to solve this problem. So, there's a light at the end of the tunnel.

  • Sierra Siri, «I have some problems with the connection...» »

    Guys,

    I just installed Sierra on my MacBook Pro (retina, 13 inches, early 2015) version 10.12. I can't get Siri at work, the app tracks, he hears what I'm saying, but after awhile, he returns with two messages, both on the screen and verbally "I have some problems with the internet connection. Please try again in a moment. "&"Sorry, I'm having problems with the connection. Please try again in a moment. »

    Any ideas?

    Thank you

    N

    It's a network problem.

    Check the proxy settings that blocks maybe, or a firewall.

    System Preferences > network > Advanced (for your current connection) > Proxies

    Something there?

  • Siri does not (problems with the connection)

    Hello

    I installed macOS Sierra yesterday. Everything seems to work fine, except Siri. With Siri I always get an error message "I am having some problems with the connection. Please try again in a moment. ». But this seems to appear every time. The network connection works fine, I can't access the Internet without problem.

    No idea how solve the problem?

    I use an iMac (27 inch, mid-2011). Internal microphone is connected, I also see the 'waves' change while I am speaking.

    Concerning

    Thomas

    Hey, thochstrasser. Thank you for using communities of Apple Support.

    It seems that Siri is reluctant to make his debut on your iMac after upgrade to Mac OS Sierra. I want to make sure that you get the benefit of this new feature on a Mac.

    1 try safe mode if your Mac does not start -even if your iMac to market, safe mode makes sure it starts successfully.

    2. How to test a question in an another user account on your Mac - since this is most likely a software problem, test to another user will indicate if it is right to your user account or throughout your system.

    3. use Time Machine to back up or restore your Mac - if it seems to be systemic, the next step should not cause problems. But it is always better "to have" a backup to the "need".

    4. on OS X Recovery - the issue as part of the operating system, reinstall should do.

    Have a great weekend!

  • iOS 10 problems with the Mail application

    Dear Apple and community support,

    Here's my problem:

    I have upgraded to iOS 10 on my iPhone 5s this afternoon (September 13), and now I'm not able to open e-mail - Yahoo!, and Gmail. I can receive emails, I'm not able to view the body of these emails. When I press on them, all I see is a blank white page. I can't answer emails either. I can only their flag or remove them. However, I am able to compose new e-mail messages.

    Here are the steps that I've taken to try to solve my problem:

    1. Restarted my phone
    2. Remove and re-add my Mail accounts
    3. Made a backup and a restore full while that plugged into my laptop with the latest version of iTunes.

    I should be grateful if you would help or more information on this issue.

    Thank you

    Emily

    I also have problems with the Mail application.  On my iphone, ipad, and Mac Pro.  I have several addresses, a MSN, another on Go Daddy and Gmail.  I have various weird problems with threads and every day he re-charge my emails, like if I have never read before.  Something is really problematic with Mail.

    Can the people of APPLE, you help me?

  • Problem with the installation of iOS 10

    I tried to install iOS 10 earlier but it did not work, so now that I'm trying to reinstall iOS 9 if my phone will work again, if this does not work I have to reset my phone (but I am a fool and did not a back-up because I never had a problem with the software updates in the past if all data will be lost).

    < published by host >

    The same problem with me too. After installing ios 10 nuer OTA my iphone brick! I'm trying to re - install ios 9 i-Tunes, but 2 hours now always stop installation... what happent?

  • Hello! Someone has some problem with the haptic on Macbook 12 "2016 function? It does not work on my Mackbook.

    I'm trying to figure if someone has my problem with the haptic on Macbook 12 "2016 function. The option is checked in the preferences system, but it does not work.

    Thank you

    Hello luigi10m,

    Thanks for posting on the Community Support from Apple. From your post, it looks like your haptic feedback does not work when you click using your trackpad and the setting is enabled. I know that this is a great feature and it is important to make it work. I'll be happy to help you.

    First of all, I would like to assure you that in system preferences > Trackpad > clicking silencer is not checked, that might help. In addition, it would be useful to reset the settings of the SCM. You can find instructions here: reset the management system (SCM) controller on your Mac - Apple Support

    I'll also include those for you here:

    1. Stop the Mac.
    2. Plug the MagSafe or USB - C adapter to a power source and to your Mac.
    3. Use the built-in keyboard, press shift-control-Option on the left side of the keyboard, then press the power button at the same time.
    4. All the keys to unlock, then press the power button to turn on your Mac

    Take care!

  • I have a problem with the content of spam. Somewhere in the Fox appeared script that's choking me audio spam. Every 30 minutes he's playing an audio clip that is malicious.

    Hello.
    I have a problem with the content of spam. Somewhere in the Fox appeared script that's choking me audio spam. Every 30 minutes he's playing an audio clip that is malicious. I can't find the settings as it eliminated. Now, I don't have any plug-ins and Add-ons strange that were not initially in the Fox, but the problem is there.
    I use the Fox years. The problem, he had 1.5 months after Fox cleaning. If the problem can't win, I'll be forced to give up the browser, and I wouldn't.

    Could test you mode without failure of Firefox? It is a standard diagnostic tool to disable some advanced features of Firefox and extensions. More info: questions to troubleshoot Firefox in Safe Mode.

    Does not work if Firefox: Hold down the SHIFT key when you start Firefox.

    If Firefox is running: You can restart Firefox in Mode safe mode using either:

    • button "3-bar" menu > "?" button > restart with disabled modules
    • Help menu > restart with disabled modules

    and OK reboot.

    Two scenarios: A small dialog box should appear. Click on 'Start mode safe' (not update).

    Any improvement?

    If the problem persists in Mode without failure, could reinstall you Firefox in this way:

    Clean reinstall it

    We use this name, but it isn't about deleting your settings, this is to ensure that the program, files are clean (not incompatible, corrupt or exotic code files). As described below, this process does not disrupt your existing settings. Don't uninstall NOT Firefox, that does not need.

    (1) download a fresh Installer for Firefox 38.0.5 of https://www.mozilla.org/firefox/all/ in an ideal location. (Scroll down your preferred language).

    (2) close Firefox (if applicable).

    (3) to rename the program folder, either:

    (Windows 64-bit folder names)

    C:\Program Files (x86)\Mozilla Firefox
    

    TO

    C:\Program Files (x86)\OldFirefox
    

    (Windows 32-bit folder names)

    C:\Program Files\Mozilla Firefox
    

    TO

    C:\Program Files\OldFirefox
    

    (4) run the installer you downloaded in the #1. It should automatically connect to your existing settings.

    Any improvement?

    Note: Some plugins can only exist in this OldFirefox file. If it is missing something essential, present in these files:

    • \OldFirefox\Plugins
    • \OldFirefox\browser\plugins
  • Siri having problems with the connection.

    Hello

    I have an iPhone 6 Plus, 64 GB with IOS version 9.3.3 (G 13, 34) and the carrier is Vodafone.

    I have problems with Siri, feel when I asked her a task (research or appeal), after a few seconds of waiting, the answer is always "sorry, I have a problem with the connection. Please try again in a moment. »

    I have the right connection with Internet with WIFI and 4G data stream.

    I did reset network settinjg, but I don't see any improvement.

    Please indicate what I can do and if it's a common problem with the iphone 6.

    Thank you!

    CC

    After the reset of the iPhone ("home" button and close button for 10 seconds, with the iPhone connected to the computer), Siri works!

    I am concern I have to do this reset every 2-3 weeks if I need services of Siri...

    Good luck to all of you who have the same problems with their iPhone of hares!

    CC

Maybe you are looking for

  • Rocket won't save the radio or the voice

    When I got it I did all the two just to check out them and they worked, but I didn't want them so I deleted them it's been a few weeks and it won't save! For radio, he looks at his will do, it stops request if I would record I say yes but there is no

  • Can you put newer controllers in older systems?

    We have a PS3900XV of end of life that is still going strong.  There two Type 3 SAS controllers in it.  Can upgrade you controllers?  If so, how can the news I go?  Type 4 SAS?  Type 7 SAS?  Most recent?

  • installation bad for 32 vs 64 how to change to windows 7

    When I need a new hard drive I went from a 500 GB to 1 terabyte. On top of that my computer would not recognize the HD so I got a friend to do a new install of windows 7 and 1, now I can't the right key #s for authentic windows, im 2 running on a 32

  • Windows script host guard popping up when I connect

    For some reason, the Windows Script Host dialog box started poppin up when I log the first on and also at other times in a session.  I don't know why this started happening.  I tried several solutions advocated by other users even changes to the regi

  • get the screen on battery/no screen below

    Is there a way to get a screen other than screenBelow battery? I want to find the way the more eligant to get a screen two or three down in the stack? Any ideas? Thank you!