Help--Mapping multiple steps within ONE map in OWB 9.04 -

Hello all
I want to consolidate all the steps in one mapping. The following steps need to be conducted:
1. Import a flat file to become a external table (2 or more)
2. Map these external tables to apply some filter, cleansing process and then write the result another flat file.
3.From number #2 flat file result , I will map to a warehouse oracle tables.
Your response greatly appreciated

Since you are writing to a flat file target as an intermediate step, you might have to split the mapping in in two.
Two questions:
- Why do you want to have everything in one mapping? It might be better to have more than one mapping and then consolidate the process in a workflow that will contain them all. You could the define the dependencies and operation sequences between the mappings in the workflow.
- Why are you using a flat file as an intermediate step instead of a staging table?
Regards:
Igor

Similar Messages

  • Compiling multiple pictures within one image?

    Hi
    My wife uses her iMac for her work, and she's trying hard to compile multiple pictures within one .jpeg image. Is this possible with *iPhoto 2*, or are there any recommended (free if possible) downloads available to acheive this?
    Many thanks in advance.

    Garth
    Welcome to the Apple suer to user assistance forums
    iPhoto does not have the capability of combining photos - click here for a few that people like for image editing starting with free - or search Macupdate for others
    LN

  • Help using multiple computers and one shared external drive

    I just "bought" the new LR / PS combo special.  I have 3 computers, 2 PC's in seperate cities and a laptop that I use on the road. I would like to use an external hard drive as the main drive.  This way I could take the drive with me.
    2 Questions....First I tried to learn the basics using the internal hard drive on PC#2.  I then set up a external drive with multiple folders but within one main folder. I then started importing to the external drive using PC#2 (which is at my vacation property). Everything went smooth until I tried to import from that external drive,  It does not open that catalog. I am saving them as digital negatives.
    Question #2 which I have not tried yet is PC#1 which is my main home computer does not have LR.  I have years of photos in hundreds of files sorted in bridge that have to be renamed and put on the hard drive.  It does not have the latest version of PS and I have lots of money invested in plug ins. How can I get lightroom on that computer and will it talk to what I believe is the prior version of photoshop. I don't even want to think about all the plug ins.
    It's pretty clear that I am lost.  I was going to continue using bridge and PS but there is no bridge on the new version, at least not on the $9.99 special.  From what I've seen, LR is the way to go.
    HELP

    Mantis wrote:
    I was going to continue using bridge and PS but there is no bridge on the new version, at least not on the $9.99 special.  From what I've seen, LR is the way to go.
    Bridge should be included in the $9.99 bundle http://www.adobe.com/products/creativecloud/faq.html#pslr-bundle

  • Importing multiple domains within one run profile - keep running import even if domain cannot be reached

    All,
    I am facing an issue and spent time on research and discussions with my colleagues. All feedback is more or less the one I was feared of. So - you are my last hope :)
    Current setup:
    -    Run profile “DI” on AD-MA contains 60 steps (screenshot attached)
    -    Each step is related to a single domain within forest
    -   Currently domains are decommissioned step-by-step, as all user are migrated to a single root-domain
    -    We are not always informed that a domain was shut-down
    ==>    RESULT: In case that a domain could not be reached, either caused by a temporary issue or based on being decommissioned run profile is stopped immediately with error “no-start-connection” and all following steps are skipped. Means, in case
    that in step 2 of the profile domain cannot be reached following 58 domains are not imported.
    Question: I spend some time on checking for a solution on that, not yet successfully. Does anyone of you have an idea how to solve it? My idea, and I assume this is somehow possible, is to define error handling in FIM that enforces him to proceed with next
    step within run profile instead of skipping all following steps.
    Worst case work-around would be to defined a DI-run profile with a single step for each single domain – means 60 DI-run profiles :(
    NOTE: As the schedule for the migration is not yet finally agreed I would assume a time frame in years - so it is not a short term issue.
    Expecting worst case reply but not yet given up,
    Daniel
    Screenshot:

    Hello,
    beside the worst case reply i only have one idea.
    You could check domain connection by script, an if domain is not available, manupilate the AgentConfig XML file with a script, that removes the run profile information from it.
    After that you have to find a way to automate GUI work, i know there are some tools around but can't give a example, to initiate the update management agent function.
    Im not quite sure that this will work, just a stupid idea ;)
    Think the better way is to have seperate run profiles for each domain.
    Regards
    Peter
    Peter Stapf - ExpertCircle GmbH - My blog:
    JustIDM.wordpress.com

  • Trying to simplify multiple steps into one - please help

    I have a set up of steps to perform on 3 tables in order to populate two tables, please suggest best way (performance wise) to do this
    CREATE TABLE AE
      EID    VARCHAR2(100 BYTE),
      UKEY   VARCHAR2(1000 BYTE),
      TNAME  VARCHAR2(10 BYTE)
    CREATE TABLE TAB1V
      PID    VARCHAR2(100 BYTE),
      PUKEY  VARCHAR2(100 BYTE)
    (join ae and tab1v with this condition: ae.ukey = tab1v.pukey);
    CREATE TABLE PES
      EID    VARCHAR2(100 BYTE),
      UKEY   VARCHAR2(100 BYTE),
      TNAME  VARCHAR2(1000 BYTE)
    (join condition with other tables, use ukey)
    insert into ae (eid,ukey,tname) values ('eid1','ukey123','tname123');
    insert into ae (eid,ukey,tname) values ('eid2','ukey123','tname123');
    insert into ae (eid,ukey,tname) values ('eid3','ukey222','tname222');
    insert into ae (eid,ukey,tname) values ('eid4','ukey222','tname222');
    insert into ae (eid,ukey,tname) values ('eid5','ukey456','tname456');
    insert into ae (eid,ukey,tname) values ('eid6','ukey789','tname789');
    insert into ae (eid,ukey,tname) values ('eid7','ukey789','tname7891');
    insert into pes(eid,ukey,tname) values('eid2','ukey123','tname123');
    insert into pes(eid,ukey,tname) values('eid6','ukey789','tname789');
    insert into pes(eid,ukey,tname) values('eid5','ukey456','tname456');
    insert into pes(eid,ukey,tname) values('eid2','ukey123','tname123');
    insert into tab1v(pid,pukey) values ('pid1','ukey123');
    insert into tab1v(pid,pukey) values ('pid2','ukey222');
    insert into tab1v(pid,pukey) values ('pid3','ukey111');
    insert into tab1v(pid,pukey) values ('pid4','ukey456');
    insert into tab1v(pid,pukey) values ('pid5','ukey789');my goal:
    i have to populate two tables
    1. result_table
    CREATE TABLE RESULT_TABLE
    PID VARCHAR2(100 BYTE),
    UKEY VARCHAR2(100 BYTE),
    EID VARCHAR2(100 BYTE),
    TNAME VARCHAR2(100 BYTE),
    SRC VARCHAR2(4 BYTE)
    2. no_match table
    CREATE TABLE NO_MATCH
    PID VARCHAR2(100 BYTE),
    UKEY VARCHAR2(100 BYTE),
    my flow of logic:
    1. check all the rows that are common to both tab1v and ae table (by joining with ukey),
    if there are ukeys that are present in tab1v table, but absent in ae table, populate
    them in no_match table, I got this with below query
    select pid,pukey from tab1v
    where not exists
    (select ukey from ae
    where ae.ukey = tab1v.pukey);
    result of no_match table should be:
    pid3 ukey111
    for all those rows that match, probably populate in a staging table
    CREATE TABLE STG_TABLE1
    PID VARCHAR2(20 BYTE),
    UKEY VARCHAR2(100 BYTE),
    TNAME VARCHAR2(100 BYTE),
    EID VARCHAR2(100 BYTE)
    insert into stg_table1(pid,ukey,eid,tname)
    select a.pid,b.ukey,b.eid,b.tname
    from tab1v a, ae b
    where A.PUKEY = b.ukey
    2.After doing point 1, So if I find common rows in both tab1v and ae table (present in stg_tab1), pick up those records and check if they are present in pes table ?
    join stg_table1 and pes table with ukey again
    3. populate records found / and not found in point 2, do the following check and populate result_table
    for records found in both stg_table1 (in other words, present in both ae and tab1v) and pes, do the following check
    if each ukey has multiple same tnames attached to it (ukey123 has tname123, twice ), src should be A
    if there is unique tname per ukey (ukey456 has only tname456), src should be A
    if each ukey has multiple different tnames (ukey 789 has tname789 and tname7891), they should be populated and src column should be B
    result_table should be like below :
    PID     UKEY     EID     TNAME SRC
    pid1     ukey123     eid1     tname123 A
    pid1     ukey123     eid2     tname123 A
    pid4     ukey456     eid5     tname456 A
    pid5     ukey789     eid6     tname789       B
    pid5     ukey789     eid7     tname7891      B
    pid2     ukey222     null     tname222 A
    pid2     ukey222     null     tname222 A
    for records found in stg_table1 but absent in pes, populate the above table and same following check, but assign null to eid : (last 2 rows in above data)
    following can be used to find difference
    select pid,ukey,tname from stg_table1
    where not exists
    (select ukey from pes
    where pes.ukey = stg_table1.ukey);
    if each ukey has multiple same tnames attached to it (ukey222 has tname222, twice ), src should be A
    if there is unique tname per ukey src should be A
    if each ukey has multiple different tnames they should be populated and src should be B (none in my example data)
    I am getting the results in individual sql statements, but how do I populate result_table and no_match with above data, given the above source data with minimal sql statements and considering performace as a key factor ?

    Why so many unanswered questions? 66 (47 unresolved) . Are they really unanswered? Please review your 47 unresolved questions and give credit to the people with either HELPFUL or ANSWERED as appropriate. They will appreciate it.
    Please provide you 4 digit Oracle version number.
    In 11g you could use the INSERT ALL multi-table insert to do this: http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_9014.htm
    See the above doc at 'The next examples insert into multiple tables' where you will find this excerpt:
    >
    INSERT ALL
    WHEN order_total < 1000000 THEN
    INTO small_orders
    WHEN order_total > 1000000 AND order_total < 2000000 THEN
    INTO medium_orders
    WHEN order_total > 2000000 THEN
    INTO large_orders
    SELECT order_id, order_total, sales_rep_id, customer_id
    FROM orders;
    >
    This will let you insert into both tables with one query. Your query can use an OUTER JOIN between your tables so that the key value will be NULL when a record is not found. Then your WHEN condition will check the key value and if NULL will insert into one table and if NOT NULL will insert into the other.
    Should not be a need for a staging table. Try to modify the example in the doc for your tables.

  • Help with multiple devices and one ID

    I am sure this has been asked before but i apologize as I am new at all this.
    This is my issue...
    In April I bought my wife and iPad 2 signed up for an ID and started downloading apps..no problems at all so far.
    Within a month we had downloaded a bunch of apps for my 4 yr old.
    I bought another iPad 2 for my 4 yr old so he can use on his own. This is the issue, in my wives iPad we downloaded some paid apps and some free ones, some of them are games that have been advancing as he is playing them...my wife has also downloaded some paid games that she has been playing.
    So here is my dilema, can I sync my wifes iPad with iTunes and then move the apps that I want to my sons iPad?
    Also, will the move also include where he left off in the app...for example if this is like a building a zoo type of game and he has half of it built...will the move include his progress or will it make him start from the begining of the game?
    i dont want to use the same apps in two different iPads, i just want to transfer his to a new one and leave my wifes in her ipad.
    Please let me know if you need more information in order to help me.
    Thanks Again

    Have your wife transfer all purchases from the iPad into iTunes, backup her iPad and then sync with iTunes. Everything ... All media and other content will be available in that iTunes library and she will have a current backup.
    Assuming that your son will still be sharing your wife's Apple ID (he is too young to have one of his own) .... When you set up his iPad, restore the iPad from your wife's backup and then select only the content that you want your son to have on his iPad in the iTunes library and then sync that iPad with iTunes.
    The game progress is stored in the backup and should transfer onto his device when you restore from your wife's backup. You can always delete any content (apps, movies, music) that you don't want your son to have on the iPad, if you missed it when you synced with iTunes after setting the device up for him.
    You can set your sync preferences - any way that you want to - for both devices and still use the same iTunes library for both iPads. So ... Yes you can sync any apps that you want to his iPad and any apps that your wife wants to her iPad. You just need to restore your son's iPad from your wife's backup in order to get his game progress onto his iPad.
    In case you need these....
    Transfer purchases.
    http://support.apple.com/kb/HT1848
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    Remember to have your wife backup her iPad just before you restore his iPad from the backup so that his most recent progress will be available in the backup.

  • How can I make multiple quizzes within one Captivate project?

    Hi guys! Really liking Captivate 5.5, especially the way random question slides can lift questions out of a question pool...very elegant!
    Sadly though, I've come up against a bit of a wall. In my project, I want to have 3 separate quizzes that all use the same question pool; a 10, 30 and 50 question-long quiz. Each one needs to have its own results page.
    It's easy enough to see what I mean by looking at the screenshot below:
    The idea was to have about 105 slides in total, with slides 10 - 20 being the 10 quiz slide, 21 - 51 being the 30 question quiz and 52 - 102 being the 50 question quiz.
    There are three invisible buttons placed over those 10, 30, 50 text boxes. In the picture, the '10 question' button would jump to slide 10, the '30 question' button would jump to slide 21, and the '50 question' button would jump to slide 52, jumping the user to the start of their designated tests.
    Though I can create the 10 random question "block" easy enough, when it comes to adding the 30 question "block" it just adds the new random questions to the existing random questions. I want three separate quizzes, each with their own results screens please. (I don't want to daisy-chain to external projects, because the results of each test need to be used within the homepage.)
    It just adds them on to the existing block!! Argh!!
    Little bit ticked off with Adobe...the reason their products are so incredible is because they put no constraints on the user, and you can use their tools to create things even the developers never dreamed of. Like in Photoshop for example, I bet when the dropshadow fx was created, the developers never realised that it would be used to give a metallic 'stamped' look to text by turning it to white and applying it just inside the text.
    Captivate, though amazing most of the time, has a nasty habit of stomping on my toes. You can't set grade boundaries and have quizzes give out grades A+ to F- for example. You can only have 'pass' and 'fail', thus making it rather pointless for use in schools, contrary to how the program is advertised. Another example would be when I wanted to create a replay button. I thought that a button that jumped to the slide it was on would be a simple, no-BS replay button, but for some reason you can't make a button jump to its current slide. I downloaded a widget that worked in the end, but I wish Adobe would get off my back and let me do what I want!
    Anyway, if you could help me out here it would be grand

    I must say I have a little sympathy for the Captivate developers on this occasion.  As you say, they've created an application that does so much, that when you eventually run into a hard boundary of some kind, the effect is somewhat jarring.  However, every application, no matter how good, has limits.  I'm probably one of the worst offenders when it comes to asking the Adobe Captivate Development Team for enhancements (I think I've logged over 70 enhancement requests for Captivate 6 alone).
    In your case, you want to have three different quizzes in one project file, each with it's own separate Quiz Results page.  Lilybiri's blog explains how to set up your own faux Quiz Results pages using system variables and custom user variables, but you're going to find this to be quite a lot of trouble.  Even if YOU want to consider these as three separate quizzes, as far as Captivate is concerned they're just one big quiz with 50 questions.  So Captivate will calculate it's internal results based on a 50 question quiz, even if your users select the 10 question version.  So achieving a final Pass/Fail result is going to be problematic at best.
    As Lilybiri suggested, your better strategy would be to break this up into separate modules so that you can get your three separate quiz results (all done in standard Captivate) as well as correct results based on the actual number of questions done by the user.
    As far as grades A-F is concerned, there's nothing to stop you from using Advanced Actions and User Variables to calculate the user's score as a grade.  You need a user variable that stores the user's grade (e.g. var_Grade). And you need a fairly complex Conditional Advanced Action (e.g. caa_CalculateGrade) with several clauses each of which goes something like:
    If
    cpQuizInfoPointsscored is lesser or equal to [highest score for a particular grade]
    AND
    greater or equal to [lowest score for a particular grade]
    Actions
    Assign var_Grade with [the appropriate grade for that range of scores]
    Your conditional action will need one of these clauses for each separate grade.  Once your variable has been assigned a grade based on the user's score, you can display it in a text caption somewhere on the quiz results page or on a slide thereafter with suitable commendations/ commiserations.

  • Multiple titles within one project for sharing to iDVD

    Hello,
    I have about 90 minutes of video from Christmas.
    I want to create one iMovie project from this footage, but separate it into 5 different titles (within the project) each of which will have 2 or 3 chapters, so I can just share the one project with iDVD when burning to a DVD, rather than having to do 5 different projects.
    Is this possible?
    I've trying for most of the day to figure it out, but I can't.
    Can anybody help?
    Regards

    There are at least two ways to do this depending on what results you want:
    One way would be to create five separate iMovies; each with its respective 2-3 chapters and then import the five iMovies into iDVD.
    When you import the first one into iDVD, you will see its title and the options 'Play Movie' and 'Scene Selection.'
    When you import the second one, iDVD creates a title link to another submenu showing the Play Movie and Scene Selection options for the second movie; and so forth for each of the five movies.
    This gives you the five titles on the main iDVD screen, and the chapter options on the submenus. With this method you would not have a "Play All" option unless you import the entire iMovie as the first movie. Then, you would have the 'Play Movie' option (which you could rename as Play All Movies) with the five separate movies as title buttons linking to each one's Play Movie and Scene Selections.
    However, if you wanted all five titles and the chapter options to be on iDVD's main screen, you can do this with some copy/paste/delete manipulation of the submenus. If you wish to do this, post back for specific instructions.
    Second method would be to leave your iMovie as one long iMovie and create chapter markers for each of the five titles; and markers for each of the chapters within those titles. If you label the chapter markers correctly, a viewer will easily be able to see the organization of your iMovie.
    The chapters will appear on submenus...usually 4-6 chapters per submenu. I have done this with iMovies of trips where I marked the first chapter 'Italy: Rome' second 'Venice' third 'Milan' and fourth 'France: Paris' fifth 'Chartres' sixth 'Bordeaux' etc.
    This option will allow the iMovie to be selected in its entirety...the Play All option...as well as begin at whatever chapter is selected. By carefully manipulating the submenus, you could easily have each of the five divisions as separate submenus.

  • HT1206 Help on multiple devices within a family and 1 itunes account for music

    Help I have multiple devices, Iphone, Ipod, Itouch, Ipad, Nano. Some used by our kids and some used by use. How do I set the accounts so my contacts on my ipad dont go to my sons Iphone? We use one Itune music account for the family music but my ipad has a seperate account for downloads.

    I had this problem last night as well.  Only my daughter upgraded to iOS7 and she had an old phone of mine.  When she upgraded, the phone asked for my apple ID and then continued as normal.  However, after the upgrade, any text message that I recieved, she also recieved.  I am pretty sure my wife thought I was hammered when she started texting me and my daughter began answering her not having any clue what she was texting about.  Anyway, this only occurred with texts from other family members, not from texts I received from friends who are obviously not on our account (we have Verizon BTW).  To resolve this issue, and it isn't a short resolution.... there are two options...   One, simply erase everyting on the phone.... I don't like iTunes 11, so we were unable to back up her phone.  I made her go through her 600 photos, delete the ones she didn't want and email the ones she wanted to herself, and then we wiped the phone clean and rebooted it... go into Settings, General, Reset, Erase All Content and Settings.  The second option, if you have iTunes 11 is to back up the phones one at a time,  and then go into Settings, General, Reset, Erase All Content and Settings.  Either of these options wipes the phone clean of all information, text contacts pictures etc and then you have to re-enter all of your individual information.  When you do that, make sure that no one is on the same iTunes account.  Theoretically, after you do this, you plug back into your computer and SYNC your phone from the last back-up.  This resolved the problem for us.  I don't know if there is an easier solution, be we tried logging in and out of our iTunes Accounts, turning the power on and off, and nothing changed.  So, we had to go the more difficult route to avoid mass confusion with family texting.

  • Help with Multiple libraries and one storage location for files

    I cannot get an answer to this question anywhere and was really hoping that The [H] would be able to help.
    Here is my current set up that allows my wife and I to have completely independent libraries and ratings, but use the same files:
    -Shared folder with MP3s on a network drive.
    -Two PCs, each with it's own Ipod associated to it with individual libraries but all pointing to the same network share for MP3 Files.
    -Each PC is using the SAME Itunes account for downloads.
    -Each account has it's own library folder also on a network share.
    Now to my question(s)/problem with downloaded content:
    (1) Is there any way to have a file that is downloaded from Itunes be automatically placed in a shared location accessible to both Libraries? (Say if I download the latest Jack Johnson album, can it automatically show up in my wife's library and vice versa?)
    (2) Is there any way to share the album artwork versus having two copies of everything(one for each library)?
    So my goal is to have two libraries with a central location for ALL files, including anything downloaded from Itunes by each individual user. Is this possible?

    Have your wife transfer all purchases from the iPad into iTunes, backup her iPad and then sync with iTunes. Everything ... All media and other content will be available in that iTunes library and she will have a current backup.
    Assuming that your son will still be sharing your wife's Apple ID (he is too young to have one of his own) .... When you set up his iPad, restore the iPad from your wife's backup and then select only the content that you want your son to have on his iPad in the iTunes library and then sync that iPad with iTunes.
    The game progress is stored in the backup and should transfer onto his device when you restore from your wife's backup. You can always delete any content (apps, movies, music) that you don't want your son to have on the iPad, if you missed it when you synced with iTunes after setting the device up for him.
    You can set your sync preferences - any way that you want to - for both devices and still use the same iTunes library for both iPads. So ... Yes you can sync any apps that you want to his iPad and any apps that your wife wants to her iPad. You just need to restore your son's iPad from your wife's backup in order to get his game progress onto his iPad.
    In case you need these....
    Transfer purchases.
    http://support.apple.com/kb/HT1848
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    Remember to have your wife backup her iPad just before you restore his iPad from the backup so that his most recent progress will be available in the backup.

  • Multiple Assessments within one project

    Hi,
    Currently working on a project where I'd like to have 3
    assessments built in to the same project. The criteria I'd like to
    set is:
    On the first assessment, they need to pass to progress
    On the second they need to pass to progress
    On the third they get a total score and marked as compentent
    to complete.
    Is this possible?
    Cheers,
    Dean

    PR_098 - WELCOME to the all volunteer board. There is one
    cumulative score given at the end. There are not sub-scores.
    However, you might be able to say "you passed phase 1 and your
    score is 33.33% or 100% for that section. But that would be only
    one question giving you that ability. Then it would continue and
    score the next part the same way. At the end you would get the
    number of questions and the overall score. But I think you would be
    asking several questions per subsection and that would make this
    not work.
    If you were using an LMS, then you would just break this into
    courses that link to each other. A passes assessment would go to
    the end and a failed assessment would take users to the next
    learning module. At the end you would have individual scores., but
    you might be able to score a sub-module as a collective course with
    an LMS. I don't see this as a shortcoming of Captivate because it
    is not an LMS, yet it has a built-in Quiz module.
    Regarding the first post here by happystar73, that is
    possible, but the course would move on and score it at the end. I
    have designed several courses with:
    Slide 1
    Slide 2
    Slide 3
    Slide 4
    Quiz-Slide 5 - On fail go to slide 6 on pass go to slide 7.
    Slide 6 Failure - message, hints, etc then on Next> Back
    to Slide 1
    Slide 7
    Slide 8
    Quiz Slide 9 - On fail go to slide 10 on pass go to slide
    11.
    Slide 10 Failure - message, hints, etc then on Next> Back
    to Slide 7
    Slide 11 End / Score
    Notice the pattern. This is what is needed to loop-back in
    Captivate 2 (I don't have Captivate 3 due to ongoing bugs that must
    be fixed before I agree to upgrade). The loop-back that goes
    forward first is the only way that I can get multiple answer
    Multi-Choice questions to reset / clear for another try in
    Captivate 2. I usually set the maximum attempts at 10 or 20 when I
    do this (in the overall Quiz settings and in the Quiz slide
    settings and the user MUST take the Quizzes to continue).
    If you add to the above the Captivate 3 functionality for
    Quiz Pools and randomizing of answers, then you have something more
    dynamic. It still produces only one final set of results.
    The final method is to link several courses together where
    one calls another. But the scoring sould be presentation and not
    cumulative.
    More advanced users can use SCORM SCO editing tools and
    modify the behavior to allow multiple SCO's. There are tools that
    assist with this and one of the local (board) SCORM Guru's recently
    posted a website that has all of those tools.
    I think I just restated what is in many other posts on this
    site. However, Captivate is a fantastic screen capture tool for
    software simulations, demos and software proficiency assessments.
    When you are doing more of a PowerPoint and sound enabled
    presentation and need strict SCORM compliance, there are other
    options available (generally at a higher price).
    Best of luck to you on your projects.
    Joe C.

  • Can you have multiple Rates within one Work Center with multiple operations

    We have a work center called Pipeshop.   Within the Pipeshop we have multiple operations such as Welding, Threading, Cutting, Grooving etc.  Each of these operations have a different cost assoicated with them.  How can you have different cost for these operations? 
    Thank you,
    Loretta

    Hi,
    For this case you need to do following activities.
    1 Create individual activity accoding to requirement, that will be used for costing.
    2  Activity planning w r t work center.  In this cost per unit is declaring.
    3. Create Routing and modify the default activity type, w r t required activity type, suitable to operations.
    Now  Order is referring the activity type, refered in Routing rather than, work center.
    Regards
    Gururaja Hebbar

  • How to create multiple pages within one navbar entry

    I'm trying to revamp my site to include specific information and files for the classes I teach at the university. What I'd like to do is to have one entry on the navbar entitled "University Classes" or some such, and have it lead to a page where I can have a list of classes as links, each leading to its own page. Is it possible to do this, or do I need to create an entire new site for this purpose?

    To make the link to the second site be incorporated in to the navbar of the main site add a totally blank page in the main site and name it to indicate the classes site. Then put the following code in an HTML snippet on that blank page:
    <script type="text/javascript">
    parent.window.location = "URL TO PAGE ON SITE YOU WANT TO REDIRET TO"; </script>
    Thanks to Cyclosaurus for this code
    When that page is clicked on the visitor will be immediately redirected to the classes site. You can put a similar blank page on the classes site redirecting them back to the main site.
    OT

  • Need help with multiple links in one Flash file

    Hi, I have to do a banner which is basically 4 different
    slides that fade up and down, but the client wants each slide to
    link to a different place when the user clicks on it. I know how to
    create an invisible button to link the whole ad, but how would I
    link each slide? Thanks in advance!

    Am I getting no replies because this can't be done in Flash?
    Is there a better way to do it? Actionscripts perhaps?
    BTW, I'll have no access to the html page that the client
    will be putting the swf file on so I wouldn't be able to put any
    code around the file for linking, like if I did a bunch of jpg's
    and found a script on the web somewhere that would fade them up and
    down and link them. They want the linking built right into the swf,
    is this even possible? Thanks in advance!

  • Multiple screens in one frame

    Hi all,
    I'd like to know how to be able to display multiple screens within one frame. Depending on the choice made on the first screen, the second screen should be either "View Default" or "Modify Default." The modifying will involve a number of other screens.
    One idea is to group by Panel and control panels. Any better idea?
    Regards,
    Omer

    Do you mean multiple displays in one frame? If so, you have several options. With JTabbedPane you could dynamically add new views to the frame, with the disadvantage of only being able to see one at a time. JSplitPane allows you to nest various views within one frame, though has the disadvantage of having extremely complex display logic when several split panes are displayed at the same time, and of displaying all displayed panes simultaneously.
    Perhaps the best possibility is to use JDesktopPane, within which you can insert as many JInternalFrames as you want.

Maybe you are looking for

  • BO XI 3.1 installation and Upgrade activity Steps

    Hi Experts, Right now we are using BO XI R2 Version, Planning to uninstall XI R2 and do a fresh installation of BO XI 3.1 with SP3. Do I need to install the Java latest version for XI 3.1? Right now we have the following setting,          j2re1.4.2_0

  • Monitors for  a Power Mac?

    I just purchased a power mac G5 ( maybe 2 years old). Do I have to use an apple monitor? Or any one with a DVI connection thats just a little less expinsive.

  • Over-protected external HDs-now can't see them :(

    Folks I "protected" my External HDs in 'Ownership and Permissions" whilst my grandkids were wanting to "play" on my G5, but I must have overdone it because now I can't see them on my Desktop to UN-protect them! Can anybody help get 'em back, please?

  • Give me output of my program

    class A static Class B how to create an instance for inner class B

  • Project crashes when trying to save

    We have experienced this behavior occasionally, but when it happens it's very frustrating. MSP crashes when saving a project to the server. there is no recovery and all changes done till that save are gone. this happens when we work with the client.