Executing many mappings, when I want

Hello,
I have created 25 mappings that work as I wanted.
I would like to create something that execute all the mappings in an order I would have defined, to execute them when I want, instead of execute them one by one in control center. I can't use oracle workflow to schedule them because I want to execute the mappings when it is necessary.
Can I do that with OWB or do I have to create PL/SQL proc separately ?
Can I do that with 'expert' tools ?
Has someone had to do such a thing ? I don't know the way to find informations of what I want to do.
Thanks,
Nico

Something vaguely like this should do it....
CREATE OR REPLACE FUNCTION send_summary_mail 
return number
IS
retval number := 0; --default success
mailhost  CONSTANT VARCHAR2(30) := 'smtp01.us.oracle.com';
crlf      CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
pSender    VARCHAR2 := 'your.email@address';
pRecipient VARCHAR2 := 'their.email@address';
pSubject   VARCHAR2 := 'Process REsults for: '||to_char(sysdate,'dd/mm/yyyy');
mesg      VARCHAR2(32767);
mail_conn utl_smtp.connection;
cursor getResults is
select aramr.execution_audit_id,
       map_name,
       map_type,
       start_time,
       end_time,
       aramr.elapse_time,
       run_status,
       number_errors,
       number_records_selected,
       number_records_inserted,
       number_records_updated,
       number_records_deleted,
       number_records_discarded,
       number_records_merged,
       number_records_corrected
from all_Rt_audit_executions area,
     all_Rt_audit_map_runs aramr
