How to move(migrate) OAF files(class files,PG files) using tool(Kintana)

Hi,
How to move(migrate) OAF files(class files,PG files) using tools(Kintana).
Just want to know process for moving(migrating) OAF Files(class,PG) one instance to over instance(i.e dev to testing) using tools like kintana. We are planning to PVCS as versioning tool.
Thanks

New Line Types need to be added to Kintana Workflows and these line types should be able to use the xmlimport/xmlexport scripts.
We have customized Kintana to migrate forms personalizations using FNDLOAD.
I think, Change Management team should be able to address this.
Srini

Similar Messages

  • How to convert the javasource file(*.class) to execute file(*.exe)?

    How to convert the javasource file(*.class) to execute file(*.exe)?
    thank you!

    Although i have seen a few programs (that are platform specific) that will embed a small jvm into an exe with your class file, it is generally excepted that you cannot create an executable file using java. The JAR executable file is probably the closest your going to get
    Pete

  • How to move to next record of the databank file using custom code

    hi,
    can someone please tell me how to move to next or the previous record the Databank file. i found a funtion setcurrentdatabankrecord(), but i am not able to use it.
    thanks in advance...

    Hi,
    I recently had the same problem, here's my solution:
    "setCurrentDataBankRecord" is available only to External Program Control.
    I used the VB of an empty Word2002 Document.
    1. you have to reference the webAnlyst.exe in the object-catalogue
    2. create a module via the menue
    3. type in the code
    This is the code I used - some of the code is just for control
    Private Sub TestSetDBRec()
    Dim pdtest As webanlst.ProgT
    Set pdtest = New webanlst.ProgT
    Dim currDBI, numRecsCurrDB As String
    ' Workspace öffnen
    pdtest.play.OpenWorkspace "VBTest"
    ' Script öffnen
    pdtest.play.openScript "BM2B_VK_Änderung"
    ' DB-Abfragen
    numRecsCurrDB = CStr(pdtest.play.getDataBankSize)
    currDBI = pdtest.play.currentDatabankIndex
    pdtest.play.setCurrentDataBankRecord (2)
    currDBI = pdtest.play.currentDatabankIndex
    ' jetzt das Script abspielen
    pdtest.play.doScript "BM2B_VK_Änderung"
    End Sub
    This works! You can also looping through the database by getting the current value and set the value back increased by e.g. one
    Hope it is helpful!

  • How to create custom attributes & object classes through ldif files in OID

    Hi,
    I have to create 4 attributes and one object class(custom) in OID. I want to creae these attributes and object class through LDIF file.
    I tried creating an attribute through this command
    ldapadd -p 389 -h localhost -D cn=orcladmin -w password -f D:/newattr.ldif
    this ldif file contains inf. for creating a new attributes:
    dn: cn=subschemasubentry
    changetype: add
    add: attributetypes
    attributetypes: ( 1.2.3.4.5.6.10 NAME "xsUserType_new" DESC "User Type Definition" EQUALITY caseIgnoreMatch
    SYNTAX "1.3.6.1.4.1.1466.115.121.1.15" )
    I am getting error: Object class violation
    Failed to find add in mandatory or optional attribute list.
    Please help to find where I am going wrong...
    Thanks.

    Hi Ajay,
    Thank you for the help. Now i am able to create both attributes and object classes in OID through Ldif files.
    I was getting constraint violation error because (I think) I was not giving proper naming convection for attributes and object classes. For OID, there are certain Ldap naming conventions. They are as follows:
    # X below is the enterprise number assigned by IANA
    1.3.6.1.4.1.X.1 - assign to SNMP objects
    1.3.6.1.4.1.X.2 - assign to LDAP objects
    1.3.6.1.4.1.X.2.1 - assign to LDAP syntaxes
    1.3.6.1.4.1.X.2.2 - assign to LDAP matchingrules
    1.3.6.1.4.1.X.2.3 - assign to LDAP attributes
    1.3.6.1.4.1.X.2.4 - assign to LDAP objectclasses
    1.3.6.1.4.1.X.2.5 - assign to LDAP supported features
    1.3.6.1.4.1.X.2.9 - assign to LDAP protocol mechanisms
    1.3.6.1.4.1.X.2.10 - assign to LDAP controls
    1.3.6.1.4.1.X.2.11 - assign to LDAP extended operations
    By using these conventions for attributes and object class, I did got any error and they were created in OID.
    Thanks a zillion.
    Kalpana.

  • Problemes with the method listFiles() in File class. I'm using JDeveloper 3.0

    Hi!
    Why can't I compile this snip of code?
    I get:
    Error: (19) method listFiles() not found in class java.io.File.
    Here is the code:
    package stream;
    import java.io.*;
    import java.util.*;
    public class myStream {
    public static void main(String[] args) {
    File myFile = new File("D:/myjava");
    File[] str = myFile.listFiles();
    Thanks in advance
    Henning

    There is no method "listFiles()" in "File" class. (JDK 1.1.8)
    You can try to use " list() " method which
    Returns a list of the files in the directory specified by this File object.
    raghu
    null

  • The File class ignores the file.separator system property?

    I am saving the pathname of a file to a String using:
    String pathString = myfile.getAbsolutePath();
    This gives me e.g. "D:\Java\Projects\myfile.txt" on Windows XP
    If I want to save this value to a properties file, then load it in a new invocation of the program, this string will not be recognised as a valid pathname because of the backslashes.
    So I want to use forward slashes as the file separator char.
    I tried:
    System.setProperty("file.separator","/");
    However, this setting seems to be ignored by the File class, as I still get the same string with backslashes from the getAbsolutePath() method.
    Can anyone help please?

    Yeah... I've used that before. Never recalled having problems. I can't, however, recall if there were file paths saved.
    Just tested with this:
    import java.io.*;
    import java.util.*;
    public class Props {
         public static void main(String[] args) {
              try {
                   Properties p1 = new Properties();
                   p1.put("file", new File("C:\\test\\Props.java").getAbsolutePath());
                   FileOutputStream out = new FileOutputStream("Props.properties");
                   p1.store(out, null);
                   out.close();
                   FileInputStream in = new FileInputStream("Props.properties");
                   Properties p2 = new Properties();
                   p2.load(in);
                   System.out.println("p1: " + p1.getProperty("file"));
                   System.out.println("p2: " + p2.getProperty("file"));
              } catch(Exception e) {
                   e.printStackTrace();
    }created this:
    #Tue Jun 21 10:53:38 EDT 2005
    file=C\:\\test\\Props.java

  • How to move folders from one server to another serve using unix command

    Hi All,
    How to move the folders from one server to another server using unix command.
    scp -r armops@sjarmprd01:/ARM/scripts [email protected]:/ARM/scripts/
    but it is giving an error like not a regular file .. what it means .. please let me know if any one knows about it
    Thanks
    Sreedhar

    not a regular file .. what it meansProbably you have some fifo (named pipe) files...
    Said that this has nothing to do with database (you should post on some nix forum, for example http://forums.oracle.com/forums/forum.jspa?forumID=135), you may try rsync* command (man rsync).

  • How to add external library in class path folder for use in Java call-out?

    Hi,
    I am working with Java callout component in OSB 12c using Jdeveloper.
    Thing is Jar what i am using to perform conversion of json to xml that using external libraries.
    When i have give reference of my project jar to java callout it doen't found external libraries.
    Could you please tell me how to add external libraries in class path folder or How to use to add it through web-logic server ?
    Thanks,
    Pavan

    Hi,
    Thanks, I have solved issue.
    We can add on following path in windows pc:
    C:\Users\your_usename\AppData\Roaming\JDeveloper\system12.1.3.0.41.140521.1008\DefaultDomain\lib
    One you add your external lib here then do restart weblogic server instance.
    Now, you have that external lib or jar in use.
    Cool!

  • How to move iWeb site with missing Domain.sites file

    I've been asked to host a friend's iWeb site now that MobileMe is no longer an option.  The problem is that the MacBook it was created with is long gone and the only original files remaining are the image files for the site. No Domain.sites file.  They are also not sure which version of iWeb was used, if that even matters.  Initially I was thinking we could just access the existing site using ftp and go from there - upload the site to my hosting account and use Dreamweaver to maintain it, but everything I've read seems to point to 'Not gonna happen that way'.
    Is there a way to transfer an existing iWeb site hosted on MobileMe to a new hosting account and be able to work on it with another editor, all the while not having the original Domain.sites(2) file?
    Thanks much,
    Mark

    Quite a few people are moving to other drag and drop style editors like Sandvox and RapidWeaver although they aren't really any better - just more expensive.
    I advise people not to use iWeb for new sites and just to keep it going to update existing ones until they are defunct or rebuilt some other way.
    I quit using iWeb about a year ago due to the fact that it, and similar apps, can't create responsive designs for mobile devices although I did figure out a stop gap design for iPhones...
    http://www.iwebformusicians.com/iWeb/Mobile-iWeb.html

  • Where do i place my html files,classes and Java files

    Can any one plz help me out here. I'm using Tomcat3.2.1 to
    run my servlets, I have written the servlets and gotten
    tomcat to run as well. What confuses me now is where my
    files should be placed.
    - Do i have to create a special directory to contain my html
    files ?
    - another directory for my servlet classes ?
    - how about my .java files ?
    - and how should i call my servlet from the html code ?
    HEEEEEEEEEEEEEEEEEEEEELLLLLLLLLLLLLLPPPPPPPPPPPP!!!!!!!!!!!!!!!

    hi,
    you can my post here http://forum.java.sun.com/thread.jsp?forum=33&thread=302433

  • How to Move Migrated Analysis Authorization across the landscape?

    Hi,
    we have migrated existing 3.x obsolete authorization concept to 7.x Analysis Authorization with the SAP delivered program RSEC_MIGRATION. Unit test is completed in the Development. What is the process to move the changes to quality.
    Any help is greatly appreciated.
    Thanks!

    Hi Tony,
    what about the roles that are updated during the migration process. How do I identify them and Do I need to collect them and transport too? Is there a way I can use the tables you mentioned in the above discussion for this.
    First you should decide on whether you wish to use direct AA assignment or use S_RS_AUTH authorization object (This is referred as indirect AA assignment).
    If you wish to assign AA directly, you doesn't require the roles to be transported and just need to transport the AA, since the AA works independently.
    If you with to implement indirect AA assignment, you should identify the roles (from the tables I've provided in my last post) and findout the roles based on query's. Further the AA that were related to the queries should be added using S_RS_AUTH and these roles require a transport.
    Hope this helps!!
    @Arpan - Those tables are required to quickly find out the roles Vs queries Vs InfoAreas/InfoCubes information to work on the AA.
    Regards,
    Raghu

  • How-to move objects (users) from one ou to another using Powershell and an XLSX

    Hi all,
    I have a spreadsheet that has headers. I need to move all of the objects on this exception report to the proper OU (all going to the same OU).
    The header that validates the need to move is called "Display Name".
    The process now is as follows.
    1) Copy displayname
    2) Open AD search
    3) enter display name in find box
    4) locate object
    5) right click object in results and click move.
    6) move to the OU "Home.test.com/uk Online/Users OU/Business Process"
    --- How can i use Import-CSV to automate this process?
    Thanks for any help, there is about 4K lines on this sheet and it normally takes about 25 days of "busy work" to accomplish this, then 5 days later I have to re-run the report and start over.
    Josh
    Josh Borges

    Hi Josh,
    This assumes that you can save your file as an actual CSV file:
    $skippedUsers = @()
    Import-Csv .\userList.csv | ForEach {
    $displayName = $_."Display Name"
    $user = Get-ADUser -Filter "DisplayName -eq '$displayName'" -Properties DisplayName
    If ($user.Count) {
    $skippedUsers += $displayName
    Else {
    $user | Move-ADObject -TargetPath 'OU=Business Process,OU=Users OU,OU=uk Online,DC=home,DC=test,DC=com' -WhatIf
    If ($skippedUsers) { Write-Host 'The following users could not be moved automatically:' -ForegroundColor Red ; $skippedUsers }
    Do you have to use the display name property? That's not guaranteed to be unique, so you might run into problems. The script above will not attempt to move the user if more than one is returned by the command.
    EDIT: I've also added -WhatIf to Move-ADObject. Now the command won't actually move your users, it will just tell you about it. Remove it if you're happy with the output.
    Don't retire TechNet! -
    (Don't give up yet - 12,420+ strong and growing)

  • How do I migrate metadata from Final Cut Server for use in Premiere?

    We're one of many companies looking to move to Premiere Pro from Final Cut.
    We have thousands of tagged clips in Final Cut Server and I'm trying to find a way to export all that metadata so it can be used, and searched for, within Premiere Pro.
    Does anyone know if/how this could be achieved?
    The only thing I've found online that seems to be relevant is this:
    http://www.andre-aulich.de/en/perm/export-asset-metadata-from-final-cut-server-using-built in-tools-only
    This seems to explain how to export the metadata (although I don't fully understand it) but not how to make it useful for Premiere.
    Any help would be greatly appreciated!

    Well... I'm a librarian by training so I use Cat-DV a little differently.
    I use it to make a searchable archive of proxy files for entire hard drives.  I hook up a hard drive (say an old external) and point Cat-DV at it.  It makes a catalog (locally) that has all the metadata (most importantly "date created") and a small proxy or thumbnail if it's a still.  Then I unplug the drive, label it and put it on a shelf.  When I need to find something all I have to do is consult the local catalog.  I can search it (if I included any metadata) or, most likely, I'll just scrub around for date created.  Cat-DV will display the exact path to where the asset is.  I can search across multiple catalogs of drives without ever having to plug one in,  Once I find the file I want, I just plug in that drive to retreive the file.
    I use it mostly for stills and some b-roll that gets used over and over.  For a variety of reasons, we never opted to make it a full replacement for FC Server. 
    And another thing... you can do a heck of a lot with the $99 or $300 version.  You don't need to go the full enterprise server route (though you do have to do that to use the server functions). 
    You might also want to try Adobe Bridge for searching and editing metadata.  In my experience, it's always been slow with video but that may well have changed.  I haven't played with it in a while

  • [F8] How to move a MovieClip with Ease In/Out tween using Actionscript

    In Flash 8, I need to move a MovieClip from point A to point
    B when a user clicks a button.
    I currently have a function which I pass three arguments:
    TargetX, TargetY, and the Duration (in frames). I have it working
    to move the clip linearly, however, I would really like to be able
    to ease in/out on the tween.
    I'm really stuck on the math of it all and need someone to
    give me the formula.
    Here's my function:
    Code:
    // Function which is called when user clicks button to move
    the mc
    _global.fMoveTheMovieClip = function(iTargetX, iTargetY,
    iDuration){
    // Calculate the distance to the Target position
    iTotalDistance = iTargetX - MoveThisClip_mc._x;
    // Mover function
    MoveThisClip_mc.onEnterFrame = function(){
    // If the movie clip has gotten close enough to the target
    if((Map_mc._x > iTargetX && Map_mc._x <
    (iTargetX + 1)) || (Map_mc._x < iTargetX && Map_mc._x
    > (iTargetX - 1))){
    // Snap the movie clip to the target x
    MoveThisClip_mc._x = iTargetX
    // And stop this function
    delete this.onEnterFrame;
    // Else, if the mc has NOT reached the target zone
    }else{
    // Move the clip
    // This is where I would like a formula to ease out then in
    based on the duration
    // Right now I have this to move the mc at a constant speed
    MoveThisClip_mc._x += (iTotalDistance / iDuration);
    Also, everything needs to be AS2 compatible.
    AND, I can't use the "tween" or "transitions" classes.
    So, please don't post anything with code similar to this:
    Code:
    import mx.transitions.Tween
    import mx.transitions.easing.*;
    If I need to add a "power" or "strength" argument to my
    function, that's fine.
    Thanks!!!!

    I'm thinking what I want isnt possible...
    Here is what I get.
    Its perfect for landscape.
    But when I use the same settings on a portrait, I get this
    The entire canvas should be portrait.  If I flip it, then the watermark is under the image instead of on the right hand side going up like on the landscape one.
    The portrait one should end up looking like this
    I know this is being picky, but I'm taking over running photo and reviews for a media, and we have 4-5 photographers (myself including) covering shows.  So I'm looking for a one click to export and bam everything is fine type of thing. 
    So it's like the canvas would need to be portrait for portrait photos and landscape for landscape photos, and keep the name on the lower right regardless.  I'm thinking LR isnt that smart just yet to say "add 1 inch and put logo down here on all images" lol
    But I totally appreciate your input.

  • How to move iTunes/library from old computer to new using ext harddrive

    Ok - guess the subject line covers most of it. I have 2650 songs in my iTunes. The power source on my computer is about dead, so I'll be moving to a new computer.
    How do I go about moving my iTunes and all the music???
    Thanks much for the help
    Laura

    Follow the instructions in this article; they can be adjusted to operate on any hard or flash disk by skipping the ones which are specific to the iPod.
    (19742)

Maybe you are looking for

  • How do you put a back up system on a firewire external drive?

    I was taking my new MacBook in to the genius bar to diagnose a possible defective USB port. I wanted to clone the entire hard drive to an external drive for a backup. To do that, one must start up from the external drive. I tried to install a startup

  • Encoding url in web dynpro

    hi i have creatend an abap webdynpro which send to an Employee pdf file with his details. In the url i have the a variable which contains the employee pernr and the program in the webdynpro controller calculate his details according to this pernr. Is

  • Alpha Channel Help

    Hi I was wondering how did they get this alpha channel, is there a tutorial any one knows or just what technich its called cause i cant find a thing how they did it http://hotfile.com/dl/57865326/b1bed5b/ShockBall.dds.html I cant upload the image her

  • HOW TO ACTIVATE MY I PHONE3GS

    I  RESTORED MY I PHONE 3GS AND COULDNOT ACTIVATED PLZ I WANT ANY HELP

  • Iphone4 syncing conflicts with outlook: cannot access conflicts

    Error message: iTunes cannot access conflicts from sync server. How do I correct this? Your help is greatly appreciated!