PHIRE Architect for PeopleSoft project migration

Hi,
Does any one has document/detailed information on PHIRE Architect which is used to migrate PeopleSoft projects?
Please share with me.
[email protected]

Phire's website is www.phire-soft.com. We are considering replacing Quest Stat! with Phire Architect, later this year, or next year, for PeopleSoft change management. It is much cheaper and has the same or better functionality. Their staff is also very responsive and I usually receive a response within one day.

Similar Messages

  • Peoplesoft Project migration from version(PT8.48) to lower version(PT8.45)

    Hi all
    I would like to know the migration of a project from higher version to lower version
    for example PeopleTools 8.49 or 8.48 to PeopleTools 8.43 or 8.44 or 8.45
    and the application HR 9.0 or8.9 to HR8.8
    Any idea of this !
    Look forward to here you.
    Thank You.

    jim.marion wrote:
    I believe the ini file Nicolas is referring to exists when you export a project to file (I didn't see mention of exporting the project to a file in this thread).
    If you export a project to a file, then you should be able to import it into another tools release. If you do this, just be sure the project does not contain any PeopleTools definitions.Yes, this is what I was refering to, copy project to a file, modify the .ini (at least that was required on old PT version) as I explained before importing into target. Note if I already tested many time to move project from lower to higher PT version with this methid I never tested it from higher to lower version.
    Furthermore, need to be tested, validated, and I'm not really sure it is a supported way (modify PT release in .ini file) to copy project accross version.
    Nicolas.

  • What Is The Proper J2EE Architect For This National Defense Project?

    A brief description of a national defense project I am looking into is that the system being developed is supposed to verify the "smartcard" of the card holder and his/her fingerprints against the Defense Department database. The system also reads in information about people (facial features, height, weight, etc.) and stores the information in the database, and then issues new "smartcard".
    1. People involved in the project already decided to use swing for the client tier.
    2. The problem is the Defense Department database. It is a flat file database and this database cannot be touched. It is a black box for Java developers. The Defense Department may provide a jar as an outer layer of this database.
    Question 1: Is the web tier essential for this defense project?
    Question 2: What is the proper J2EE architect for this project?
    Question 3: How to deal with the data problem? Especially it looks that entity beans are not applicable.
    Question 4: How does the system handle very heavy load? It is possible that tens of thousands of people will use the system at the same time.

    A brief description of a national defense project I am
    looking into is that the system being developed is
    supposed to verify the "smartcard" of the card holder
    and his/her fingerprints against the Defense
    Department database. The system also reads in
    information about people (facial features, height,
    weight, etc.) and stores the information in the
    database, and then issues new "smartcard".
    1. People involved in the project already decided to
    use swing for the client tier.
    2. The problem is the Defense Department database. It
    is a flat file database and this database cannot be
    touched. It is a black box for Java developers. The
    Defense Department may provide a jar as an outer layer
    of this database.
    Question 1: Is the web tier essential for this defense
    project?
    Question 2: What is the proper J2EE architect for this
    project?
    Question 3: How to deal with the data problem?
    Especially it looks that entity beans are not
    applicable.
    Question 4: How does the system handle very heavy
    load? It is possible that tens of thousands of people
    will use the system at the same time.
    Hi,
    You can get it done here :http://www.thesoftwareobjects.com

  • Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?

    Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?
    I found one such tool "Fortify" in the below link. Are there any such kind of tools available which supports SharePoint?
    Reference: http://www.securityresearch.at/en/development/fortify/
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Hi Amalaraja Fernando,
    I'm not sure that there is one more tool that combines all these features. But you may take a look at these solutions:
    SharePoint diagnostic manager
    SharePoint enterprise manager
    What is SPCop SharePoint Code Analysis?
    Dmitry
    Lightning Tools Check
    out our SharePoint tools and web parts |
    Lightning Tools Blog | Мой Блог

  • Need sample ALSB project migration to OSB 11g environment

    Hi
    I'm looking for sample ALSB project migration to OSB 11g environment and as well as steps to automate deployment of OSB 11g projects by using WLST
    Can some one please help me out in regards to the same
    Thanks
    Ram.S

    Please find the build.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <project name="ConfigExport">
    <property file="./build.properties"/>
    <property name="metadata.dir" value="${workspace.dir}/.metadata"/>
    <property name="domain.export.script" value="export.py" />
    <property name="domain.import.script" value="import.py" />
    <path id="library.osb">
    <fileset dir="${osb.home}/modules">
    <include name="com.bea.common.configfwk_1.6.0.0.jar"/>
    <include name="com.bea.core.xml.xmlbeans_2.2.0.0_2-5-1.jar"/>
    </fileset>
    <fileset dir="${weblogic.home}/server/lib">
    <include name="weblogic.jar"/>
    </fileset>
    <fileset dir="${osb.home}/lib">
    <include name="alsb.jar"/>
    </fileset>
    </path>
    <taskdef name="wlst"
    classpathref="library.osb"
    classname="weblogic.ant.taskdefs.management.WLSTTask"/>
    <target name="exportFromOSB">
    <wlst fileName="${domain.export.script}" debug="true" failOnError="false" classpathref="library.osb"
    arguments="${wls.username} ${wls.password} ${wls.server} ${export.project} ${export.jar} ${export.customFile}">
    <script>
    adminUser=sys.argv[1]
    adminPassword=sys.argv[2]
    adminUrl=sys.argv[3]
    exportJar = sys.argv[5]
    customFile = sys.argv[6]
    passphrase = "osb"
    project = sys.argv[4]
    connect(adminUser,adminPassword,adminUrl)
    domainRuntime()
    </script>
    </wlst>
    </target>
    <target name="importToOSB">
    <wlst fileName="${domain.import.script}" debug="true" failOnError="false" classpathref="library.osb"
    arguments="${wls.username} ${wls.password} ${wls.server} ${import.project} ${import.jar} ${import.customFile}">
    <script>
    adminUser=sys.argv[1]
    adminPassword=sys.argv[2]
    adminUrl=sys.argv[3]
    passphrase = "osb"
    project=sys.argv[4]
    importJar=sys.argv[5]
    customFile=sys.argv[6]
    connect(adminUser,adminPassword,adminUrl)
    domainRuntime()
    </script>
    </wlst>
    </target>
    <target name="exportFromWorkspace">
    <!--delete failonerror="false" includeemptydirs="true"
    dir="${metadata.dir}"/-->
    <java dir="${osb.home}/lib" classpathref="library.osb"
    jar="${eclipse.home}/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar"
    fork="true" failonerror="true" maxmemory="768m">
    <jvmarg line="-XX:MaxPermSize=256m"/>
    <arg line="-data ${workspace.dir}"/>
    <arg line="-application com.bea.alsb.core.ConfigExport"/>
    <arg line="-configProject ${config.project}"/>
    <arg line="-configJar ${config.jar}"/>
    <arg line="-configSubProjects ${config.subprojects}"/>
    <arg line="-includeDependencies ${config.includeDependencies}"/>
    <sysproperty key="weblogic.home" value="${weblogic.home}"/>
    <sysproperty key="osb.home" value="${osb.home}"/>
    <sysproperty key="osgi.bundlefile.limit" value="500"/>
    <sysproperty key="harvester.home" value="${osb.home}/harvester"/>
    <sysproperty key="osgi.nl" value="en_US"/>
    <sysproperty key="sun.lang.ClassLoader.allowArraySyntax" value="true"/>
    <sysproperty key="osgi.bundlefile.limit" value="750"/>
    <sysproperty key="middleware.home" value="${fmw.home}"/>
    </java>
    </target>
    </project>
    With the target:importToOSB,I was able to successfully import into OSB11g environment
    but with target:exportFromOSB or exportFromWorkspace I'm unable to export from OSB11g environment
    to my local directory
    So my intention is to get the OSB11g exported into my local directory
    Can you please help me out in getting this resolved
    Thanks
    RS

  • Java Project migration from Eclipse (3.2+) to JDeveloper (11.x)

    I want to import/modify an Eclipse's java project into JDeveloper and use it. I see that there are some fundamental differences between the Eclipse and JDeveloper projects. Some of the differences like plugin.xml vs extension.xml, non-existance of .classpath and etc... makes it little difficult to take a Eclipse's java project and import it in to the JDeveloper to make it work. I am hoping that there is a mapping between the Eclipse's plugin.xml, JDeveloper's extension.xml, so that project migration is easier among these.
    Of course i have limited knowledge of JDeveloper, so would like to get some expert's opinion on this. Any automatic plugin or any sorts of tips or advise is appreciated.
    Edited by: SureshKrishna on Jan 19, 2009 8:52 AM

    When i import the source code and try to compile i get huge number of compilation errors as below. Below are only few examples. I have set the external libraries and jars for all the related projects. Any idea or pointers why the code with Generics has problem.
    Thanks,
    Krishna
    Error(466,27): method load(com.xxx.base.api.datatypes.EntityId<?>) not found in class com.xxx.base.support.schema.MaintenanceObjectInfo
    Error(234,50): method copyEntity(E, java.util.Map<java.lang.String,java.lang.Object>, com.xxx.base.api.datatypes.EntityId<E>, com.xxx.shared.environ.DataElementDefinition, java.lang.String) in class com.xxx.base.domain.common.metaDataUserInterfaceReference.MetaDataUserInterfaceReferenceMaintenance_Gen cannot override method copyEntity(E, java.util.Map<java.lang.String,java.lang.Object>, com.xxx.base.api.datatypes.EntityId<E>, com.xxx.shared.environ.DataElementDefinition, java.lang.String) in class com.xxx.base.support.pagemaintenance.AbstractPageMaintenance with different return type, was E
    Error(58,38): incompatible types; found: class com.xxx.base.api.datatypes.StringId<com.xxx.base.domain.common.metaDataService.MetaDataService>, required: class com.xxx.base.domain.common.metaDataService.MetaDataService_Id
    Error(229,49): method createDTO(java.lang.Class<T>) not found in interface com.xxx.base.support.context.Session
    Error(54,49): type parameter E is out of bounds
    Error(41,37): method getInfo(com.xxx.base.api.datatypes.EntityId<?>) not found in interface com.xxx.base.domain.common.foreignKeyReference.ForeignKeyReference

  • Template project migration

    Hi,
    I have some doubts in project migration,
    In my new team they are saying some template migration and this is really new to me. Below is the process
    1). Compare the project between databases
    2). Uncheck the upgrade check box, but action is copy
    3). copy project definitions is checked
    4).and usual migration steps
    Can anyone help me , If we did like this only the definition is getting migrated?
    and for project copy to file , I hope action should be copy and upgrade box should be checked. Please clarify

    Hi Ranjit,
    The project contents will only be migrated to target database if the action is copy and upgrade flag is checked. If you uncheck the upgrade flag the objects will not get migrated.
    And yes, the way you are doing i, only the Project Definitions will be migrated.
    Thanks

  • Pick the true statement about a PeopleSoft project

    Hi,
    Pick the true statement about a PeopleSoft project
    1) Merging projects will merge the objects of 2 projects to one and removes the other project
    2) Project creation is not mandatory to migration a project
    3) All details of a project including the object details reside in PSPROJECTDEFN
    4) Deleting a project in App Designer has no implications on the corresponding objects in the database

    I had the same idea
    I was answering one question and when I came back to the forum my entire screen was full of questions.
    At least it is multiple choice, so we can guess, 25% change if being correct.

  • How to display PeopleSoft Project's Components and Pages ?

    Folks,
    I have just set up PIA and Process Scheduler in Windows Server 2003.
    " http://127.0.0.1/psp/ps/?cmd=login " can get to PeopleSoft Login page. After I login using my PeopleSoft Database UserID and Password, the browser displays "http://127.0.0.1/psp/ps/EMPLOYEE/PT_LOCAL/h/?tab=DEFAULT" that is MENU page with Search box. I can open every item in the Menu page.
    But when I try to open my project's component and page, the browser cannot display them. I got the message as follows:
    "http://127.0.0.1/psp/ps/myComponent" display the message: Could not open Registry. Registry Name: myComponent.
    "http://127.0.0.1/psp/ps/myPage" display the message: Could not open Registry. Registry Name: myPage.
    Can any folks tell me how to open myProject's components and pages in Browser so that I can input/retrieve data into/from PeopleSoft Database ?
    Thanks.

    >
    >
    I have registered each component using Registration Wizard in Application Designer. Since each Menu holds a Component, the Menu is also registered while registering its Component. So far, I can access each component online using the URL: http://127.0.0.1/psp/ps/NodeName/PortalName/c/MenuName.ComponentName.GBL
    But I want to create a Menu for my project as a hierachical tree ( Project -> Item1 -> Component1, Compoent2, ...),
    and I want the project Menu appears in PeopleSoft left hand Menu navigation so that a user can simply click on it to access a component and don't need to type in the above URL. Please answer me 2 questions:
    First, how to make the project Menu appear in PeopleSoft left hand Menu navigation ? I am still not sure what you are trying to do(It is surprising that you registered the component and still dont have it in the main navigation; did you run the portal security sync process?? ).
    If it is all a matter of having a hierarchical structure, then you can create folders and subfolders and register each item accordingly(into different folders and subfolders as you want)
    Second, if need to register each Menu seperately again, how to do it ?Delete entries for content references that you added earlier while registering(by navigating to portal), as well as the entry from permission lists. After that you should be able to register again.

  • JavaFX Project   Migration from 1.3 to 2.0

    Hello,
    after considering several solutions, my company finally decided to use JavaFX.
    Our product is currently using JavaFX 1.3, it's been a hard work to do it, and we have many lines of code in JavaFX Script. It's been a surprise for us that JavaFX is going to be no longer supported, so we are a bit sceptical of migrating to 2.0 because it will suppose a lot effort.
    One tool which have helped a lot in our development has been the gui builder provided by NetBeans to create the interface, and it was an important advantage which helped in the final decision of using JavaFX, I guess many JavaFX users decided to change to JavaFX for the same reason.
    We've been testing the new JavaFX 2.0, but the NetBeans plugin for JavaFX 2.0 doesn't include any builder, so everything needs to be done in code without any WYSIWYG editor.
    In our final decision of keeping JavaFX for our project or leave it, we need to know if NetBeans or another IDE is planning to implement a builder and when.
    Can anyone response these questions? I'll appreciate if someone can give me any email to contact the developers/responsible of JavaFX to get any official answer.
    Thanks for your help and time.

    If you want to continue doing stuff in JavaFX script, you can without worrying about a deprecated language. The visage project took it over: http://code.google.com/p/visage/
    If you would rather convert to the normal Java APIs, I have heard a rumor about some conversion tool: http://www.gerbrand-ict.nl/2011/02/javafx-2-0-by-roger-brinkley/ , I don't know when it is coming out.
    As to Netbeans... They will almost certainly come out with a GUI design tool sooner or later. As to when, who knows?

  • Solar project migration

    Hi,
    I have solman 7.0 ehp1  SPS27.
    We have been using our implementation project for BP and configuration there are many project documents uploaded.
    Now we have a situation where we are building new solman 7.0 ehp1 SPS27 for POC purpose and we want one of our project to be migrated including documents.
    any suggestion how can I proceed with this.
    note: its implementation project.
    BR,
    Shyam

    Hi Shyam,
    You can just use the transport option in the solar_project_admin transaction.
    http://help.sap.com/saphelp_sm70ehp1_sp26/helpdata/en/ee/cfe93a2876a81ae10000000a11402f/frameset.htm
    For other types of projects you need to take special attention, specially for template projects.
    See:
    http://wiki.sdn.sap.com/wiki/display/SM/Template+Projects
    and
    http://wiki.sdn.sap.com/wiki/display/SM/TemplateProjectsinProductiveSystems
    Kind regards, Fabricius

  • Manual creation of Project Site for a project is taking old project site template.

    Dear All,
    I have modified the project site and save it as a template to associate it with an EPT so that the modification will reflect in new project sites.
    For existing projects, I am deleting the old project sites (after taking backup) and recreating so that new modifications will be there for existing projects and I am able to do so.
    But, for 1 of the project, when I have deleted the project site and recreated, still it is taking the old template (i.e. new modifications has not been seen).
    Kindly advice in some areas so that I can jump in and around and can find out a solution so that the project site will take modified project template.
    Example to get the issue in an easy way:
    ProjectA:
    Project Site: http://epm/pwa/ProjectA
    Issue List:
    Column: Category [data type as Choice: Cat1, Cat2, Cat3]
    Have saved 1 project site as a template and associated with an EPT with the following changes:
    Column: Category [data type as Choice: Choice1, Choice2, Choice3]
    Then, deleted the project site: http://epm/pwa/ProjectA and recreated.
    So, it should take the modifications in the project site.
    But, it is showing as Column: Category [data type as Choice: Cat1, Cat2, Cat3].
    Regards,
    Shravan

    Dear Guillaume,
    Thanks for your response.
    Please seem my comments inline:
    Which Project Server version do you use?
    PS 2010
    It is working well and as expected for all projects except for 1 specific project?
    Yes. It is working well for other projects except 1 project.
    Has this project something particular?
    Nope. It is similar as other projects.
    How do you proceed to create the new project site? Do you go to the site actions, then new site and pick up your new template?
    First I have modified 1 of the project site and saved that site as a template.
    Then, I have deleted the existing project site (from Project Sites under Operational Policies) and recreated so that project site will gets created from the new template. But, it's not happening.
    Regards,
    Shravan

  • Provident fund configuration for coal project

    Dear all
    my requirement is to maintain pf rates for our coal mines.we have already maintained pf rates for our organization i.e plant .but now we have created new pf id for coal project.and we have different calculations for coal project employees whom we have assigned new pf id.
    ex:empcode 102184
        pa30->infotype->587->Provident Fund Trust ID (Now its RCMP) from macrh 01.2014
        pa30->infotype->587->Provident Fund Number  (New pf code number)   ex-YZZZZ
    before this we have
       pa30->infotype->587->Provident Fund Trust ID (Now its RPCL) from macrh 01.2014
        pa30->infotype->587->Provident Fund Number   (old different  pf code number)  ex- XTRYY
    A/C Number
    Emp Name
    EMP CODE
    S/W
    salary
    PF CONTRIBUTION (12%)
    PENSION CONTRIBUTION
    VOL. CONTRIBUTION (2%)
    TOTAL ADDI. PENSION CONTRIBUTION  (ONE INCREMENT DIVIDED BY 12 MONTHS )
    ADMIN. CHARGES (3%)
    Employee (10.84%)
    Employer (10.84%)
    Employee (1.16%)
    Employer (1.16 %)
    CMPF/123/456
    XYZZZZZ
    1102184
    173,830
    18843
    18843
    2016
    2016
    3477
    2188
    1252
    how can i configure these in my system.
    we have already differnt calcualtion for RPFC emp of our company.
    please guide .
    thnxs
    gaurav

    i have done it with separate trust id-RCMP.but i have assigned same wage type as i did for older one.(RPFC case).should i need to create new wage type and create PCR for separate pf trust id.
    trust master details:pleas tell me .what to do for this issue and how it can be resolved.
    RCMP
    CMPF
    RPFC (Regional Provident Fund Commsioner)
    /3F1
    /3F2
    /3F3
    /3F4
    /3F7
    /3F8
    /3F9
    RPFC
    RPFC Govt
    RPFC (Regional Provident Fund Commsioner)
    /3F1
    /3F2
    /3F3
    /3F4
    /3F7
    /3F8
    /3F9

  • I have Video camera movies that are HD format.. I am doing editing work on them using Final Cut Pro, but using DV PAL format for the projects I am editing. When I then tried to copy my work done in FCP Project that's originally DV PAL , into a new FCP Pro

    I have Video camera movies that are HD format.. I am doing editing work on them using Final Cut Pro, but using DV PAL format for the projects I am editing. When I then tried to copy my work done in FCP Project that's originally DV PAL , into a new FCP Project that is HD, and tried reconnect media with original HD movies (video), the sequence project got distorted for all the text, shapes used and all.. everything changed its orientation and scale.. Is there a way by which I can preserve my work done on DV PAL and switch it preserving its proportions, scale and orientation, but on a HD project sequence?? Appreciate your help and advice..

    Yes.  A couple of ways that might work.
    First Way
    What you need to do is load one of your hd clips in the viewer and edit into a new HD sequence.  Does it display correctionly? 
    OK, select the clip in the hd timeline and copy (command-c).  Now go to the HD sequence with the material that's distorted.  Select all (command-a) and paste attributes (option-v) and choose basic motion and distort.  That should maek things work.  What won't work is anything that you've adjusted as far as basic motion or distort in your PAL sequence.  That I'm pretty sure you'll have to redo.
    Second Way. 
    Choose your original PAL sequence and do a Media Manage changing the sequence preset to the appropriate HD paramenters with the media offline.  You then should be able to reconnect these clips with your original HD media.

  • Searching for a Project status = CLSD and open purchase orders?

    Hi,
    I am searching for a project status (Project Builder CJ20N) which allowed my to set a CLSD or a simillar status for settlement with open purchase orders.
    This staus should allowed to process with open orders BUT  not allowed to add new orders after setting this status.
    Have somebody any idee? Or it is impossible?
    Tahnk you in advanced for your Help.
    Regards Baldy

    Hi TV-kid,
    while I was waiting for an answer I got to the same conclusion, so what you offers me is quite tempting actually.
    I got a look to your website and it seems convincing. Still though, your case studies are in other business area, It's only a mater of good knowledge of File Maker.
    I did download the test-drive last version of File Maker plus their samll Business Solution. I did read most of the documentation and the learning process would be too long to construct ourself a good crossed-data base.
    I'd like to get in contact with you to look for a possible colaboration. to get private, I'd liketo do it through your contact link in your website .
    To whom shall I write?
    Thanks
    Cheers
    Cheers

