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).

Tags: Java

Similar Questions

  • 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

  • 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

  • How to get the return value of the activity of the method in the stubborn workflow

    Hi all

    I use Jdeveloper 11 g R2 (11.1.2.3) & Weblogic 10.3.5.0

    I have a stubborn workflow, default activity is a call method than calling a method in the app module
    This method returns an id

    I need this code in my project to do something else
    Is there a way I can access the return value of the method call activity?

    Concerning
    Mohsen

    Set the value of return as #{{pageFlowScope.myBean.returnValue} pageFlowScope.myBean.returnValue} in the method, call the property inspector and get the value in your managed bean.

    String returnParam = (String) JSFUtil.getFromPageFlow ("returnValue");

  • Sharing the view everywhere object to the pagefragments in an af:train in the stubborn workflow

    Hello

    I use JDeveloper 11.1.1.4. I'm in a position to use a display through all the fragments of page object in a train of component in a stubborn workflow.

    Can someone suggest me a way to do it?

    Kind regards

    You have shared it by default if itertor in your pageDefs links the same object of the view. In other words, you will be working with the same instance of VO.

  • Error creating page jssf in the stubborn workflow

    Hi all

    I did face the following error when creating page jssf in the bounded task flows .we use JDev 12.1.3

    java.lang.NullPointerException

    at oracle.jdevimpl.webapp.faces.backingfile.BackingFileUtils.isManagedBeanBound(BackingFileUtils.java:1355)

    at oracle.jdevimpl.webapp.jsp.taglibraries.jsf.AutoBindingTraversablePanel.init(AutoBindingTraversablePanel.java:323)

    at oracle.jdevimpl.webapp.wizards.AbstractWebAppTraversablePanel.onEntry(AbstractWebAppTraversablePanel.java:57)

    at oracle.jdevimpl.webapp.jsp.taglibraries.jsf.AutoBindingTraversablePanel.onEntry(AutoBindingTraversablePanel.java:369)

    to oracle.adfdtinternal.view.rich.fragment.FragmentWizard$ 5.onEntry(FragmentWizard.java:257)

    at oracle.jdevimpl.webapp.fusion.wizards.AbstractWebAppWizard.invoke(AbstractWebAppWizard.java:150)

    at oracle.ide.wizard.WizardManager.invokeWizard(WizardManager.java:446)

    at oracle.ide.wizard.WizardManager.invokeWizard(WizardManager.java:390)

    at oracle.adfdt.controller.common.util.WizardUtils.invokeWizard(WizardUtils.java:121)

    at oracle.adfdtinternal.controller.web.behavior.AdfcTaskFlowDTBehavior.createReferrentPage(AdfcTaskFlowDTBehavior.java:218)

    at oracle.adfdt.controller.adfc.source.controller.CreatePageController.handleEvent(CreatePageController.java:73)

    at oracle.ideimpl.controller.MetaClassController.handleEvent(MetaClassController.java:53)

    to oracle.ide.controller.IdeAction$ ControllerDelegatingController.handleEvent (IdeAction.java:1482)

    at oracle.ide.controller.IdeAction.performAction(IdeAction.java:663)

    at oracle.adfdt.controller.common.diagram.interactor.DiagramSelectInteractor.invokeDefaultAction(DiagramSelectInteractor.java:127)

    at oracle.adfdt.controller.common.diagram.interactor.DiagramSelectInteractor.performEdit(DiagramSelectInteractor.java:83)

    at oracle.diagram.core.interaction.CoreSelectInteractor.mouseClicked(CoreSelectInteractor.java:1102)

    at oracle.diagram.core.interaction.CoreSelectInteractor.processMouseEvent(CoreSelectInteractor.java:420)

    at ilog.views.IlvManagerViewInteractor.processEvent (unknown Source)

    at ilog.views.IlvManagerView.processEvent (unknown Source)

    at java.awt.Component.dispatchEventImpl(Component.java:4861)

    at java.awt.Container.dispatchEventImpl(Container.java:2287)

    at java.awt.Component.dispatchEvent(Component.java:4687)

    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)

    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4501)

    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)

    at java.awt.Container.dispatchEventImpl(Container.java:2273)

    at java.awt.Window.dispatchEventImpl(Window.java:2719)

    at java.awt.Component.dispatchEvent(Component.java:4687)

    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)

    at $200 (EventQueue.java:103) java.awt.EventQueue.access

    in java.awt.EventQueue$ 3.run(EventQueue.java:694)

    in java.awt.EventQueue$ 3.run(EventQueue.java:692)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

    in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:87)

    in java.awt.EventQueue$ 4.run(EventQueue.java:708)

    in java.awt.EventQueue$ 4.run(EventQueue.java:706)

    at java.security.AccessController.doPrivileged (Native Method)

    in java.security.ProtectionDomain$ 1.doIntersectionPrivilege(ProtectionDomain.java:76)

    at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)

    at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)

    at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)

    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)

    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)

    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)

    at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

    This has happened when drag-and - d├⌐poser display component palette in the workflow and double-click the view to create the page as attaché

    .

    We try to copy the existing jssf page and drag it into the workflow it is worked, we do not know what the problem

    aid body.

    Thank you

    Finally, we found the cause of the problem

    We have customized component for hijri date an interface and some of our team jar file import this jar in the model project

    and when we remove this pot of the model the error disappears

    of course, that we delete the file in the site web inf that created in the template and I think it's the reason for the problem

    Thank you

  • How to exclude the Oracle Workflow installation CD companion server?

    We are modernizing our E-Business suite 11i database to 10.2.0.3.

    The E-Business suite upgrade request notice to install "Oracle Database 10 g products" Companion CD on 10g of the House. Oracle default workflow server is included in the guide installation with a CD Type 'Install a database Oracle 10 g products'. However the installation document CD companion says that don't install Server workflow on the database of trade electronics uite, as indicated below.

    Now how can I exclude the Oracle workflow installation CD companion server?

    ================================
    Note: Do not install Oracle Workflow Server in Oracle E-Business
    Office database. If you want to use the version of Oracle Workflow
    available with Oracle Database 10g, or any Oracle database
    components that depend on the version of Oracle Workflow, then you
    need to install the Oracle of Workflow Server in a database that is not used
    Properties of an instance of Oracle E-Business Suite.
    For an Oracle E-Business Suite database, you can continue to use the
    version of the Oracle Workflow Server integrated in Oracle E-Business
    Suite.
    ================================

    John,

    You should ignore the steps under "Preparing Oracle Workflow Server for the Oracle Workflow Middle Tier Installation", but the workflow will be installed as part of the accompanying CD (select option 2 - products of Oracle database)

    Upgrade of Oracle Applications 11i database 10g R2 (10.2.0.3)
    http://Oracle-Apps-DBA.blogspot.com/2007/09/upgrade-Oracle-Applications-11i.html

    Here is the link for the steps you need to jump:

    Prepare mid-level Workflow Oracle Oracle Workflow Server Installation
    http://download.Oracle.com/docs/CD/B19306_01/install.102/B15664/install_sw.htm#BABHHHCC

  • Update to Windows 7 Home Premium comes to remove controls that allowed me to change the color of my "active window". How can I change the color of my active window to the way I put it now?

    Windows 7 Home Premium Auto-updated 01/10/2013 and changed my display settings. The default value of MS white blind now changed the active window, I had put a plae green (easy on the eyes). I right click on the dektop of take me to the Advanced display properties, where I had previously been able to adjust various display settings, but can't find the controls? Where they are and how to change the settings to the way they were yesterday?

    PS this looks terribly like the horror story that I have with my new laptop running Windows 8 - and I don't want that!

    Thanks, but I reset the computer to an earlier time (before updates) and the active window back to my favorite 'pale green '. Liz

  • How can I set the default value of a selection in the Query Panel with table.

    Hi Experts,

    JDev 12.1.3.0.0

    I have a view Criteria (contains a attribute with LOV). and the named criteria is dragged as a query with Table Panel.

    In the user interface, the LOV is now visible in the query Panel. Suppose that the LOV has 3 values: 'Manual', 'Other' and 'portfolio '.

    How can I set a default value for the choice of a select. ?

    Thank you

    Roy

    refer to:

    Andrejus Baranovskis Blog: Dynamic value by default for the field in query ADF search

    but rather to express as in the bellows of the image, choose literal and let 2

  • Can we use Office default memory offline if the customer does not have enough free memory?

    Can we use Office default memory offline if the customer does not have enough free memory?

    Yes. We can use the parameter offlineDesktopDefaultMemoryScaleupValue jointly with the offlineDesktopReportedHostMemoryValue parameter in the registry.

    For example, if your client system has 2 GB of memory and the desktop view is configured to require 2 GB of memory, you won't be able to check the desktop view because low memory is also necessary for visualization of hosted customer.

    Use the parameter DesktopReportedHostMemoryValue = 2048 registry offline, so that you can go to the desktop and use the registry parameter offlineDesktopDefaultMemoryScaleupValue = 1024.

    so that the desktop view uses only 1 GB of memory when run locally.

    Reg patch: HKCU\Software\VMware, Inc. \VMware VDM\Client\disableOfflineDesktopMemoryScaleup

    Note: If it's a small environment you can do manual. Or we can simplify this activity by creating a group policy.

  • How can I change the default file save type

    I saw this issue everywhere in the web, but none of the answers I found to apply to my version of Photoshop (CS5).

    I want to change the file type by default when I save files.  I don't want to PSD or PDF, I want PNG.

    I want to hit CTRL + SHIFT + S as usual, but I don't want to select PNG in the drop down menu below, when I on behalf of my articles.

    I don't want to create an action for each file, that I work with - I want it to be a change of default setting on all of photoshop on each file.

    Any help?  Adobe has been zero support.

    I already tried the 'Actions' method - which is glitchy in and of itself!

    What I do is very simple - I'm doing slideshows.  I create a new file that is 1920 x 1280 (the size of my screen) and I have to open 100 + images.  I have copy and paste each image in the file 1920 x 1280, so that all images even show up on my screen when I run the slides.  I have re-size and adjust the position of each image, so it appears the way I want to.

    So I copy and paste my first image in the Web of 1920 x 1280 and then press F2 (the button I have applied to save it as a PNG action to).  It saves the file.  Then I copy and paste another picture in the file and press F2.  Rather than creating a new file (or a copy) Photoshop writes on the last file I made.  YAY!  More lost time!

    It blows my mind that a function as simple as 'Change default file Type' is missing in a too expensive, accredited program.  How their software engineers can ignore something that hundreds of other people (like me) have displayed a need for online?  Something so simple?  Andy why does my work now learn how to make scripts for Photoshop add a feature that should be standard?  Is - which is why I pay $50 a month for this software or why I bought CS5 outright for over $ 1000?

    That's what I'm trying to do--make a slideshow where each image is exactly the same size.  It seems that the only option given to me by adobe is "LOSS MORE OF YOUR TIME.

  • Method call as default activity in ADF task flows

    Hello

    I have a workflow to execute a method on the page loading to set cookie values.
    I added a control method of data as the default activity in the workflow. But it is not called immediately, it is executed only if it is called from another view.

    Any help will be appreciated.

    WebCenter Portal App 11.1.1.6


    Code workflow task:

    <? XML version = "1.0" encoding = "UTF-8"? >
    < adfc-config xmlns = "http://xmlns.oracle.com/adf/controller" version = "1.2".
    ID = "___5" >
    < task-flow-definition = id "cookie-task-flow" >
    < default activity id = "__17" > addEmpNoCookie < / default activity >
    < transaction id = "__38" >
    < new-transaction / >
    < / transaction >
    < data-control-scope id = "__39" >
    < shared / >
    < / data-control-scope >
    < managed-bean id = "__1" >
    < id managed-bean-name = "__4" > cookieBean < / managed-bean-name >
    < managed-bean-class id = "__3" > tr.com.signum.roketsan.utils.CookieBean < / managed-bean-class >
    < managed-bean-scope id = "__2" > pageFlow < / managed-bean-scope >
    < / managed-bean >
    <-l' call the method id = "addEmpNoCookie" >
    < method id '__8' = > #{bindings.addEmpNoCookie.execute} < / method >
    < result id = "__16" >
    < id fixed-result = "__7" > addEmpNoCookie < / fixed-results >
    < / results >
    < / method >
    < use-page-fragments / >
    < / task-flow-definition >
    < / adfc-config >

    Def of the activity of the Middle page of

    <? XML version = "1.0" encoding = "UTF-8"? >
    < pageDefinition xmlns = "http://xmlns.oracle.com/adfm/uimodel."
    version = "11.1.1.61.92".
    ID = "cookie_task_flow_cookie_task_flow_addEmpNoCookiePageDef".
    Package = "TR.com.Signum.roketsan.pageDefs" SkipValidation = "true" > "
    < Settings / >
    < executables / >
    < links >
    < methodAction id = "addEmpNoCookie" RequiresUpdateModel = "true".
    Action = 'invokeMethod' MethodName = "addEmpNoCookie."
    IsViewObjectMethod = 'false' DataControl = "CookieBean."
    InstanceName = "CookieBean.dataProvider" > "
    < NamedData NDName = 'cookieValue.
    NDValue = "#{webCenterProfile [securityContext.userName] .employeeNumber} '"
    NDType = "java.lang.String" NDOption = "3" / > "
    < / methodAction >
    < / links >
    < / pageDefinition >

    Hello

    It contains only the activity of the method, and if so, why is he launched with the help of a new transaction? Note that navigation always is an ID of the view and the workflow will not run if there is no view to navigate to. So either the calling flow calls this workflow and workflow returns immediately after execution of the activity of default method then it refers to a display of flow tasks calling or you add a view. Note that cookies are set on the response of a call and it is not issued before coming to a view. For this reason, using a method call activity could be a bad approach to try this so a phase listener is better suited

    Frank

  • created a 2nd model - how can I make the default value

    Hello

    I added a 2nd model for a data definition. How can I make the new value by default so that the user doesn't have to go in as soon as completion/Options and choose the model whenever they perform simultaneous program? The other model is still necessary, but not as often as the other.

    Also my form once displays only a (former) model recording. The form allows me to create a second record (select the new model), but then ignores him. My only choice was to replace the first record by selecting the new model. I wasn't expecting a grid behaves this way. Is this a known bug or have I something properly configured? Couldn't find anything on MettaLink...?

    Thank you for your help.

    The Administration guide shows you how to assign a default template.

    Connect as the administration of the system (for the Applications of Web Self-Service, not the system administrator):

    Navigator > System Administration > simultaneous > programs > Search > enter the model name > go > update > on-site adjustment > model > select > apply > Ok

    It is also covered in this white paper...

    http://www.Oracle.com/technology/products/XML-Publisher/docs/XMLEBSRep.PDF

  • I'm currently developing the feature keys on my MacBook. In the process, he asked that I enter a code sent by message to a phone number (only the 2 last digits are revealed) that I do not have access to.   How can I fill the activation?

    I'm currently developing the feature keys on my MacBook. In the process, he asked that I enter a code sent by message to a phone number (only the 2 last digits are revealed) that I do not have access to.   How can I fill the activation?

    See "change how the new features can be approved" here:

    OS X Yosemite: Configure iCloud keychain

    As you can see, this allows you to change the phone number.

  • How can I change the ORDER of my 5 email accounts to my default at the top

    How can I change the order of my 5 email accounts to my default at the top? Currently using any option to e-mail browser (Chrome Firfox IE) sends using one upstairs that is one that I never use. I specifically put by default in the settings option and figure that he took over the top NOT the default. This question never used to cultures upward, but since a recent update for Thunderbird, he chooses the top of the list only Preferred not on the list.
    Thank you I could delete the account then add it to the bottom (tedious), but there must be a way for a) restore order and b) to stop the email add on picking at the top

    Two things.

    You have defined the default value in the menu (alt + T) tools > account settings > outgoing (SMTP) Server?

    Second, try this add-on https://addons.mozilla.org/en-US/thunderbird/addon/manually-sort-folders/?src=ss

Maybe you are looking for