Topics on EP and the sequence to be followed

Hi ,
   I have explored a few topics on the development side of the portal and there are a few on my mind .What I wish to know is if I have to develop a team of delivery capability then in what sequence these topics are to be taken with the team . I am listing the topics below . Please guide as I have never been on a project on EP so I am not aware about the importance of these topics and the sequence to be followed while taking them up with a team .
Iviews : These include
Making iviews using standard templates available .
Making iviews using visual composer .
Making customised iviews using PDK(NDS and WAS) .
Webdynpro application
JSPDynpage
Business Packages
Integration of Third party applications
Configuring your mail server with the portal .Learning the configurational concepts of the exchange server .
BSP applications
HTMLB and tableviews
BISDK and XMLA
Using JCO and JCA
Knowledge/content management
Collaboration
TREX
If you have some other topics in mind please feel free to include here and also specify where do you wish to include them in the sequence . I need to know how do we go about this as it becomes quite confusing as to what to persue and with what importance as I have never faced a real time client requirements.
I AM LOOKING FOR AN EXPERT ADVICE HERE .
Regards
Deepak Singh

Hi deepak
I think you can go for this sequence
Making iviews(Making iviews using standard templates available .) and other pcd objects like worksets,pages etc..
Creating users,roles and Assinging  roles to users
Making iviews using visual composer.
Knowledge/content management
Customization of portal.
Webdynpro application
JSPDynpage,HTMLB and tableviews
Making customised iviews using PDK(NDS and WAS).
Using JCO and JCA
Creating systems
Configuring your mail server with the portal.Learning the configurational concepts of the exchange server .
Integration of Third party applications
Collaboration
TREX
Business Packages
BSP applications
BISDK and XMLA
Regards
Geogi

