Any script available for Forms personlaization

Hi all,
I done a forms personalization in my instance.
I need a to move my client instance.Any load script available for forms personalization
Any one help me.
Regards,
M.Soundrapandian

Perhaps you should ask that question in the ebusiness-forum OA Framework

Similar Messages

  • Are there any patches available for Dev 21

    Hi,
    We've been working with Forms50 and Reports 25 under win95 for
    quite a while and have noticed occasional problems:
    - A program abort due to page fault protection under win95.For
    example, R30DES32 : R30LIB.dll.
    - You issue compile all and get and error that forms is not
    able to go to (goto error button).
    - A compile error that requires login in and out and
    recompile to fix.
    I wonder if
    - there are any patches available for Dev 21,
    - i have a memory shortage problem,
    - these are (especially case 1) win95 problems.
    Please help will be welcomed ................!
    null

    Where can I find them?
    thanks in advance,
    Xiaolin
    Jason Judge (guest) wrote:
    : There are patches for the 32bit v2.1 Windows environments
    dated:
    : 24 June 98
    : 5 August 98
    : 16 September 98
    : 21 Octomer 98
    : 21 February 99
    : and I believe a new one is just out.
    : Take your pick!
    : JJ
    : Luis Medina (guest) wrote:
    : : Hi,
    : : We've been working with Forms50 and Reports 25 under win95
    for
    : : quite a while and have noticed occasional problems:
    : : - A program abort due to page fault protection under
    : win95.For
    : : example, R30DES32 : R30LIB.dll.
    : : - You issue compile all and get and error that forms is not
    : : able to go to (goto error button).
    : : - A compile error that requires login in and out and
    : : recompile to fix.
    : : I wonder if
    : : - there are any patches available for Dev 21,
    : : - i have a memory shortage problem,
    : : - these are (especially case 1) win95 problems.
    : : Please help will be welcomed ................!
    null

  • Is any software available for face detection to unlock screen?

    is any software available for face detection to unlock screen?

    No. Third party software annot control the operating system.

  • Is there a script available for arranging elements for optimal use of the printable area?

    I'm starting a sticker printing business using Illustrator as my main layout and illustration too. I was wondering if there's a script available for automatically arranging a set of elements on a page so that they optimally take up the available space. I figured this would save me some on material costs.
    If I were to create a script from scratch, can someone give me pointers? I'm a casual AI user but I have Javascript experience.
    Thanks.

    The below image shows the 4 different die sizes, the artwork fits inside the dotted box so make sure that we have room around the die and the drill holes are assigned as well.
    The name of each die is listed above it, and the size is listed below it.
    The script is set to take each die and place it on the template until it is full, then it will save it and move it to the folder where it will be grabbed and preped for printing.
    Everything below the **** is the script.
    #target illustrator   
        var tempDoc = app.activeDocument;
        copy();
        if (tempDoc.selection.length > 0)
            var myFile = File("S:/TEMPLATES/IN USE/DB_TEMPLATE.ai");
            app.open(myFile);
            var thisDoc = app.activeDocument;
                thisDoc.views[0].centerPoint = [324,503];
                thisDoc.views[0].zoom = .65;
            var allGroups;
            var horizontalCords = [0,180,360,540,0,180,360,540,0,180,360,540,0,180,360,540,0,180,360,540,0];
            var verticalCords = [1012.5,1012.5,1012.5,1012.5,810,810,810,810,607.5,607.5,607.5,607.5,405,405,405,405,202. 5,202.5,202.5,202.5,202.5];
            var oneGroups = new Array();
            var twoGroups = new Array();
            var oneAGroups = new Array();
            var twoAGroups = new Array();
            var makeNew1 = new Array();
            var makeNew2 = new Array();
            var twoACounter = 0;
            var layerRemainder = [4,4,4,4];
            var totalDies = 0;
            var noGo = 0;
            var caseTest;
        if (thisDoc.pageItems.length == 0)
            drawTemplate();
        var newLayer = thisDoc.layers.add();
        newLayer.name = "Die Layer";
        paste();
    allGroups = thisDoc.groupItems;
        for (i=0;i<allGroups.length;i++){// determine what dies are present
            if (allGroups[i].name == "1"){
                oneGroups.push(allGroups[i]);
            else
        if (allGroups[i].name == "1A"){
                oneAGroups.push(allGroups[i]);
        if (allGroups[i].name == "2") {
            twoGroups.push(allGroups[i]);
        else
        if (allGroups[i].name == "2A"){
            twoAGroups.push(allGroups[i]);
        }// end FOR
    if (oneAGroups.length == 1)
        oneAGroups[0].position = [540,101.5];   
    if (twoAGroups.length == 1)
        twoAGroups[0].position = [360.25,101.25];
    if (oneAGroups.length == 1 && twoAGroups.length == 1)
        oneAGroups[0].position = [360,203.5];   
        if(oneAGroups.length == 2){
        var add1Group = thisDoc.groupItems.add();
            add1Group.name = "1";
            oneAGroups[0].name = "1A changed";
            oneAGroups[1].name = "1A changed";
            oneAGroups[0].position = [0,0];
            oneAGroups[1].position = [0,-100.75];
            oneAGroups[0].moveToBeginning(add1Group);
            oneAGroups[1].moveToBeginning(add1Group);       
            oneGroups.push(add1Group);
            oneAGroups.length = 0;
            redraw();
        if(twoAGroups.length == 2){
        var add2Group = thisDoc.groupItems.add();
            add2Group.name = "2";
            twoAGroups[0].name = "2A changed";
            twoAGroups[1].name = "2A changed";
            twoAGroups[0].position = [0,0];
            twoAGroups[1].position = [0,-100.75];
            twoAGroups[0].moveToBeginning(add2Group);
            twoAGroups[1].moveToBeginning(add2Group);
            twoGroups.push(add2Group);
            twoAGroups.length = 0;
            redraw();
        if (twoGroups.length > 0){
                var h = 0;
                var v = 0;
                var dieCount = 0;
                for (i = 0; i < twoGroups.length; i++) {
                    twoGroups[i].position = [horizontalCords[h],verticalCords[v]];
                    h = h + 2;
                    v = v + 2;
                    dieCount++
                    }//end FOR
            }// end twoGroups length IF
            if (oneGroups.length > 0){
            var h = 0+(twoGroups.length*2);
            var v = 0 + (twoGroups.length*2);
             for (i = 0; i < oneGroups.length; i++){
               oneGroups[i].position = [horizontalCords[h],verticalCords[v]];
                  h = h +1;
                    v = v + 1;
                 }//  end FOR
             }//  end onGroups IF
              redraw();//  redraws template so it updates changes on the page
           //thisDoc.close(SaveOptions.SAVECHANGES);
            }//  end noGo
    else
    alert("You have nothing selected...");
        totalDies = (oneGroups.length + (twoGroups.length*2) + (twoAGroups.length/2) + (oneAGroups.length/2));
    if (totalDies < 20)
        caseTest = 0
        else if (totalDies > 20)
        caseTest = 1
        else if (totalDies == 20)
        caseTest = 2;
    switch (caseTest)
            case 0:
                thisDoc.close(SaveOptions.SAVECHANGES);
                break;
            case 1:
                alert ("Die will not fit on the Template at this time.  Try again later.");
                thisDoc.close(SaveOptions.DONOTSAVECHANGES);
                break;
            case 2:
                    var answer = confirm ("The Template is full.  Do you want to clear it?");
                        if (answer == true)
                            printTheTemplate();
                            break;
    function drawTemplate(){  //draws the template if the page is empty
            var tempDoc = app.activeDocument;
        tempDoc.rulerOrigin = [0,0];
        tempDoc.pageOrigin = [0,0];
        var newLayer = tempDoc.layers.add();
        newLayer.name = "Template Layer";
        var templateGroup = tempDoc.groupItems.add();
        templateGroup.name = "Template Build";
        var vertLoc = .25;
        var horzLoc = -.25;
        var topTemp = new Array();
        var botTemp = new Array();
        var leftTemp = new Array();
        var rightTemp = new Array();
        for (i=0;i<5;i++){
            botTemp[i] = thisDoc.pathItems.rectangle(0,vertLoc,.5,21);
            topTemp[i] = thisDoc.pathItems.rectangle(1033,vertLoc,.5,21);
             botTemp[i].moveToBeginning(templateGroup);
             topTemp[i].moveToBeginning(templateGroup);
            vertLoc = vertLoc + 180;
        for (j=0; j<6;j++){
            leftTemp[j] = thisDoc.pathItems.rectangle(horzLoc,-21,21,.5);
            rightTemp[j] = thisDoc.pathItems.rectangle(horzLoc,720,21,.5);
             leftTemp[j].moveToBeginning(templateGroup);
             rightTemp[j].moveToBeginning(templateGroup);
            horzLoc = horzLoc +202.5;
    return
    }//  end function drawTemplate
    function printTheTemplate()
              // October 16, 2012  Henry J. Klementovich
            //var TemplatePath = File("C:/Users/henryk/Desktop/Illustrator Test Files/HS_TEMPLATE.ai");
            //open(TemplatePath)
            //open(myFile);
            var thisDoc = app.activeDocument;
                thisDoc.rulerOrigin = [0,0];
                thisDoc.pageOrigin = [0,0]; 
            var thePath = ("S:/TEMPLATES/PRINTED");
            //  Will only continue if the artist has selected the art.  This step saved a lengthy FOR loop that would have had to select each page or path item of the
            //  document.  Some of the templates had over 5,000 items, resulting in an un-exceptable wait-time for the loop to select them.
            for (x=0;x<thisDoc.groupItems.length;x++)
                thisDoc.groupItems[x].selected = true;
            if (thisDoc.selection.length > 0)
            //  This section pulls the date from the system for two purposes:  the date shown on the template and the date used to save the file to the ArtShare.
            //  They are different b/c system filenames cannot include the  ":" char, which is used on the template for the time object.
            var  theDate = new Date();
                    var day = theDate.getDate();
                    var month = theDate.getMonth() + 1;
                    var year = theDate.getFullYear();
                    var hours = theDate.getHours();
                    var min = theDate.getMinutes();
                        if (min < 10)
                            min = ("0" + min);
                    var morn;
                        if (hours >= 12)
                                hours = hours - 12;
                                morn = " PM";
                        else
                            morn = " AM"
            var saveDate = (month + "-" + day + "-" + year + "    " + hours + min + morn );
            var tempDate = thisDoc.textFrames.add();
                    tempDate.name = theDate;
                    tempDate.contents = (month+ "/" + day + "/ " + year + "    " + hours + ":" + min );
                    tempDate.top = 1026;
                    tempDate.left =40;
                    tempDate.filled = true;
            var actGroups = thisDoc.selection;
            var artGroup = thisDoc.groupItems.add();
                  artGroup.name = "Art Group";
            for (i=0;i<actGroups.length;i++)
                  actGroups[i].moveToEnd(artGroup);
            tempDate.moveToEnd(artGroup);
            artGroup.selected = true;
            copy();
            thisDoc.pageItems.removeAll();//  copies everything from the current template into the clipboard, clears the template, saves it and closes it.
            var layLen = app.activeDocument.layers.length;
            //alert(layLen);
            for (i=0;i<layLen;i++)
            app.activeDocument.layers[0].remove();
            thisDoc.close(SaveOptions.SAVECHANGES);
            app.documents.add();//  adds new document for the template to be saved in the Printed folder.
            paste();
            var thisDoc = app.activeDocument;  
            var saveName = new File (thePath + "/" + saveDate);
                  saveOpts = new IllustratorSaveOptions();
                  saveOpts.compatibility = Compatibility.ILLUSTRATOR13;
                  saveOpts.generateThumbnails = true;
                  saveOpts.preserveEditability = true;
                  thisDoc.saveAs( saveName, saveOpts );
            var actGroups = thisDoc.selection;
            copy();
            thisDoc.close(SaveOptions.SAVECHANGES);
            $.sleep(10);
            app.documents.add();
            paste();
            var nexDoc = app.activeDocument; 
            var actGroups = nexDoc.selection;
            var artGroup =nexDoc.groupItems.add();
                  artGroup.name = "Art Group";
            for (i=0;i<actGroups.length;i++)
                    actGroups[i].moveToEnd(artGroup);
                    //artGroup.selected = true;
                    artGroup.resize(70,70);
                    alert("The current template has been saved to the Printed Templates folder.  This page is to be printed and sent to editing.")
    Hope this helps someone get one created because if they can make one that doesn't depend on the premade dies that would help me out quite a bit because some of the dies that we make are an odd size so we have to place them manually.

  • Any PIP available for Product Data Hub(PIM) integration with AppsR12

    Dear All,
    We can a requirement to one of our customer, we need to implement MDM(CDH,PIM) and we need to integrate this with other spoke systems like EBS.
    we want to know whether is there any PIP available for MDM(PDH or PIM) integration with Oracle Apps R12 with any other system and our SOA environment is SOA 11g.
    Thansk in Advance
    Regards
    Murali

    Hi Shamshad
    We also need to know AIA 3.1 MDM (PDH) PIP's were released for 11g FMW. AIA 2.5 MDM PIP's uses 10g AS (SOA 10g).
    Edelivery doesn't have MDM PIPS listed for AIA 3.1 or under AIA 11g. It has foundation pack but not specific to MDM PIP for Product that I'm looking for.
    Any help appreciate it.
    Thanks, Nara

  • I want to communicate with J1850 system. Is there any hardware available for this?

    I would like to communicate with a J1850 system. I am wondering whether there is any hardware available for this similar to CAN. Is there a possibility to find exampls for this kind of communication.

    On Fri, 16 Jul 2004 14:02:48 -0500, Mudda wrote:
    > I would like to communicate with a J1850 system. I am wondering whether
    > there is any hardware available for this similar to CAN. Is there a
    > possibility to find exampls for this kind of communication.
    I'm still new in this area but I will try to help. AFAIK, J1850 comes in
    two flavors: VPW and PWM. You can purchase an adapter that converts RS232
    signals to those required by J1850 for about $100.
    I suggest using an adapter from Scantool.net. I say this because I
    have one and it's very easy to use. It's flexible enough to use with a
    terminal (hyperterminal, minicom, etc.) or to interface with LabVIEW, as I
    have done for you already. Go to OpenG.org for the download:
    http://openg.org/tiki/tiki-index.
    php?page=On+Board+Diagnostic+-+OBDII
    Let me know if it works for you. The interface is a little weak but the
    VIs should clue you in on how to handle communications. I plan to add
    another update in a few days so check the site regularly. I would
    appreciate your feedback.
    -kevin

  • Any books available for OS X Leopard Server?

    Does anyone know if there are any books available for OS X Leopard Server? I can find some for Tiger but not Leopard. Thanks

    Aside from the pretty cool PDF manuals Apple post on their site, I ordered this recently:
    http://www.amazon.co.uk/MAC-Server-Essentials-Apple-Training/dp/0321496604/ref=p dbbs_sr2?ie=UTF8&s=gateway&qid=1202853792&sr=8-2
    I know it's in the UK Store, but you may be able to get hold of it anyway. It's also focused on ACTC training, but I have always found these books excellent resources for learning OS X Server.
    Hope that helps a little,
    Paul

  • Any upgrades available for Mac OSX 10.5.8?????

    are ther any upgrades available for download for Mac OSX 10.5.8????

    Welcome to the Apple Support Communities
    Mac OS X 10.5.8 is Leopard. Mac OS X Leopard was launched in 2007 and is now discontinued, so Apple isn't releasing more updates for it.
    Your only option is to upgrade to Mac OS X Snow Leopard, if your Mac is compatible > http://support.apple.com/kb/sp575 You can buy it in the Apple Online Store > http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard

  • Any BAPI available for mass creation/change/delete for dependency net

    Hi guys,
    Any BAPI available for mass creation/change/delete for constraints in dependency net. I mean any uploading option in mass for creation, change and delete.
    Regds
    Regds

    Hi,
    Check if the below FM's meet your need:
    CAMA_CNET_CONSTRAINT_MAINTAIN
    CAMA_CONSTRAINT_NET_MAINTAIN
    CAMA_DEPENDENCY_MAINTAIN
    Regards,
    Vivek

  • Any ViewLet available for SOA Suite or new feature of jdev 10131 ?

    Hi
    thank you for reading my post
    is there any viewlet available for SOA feature of new version of Jdeveloper 10131 ?
    thanks

    yes there is -
    on my blog I talk about some of the features in JDev
    http://clemensblog.blogspot.com/2006/03/heads-down-for-bpelpm-1013-nightly.html
    and
    http://clemensblog.blogspot.com/2006/06/bpel-pm-10131-new-features-part-2.html
    Security
    http://clemensblog.blogspot.com/2006/04/bpel-1013-new-security-features.html
    and on the webinar site you can find the feature preview
    http://www.oracle.com/technology/products/ias/bpel/htdocs/webinars.html
    search for 10.1.3 feature preview
    hth clemens

  • Is there a script available for 'live' endnotes in Indesign 5.5?

    I want to export books to epub with live endnotes (1,2,3,4,) displayed chapter by chapter at the end of the ebook. There are usually around 10 chapters and 700 notes. How can this be done? I have ongoing books to do like this, so I need an automated solution, is there a script available to do this?. Until now (for non epub books) I have been importing text from word, stripping the notes, and organising ‘dead’ notes, at the end of the book. What is the best way to import word files and keep dynamic links alive in the epub?  Thanks a lot for your help.

    InDesign doesn't support any endnote scheme at all, so all you could do is create hyperlinks to and from the note.
    The same answer for your index query, actually, although there you are going to run into another problem: there is no way the page numbers in the index are going to "update" live as the user resizes his screen, toggles the font, changes the font size etc.

  • No scripts available for configuring Portal4.0 with MSSQLServer2000

    Why is the document "Configuring WebLogic Portal for Microsoft SQL Server Databases" mentions scripts that don't exist not even the db\sql_server\2000\ ?
    I really would like to swap Cloudscape for MSSQLServer2K.
    Where do you get the scripts?

    Emmanuel,
    The scripts for MSSQLServer 2000 are included in WLPortal 4.0 SP1. SP1 will be available
    for download next week (unless something really really major comes up). I believe it will be
    announce on the newsgroup.
    Hope this helps.
    Michel.
    "emmanuel Bridonneau" <[email protected]> wrote in message news:1106_1011321530@EBRIDONNEAU...
    Why is the document "Configuring WebLogic Portal for Microsoft SQL Server Databases" mentions scripts that don't existnot even the db\sql_server\2000\ ?
    I really would like to swap Cloudscape for MSSQLServer2K.
    Where do you get the scripts?

  • Any BAPI available for Tcode MSC2N

    Hello,
    Very Good Afternoon,
    I need to change the few vlaues in the t-code MSC2N.
    I need to change the City of Origin and Reg Of orign for few Batch numbers
    in Basic Data1 tab.
    There are around 1000 batch numbers which needs this change
    Is there any BAPI available to go ahead..
    Any suggestions will be appreciated.
    Regards,
    Kittu

    Hi, You can update classification for a batch using the following code.
    But first, you'll need to find out that the batch management is cross-plant or plant dependant.
    If it is cross plant then plant(WERKS) is not part of the key to BAPI_OBJCL_CONCATENATEKEY.
    CLEAR: objectkey, objectkeytable, objectkeytable[],
               allocvaluesnumnew, allocvaluesnumnew[],
               return.
        objectkeytable-key_field = 'MATNR'.
        objectkeytable-value_int = matnr.
        APPEND objectkeytable.
        objectkeytable-key_field = 'CHARG'.
        objectkeytable-value_int = charg.
        APPEND objectkeytable.
    * Only if Batch management is Plant dependant
        objectkeytable-key_field = 'WERKS'.
        objectkeytable-value_int = werks.
        APPEND objectkeytable.
        CALL FUNCTION 'BAPI_OBJCL_CONCATENATEKEY'
          EXPORTING
            objecttable    = objecttable
          IMPORTING
            objectkey_conc = objectkey
          TABLES
            objectkeytable = objectkeytable
            return         = return.
        allocvaluesnumnew-charact = "characteristic name goes here".
        allocvaluesnumnew-value_from ="characteristic value goes here".
        APPEND allocvaluesnumnew.
        allocvaluesnumnew-charact =  "characteristic name goes here".
        allocvaluesnumnew-value_from =  "characteristic value goes here".
        APPEND allocvaluesnumnew.
        CALL FUNCTION 'BAPI_OBJCL_CHANGE'
          EXPORTING
            objectkey                = objectkey
            objecttable              = objecttable
            classnum                 = classnum
            classtype                = classtype
    *   STATUS                   = '1'
    *   STANDARDCLASS            = STANDARDCLASS
    *   CHANGENUMBER             = CHANGENUMBER
    *   KEYDATE                  = SY-DATUM
    *   NO_DEFAULT_VALUES        = ' '
    * IMPORTING
    *   CLASSIF_STATUS           = CLASSIF_STATUS
          TABLES
            allocvaluesnumnew        = allocvaluesnumnew
            allocvaluescharnew       = allocvaluescharnew
            allocvaluescurrnew       = allocvaluescurrnew
            return                   = return
    * Do not forget to commit, otherwise changes would not take effect.
    commit work.
    Regards,
    Hashir Ahmed

  • Any Update Available for 9300?

    Is there any possible update available for BlackBerry 9300 my OS Version is 6.0.0.526 (2342). I haven't updated my phone from the day I bought it. Please help me out with any possible update available for my BlackBerry. Thanks. Jasbir

    Hello,
    You can search the official download portal here:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    Sadly, it's first sorted by carrier (since the carriers actually control the release of the OS to their users), so searching for your model number takes some work indeed. But, you can perhaps get a little help in this thread:
    http://supportforums.blackberry.com/t5/BlackBerry-Curve/9300-the-official-OS-releases/td-p/1330551#n...
    Our friend Xandrex attempts to keep up a list that is better sorted, but he's not always able to keep it up to date as fast as he'd like. But, nevertheless, his thread will at least help you narrow down the carriers to look at in the download portal.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is there any alternative available for frameset

    Hi,
    Other than struct tiles, Is there any alternatives availabe for frameset
    Thanks in advance...

    maybe inline frames or a div elements.
    You are speking about html right?
    MeTitus
    Message was edited by:
    Me_Titus

Maybe you are looking for

  • Creating PDFs from BDC for VL01N

    Hi, I've to create PDFs for the deliveries which are being created in a BDC program.With some setting in config (which I'm unaware about,) as soon as the delivery is created, the output gets printed. I need to download the print preview at the same t

  • What is the difference between Statement and PreparedStatement

    Hi What is the difference between Stement and PrepareStatement Other than PreCompilation and dynamic Parameters? Thanks in advance. Sekhar

  • Payment Advice and Payment Files

    AT F110, i know it clears the open item line item and creates checks, but what is the Payment Advice and Payment Files that are created, where they will be created. How to see them. If it is to send to Bank how to send it. Please can any one eloborat

  • Problem again...

         * This will display all completed contracts     public void listCompleted()         for(Contract aContract : contracts)             if(aContract.getIsComplete() == true);                 System.out.println("This completed contracts name was: " +

  • Is it possible to show a processing dialog?

    hi, everyone. Is it possible to show a processing dialog when my scripts is executing? Because my script will spend some times, this will help the designer to understand that the scripts is working now. Thanks very much.