11.1.2.1 Planning JavaScript steps after updating ValidateData.js

I am working with Planning 11.1.2.1 this is a multiple server deployment (1 web server, 2 planning servers with load balancing).
My question is I have updated the ValidateData.js in the HyperionPlanning.ear.
Aside from deleting the Planning0\tmp directory when services are off. What is the process of getting it deployed.
I have tried to skim through several forums on OTN and there are so many questions left open that I am confused and just need some guidance.
Do i need to update the HyperionPlanning.ear in all 3 servers? Or just the 2 planning servers.
After doing placing the moified HyperionPlanning in the Oracle\Middleware\EPMSystem11R1\products\Planning\AppServer\InstallableApps\Common.
What all services need to be started and stopped for this to take affect
Finally Is there a specific log that tells me if the syntax will correctly validate against my application or that the syntax was accepted?
I was able to perform this on an 11.1.2.3 enviornment with the ADF turned off. the syntax of my ValidateData.js worked seamlessly and there were no flaws. So I can easily post that. Although I don't think it's a syntax issue. I think it's something else although I am not completely positive.
Thanks,
DjSmeadly

Even if it is clustered you should be able to go directly to each planning server and test, also make sure browser caches are cleared, if you are using firefox and something like firebug you can easily see whether the custom JavaScript has loaded, you should also be able to see if it has deployed the JavaScript file by looking in the tmp directory.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Acrobat X freezes when I run a JavaScript Action after about 200 files.

    Acrobat X freezes when I run a JavaScript Action after about 200 files, batches with less than 200 files work well.  I can watch the Acrobat.exe process in the resource monitor and when the Threads reach about 2000 and the Working Memory reaches 500mb, Acrobat freezes.  The JavaScript creates 2 redaction areas, applies the redaction, then saves the file to another location.  I've tested it on both Windows Server 2008 and Win7 32bit. I'm running Acrobat X Pro fully update to 10.1.10.

    It is possible to have the Redaction tool search for a text string across multiple PDFs without using the "Action" wizard or batch processing. You will have to learn the exact steps to properly set the properties for each string of text. You can also review the items marked for redaction and either accept, remove or adjust as needed each one.
    There are 3rd party tools that can also redact PDFs and they existed long before this feature was added to Acrobat. Appligent Document Solutions Redax..
    Appligent even has a server based product for large amount of files or using watched folders.

  • How can I modify an incorrect mailing address on my AppleCare Protection Plan certificate? After I registered a new product with AppleCare I realised that I'd entered the wrong postal address and I need to update it to show my correct address.

    I need to modify an incorrect mailing address on my AppleCare Protection Plan certificate. After I registered a new product with AppleCare I realised that I'd entered the wrong postal address during the registration process and now I need to update my details to show my correct address. I've been trying for several hours to find a way to modify my address on the AppleCare site, with no success. Any help/advice would be greatly appreciated!

    Contacting Apple World Wide for Support and Service
    http://support.apple.com/kb/HE57
    Apple Contact USA
    http://www.apple.com/contact/

  • How to call a javascript method after table load on JSFF Fragment load?

    Hello,
    The usecase is to invoke a javascript method after table is done loading (fetching data) when user lands to a JSFF fragment. With JSPX pages I can achieve that by using PagePhaseListener. I have tried with RegionController as follows, and the problem i face is that I cannot prevent multiple calls to the Javascript call when user presses a tab or button in a screen, or changes drop-down value with autosubmit on.
    import javax.faces.context.FacesContext;
    import oracle.adf.model.RegionBinding;
    import oracle.adf.model.RegionContext;
    import oracle.adf.model.RegionController;
    import org.apache.myfaces.trinidad.render.ExtendedRenderKitService;
    import org.apache.myfaces.trinidad.util.Service;
    public class MyListener implements RegionController{
    public MyListener() {
    super();
    @Override
    public boolean refreshRegion(RegionContext regionContext) {
    int refreshFlag = regionContext.getRefreshFlag();
    System.out.println("Render flag is: "+refreshFlag);
    if (refreshFlag == RegionBinding.PREPARE_MODEL)
    initializeMethod();
    regionContext.getRegionBinding().refresh(refreshFlag);
    return false;
    public boolean validateRegion(RegionContext regionContext) {
    regionContext.getRegionBinding().validate();
    return false;
    public boolean isRegionViewable(RegionContext regionContext) {
    return regionContext.getRegionBinding().isViewable();
    public void initializeMethod() {
    FacesContext f = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service = Service.getRenderKitService(f, ExtendedRenderKitService.class);
    service.addScript(f, "myJSFunction();");
    @Override
    public String getName() {
    return null;
    I need the javascript to be called only once after the table is done loading when user lands to a fragment (jsff).
    Any ideas appreciated?
    JDeveloper version is 11.1.1.5.0
    Thank you.
    Valon
    Edited by: Valon on Apr 11, 2013 3:10 PM

    One of the requirements is to compare every row with the next row and highlight the changes. There are other requirements as well where JavaScript solution is used.
    The question remains the same. Is it doable or not without changing the solution from JavaScript solution to server-side solution ? Can we call a JavaScript only once when the user lands to a jsff fragment ?
    Hope that is clear.
    Thanks.
    Valon

  • How to call  a javascript method after the PPR event has finished  ?

    Hi!
    How can we make a javascript method get called after the processing of ADF PPR event?
    My specific use case is,
    I want to call a javascript function after the data in the table is loaded...
    In 10g, that is not a problem, as the data used to get loaded directly during onLoad, and so i would call my js function on load;
    but in 11g , the table data is being loaded through PPR which is initiated onload, and so i needed to call my function after the PPR Response processing has been done; for which I need the name of the event triggered at that instance.
    Is it possible to do this?
    Regards,
    Samba

    Hey, I got it.
    I handled the ADF Controller's PREPARE_RENDER_ID phase of the lifecycle, and then called the
    script to get Executed.
    The code :
        public void afterPhase(PagePhaseEvent pagePhaseEvent) {
            FacesPageLifecycleContext ctx = (FacesPageLifecycleContext)pagePhaseEvent.getLifecycleContext();
                 if (pagePhaseEvent.getPhaseId() == Lifecycle.PREPARE_RENDER_ID) {
                    if(AdfFacesContext.getCurrentInstance().isPostback() )
                        afterRender();
        }is written in lifecycle listener , and my backing bean extended this listener ,
    and in the afterRender() method I did this :
       public void  afterRender(){
                System.out.println("AFTER RENDER CALLED");
               FacesContext context = FacesContext.getCurrentInstance();
               ExtendedRenderKitService service = (ExtendedRenderKitService)Service.getRenderKitService(context, ExtendedRenderKitService.class);
               service.addScript(context, "translate();");
           }That's it.
    It did work, magnificently.
    Thanks for the idea.
    Regards,
    Samba

  • What is the next step after editing or triming a video ? What type of file format to save and what to do after that ?

    what is the next step after editing or triming a video?
    what type of file format should be save and what to do after that?

    In the early days of digital video editing, an export render could take hours!  Not many applications are as hard on system resources as video editing, and rendering the final edit is probably the most system intense action of all.  
    Head on over to the Premiere Pro Hardware forum to see what sort of computer hardware the pros use for NLE (non linear editing), or to the PPBM5 site for a better look.
    PPBM5 Benchmark
    Also check out the specs on the Video Guys website

  • TS1369 After updating iTunes this week Windows 8 recognizes the iPod but does not offer an option to open with iTunes. iTunes does not recognize iPod Touch. Have followed all the steps but without success. Is there a solution with iTunes?

    After updating iTunes this week Windows 8 recognizes the iPod but does not offer an option to open with iTunes. iTunes does not recognize iPod Touch. Have followed all the steps but without success. Is there a solution with iTunes?

    I followed all the instructions on the suggested page. Many files in C:\Program Files\Common Files\Apple\ and C:\Program Files (x86)\Common Files\Apple\ could not be deleted. Message said ""Cannot delete files: It is being used by another person or program"' but could not find iPodService.exe in task manager (also, the "Cannont delete ... " did not mention iPodService.exe).
    Deleted all that I could. Reinstalled iTunes. Still same result. iTunes and computer both recognize my old iPod. Only the computer recognizes iPod Touch.

  • TS1814 I am trying to update my Iphone 3 and when i get to the activation step after a few minutes it shows a message that says " Your iPhone could not be activated because the activation server is temporarily unavailable. Try conenecting your iPhone to i

    I am trying to update my Iphone 3 and when i get to the activation step after a few minutes it shows a message that says " Your iPhone could not be activated because the activation server is temporarily unavailable. Try conenecting your iPhone to iTunes to activate it, or try again in a couple of minutes.
    If the problem persist, contact apple support at apple.com/support
    I been trying for a few times now and I keep getting the same message. How can i fix it? now my phone doesnt work.

    These are the steps mentioned in the article iPhone: Troubleshooting activation issues
    Perform the following steps if you receive one of the messages above:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to a known-good Wi-Fi network if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Apple for assistance.

  • HT5654 after update to the latest version on my ipad, it no longer connects to the internet nor can i send emails.  when plugged in to sync with itunes, it remains 'stuck' at syncing  step 2 of 7 backing up.  has anyone had similar problems? any solutions

    after update to the latest version on my ipad, it no longer connects to the internet nor can i send emails.  when plugged in to sync with itunes, it remains 'stuck' at syncing  step 2 of 7 backing up.  has anyone had similar problems? any solutions?

    I had this problem.  I held down the power switch to power down completely.  Takes a few seconds.  Then use the power switch to turn on.  Might take a couple goes.
    Kirk

  • Sync Send step after transformation step in BPM

    Hi Gurus,
    I have an interface where I am loading the data into an Oracle database and getting the response back (insertcount) from the database. Based on the response, I have to execute a stored procedure in another sync send step.
    I am doing perfectly alright until the transformation step. The sync send step after this step has the following entries.
    Sync interface: MI_LG_SP_INPUT_ABS
    Request Message: sp_lg_rec
    Response Message: sp_lg_snd
    While doing 'check(F7)', I am getting the following error.
    <b>Interface MI_LG_SP_INPUT_ABS for element sp_lg_poc_step2 is not abstract/asynchronous</b>
    The request message for this sync send step is the target message of the transformation step.
    This error is bugging me since 2 days. Please help me with this.
    Thanks
    Kalyan

    Sravya,
    I know what I did now. For my send sync interface which is MI_LG_SP_INPUT_ABS, I have unnecessarily created a container element and which caused this problem. From your post, I rechecked it and found that I don't need a container element for my abs/sync interface as I already have container elements for request and response which are abs/asynch.
    I gave you full points, thinking that you will come for my rescue in the future (just kidding!!!).
    Thanks again,
    Kalyan

  • Execute javascript after update and submit in Skillbuilders Modal Page

    Hi,
    I'm editing, say, list of my employees in a tabular form opened in Skillbuilders Modal Page.
    I have to execute same javascript code after the changes in the tabular form have been submitted.
    I've tried using a Dynamic Action fired on Page Load, but that gets executed before the update is completed.
    Does anyone have an idea how to accomplish this?
    Thank you!

    Thank you for your answers.
    Yes, I'm trying to execute javascript code on the child page, the modal one.
    Basically, there's a button on my parent page which opens the modal page. The modal page has buttons Cancel, Delete and Save. Clicking Save button submits the changes and if there are errors, errors are shown and we stay on the modal page.
    My modal pages are all of fixed dimensions and if there are errors, I have to adjust the other regions (adjust their height, add a scrollbar, etc) in order to show everything in the modal page.
    I have written a function that does exactly that, but I have to execute the function after the page is loaded and the regions are shown. But, if I execute it using onload attribute, or setting a dynamic action which fires on page load, the function gets executed during the submit, before the regions are shown.
    I hope I have managed to clear up the problem.
    As always, thank you.

  • What is the Next Step after MCSE

    I need to know what is the Next Step after MCSE massaging ?
    and what is the top certificate in Microsoft

    Hey Mohamed,
    I agree with Danny, he explained perfectly. 
    MCSE Certification is the highest in servers, DB, etc. .. (except from Office where different certifications)
    MASTER degree have now only for Microsoft Office. 
    See all qualifications for office following link 
    https://www.microsoft.com/learning/en-us/office-certification.aspx 
    Or details of the MASTER link 
    https://www.microsoft.com/learning/en-us/mos-master-certification.aspx
    Please Mark This As Answer if it helps to solve the issue
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP
    |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • Post installation steps after SAP BW system copy

    Hi!
    I am about to do post processsing steps after system copy of SAP BW system.
    1) One of the steps is to delete all entries from tables DBSTATHORA, DBSTAIHORA, DBSTATIORA,
    DBSTATTORA.
    Question: what is the way to do this?
    2) During the installation I received the error within import ABAP step.
    (IMP) INFO: import of D010TAB completed (4477754 rows) #20090505133631
    DbSl Trace: Error 12801 in exec_immediate() from oci_execute_stmt(), orpc=0
    DbSl Trace: ORA-12801 occurred when executing SQL stmt (parse error offset=0)
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE INDEX "D010TAB~0" ON "D010TAB" ( "MASTER", "TABNAME" ) TABLESPACE PSAPSR3700 STORAGE (INITIAL 423090176 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) NOLOGGING COMPUTE STATISTICS PARALLEL )
    DbSlExecute: rc = 99
    (SQL error 12801)
    error message returned by DbSl:
    ORA-12801: error signaled in parallel query server P000
    ORA-01659: unable to allocate MINEXTENTS beyond 34 in tablespace PSAPSR3700
    (DB) INFO: disconnected from DB
    As solution I changed the the following lines within D010TAB.TSK:
    from D010TAB~ 0 C err to D010TAB~0 C ign and
    from D010TAB1  C err to D010TAB1 C ign
    Question:
    how to create index manually after system copy?
    Thnak you very much!

    Jgen Pfeiffer wrote:>
    > Hi!
    >
    > I am about to do post processsing steps after system copy of SAP BW system.
    >
    > 1) One of the steps is to delete all entries from tables DBSTATHORA, DBSTAIHORA, DBSTATIORA,
    > DBSTATTORA.
    > Question: what is the way to do this?
    Simply run
    TRUNCATE TABLE <table_name>;
    for each of those tables.
    Make sure to either logon as SAP<SID> or provide the owner of the tables with the statement.
    > 2) During the installation I received the error within import ABAP step.
    > (IMP) INFO: import of D010TAB completed (4477754 rows) #20090505133631
    > DbSl Trace: Error 12801 in exec_immediate() from oci_execute_stmt(), orpc=0
    > DbSl Trace: ORA-12801 occurred when executing SQL stmt (parse error offset=0)
    > (DB) ERROR: DDL statement failed
    >  (CREATE UNIQUE INDEX "D010TAB~0" ON "D010TAB" ( "MASTER", "TABNAME" ) TABLESPACE PSAPSR3700 STORAGE (INITIAL 423090176 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) NOLOGGING COMPUTE STATISTICS PARALLEL )
    >  DbSlExecute: rc = 99
    >  (SQL error 12801)
    >  error message returned by DbSl:
    > ORA-12801: error signaled in parallel query server P000
    > ORA-01659: unable to allocate MINEXTENTS beyond 34 in tablespace PSAPSR3700
    > (DB) INFO: disconnected from DB
    >
    > As solution I changed the the following lines within D010TAB.TSK:
    > from D010TAB~ 0 C err to D010TAB~0 C ign and
    > from D010TAB1  C err to D010TAB1 C ign
    >
    > Question:
    > how to create index manually after system copy?
    The problem here was the large INITIAL size clause.
    If there is enough freespace at all in the tablespace this should work:
    CREATE UNIQUE INDEX "D010TAB~0" ON "D010TAB" ( "MASTER", "TABNAME" ) TABLESPACE PSAPSR3700 NOLOGGING COMPUTE STATISTICS PARALLEL;
    If I'm not wrong, the second index is just vice versa:
    CREATE UNIQUE INDEX "D010TAB~1" ON "D010TAB" (  "TABNAME", "MASTER" ) TABLESPACE PSAPSR3700 NOLOGGING COMPUTE STATISTICS PARALLEL;
    In general it is really not a good idea to skip the creation of unique indexes...
    regards,
    Lars

  • After update to Firefox 15 it crashes after javascript call window.close();opener.alert('test');. Is this working as intended or is it a bug?

    After update to Firefox 15 it crashes after javascript call from a popup window.close();opener.alert('test');. Is this working as intended or is it a bug?

    According to the pages linked to the crash ID, there is a bug report on this.
    Does the crash occur as soon as you run those two lines of code, or after dismissing the alert()?
    If this is your application, why are you running script commands after calling window.close()? Could you avoid the problem by using an approach like this:
    <br>window.setTimeout(function(){opener.alert('test'},250);
    window.close();

  • Best Practice on Post Steps after 11.2.0.2.4 ORACLE RAC installation

    I finished RAC 11.2.0.2 installation and patched it to 11.2.0.2.4. The database is also created.
    The nodes are Linux redhat and storages are on ASM.
    Is there any good article or link regarding the best practice of post steps after installation?
    Thanks in advance.

    Hi,
    I also want to know what kind of monitoring scripts I can use to setup as cron jobs to monitor or detect any failure or problems?
    To monitor Cluster (OS Level):
    I suggest you use a powerful tool "CHM" that already comes with product Grid Infrastructure.
    What do you do to configure? Nothing ... Just use.
    Cluster Health Monitor (CHM) FAQ [ID 1328466.1]
    See this example:
    http://levipereira.wordpress.com/2011/07/19/monitoring-the-cluster-in-real-time-with-chm-cluster-health-monitor/
    To monitor Database:
    PERFORMANCE TUNING USING ADVISORS AND MANAGEABILITY FEATURES: AWR, ASH, and ADDM and Sql Tuning Advisor. [ID 276103.1]
    The purpose of this article is to illustrate how to use the new 10g manageability features to diagnose
    and resolve performance problems in the Oracle Database.
    Oracle10g has powerful tools to help the DBA identify and resolve performance issues
    without the hassle of analyzing complex statistical data and extensive reports.
    Hope this help,
    Levi Pereira
    Edited by: Levi Pereira on Nov 3, 2011 11:40 PM

Maybe you are looking for

  • Using a central itunes library

    I operate a Macpro with the itunes library resident on its local harddrive. I also use an apple tv and a airport connection to a stereo. I use a timecapsule wireless router with a WD network drive hanging off the time capsule. Is there a way to have

  • Business Workplace - "Tips & Tricks"

    I've just noticed a very, very cool feature in Business Workplace. When you go to your Inbox, and you hover over "Tips & Tricks," something appears, a bit like a Windows tooltip, except far more useful and far less annoying. Does anyone know how I ca

  • Where can I buy a NEW, unused iPod Hi-Fi today?

    Where can I buy a NEW, unused iPod Hi-Fi today (2013)? I've been on Amazon.com and I've found only one new at $999,99 ... Isn't there any other new ones at lower price? Please someone answer.

  • Office 365 contacts and public folders

    Hi all, I am looking for some help with Office 365, detailed below: We have a CRM system that emails in multiple contacts meant for particular users within the organisation, and we are looking for how to get these contacts automatically added to part

  • Can I recover missing notes? I use yahoo mail and the "Notes" app within mail, contacts and calendars is set to ON.

    Hi. I have lost several pages of notes in the iPad notes application on the iPad2. I have read that there may be a way to recover them via an email account, but the posts reference Gmail. My email account is Yahoo. Has anyone successfully recovered m