Can the Bulk Action be scheduled?

I need a quick help.
Can the Bulk Action be scheduled?
I have a feed file that gets updated for every 24 hrs and the records are to be processed accordingly. For this, I need to go to the bulk actions then select the option from file and then Launch. Can this be configured?
If this cannot be configured, is it possible to write a workflow which will read the feed file and process the accounts. If this is possible please provide a working sample.
The feed file basically has an attribute, that needs to be upated on the account and a Role is to be assigned or removed based on the value.
Thanks in advance,

Welcome to the forum!
You've run across what looks like an interesting limitation of Keynote -- it seems that Actions cannot happen simultaneously with Builds for a single object. My only suggestion for a workaround would be to copy the section of the background that the photo is to appear on, put that on top of the photo, and use a Build Out Dissolve on that object as you scale the photo. This would achieve a similar effect to what you describe, although it is a pain in the butt to do.
With regard to your second issue, a Move Action will do what you want if you set the Acceleration to "None". Of course, if you want the object to start off-screen and end off-screen, it can be tough to manipulate the animation. I always attach invisible "handles" to my image, in the form of objects with no fill or stroke that I then group with my image. They extend the image, so that the invisible objects are still on the screen, and thus selectable, when the actually image is off-screen.

Similar Messages

  • How to get bulk action to update resource

    I have to update some users data in a particular resource. I'm attempting to add a location to their user object, the resource and their waveset info via a bulk action script (which I have very little experience with). Currently I have it set up so the bulk action starts in a form which calls a rule and then a workflow. I've been able to get it to update the user object and the waveset data, but I can't get it to write to the resource. (In this case the resource is a simulated resource - a file on the file system). I've tried everything I can think of but I'm missing some key piece in getting the resource updated. I may not need the rule, but I couldn't get the resource to update from my workflow, so I decided to try a rule. In any case, here's my form:
    <Display class='EditForm' />
    <Field name='context'>
         <Derivation>
              <invoke name='getLighthouseContext'>
                   <ref>WF_CONTEXT</ref>
              </invoke>
         </Derivation>
    </Field>
    <Field name=':applicationName'>
                    <Derivation>
              <s>FACILITIES</s>
         </Derivation>
    </Field>
    <Field name='accounts[FACILITIES].tempField'>
                   <Derivation>                                   
              <rule name='v1_RULELIB_FACILITIES:writeMapToResource'>     
                   <argument name='ctx' value='$(ctx)'/>
                   <argument name='view' value='$(view)'/>
                   <argument name='request' value='$(request)'/>
                   <argument name='applicationName' value='$(applicationName)'/>                                                       </rule>                                   
         </Derivation>
    </Field>
    <Field name='viewOptions.Process'>
         <Expansion>
              <s>ABC_TSKDEF_Facilities_Add_Location</s>
         </Expansion>
    </Field>
    </Form>
    . . .

    and lastly, this is my task definition:
    <TaskDefinition name='ABC_TSKDEF_Facilities_Add_Location'
         taskType='Workflow' executor='com.waveset.workflow.WorkflowExecutor'
         suspendable='true' syncControlAllowed='true' execMode='sync' execLimit='0'
         resultLimit='1' resultOption='delete' visibility='runschedule'
         progressInterval='0'>
    <Extension>
         <WFProcess name='ABC_TSKDEF_Facilities_Add_Location' maxSteps='0'>
    <Variable name='request'>
                        <Comments></Comments>
                   </Variable>
    <Variable name='user' input='true' />
              <Variable name='newLocation'>
                   <s>Baltimore</s>
              </Variable>                    
              <Variable name='newTimeFrame'>
                   <s>24 hours Mon-Sun</s>
              </Variable>          
              <Variable name='wtf'><s>also defined variables for newAccessLevel newEffectiveDate newEndDate and newJustification. For some reason the forum didn't like these and wouldn't let me save.</s></Variable>
              <Activity id='0' name='start'>
                   <Transition to='Initialize' />
                   <WorkflowEditor x='43' y='10' />
              </Activity>
    <Activity id='1' name='Initialize'>
                   <Action id='0' name='Set variables'>
                        <expression>
                             <block name='INIT' trace='true'>
                             </block>
                        </expression>
                   </Action>
                   <Transition to='Make Account Changes' />
                   <WorkflowEditor x='105' y='10' />
              </Activity>
    <Activity name='Make Account Changes'>     
                   <Action id='1' name='update lh account'>
                        <expression>
                             <block trace='true'>
                                  <cond>
                                       <not>
                                            <contains>
                                                 <ref>user.waveset.resources</ref>
                                                 <s>FACILITIES</s>
                                            </contains>
                                       </not>
                                       <append name='user.waveset.resources'>
                                            <s>FACILITIES</s>
                                       </append>
                                  </cond>
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].timeFrame</s>
                                       </concat>
                                       <ref>newTimeFrame</ref>                                   
                                  </set>
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].accessLevels</s>
                                       </concat>
                                       <list>
                                            <ref>newAccessLevel</ref>
                                       </list>                                   
                                  </set>                                                       
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].effectiveDate</s>
                                       </concat>
                                       <ref>newEffectiveDate</ref>                                   
                                  </set>                              
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].endDate</s>
                                       </concat>
                                       <ref>newEndDate</ref>                                   
                                  </set>                                                                 
                                  <set>
                                       <s>user.accounts[FACILITIES].properties.justification</s>
                                       <ref>newJustification</ref>
                                  </set>
                                  <set>
                                       <s>user.accounts[FACILITIES].justification</s>
                                       <ref>newJustification</ref>
                                  </set>                         
                             </block>
                        </expression>
                   </Action>
                   <Transition to='Error'>
                        <eq>
                             <ref>WF_ACTION_ERROR</ref>
                             <s>true</s>
                        </eq>
                   </Transition>
                   <Transition to='Provision' />
              </Activity>
              <Activity id='5' name='Provision' audit='true'>
                   <Comments>Perform the standard Lighthouse reProvisioning process.</Comments>
                   <Action id='0' process='Provision'>
                        <Argument name='op' value='reProvision' />
                   </Action>
                   <Transition to='Clean up' />
              </Activity>
              <Activity id='9' name='Error'>
                   <Action id='0' name='Audit Data Validation'>
                        <Argument name='auditError'>
                             <concat>
                                  <s>Data Validation Error for </s>
                                  <ref>accountId</ref>
                                  <s>. </s>
                                  <s>Invalid attributes:</s>
                                  <ref>user.dataValidationError</ref>
                             </concat>
                        </Argument>
                        <Argument name='auditAction' value='Create' />
                        <Argument name='generateAuditRule'
                             value='v1_RULELIB_Common:getDataValidationAuditParams' />
                        <SubProcess>
                             <ref>sysConfig.PROCESS_AUDIT</ref>
                        </SubProcess>
                   </Action>
                   <Action id='1' name='Set Notify Params'>
                        <expression>
                             <block>
                                  <set name='errorHandle.placeOnQueue'>
                                       <s>false</s>
                                  </set>
                                  <set name='errorHandle.errorMessage'>
                                       <ref>user.dataValidationError</ref>
                                  </set>
                                  <set name='errorHandle.generateEmailRule'>
                                       <s>v1_RULELIB_Common_EmailGeneration:getEmail_ASErrorHandleNotifyAdmins</s>
                                  </set>
                             </block>
                        </expression>
                   </Action>
                   <Action id='2' name='Call Error Handle'>
                        <Argument name='errorHandle' value='$(errorHandle)' />
                        <SubProcess>
                             <ref>sysConfig.PROCESS_ERROR_HANDLE</ref>
                        </SubProcess>
                   </Action>
                   <Transition to='Clean up' />
                   <WorkflowEditor x='292' y='10' />
              </Activity>
              <Activity id='10' name='Clean up'>
                   <Action id='0' name='Clean Up Variables'>
                        <expression>
                             <block>
                                  <set name='sysConfig' />
                                  <set name='errorHandle' />
                                  <set name='enduserId' />
                                  <set name='lhUser' />
                             </block>
                        </expression>
                   </Action>
                   <Transition to='end' />
                   <WorkflowEditor x='437' y='10' />
              </Activity>
              <Activity id='11' name='end'>
                   <WorkflowEditor x='609' y='10' />
              </Activity>
              </WFProcess>
         </Extension>
         . . . Any ideas? Pointers? Suggestions? I can't find any information on how to write to the resource. What is it that triggers that to happen? What do I need to add to my rule, task definition or form to get that to update? Any ideas are much appreciated!
    Edited by: user12836258 on Sep 7, 2011 9:15 AM
    Edited by: user12836258 on Sep 7, 2011 9:16 AM
    Edited by: user12836258 on Sep 7, 2011 9:17 AM
    Edited by: user12836258 on Sep 7, 2011 9:17 AM
    Edited by: user12836258 on Sep 7, 2011 9:18 AM
    Edited by: user12836258 on Sep 7, 2011 9:21 AM
    Edited by: user12836258 on Sep 7, 2011 9:24 AM
    Edited by: user12836258 on Sep 7, 2011 9:25 AM
    Edited by: user12836258 on Sep 7, 2011 9:25 AM
    Edited by: user12836258 on Sep 7, 2011 9:26 AM
    Edited by: user12836258 on Sep 7, 2011 9:27 AM

  • Having approval process in Bulk Action

    Hi,
    I have requirement where I need to have a single approval process for bulk actions. In detail, whenever a user initiates bulk action it should wait for manager approval and once manager approves then only it should start processing the CSV file.
    I know there is no workflow associated with the bulk action. Please let me know how can i go ahead in implementing this scenario.
    Thanks
    Sarvan VS

    Hi Daya,
    Yes, you are right! In standard behaviour this is the only method or you can create a receipient list and approver will get the intimation in SAP mailbox ( t-code SBWP).  If you want more advance that user needs to get intimation in his external mailbox like outllok, lotus note etc. then you can use Workflow. This can be achieved with help of Abap'r ( workflow) person.
    In standard you are right.
    Hope this will help.
    Regards,
    Ravindra

  • Customized Bulk Action Form

    I saw that there are multiple unanswered questions about this, so I am assuming the answer is no but wanted to give it a shot. Is there any way to customize the Bulk Action form besides building an entirely different workflow? For example, I want to remove certain fields and add a checkbox which would save a variable into the workflow. I see bulkop.jsp, which instantiates BulkOpForm, so I gather it's not a form that can be modified. Is there maybe a point where I could merge into the standard bulk process after giving my own frontend? I'd rather not resort to reimplementing the file parsing and all that.

    If bulk action is launched by user who has 'Customer - Tabbed User Form' as User Form, this form will be applied
    You can specify at your form what workflow to launch. Just add field
    <Field name='viewOptions.Process'>
    <Expansion>
    <s>Customer - Update Workflow</s>
    </Expansion>
    </Field>

  • What workflow runs during bulk action 'update only Lighthouse' is ran?

    Hello,
    We were trying to set some deferred tasks via our bulk action list. To do this we are running Updates, and passing a parameter that is noticed by our custom Update WF. The custom update workflow then sets the deferred tasks. This takes a while to execute however, and we have about 30,000 accounts we want to update. To try and speed it up, we were playing around with the option to update only the lighthouse account. However, when this runs, it does not fire our custom Update WF. So.... What workflow is it firing off? Can this workflow be modified?
    Thanks,
    Jim

    Try using the BPE workflow debugger to identify the workflow that runs. Set a break point in the user form assigned to the administrator you are running the bulk action as and proceed step by step. You should get the workflow being executed.

  • Bulk Action Rename AccountID

    We're cleaning up our user accounts and I need to deal with a couple thousand mixed case accountid's.
    I've been digging around and cannot find the logic to perform a bulk action rename of accountids. Has anyone dealt with this?
    I have used the Rename User Action, so I know I can perform a rename on specific resources on a single user by user basis *I'm mainly interested in just renaming waveset accountid's in bulk to lower case.
    The Question is: What is the bulk action command/directive structure to do an accountid rename?
    Thanks in advance,
    -Jason
    Edited by: jblackader on Aug 11, 2009 11:12 AM
    - forgot to mention. we're running Identity Manager 7.1

    any update on this ..action...
    I am running the same senario .. but still not got the solution ..
    here is my senario....
    what command will need to use for updating the user accountId in idm .
    Actually my requirement is to update new accountId in IDM , LDAP and AD resources.
    1) Command :
    command,user,waveset.resources,accounts[LDAP].accountId,accounts[AD].sAMAccountName
    update,test1,|Merge|LDAP|AD,John1,John1
    Above command will update LDAP and AD user accountId in resources successfully.
    2) Command :
    a) command,user,waveset.resources,global.accountId,accounts[LDAP].accountId,accounts[AD].sAMAccountName
    update,test1,|Merge|LDAP|AD,John1,John1,John1
    b) command,accountId,global.accountId
    Update,test1,John1
    c) command,accountId,waveset.resources,accounts[Lighthouse].accountId
    update,test1,|Merge|Lighthouse,John1
    Above all the command should update the user accountId in IDM , LDAP, AD , but got failed with error ,
    error :
    com.waveset.exception.ItemNotFound: Item User:test1 was not found in the repository
    what's the Bulk Action command should be used to update the user accountId in IDM

  • Interaction  with Bulk Action Task

    We are tyring to provide a "cleaner" interface for our customer when using bulk actions. Does anyone know how to interact directly with the Task that runs the bulk actions? I've looked in the repository thru the BPE and it's not selectable. Thanks!

    Ok, so here's the deal:
    If the command is Create, then use "password.password".
    If the command is Update, then use "global.password" (or "accounts[Lighthouse].password" if only IDM resource password is to be updated).
    It would have been nice to have only one reference for all actions, but I tested this and this is the way it is..
    -Adi
    [www.xpressutils.com|http://www.xpressutils.com]

  • Error Bulk action idm6.0 sp1

    Hi,
    when we try to execute bulk action with the hookup of the resource active directory (w2000) we recive the following error :
    Unable to set user info: 'SetInfo(): 0X80072035: , 0000054F: SvcErr: DSID-031A0B56, problem 5003 (WILL_NOT_PERFORM), data 0 , The server is unwilling to process the request.
    At about tenth user the bulk action terminated unexpectedly, causing the reboot of idm. The created users correctly works. What the problem could be? Restrictive policy is not been applied on the DC.
    thanks in advance

    Hi,
    there could be many causes to your problem. In your place i would change the workflow to dump the view if an error happens. Looking at what the system wants to provision you might find the problem yourself or you could post a view here for others to tell you what change the active directory does not want to perform (and possibly how to convince it to do it anyway).
    Regards,
    Patrick

  • Bulk Action- for update accountId in IDM

    what command will need to use for updating the user accountId in idm .
    Actually my requirement is to update new accountId in IDM , LDAP and AD resources.
    1) Command :
    command,user,waveset.resources,accounts[LDAP].accountId,accounts[AD].sAMAccountName
    update,test1,|Merge|LDAP|AD,John1,John1
    Above command will update LDAP and AD user accountId in resources successfully.
    2) Command :
    a) command,user,waveset.resources,global.accountId,accounts[LDAP].accountId,accounts[AD].sAMAccountName
    update,test1,|Merge|LDAP|AD,John1,John1,John1
    b) command,accountId,global.accountId
    Update,test1,John1
    c) command,accountId,waveset.resources,accounts[Lighthouse].accountId
    update,test1,|Merge|Lighthouse,John1
    Above all the command should update the user accountId in IDM , LDAP, AD , but got failed with error ,
    error :
    com.waveset.exception.ItemNotFound: Item User:test1 was not found in the repository
    what's the Bulk Action command should be used to update the user accountId in IDM
    please reply :

    what command will need to use for updating the user accountId in idm .
    Actually my requirement is to update new accountId in IDM , LDAP and AD resources.
    1) Command :
    command,user,waveset.resources,accounts[LDAP].accountId,accounts[AD].sAMAccountName
    update,test1,|Merge|LDAP|AD,John1,John1
    Above command will update LDAP and AD user accountId in resources successfully.
    2) Command :
    a) command,user,waveset.resources,global.accountId,accounts[LDAP].accountId,accounts[AD].sAMAccountName
    update,test1,|Merge|LDAP|AD,John1,John1,John1
    b) command,accountId,global.accountId
    Update,test1,John1
    c) command,accountId,waveset.resources,accounts[Lighthouse].accountId
    update,test1,|Merge|Lighthouse,John1
    Above all the command should update the user accountId in IDM , LDAP, AD , but got failed with error ,
    error :
    com.waveset.exception.ItemNotFound: Item User:test1 was not found in the repository
    what's the Bulk Action command should be used to update the user accountId in IDM
    please reply :

  • I can't delete songs from my library unless I'm in the bulk "music" tab. This will cost me hours of time to sort through. Help!

    I used to be able to delete songs from my library from any playlist by holding ALT and pressing BACKSPACE. Now, this only works in the bulk "Music" tab which lists every single item in my entire playlist. I have about 300 items in my playlist that need to be deleted (They are remnants of deleted files and no longer point to an existing file location). I have a smart playlist that collects all these items, and in the past I would periodically just delete the contents of that list from the whole library. Now I can't do that. I thought of trying to modify all the items under a common album title so I could find the whole group in the "Music" tab and delete them there, but iTunes won't let me modify them because they don't have a valid file path. (That's exactly the reason I'm trying to delete them! AARGH!)
    The only alternative I can think of is to look up every single item individually and manually delete them one by one, which would amount to a few hours of wasted time. I'm so frustrated. I don't understand why each progressive installment of iTunes does away with features that were helpful and useful when they existed. I feel like Apple hates me.Can anyone help me?

    Use Shift+Delete to remove items from a playlist and the library at the same time.
    tt2

  • When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the o

    When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the original in my work folder. I need to know how to stop this from happeing and get it back to the way it has been working he last 6 months since i purchased this program.

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • What I would like from Cisco is the meaning of all level 3 or lower email messages my Router can send to me. So, that I can take the appropriate actions.

    v\:* {behavior:url(#default#VML);}
    o\:* {behavior:url(#default#VML);}
    w\:* {behavior:url(#default#VML);}
    .shape {behavior:url(#default#VML);}
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin-top:0in;
    mso-para-margin-right:0in;
    mso-para-margin-bottom:10.0pt;
    mso-para-margin-left:0in;
    line-height:115%;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    My Small Business Router has been sending me email messages. This is a RVS-4000 version 1.
    I just want to understand what my Router is emailing me or telling me...
    The last message I received from my RVS-4000 was:
       Oct 30 13:44:09 - IPSEC EVENT: KLIPS device ipsec0 shut down.
    IPSEC EVENT sounds important. Whatever it is... And what is a KLIPS device ipsec0 shutdown????
    I have Log Levels 0-3 selected...
    Log Level
    Setting which level log Router should recorder. Level from 0 ~ 7 means:
    0: LOG_EMERG(system is unusable)
    1: LOG_ALERT(action must be taken immediately)
    2: LOG_CRIT(critical conditions)
    3: LOG_ERR(error conditions)
    4: LOG_WARNING(warning conditions)
    5: LOG_NOTICE(normal, but significant, condition)
    6: LOG_INFO(informational message)
    7: LOG_DEBUG(debug-level message)
    So, when I get any messages... I'm a little concerned. Because the RVS-4000 thinks it's an Error or better.
    What I would like from Cisco is the meaning of all level 3 or lower email messages my Router can send to me. So, that I can take the appropriate actions.
    I know Cisco inhered these Small Business Routers. When they bought Linksys. However, they have not discontinued them totally and they are still for sale. And Cisco has released a new version 2 of the same Router. So I believe Cisco should support them as well.
    Yes, I'm a pain to Cisco. However, I think you understand I'm being scared by my Routers messages to me... And would like some relief.
    Bruce

    Great suggestions. Problems is this is not the forum for your "wish list" as Apple does not read these USER forums.
    Send your feedback to http://www.apple.com/feedback/iphone.html

  • I can create an action but the droplet doesn't do anything when I drop a file on it.  I am running Adobe Photoshop CC 2014 on a 64bit Windows7 PC.

    I can create an action but the droplet doesn't do anything when I drop a file on it.  I am running Adobe Photoshop CC 2014 on a 64 bit Windows7 PC.  I exactly followed the steps on a youtube video on how to create an action and how to create a droplet.

    Thanks for the reply, I tried that but i wasn't able to get it to work. I also tried to see if l could using the
    function functionName()
    and I was still unable to.
    Silkrooster wrote:
    I haven't tried it yet, so i could be way off. But since you assigned it to a variable I would say it won't do anything until to call that variable. I would assume there must be a show command or similar that is needed for it to display.
    My experience is with actionscript and javascript but still I lean towards basic. I don't feel comfortable enough to say I am any higher yet as more experience is needed in my opinion.
    So feel free to take my advice with a grain of salt.

  • HT1338 I need to bulk upload to Auctiva (auction software) but Java was disabled on my computer. I have 10.5.8 so does this mean that I can't use Java? If not, then is there a workaround to be able to use the bulk uploader from Auctiva?

    I need to bulk upload images from iPhoto to Auctiva (auction software) that will then be posted to eBay; however Java was disabled on my computer some time ago due to "known issues."  I have 10.5.8 so does this mean that I can't use Java? If not, then is there a workaround to be able to use the bulk uploader from Auctiva? As it stands now, I have to upload photos individually which is super time consuming.

    You can re-enable it for special purposes, opposite of disabling it...
    Disable Java in your Browser settings, not JavaScript.
    http://support.apple.com/kb/HT5241?viewlocale=en_US
    http://support.google.com/chrome/bin/answer.py?hl=en-GB&answer=142064
    http://support.mozilla.org/en-US/kb/How%20to%20turn%20off%20Java%20applets

  • How can I get the selected action of content type by javascript from Firefox Options Applications?

    I works on my website, and it have to check the PDF file will be opened in which plugins
    So we have to implement some javascript to check the selected action of Content Type from Tool>Options>Application
    Do we have any javascript code to check this

    You can't check this with code that runs on the server or via JavaScript in the web page.
    Note that current Firefox version do not expose the built-in PDF Reader via the navigator.plugin array, so if you can't detect a plugin than maybe assume that the built-in PDF reader is used with Firefox version 19 and later.
    *Bug 840439 - Expose PDF.JS as a plugin navigator.plugins when enabled

Maybe you are looking for

  • Run HTTP File Server on Mac OSX Lion Server?

    Hello! I have a Mac Mini running Mac OS X Lion Server. I would like to be able to host a Web Server that runs within the built in Apache server that allows the transfer of files from Client to Mac Mini HD and vice versa using authentication from Open

  • Printer will only print from computer won't copy from printer

    My  printer will only print items that i send to it from y email. when i walk out to the printer and try to make copies the pages all come out blank no matter if i use the document feeder or place them on the glass directly. i have turned it off and

  • How similar is the performance and tuning 1z1-064 (12c) to the 1z0-054 (11g)?

    I had taken the Oracle 11g performance and Tuning class from Oracle. I am just wondering how close the 1z1-064 will be to the 1z0-054. I am also studying for the 1z1-064 exam. Are there any books out yet, or just the otn material. Thanks Roger

  • IDVD 6.0.2

    I have been trying to burn a DVD using the One Step DVD from a folder feature in iDVD 6.0.2. Every time I select a folder or file (usually a JPG image) I get the error message that this format is not supported by iDVD. But , when I ask what files are

  • Workbench setvalue

    setvalue step in workbench process: I am formatting the body of an email. I have a US mailing address. Name AddressLine1 AddressLine2 City State Zip In the setvalue, how can I move City State Zip up one line to AddressLine2 if AddressLine 2 is blank?