Maybe you are looking for

  • Partner function;Partner procedure; Partner object; Procedure assignment??

    Hi, If we check T-code: VOPA, we could find below: Partner function(Partner type inside); Partner procedure;Procedure details;Procedure assignment; Partner object(Customer Customer Master;Sales Document Header Sales Document Item..etc) Account Group;

  • Template Cell Background Color

    Hi, I'm creating Dreamweaver templates with the pages built from them being edited in Contribute.  There is a need for the Contribute users to be able to change the background color of individual cells in a table (on a page built from a DWT).  I can'

  • D800 tethered in LR 4.3 - .nef vs .NEF

    Hello, I have been shooting nikon for a few bodies now and my library consists of .NEF files. I have recently upgraded to the d800 and I have began experimenting with tethered shooting. It seems that while doing this the RAW files get written out wit

  • Does Pages '09 embed font in PDF?

    Well, my subject says it all. Some PDF creators on Windows have the "embed fonts" option. Pages doesn't. However, I don't know if it does it by default when exporting to PDF. Thanks, Manu

  • Error when opening exported Excel document

    hi, i'm using the following to let the user export JSP to Excel file: response.setContentType("application/download "); response.setHeader("Content-Disposition","attachment; filename=test.xls"); problem happens only for the first when i try to open t