Similar Messages

  • Is there anyway to have Premiere Pro recognize the "in" & "out" points and the sequence's "home" (first frame) as edit points so that the up & down arrow work as short cuts on these areas?

    Is there anyway to have Premiere Pro recognize the "in" & "out" points and the sequence's "home" (first frame) as edit points so that the up & down arrow work as short cuts on these areas?

    Hey guys, I wrote a big long speech trying to be more clear and was just getting more confusing. LOL
    Hopefully this image makes my question a bit easier to understand. In green you can see how the up and down arrow keys land while in Final Cut. In red how they land while in Premiere. I'd like them to land like Final Cut. Thanks!

  • I am trying to export a video from Premiere Pro.  I have both audio and video checked and the sequence is active but only the audio exports.  There is no video at all.  Can anyone tell me how to get the video to export.  It was working fine until today.

    Premiere Pro CC has been working fine until today.  I have completed my sequence and it is active.  I have both audio and video checked when I am exporting using H.264 with Match Source Hi bitrate.  I am choosing entire sequence.  The audio exports but the video and title does not.  Can anyone tell me how to troubleshoot this so I can complete this project?  Please!

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Simple viewer won't export comments and the sequence is wrong

    I am stuck....
    I have added simple viewer on my site, but the comments of every photo are not there.
    - In iphoto i have added the comments with every photo.
    - With iphoto export, i made the simple viewer file. Everything works fine accept from the comments they are just not exported.
    - Also the sequence of the photo's are different in the simple viewer. It seems like the photo's are displayed (or exported) at random.
    Has anyone an idea how I can find a workaround and to get these two issue's solved?

    Hi Dhara,
    I've been working with Simple Viewer for a couple of weeks now (you can catch my posting and all the replies on the Boards).
    Regarding your issues, my recollections are as follows....but, remember I'm a novice and not an expert on this:
    1. Comments: Make sure that you check 'Use Comments' in iPhoto Export.
    2. Sequence of Photos: I had the same problem with this. I went back to my iPhoto folder and actually changed the file names to 1.jpg, 2.jpg, etc. Then, in iPhoto, I sorted the photos: View, Sort Photos, By Title. I had to move a few manually in the iPhoto display, as numerically sorted some fall out of 'order'. After saving this folder, run iPhoto Export and proceed as you did before.
    Again, I am a newbie...so maybe see if some of the 'gurus' on the Boards post a fix as well. And, let me know if this works!
    Good luck

  • Need help with SQL for selecting ID where the sequence does not match..

    I have the following dilemma:
    Database contains IDs as follows:
    Incident#, Case#, & Part Sequence#
    example
    Record 1
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 1
    Record 2
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 2
    Sometimes the user will delete (let's say) Record 2 after creating a new Record 3
    So now the sequencing goes as follows:
    Record 1
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 1
    Record 2
    Incident_Number = 123456
    Case_Number = 1
    Part_sequence = 3
    Now there will no longer be a Part_Sequence 2
    Need a SQL to select all records where the maximum part sequence > than the count of Incident_number||'-'||Case_number
    I tried the following:
    select a.incident_number||'-'||a.case_number||'-'||a.part_sequence
    from chsuser.a_compl_summary a
    where a.entry_date >= '01-may-2011'
    and max(a.part_sequence) > count(distinct a.incident_number||'-'||a.case_number)I end up getting a ORA-00934: group function is not allowed here (highlighting on the Max(a.part_sequence) portion.
    Any suggestions/hints
    Thanks

    select  incident_number || '-' || case_number || '-' || part_sequence
      from  (
             select  incident_number,
                     case_number,
                     part_sequence,
                     max(part_sequence) over(partition by incident_number,case_number) max_seq,
                     count(*) over(partition by incident_number,case_number) cnt
               from  chsuser.a_compl_summary
               where entry_date >= DATE '2011-05-01'
      where cnt != max_seq
    /SY.

  • The sequence of system modules & user-defined modules

    Hi Experts,
    can u help me clear about the execution sequence about system modules , user-defined modules & the adapter of XI/PI ??
    I presume the sequence is first adapter ,second own modules, finally system modules at the sender end. 
    and the sequence at the receiver end is first own modules , second system modules ,third adapter.
    im right?
    by  the way,  how about the sequence when the scenario is be setted to synchronization, specially the sequence of the
    response.
    thx in advance.
    Brian.

    http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/f13341771b4c0de10000000a1550b0/frameset.htm
    1. for async sender/receiver adapters, you use modules before the standard adapter module.
    2. for sync sender/receiver adapters, you can wither use modules before the standard adapter module (they will affect the request message) or after the adapter module (affecting the response message).

  • Can the sequence pass/fail status be controlled in Test Stand?

    I have a sequence that contains a DoWhile loop. Within the loop are 5 or 6 steps that are executed. If the result of those steps is a fail the loop runs again until it passes or meets its allowable number of iterations. My problem is that if an iteration fails and then passes the result for the sequence is failed. Can the pass/fail status be controlled via an expression etc? I know I can create a subsequence and loop in it with the properties. I am just curious to know if there is a way it can be done like I have explained.
    Thanks in advance for any help,
    Troy

    Troy,
    You might be able to use the RunState.ThisContext.SequenceFailed property.  Set this equal to False after your loop runs, and the sequence should report as if it passed.
    John B.
    Applications Engineer
    National Instruments

  • [OT] Geographical points and the distance between them

    I need to solve problems on the topic of addresses and the distance between them. I understand that I first need to convert an address into a pair of longitude and latitude. After my reading so far, I can use a GIS DB to achieve this goal. That is a lot of work since the issue is only one aspect of the application development. Does anyone know any other approaches?
    Thanks.

    [http://lmgtfy.com/?q=java%2Bcode%2Bdistance%2Bbetween%2Blatitude%2Blongitude%2Bpoints]

  • Anybody having problems in Mail when sending reply messages from a thread and the message is not showing in the Sent mailbox?

    Hello Folks;
    Got a weird one...
    I am sending replies from a thread in Mail and they seem to have been sent (sounds) but they don't show in the Sent mailbox... O-0 These messages seem to have been delivered to cyberspace as they don't show in my Sent mailbox on my IMAP server... This has been happening for the last month... I have checked and verified all of my IMAP settings and Mailbox behavior settings... This is really weird and maybe a bug.... I checked all of my other clients that have access to the server on the same account and these messages do not show there either.... Any ideas?
    --prd54usa

    The messages are getting to the recipient...
    I am on a Comcast IMAP server if this has anything to do with it and the server settings are following the correct server port numbers, SSL settings, etc... I save Sent messages on the IMAP server for 90 days.... None of these "disappearing" messages were on the server for more than a couple of days.. Typically, these messages will get 'hung' in the Outgoing Mailbox for @30 seconds before sending... like they are being scanned for viruses or Mail can't connect to the server all of a sudden...
    I anybody else here is on a Comcast IMAP server, and having this problem of disappearing Sent messages... This would tell us that it might be a Mail Provider issue with their outgoing server...
    --prd54usa

  • Problem with the browse sequence back and browse sequence next widget placed in the screen layout

    Hi,
    Some basics: We are using Robohelp 10 to  generate multiscreen  html5 output. We used the pharmaceutical  screen layout downloaded from:  http://helpx.adobe.com/robohelp/robohelp-screen-profiles-layouts.html but modified it to match our GUI.
    We are having a problem with the browse sequence back and browse sequence next buttons placed in the screen layout from the widgets tool bar. We are in no way experts at this part of Robohelp...and the css portion of all this is a bit of mystery but we have managed to get mostly what we need. Now we just need these buttons to work. In the past we used Airhelp and things worked great. Can anyone help us understand why the sequence buttons are not showing up in the output even though it does in the topic preview?
    Also
    This shows up in the  layout.css file:
    a.wBSBackButton {
                    margin: 0 8pt 0 0;
                    padding: 0;
                    background-color: transparent;
    img.wBSBackButton {
                    border: none;
    a.wBSNextButton {
                    margin: 0 8pt 0 0;
                    padding: 0;
                    background-color: transparent;
    img.wBSNextButton {
                    border: none;
    Also btw, I forgot to mention that we are linking our FrameMaker files.
    Appreciate the help.
    Thanks!

    hi pradeep
    It does not happen but if you Wait for a while that may be solved

  • How to open a message popup and keep the sequence running ?

    I have some steps in my sequence to initialize communication ports that takes a few seconds. As i have the trace off i want to display a message popup to tell the user that the sequence is doing the init. After the init steps are done i want to close the popup out of the sequence without pressing any button.
    Is there a possibility in TestStand to do this ?
    The normal Message popup stays until a key is pressed and even pauses the sequence while active.
    Thank for help.

    You could call your message popup in a subsequence as new execution and terminate this execution programmatically after your init steps have finished.
    In order to do this you have to specify (module) the sequence call step that calls your subsequence:
    -Multithreading and Remote Execution = Run in a New Execution
    -Settings: Initally Hidden and Tracing disable, Restartable, Close Window when done, Wait for Execution to complete: Do not wait, Process Model Option: Do not use a Process Model
    -Store an Object Reference to the New Execution in: e.g. Locals.ExecutionRef
    After your Init steps you insert a ActvieX/COM Action Step that terminates the new execution:
    -Object Reference: Locals.ExecutionRef
    -Automation Server: NI TestStand API 3.1
    -Object Class: Execution
    -Call Method or Access Property: Call Method
    -Method: Terminate
    This will terminate your new execution showing the message popup.

  • My 2008 Mac Pro running Lion will not play HDV1080i60 footage in FCP 7. When I open the sequence settings, all HDV codecs are hdv1, hdv2, hdv3, and so forth. Anyone have any idea how to fix this?

    My 2006 - 2008 Mac Pro running Lion will not play HDV 1080i60 footage in FCP 7. When I open the sequence settings, all HDV codecs are hdv1, hdv2, hdv3, and so forth. However, when I open the project on my other Mac Pro running Snow Leopard and FCP 6, the footage works fine as it does on my newer Imac running Mavericks and FCP 7. I have tried a Quicktime update on the Mac Pro that the footage doesn't work on but it says that I already have the newest version of Quicktime installed. I have also tried reinstalling the Final Cut Pro Studio twice, still no fix. I'm completely out of solutions and need to be able to edit HDV footage on this machine. Any help would be great. Thanks.

    there was a recent software update that seemed to screw HDV up.  Do some searching here over the last month or 2 and you'll find a bunch of posts and some possible solutions.
    Worst case scenario, do as Shane suggests.  But might I suggest you take a look at the user tips section of the forum.  there are some great tips on how to prevent these sorts of problems by cloning your startup drive, etc.

  • What is the correct way to use Version Informatio​n from the sequence and from the deployment tool

    I seem to be missing something in how the various version numbers are supposed to be used.    My end goal is to log and possibly display in the UI the version of the sequence and which installer version was used to inspect a UUT.   I have gotten most of the way there using:
     How Can I Programmatically Query the Sequence File Version of My TestStand Sequence? 
    and logging this into the report with a function which contains:
    Parameters.UUT.AdditionalData.SetValString("Test Version",1,RunState.SequenceFile.Data.Version),
    Parameters.UUT.AdditionalData.SetFlags("",0,PropFl​ags_IncludeInReport)
    The "Deployment Version" in the TestStand Deployment Utility auto incrementing the 3rd position of a version number  while the sequence auto increment is working on the 4th.   
    My first question is are these 2 version numbers in anyway supposed to be related to each other?   As it seems to me you would want those 2 reversed, I can make several installers based on sequence version X, making changes to what supporting files are also installed.
    If they are not related as I suspect that they are not.  How do I programatically grabed the installer version and also log that into the result report?   
    is there an option to perform a custom deployment build step to log the deployment version before it builds and then reference that log at runtime of the test?

    Hi,
    The sequence file version and deployment versions are not related.
    You can build the installer with whatever version you want using the command line :
    https://decibel.ni.com/content/docs/DOC-38947
    Hope this helps,
    Ravi

  • Project renames sequence and all clips in the sequence when a clip is added

    My project is renaming my sequences and the clips in those sequences whenever I add a clip. For example, I have a sequence called "dance section 2", which contains 20 some-odd clips with various names. When I add a clip named "drop from above", the name of the sequence is changed to "drop from above", and the name of every other clip in the sequence is also changed to "drop from above" (video, audio, stills, everything). When I add a clip named "spins", all the names are changed to "spins".
    The name of the sequence is changed in both the timeline and the browser, but the names of the other clips are changed only in the timeline. In the browser, they keep their old names. The exception to this is the last clip added before the name changer. For example, if I add "drop from above" to the sequence, and then add "spins", the clip named "drop from above" is renamed "spins" in the browser as well as in the timeline, but the other clips are renamed only in the timeline.
    The clips in the sequence also keep their original content - so the sequence looks the same as it did before, but all the names of the clips are changed.
    This is only happening in one project. All of my other projects are working fine.
    I've tried restarting and deleting preferences. I've also looked at the autosave vault for the project. The backup projects saved after a certain time all behave the same way, and the projects before that time all behave normally. I can't imagine what would have caused this, though, since I've been working on this project all day and nothing's happened to my computer or hard drive or anything.
    Also, there are no freeze frames at the beginnings of my sequences (I read another thread with a somewhat similar issue and getting rid of freeze frames seemed to help that person).
    I'm in FCP 7.0 on a Macbook Pro.
    Thanks in advance for your help!

    Welcome to the discussions...
    I've had this happen. My guess is that it's related to round-tripping to/from Color, but I can't be sure. IMHO, the sequence is corrupted. I just dealt with it for a while, then rebuilt it by making changes from an earlier version.
    Sorry I don't have a better solution, but at least you know you're not alone.
    Patrick

  • I am having problems copying and pasting clips from one project timeline to another. When I do this they often alter in length. Sometimes by two frames. Other times they lose a chunk off the end of the last clip in the sequence. Has anyone else found

    I am having problems copying and pasting clips from one project timeline to another. When I do this they often alter in length. Sometimes by two frames. Other times they lose a chunk off the end of the last clip in the sequence. Has anyone else found this?

    You need to give a lot more information about the media specifications and the project properties you're using in the different projects.

Maybe you are looking for