where aramr.execution_audit_id = area.execution_audit_id
and   area.top_level_execution_audit_id =
          (select max(top_level_execution_audit_id)
           from   all_Rt_audit_executions
           where  execution_name = 'YOUR_PROCESSFLOW_NAME'
           and    parent_execution_audit_id is null --get top-level row      
           and    trunc(created_on) = trunc(sysdate) -- ran today
BEGIN
   mail_conn := utl_smtp.open_connection(mailhost, 25);
   mesg := 'Date: ' ||TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss') || crlf ||
           'From: <'|| pSender ||'>' || crlf ||
           'Subject: '|| pSubject || crlf ||
           'To: '||pRecipient || crlf || '' || crlf ||
           'Mapping                       selected  inserted deleted errors elapsed' ;
   for rec in getResults
   loop
      msg:=msg || rpad(rec.map_name,30)||
                  rpad(to_char(rec.number_records_selected),10)||
                  rpad(to_char(rec.number_records_inserted),10)||
                  rpad(to_char(rec.number_records_deleted),10)||
                  rpad(to_char(rec.number_errors),10)||
                  rpad(to_char(rec.elapse_time),10)||crlf;
   end loop;
   utl_smtp.helo(mail_conn, mailhost);
   utl_smtp.mail(mail_conn, pSender);
   utl_smtp.rcpt(mail_conn, pRecipient);
   utl_smtp.data(mail_conn, mesg);
   utl_smtp.quit(mail_conn);
   return retval;
EXCEPTION
  WHEN OTHERS THEN
    return 1;
END;I haven't tested this - heck I haven't even compiled it - and you will need to replace various variables, but the code is made up of bits and pieces from things that I know work.
Then you just add it to your process flow as a transformation activity at the end of the run.
--Mike
----------------EDIT--------------------------------
For more sample code for utl_smtp, AskTom has a thread here:
http://asktom.oracle.com/pls/asktom/f?p=100:11:3572874442534370::::P11_QUESTION_ID:1739411218448
And Oracle provided a demo package for mail tasks using utl_smtp here:
http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/maildemo_sql.txt

Similar Messages

  • When i want to return to my home page I click on the home icon and it resets the page to my home page but also open a blak tab which i don't want how can I stop this as i have too many tabs open.

    When I want to return to my home page after looking at a website I click on the home icon and it resets the page to my home page but also open a blak tab which i don't want.How can I stop this as I have too many tabs open and have to close all of them.

    You may have an unwanted extension that is modifying sites (or the toolbar area). Try this:
    Disable ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that flush the tab?
    Please report back on anything suspicious you find so others can learn about its bad behavior.

  • IPod classic displays 'No music' after sync, HDD problem? Geschiedenis • Verwijder  So recently I synced my iPod Classic 160 GB like I did so many times and when I wanted to play some music afterwards it couldn't find any files on the iPod anymore. H

    So recently I synced my iPod Classic 160 GB like I did so many times and when I wanted to play some music afterwards it couldn’t find any files on the iPod anymore. However when you look in the settings it displays that ~roughly 90 GB free space is available. Seen the fact that I had about 60 gigs of music this doesn’t seem like a coincidence and I think my music is still somewhere on the ipod but the HDD isn’t recognizing it anymore.
    I’ve tried resetting it, and resetting it to factory settings, which didn’t work. When connected to a desktop it won’t be recognized by iTunes, it displays an error message that the iPod cannot be read and that I have to reset it to factory settings.
    I’ve spent some time researching this problem yesterday and I ran into a myriad of vaguely similar problems didn’t really offer any help. Currently I’m thinking that formatting the iPod might work, and restoring the software afterwards. However this is a rather bold strategy so I’d like to consult you here first.
    Thanks in advance!

    Hi turingtest2,
    Thank you for the info, with formatting my iPod I managed to connect it to iTunes again.
    However..in the page you linked to there is a section about how transferring large amounts of data can dump your library. That seems to be the problem in this case. It won't even allow me to transfer more than 2 gigabytes of music per sync, if I go higher it will dump everything again. Having over >60 GB of music in my library, this is disastrous to say the least.
    Do you think that there is any other solution besides the method you mentioned involving Smart Playlists?

  • I have made many purchase on app but when i want to made an in-app purchase of a game, it appears "your purchase could not be completed". i have disabled the restriction already but it still doesn't work. anyone can give a hint or a hand here?  cheers~~~

    i have made many purchase on app but when i want to made an in-app purchase of a game, it appears "your purchase could not be completed". i have disabled the restriction already but it still doesn't work. anyone can give a hint or a hand here?  cheers~~~

    http://www.apple.com/support/itunes/contact/

  • On right mouse click, there is no "save as" or "copy image" when I want to save a pictureon line. I have to go back to IE to access this option. Is this not available? Many thanks, Joy

    On right mouse click, there is no "save as" or "copy image" when I want to save a picture on line. I have to go back to IE to use this option. Is this not available? Many thanks, Joy
    There are so many occasions on line when I want to save an image that I can't believe I can't do so using Firefox, which I find so good in all other ways. I can Bookmark, save a page or send a link, but not take a simple copy image.

    Hi, Many thanks for replying, it's much appreciated. I started Firefox in safe mode and found I had the full right click menu on a pic on my home page. However, after moving around the web, I've found that the problem still occurs in eBay and it doesn't make any difference in safe mode. still no full menu. After returning to normal mode, I find that this still stands i.e. I do get the full menu on other sites but not in eBay. As I often want to save a pic in Ebay and can do so in IE, I'm baffled as to why this one site is giving problems. As this is where I've mostly been trying to save pics, I didn't realise that it was a "one site" problem and not applicable to everywhere else. If IE didn't work in this respect, I could blame the eBay site, but it does, so that just makes it more puzzling - and very annoying! I have tried accessing Ebay direct, rather than clicking on the toolbar, but this makes no difference. Any further thoughts would be much appreciated. Joy

  • We have many mappings, which one is good in performance wise ?

    We have many mappings, which one is good in performance wise ?

    HI
    Different Mapping Techniques are available in XI. They are: Message Mapping, XSLT Mapping, Java Mapping and ABAP mapping.
    u2022The integration repository includes a graphical mapping editor. It includes built-in functions for value transformations and queue and context handling.  There is an interface for writing user-defined functions (java) as well.
    u2022XSLT mappings can be imported into the Integration Repository; java methods can be called from within the XSLT style sheet. Advantages of this mapping are: open standard, portable, extensible via Java user-defined functions.
    u2022If the transformation is very complex, it may be easiest to leverage the power of Java for mapping.
    u2022ABAP mapping programs can also be written to transform the message structures.
    Message Mapping
    SAP XI provides a graphical mapping tool that generates a java mapping program to be called at run time.
    u2022Graphically define mapping rules between source and target message types.
    u2022Queue-based model allows for handling of extremely large documents.
    u2022Drag-and-drop.
    u2022Generates internal Java Code.
    u2022Built-in and user-defined functions (in Java)
    u2022Integrated testing tool.
    u2022N:M mapping is possible.
    JAVA MAPPING:
    Usually Java mapping is preferred when the target structure is relatively complex and the transformation cannot be accomplished by simple graphical mapping.
    For e.g. consider a simple File->IDoc scenarion where the source file is a simple XML file, whereas the target file is an IDoc with more than one hierarchy level e.g FINSTA01. Content conversion in XI can only create a single level hierarchy, so in this scenario a Java mapping would come in handy.
    See these:
    http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10dd67dd-a42b-2a10-2785-91c40ee56c0b
    /people/prasad.ulagappan2/blog/2005/06/29/java-mapping-part-i
    /people/thorsten.nordholmsbirk/blog/2006/08/10/using-jaxp-to-both-parse-and-emit-xml-in-xi-java-mapping-programs
    When to use Java mapping
    1) Java mapping are used when graphical mapping cannot help you.
    Advantages of Java Mapping
    1)you can use Java APIs and Classes in it.
    2) file look up or a DB lookup is possible
    3) DOM is easier to use with lots of classes to help you create nodes and elements.
    Java mapping can be used when you have complex mapping structures.
    ABAP MAPPING:
    ABAP mappings are mapping programs in ABAP objects that customers can implement using the ABAP Workbench.
    An ABAP mapping comprises an ABAP class that implements the interface IF_MAPPING in the package SAI_MAPPING. The interface has a method EXECUTE with the some signature.
    Applications can decide themselves in the method EXECUTE how to import and change the source XML document. If you want to use the XSLT processor of SAP Web AS, you can use the ABAP Workbench to develop a stylesheet directly rather than using ABAP mappings.
    In ABAP mapping you can read access message header fields. To do this, an object of type IF_MAPPING_PARAM is transferred to the EXECUTE method. The interface has constants for the names of the available parameters and a method GET, which returns the respective value for the parameter name. The constants are the same as in Java mappings, although the constant MAPPING_TRACE does not exist for ABAP mappings. Instead, the trace object is transferred directly using the parameter TRACE of the method IF_MAPPING~EXECUTE.
    For more details refer
    http://help.sap.com/saphelp_nw70/helpdata/EN/ba/e18b1a0fc14f1faf884ae50cece51b/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5c46ab90-0201-0010-42bd-9d0302591383
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e3ead790-0201-0010-64bb-9e4d67a466b4
    /people/sameer.shadab/blog/2005/09/29/testing-abap-mapping
    ABAP Mapping
    /people/udo.martens/blog/2006/08/23/comparing-performance-of-mapping-programs
    https://websmp101.sap-ag.de/~sapdownload/011000358700003082332004E/HowToABAPMapping.pdf
    /people/ravikumar.allampallam/blog/2005/02/10/different-types-of-mapping-in-xi
    /people/r.eijpe/blog
    ABAP Mapping Vs Java Mapping.
    Re: Message Mapping of type ABAP Class not being shown
    Re: Performance of mappings (JAVA, XSLT, ABAP)
    XSLT Mapping
    XSLT stands for EXtensible Stylesheet Language Transformations. It is an XML based language for transforming XML documents into any other formats suitable for browser to display, on the basis of set of well-defined rules.
    /people/sap.user72/blog/2005/03/15/using-xslt-mapping-in-a-ccbpm-scenario
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
    The above menotined are the mapping present in the XI.
    When it is critical and complicate we go for the ABAP,JAVA or XSLt mapping. For simple Mapping we go for the graphical mapping.
    the selection of mapping also depends upon the requirement and alos on our scenario.
    cheers

  • Execute CDC mappings from a PL/SQL procedure

    Hi,
    I´m using OWB 11.2.0.2 for Linux. I´ve created some CDC mappings to update cubes with changes coming from other tables and cubes (from the tables that implement those cubes with the relational option). The issues are:
    - The CDC mappings run successfully from the OWB (Project Navigator - Start), but I cannot execute them from a procedure in PL/SQL with the following code:
    PROCEDURE "PROC_RUNCDCMAPPINGS" IS
    --inicializar variables aquí
    RetVal NUMBER;
    P_ENV WB_RT_MAPAUDIT.WB_RT_NAME_VALUES;
    -- ventana principal
    BEGIN
    RetVal:= BARIK.CDC_LOAD_CUBO_RECARGA.MAIN(P_ENV);
    RetVal:= BARIK.CDC_LOAD_CUBO_TOR.MAIN(P_ENV);
    RetVal:= BARIK.CDC_LOAD_CUBO_TOAE.MAIN(P_ENV);
    RetVal:= BARIK.CDC_LOAD_CUBO_VIAJES.MAIN(P_ENV);
    RetVal:= BARIK.CDC_LOAD_CUBO_TICKETINCIDENCIA.MAIN(P_ENV);
    RetVal:= BARIK.CDC_LOAD_CUBO_LIQMONEDERO.MAIN(P_ENV);
    RetVal:= BARIK.CDC_LOAD_CUBOS_LIQTEMPORALES.MAIN(P_ENV);
    COMMIT;
    END;
    It doesn´t report any error (the value for RetVal after execution is 0), but the cubes are not loaded with changes, and the changes stored in the J$_%tables are not consumed.
    Some of the options that may impact in the mappings are:
    - All the CDC are of Simple type
    - There are more than one subscriber to consume the changes, as for some tables, its changes must feed more than one CDC.
    - All the mappings include only one execution unit per mapping.
    - The integration/load template is the default: DEFAULT_ORACLE_TARGET_CT
    Other question is: As I explained, I need more than one subscriber because same updates must be consumed by different CDC mappings, to load different cubes, but I´ve not been able to assign the subscribers to only the tables associated with them, so all the subscribers are subscribed to all the changes in all the CDC tables, but as many of those subscribers never consume the changes of same tables, in the J$_% tables remains the not consumed records, and I haven´t found the way to purge those tables (other than the delete from J$_), nor to assign the tables with the subscribers (so the subscribers are only subscribed to their interested changes, that will be consumed, so the tables will be emptied after the consumption).
    Any help with these problems will be greatly appreciated.
    Tell me if more info is needed to clarify the situation.
    Best regards,
    Ana

    Hi David,
    Thank you for your reply.
    These mappings are the mappings needed to update the cubes with the changes detected by the CDC system, they are located under the Mapping Templates folder and I´m using code templates for the control of the loading and the integration (the DEFAULT_ORACLE_TARGET_CT) mapping.
    What I need is to execute these mappings within a PL/SQL procedure that will be invoked from different tools.
    I´ve done it for regular mappings (not CDC mappings), and it works. The code is the same as for the CDC ones:
    PROCEDURE "PROC_RUNLOADMAPPINGS" IS
    --inicializar variables aquí
    RetVal NUMBER;
    P_ENV WB_RT_MAPAUDIT.WB_RT_NAME_VALUES;
    -- ventana principal
    BEGIN
    RetVal:= BARIK.LOAD_CUBO_RECARGA.MAIN(P_ENV);
    RetVal:= BARIK.LOAD_CUBO_TOR.MAIN(P_ENV);
    RetVal:= BARIK.LOAD_CUBO_TOAE.MAIN(P_ENV);
    RetVal:= BARIK.LOAD_CUBO_VIAJES.MAIN(P_ENV);
    RetVal:= BARIK.LOAD_CUBO_TICKETINCIDENCIA.MAIN(P_ENV);
    COMMIT;
    END;
    -- End of PROC_RUNLOADMAPPINGS;
    ,and when I run it, the mappings are executed, but with the CDC ones it doesn´t (even when no error is reported).
    I know that they are deployed in the selected agent (in my case the Default_Agent), but when I start them from the OWB, the mapping packages are created in the DB schema, so, I thought that maybe I could invoke them....so what you tell me is that the only way to invoke them is from SQL*Plus? not from a regular PL/SQL procedure?
    Thank you very much,
    Ana

  • Transaction across many mappings.

    I have many mappings in my ETL and I need to have a transaction spreading over all mappings (I have many mappings and even if one fails I need to rollback all my mappings.). I know that by setting correlate commit to true I can have just one commit at the end of the mapping but this doesn't serve my purpose.
    I have thought of a workaround, tell me whether its OK.
    For example I have 3 mappings map1, map2 and map3
    Now if Map1 is through and and during Map2 the instance crashes. Now when the instance is up and running and again I start the ETL process but before executing the ETL process I ll have a pre mapping script which would check the return_result of the mapping in wb_rt_audit_executions. If its "OK" then it wud go ahead with map2 else it wud execute map1 then map2 and so on.
    Is this work around OK or do you have a better solution?
    thanks and regards,
    -Sharat

    You can achieve some of the things you are mentioning (which is restartability rather than cross-mapping transactions) by using a process flow and creating and maintaining a state table in your target where you will maintain the load process status information. Each and every mapping will then start by looking at this load state table and acting accordingly.
    Regards:
    Igor

  • My ipad 4 got in black screen, Itunes still recognize but throw me an error 4005 when i want to restore.

    my ipad 4 don´t turn on, I'm very stressed.
    Yesterday i took a photo and when I wanted to see it my ipad is restarted. took too long to turn on and turn off once was.
    I've tried many ways to change the lightning cable, pc change, restoring the apple mobile device usb, but itunes still throwing me the error 4005.
    I have proven with other software like redsnow but mark me the error as it does not support ios 7.1.2.
    when i connect the ipad in Itunes, it says me that my idevice is in recovery mode.
    when this happened it was the battery to 100 percent

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPhone, iPad, iPod Touch: Troubleshooting Touchscreen Response
    http://support.apple.com/kb/ts1827
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Restore errors 4005, 4013, and 4014
    http://support.apple.com/kb/TS5314
     Cheers, Tom

  • It is asking me for a password when I want to update my ipad, it has never done this before. I thought it ment my Apple ID but it didn't work and my ipad is now disabled. What should I do ? Is there a way of getting my password sent to me ?

    It is asking me for a password when I want to update my ipad, it has never done this before. I thought it ment my Apple ID but it didn't work and my ipad is now disabled. What should I do ? Is there a way of getting my password sent to me ?

    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • How do I execute some code when a line of a table control is selected?

    Hi,
    I would like to execute some code when a line of a table control is selected.  At the moment I have to select one or multiple rows and then press enter, this forces a screen refresh and my code is executed but I would like the code to be executed as soon as any line is selected.
    I've done something like this using ALV grids and object orientated code but is there a way of doing this in a normal non-OO table control?
    Thanks in advance.
    Gill

    Hi,
    U need to declare a char1 field for marking (mark field).  This will reflect with value 'X' in your tcontrol internal table for all the selected rows. 
    Now u need to handle the okcode for enter in your PAI.
    There u need to loop through the table for all marked fields.
    There after u can do what ever u want.
    Venkat.

  • What I have to do because when I want to automatically synchronize a tone, even 5 seconds pass and tells me that the session was unable to synchronize?

    I do because when I want to automatically synchronize a tone, even 5 seconds pass and tells me that the session was unable to synchronize

    Hi Jen.  My daughter just compleated her nursing program and is now working as a full time nurse.  Focus and study hard and soon you will be there too.  Now to the problem at hand.  I have the same problem.  I gave up on it and satisfied myself with my iPod without the upgrade.  Reason being I've read so many posts of people having problems after the upgrade.  But I'm sure other factors are involved.  Nevertheless here is the fix most say works to solve the problem:  What ever virus protection you have installed on your computer, disable it.  Then try to install the update. After that enable the protection. I had Kaspersky, and it does it's job well. The thinking is, the virus protection is blocking the upgrade.  Hope this works.   Charlie

  • On slide No. 13 of my Keynote presentation, I have varous pictures that go through automatically just as I programmed them, but if I I want to get by clicking to the next slide , it does not let me. How can I program so when I want goes to next slide?

    On slide No. 13 of my Keynote presentation, I have varous pictures that go through automatically just as I programmed them, but if I I want to get by clicking to the next slide , it does not let me. How can I program so when I want goes to next slide?

    Keynote is programmed to execute all of the effects in a build sequence before it will move to the next slide.
    If you want tobe able to move to the next slide at any time in a sequence of builds, you will need to set all of the builds on that slide to:  "on click". You will then need to execute each build by pressing the space bar or click the left mouse button for each object.

  • Why can't I minimize more than 2 notepads in FF? I used to be able to minimize as many notepads as I wanted. FF must have done an update & now I can't do that anymore. Is there a setting I can change that will enable me to do that?

    # Question
    Why can't I minimize more than 2 notepads in FF? I used to be able to minimize as many notepads as I wanted. When I do research on a topic I keep many notepads open until I am finished. FF must have done an update & now I can't do that anymore. Is there a setting I can change that will enable me to do that again?
    Also at that time, the length of sentence I am typing changed.
    It doesn't seem to have any limit to how far it can extend to the right.
    Please help. I am not very techy & don't understand Computerese.
    Please explain in everyday English.
    Thanks in advance,
    posy

    Hi Prabhuti,
    Thank you so much for all your suggestions & helpful links to get help. I am not very computer literate. I have taken many classes over the years I've had a computer but I am still only a beginner.
    I want to tell you that I found a solution to my problem. I finally realized that maybe FF was not the problem but Wind. 7 on my new comp. I went on the 7 Forums & found another person who had the same problem & the answer was simple all I had to do was to right click on the Notepad icon & it would bring up a new Notepad & I could open & minimize as many as I want. I had moved the Notepad icon to my taskbar from the Start menu when I got my new computer.
    I have one more question for you. The notepad 2 program was mentioned there along with several others. I think it was about that prog. that someone said that it could open many notepads & when you closed the comp. the notepads would not disappear. Do you know if it was that program? Also is it possible to use that program the same way as I used the original Notepad? There are so many technical options on that program that I didn't understand. All I want to do is open the Notepad & copy & paste my notes in it & minimize them. Not losing them if I shut down the comp. would be real benefit to me. I believe that is the same prog. you recommended to me. Since you seem to understand tech things I thought maybe you could tell me if that is possible?
    Thank you so much for all your help.
    posy

  • I have installled PE12,I have registrated it (serie number) and I have made an Adobe- ID. (I can find there my registrated product). Still, when I want to start the program, there is a screen that indicates that i have "to registrate PE within 7 days" , W

    I have installled PE12,I have registrated it (serie number) and I have made an Adobe- ID. (I can find there my registrated product). Still, when I want to start the program, there is a screen that indicates that i have "to registrate PE within 7 days" , When iI continuer (next sceen) there is a message that the proces can not proceed for "I need  an internet commection" which I have!!!! When this problem does not disappear  I have to contact Adobe ??.......  So please can you help me. I am already many hours trying to get started :-(

    CS2 is very old and reached its "end of life" a while back.  So probably won't run on modern operating systems.  If you can still run it, you'll need to uninstall what you have and re-install with the download link below to activate it.
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3
    Nancy O.

Maybe you are looking for

  • Trying to update the software for my iphone4 to the 4.3.2 version?

    I'm trying to upgrade the software on my iPhone4 to the newer 4.3.2 software version, when selecting to upgrade it prompts: "there are purchased items on the iphone that have not been transferred to your itunes library. you should transfer these item

  • Question about syncing two different iPads on 1 iMac?

    Hey all, I bought two iPad 2's today (both gifts, 1 for my mom and 1 for my dad). Bought it for them because they're probably too old at this stage for me to teach them to use a desktop efficiently. iPad is so easy for them to use the internet and li

  • BPC Logic Script: Copy from calculated members (non-base) to base members

    Hi experts, I want to copy some values from some calculated members to base members in the same dimension. It appears I have a hard time scoping the calculated members. This is my C_ACCOUNT dimension: And this is the COPYCALC.LGF script I am running:

  • Photoshop Elements 10 partially installed on "C" Drive

    During the install of PSE 10 I selected the software to be installed on my "D" drive and it executed that.  But during the install I noticed that it also installed many items on the "C" drive.  When I check later I found it had installed over 2GB of

  • X-Fi Elite Pro help plea

    I've just got an X-Fi Elite Pro, i slotted it into a spare PCI slot and booted into Windows XP. Windows loaded fine, I inserted the driver disk and installed all the software on it. I restarted. I get a window pop up saying "Multimedia Audio Controll