How to call force render on custom effect from AEGP?

Hi All,
          I want to call a force render on my custom effect from AEGP. I tried setting PF_OutFlag_Force_Rerender flag in PF_CMD_COMPLETELY_GENERAL (Called from AEGP via AEGP_EffectGeneric()). But it did not work. Is there any other way to force a rerender on the custom effect?
Thanks,
Dheeraj.

Thanks a lot Shachar for the reply. But if I use AEGP_SetStreamValue AE
will add the action to Undo/Redo stack. Please correct me if I'm wrong.
I don't want AE to add it to undo/redo stack. So is there any way to
tell AE not to add AEGP_SetStreamValue() action to undo/redo stack? Or is there a call to force render from AEGP?

Similar Messages

  • How to call & pass values to custom page from seeded page table region

    Hi All,
    can anyone tell me how to call & pass values to custom page from seeded page table region(Attribute is not available in seeded page VO)
    it is urgent. plssss
    Regards,
    purna

    Hi,
    Yes, we do this by extending controller, but you can also try this without extending controller.
    1. Create Submit Button on TableRN using personalization.
    2. Set "Destination URI" property to like below
    OA.jsp?page=/<yourname>/oracle/apps/ak/employee/webui/EmpDetailsPG&employeeNumber={@EmployeeId}&employeeName={@EmployeeName}&retainAM=Y&addBreadCrumb=Y
    Give your custom page path instead of EmpDetailsPG.
    EmployeeId and EmployeeName are VO attributes(Table Region)
    If you dont have desired attribute in VO, then write logic in your custom page controller to get required value using parameters passed from URL path.
    In this case, only personalization will do our job. Hope it helps.
    Thanks,
    Venkat Y.

  • I had over 200 e-mails.  I went to my webmail and deleted most of them.  However, my iPhone still shows 200 e-mails.  How can I force my iPhone to update from the e-mail server?  Or will I have to delete each e-mail from my iPhone as well?  Thanks.

    I had over 200 e-mails.  I went to my webmail and deleted most of them.  However, my iPhone still shows 200 e-mails.  How can I force my iPhone to update from the e-mail server?  Or will I have to delete each e-mail from my iPhone as well?  Thanks.

    You may have to try deleting all the music from your phone (by going to Settings>General>Usage>Music, swipping All Music and tapping Delete), then sync it all back on with iTunes in order to fix this.

  • How to call a AM method with parameters from Managed Bean?

    Hi Everyone,
    I have a situation where I need to call AM method (setDefaultSubInv) from Managed bean, under Value change Listner method. Here is what I am doing, I have added AM method on to the page bindings, then in bean calling this
    Class[] paramTypes = { };
    Object[] params = { } ;
    invokeEL("#{bindings.setDefaultSubInv.execute}", paramTypes, params);
    This works and able to call this method if there are no parameters. Say I have to pass a parameter to AM method setDefaultSubInv(String a), i tried calling this from the bean but throws an error
    String aVal = "test";
    Class[] paramTypes = {String.class };
    Object[] params = {aVal } ;
    invokeEL("#{bindings.setDefaultSubInv.execute}", paramTypes, params);
    I am not sure this is the right way to call the method with parameters. Can anyone tell how to call a AM method with parameters from Manage bean
    Thanks,
    San.

    Simply do the following
    1- Make your Method in Client Interface.
    2- Add it to Page Def.
    3- Customize your Script Like the below one to Achieve your goal.
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("GetUserRoles");
    operationBinding.getParamsMap().put("username", "oracle");
    operationBinding.getParamsMap().put("role", "F1211");
    operationBinding.getParamsMap().put("Connection", "JDBC");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    return null;
    i hope it help you
    thanks

  • How to call a exe or bat file from java program

    hi,
    i actually want to know that how to call a exe or bat file from program so that i can run them parallely.

    Try this :
    String strCmd = "myFile.bat";
    try
         Runtime rTime = Runtime.getRuntime();
         Process process = rTime.exec(strCmd);
         InputStream p_in = process.getInputStream();
         OutputStream p_out = process.getOutputStream();
         InputStream p_err = process.getErrorStream();
         p_in.close();
         p_out.close();
         p_err.close();
    catch(Exception e) {
         throw new Exception("Unable to start, "+strCmd);
    }

  • How to call Operating System commands / external programs from within APEX

    Hi,
    Can someone please suggest how to call Operating Systems commands / external programs from within APEX?
    E.g. say I need to run a SQL script on a particular database. SQL script, database name, userid & password everything is available in a table in Oracle. I want to build a utility in APEX where by when I click a button APEX should run the following
    c:\oracle\bin\sqlplusw.exe userud/password@database @script_name.sql
    Any pointers will be greatly appreciated.
    Thanks & Regards,

    Hi Guys,
    I have reviewed the option of using scheduler and javascript and they do satisfy my requirements PARTIALLY. Any calls to operating system commands through these features will be made on the server where APEX is installed.
    However, here what I am looking at is to call operating systems programs on client machine. For example in my APEX application I have constructed the following strings of commands that needs to be run to execute a change request.
    sqlplusw.exe user/password@database @script1.sql
    sqlplusw.exe user/password@database @script2.sql
    sqlplusw.exe user/password@database @script3.sql
    sqlplusw.exe user/password@database @script4.sql
    What I want is to have a button/link on the APEX screen along with these lines so that when I click that link/button this entire line of command gets executed in the same way it would get executed if I copy and paste this command in the command window of windows.
    Believe me, if I am able to achieve what I intend to do, it is going to save a lot of our DBAs time and effort.
    Any help will be greatly appreciated.
    Thanks & Regards,

  • How to call a sql server stored procedure from oracle

    Hi all,
    Please anybody tell me how to call a sql server stored procedure from oracle.
    I've made an hsodbc connection and i can do insert, update, fetch data in sql server from oracle. But calling SP gives error. when I tried an SP at oracle that has line like
    "dbo"."CreateReceipt"@hsa
    where CreateReceipt is the SP of sql server and hsa is the DSN, it gives the error that "dbo"."CreateReceipt" should be declared.
    my database version is 10g
    Please help me how can i call it... I need to pass some parameters too to the SP
    thanking you

    hi,
    thank you for the response.
    when i call the sp using DBMS_HS_PASSTHROUGH, without parameters it works successfully, but with parameters it gives the following error
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC][Microsoft][ODBC SQL Server Driver]Invalid parameter number[Microsoft][ODBC SQL Server Driver]Invalid Descriptor Index (SQL State: S1093; SQL Code: 0)
    my code is,
    declare
    c INTEGER;
    nr INTEGER;
    begin
    c := DBMS_HS_PASSTHROUGH.OPEN_CURSOR@hsa;
    DBMS_HS_PASSTHROUGH.PARSE@hsa(c, 'Create_Receipt(?,?)');
    DBMS_HS_PASSTHROUGH.BIND_VARIABLE@hsa(c,1,'abc');
    DBMS_HS_PASSTHROUGH.BIND_VARIABLE@hsa(c,2,'xyz');
    nr:=DBMS_HS_PASSTHROUGH.EXECUTE_NON_QUERY@hsa(c);
    DBMS_HS_PASSTHROUGH.CLOSE_CURSOR@hsa(c);
    end;
    Create_Receipt is the sp which requires two parameters.
    please give me a solution
    thanking you
    sreejith

  • How to call main method in one class from another class

    Suppose i have a code like this
    class Demo
    public static void main(String args[])
    System.out.println("We are in First class");
    class Demo1
    public static void main(String args[])
    System.out.println("We are in second class");
    In the above program how to call main method in demo calss from Demo1 class......???????

    No, i dont know how to call other than main methods from other classes
    And one more doubt i have i.e. Like in C can we see the execution of the program like how the code is being compiled step by step and how the value of the variable changes from step to step like(Add Watch).........

  • How to call another view controller's method from a view controller?

    Hi,
    Iam new to webdynpro . so pls clarify my doubt.
    How to call another view controller's method from a view controller in the same Web Dynpro Component?
    Thanks,
    Krishna

    Hi,
         The methods in a view are only accessible inside same view. you cannot call it outside the view or
         in any other view although its in same component.
         If you want to have a method in both views, then create the method in component controller and
         from there you can access the method any where in whole component.

  • How to get AEGP_EffectRefH within the custom effect?

    Hi,
        I want to get the AEGP_EffectRefH of the custom effect applied. This is what I'm trying to do:
    In global setup of custom effect:
    AEGP_GlobalRefcon globalRef    =    NULL;
    const A_char*        pluginName    =    "ADBE Custom Effect";
    AEGP_SuiteHandler    suites(in_data->pica_basicP);
    suites.UtilitySuite5()->AEGP_RegisterWithAEGP(globalRef, pluginName, &S_Plugin_ID );
    After getting the plugin ID, I do this in a function to get the AEGP_EffectRefH:
    I call this function when the custom effect is added:
    void function()
         AEGP_EffectRefH        effect_refH        =    NULL;
         AEGP_SuiteHandler    suites(in_data->pica_basicP);           
         ERR(suites.PFInterfaceSuite1()->AEGP_GetNewEffectForEffect(S_Plugin_ID, in_data->effect_ref, &effect_refH));
    But the effect_refH returned is NULL. AE pops up a dialog saying
    After Effects error: internal verification failure, sorry! {child not found in parent}
    (29 :: 0)
    What am I doing wrong?
    Thanks,
    Dheeraj

    about the reliability of effectRefs:
    they are reliable for the duration of one call.
    i.e. for the beginning to the end of the render call or updtate_params_ui call.
    after that cal has ended, the effectRef is likely to become invalidated.
    do an experiment:
    get an effect's effectRef, and check it's address in ram.
    releast the effetcRef and get another effectRef for a DIFFERENT effect.
    check it's adress and you'll be amazed that it has the same address as the first.
    why is that?
    because it doesn't point to the address of that effect in ram.
    it's an internal id that allows AE to operate on the effect for you.
    so that same effectRef you have, might point to a different effect or to nothing at all, once AE decides that the effectRef you acquired is no longer in use.
    AE will decide that after you release the effetcRef, or that you effect returns from it's call.
    so what does all that mean?
    it means you should treat effectRefs and a temporary key for accessing an effect, and NOT as a long term means of identifying and effect.
    there is no perfect solution for tracking an effect for long spans.
    if you want to keep track of an effect outside the scope of one call you have to:
    1. get the itemID for the comp it's in
    2. get the layerID for the layer it's on
    3. get the effect's index on the layer (this is the tricky bit)
    the comp's itemID and layerID both last for the lifetime of the project.
    they will keep across sessions, even if the project is loaded on a different machine and a different platform.
    these only get invalidated if the project is imported into another project.
    the index of the effect is the problem bit.
    there is no API call for getting an effects index.
    you can only tell the index by counting all effects on the layer, until you hit the desired effect.
    even then it's hard to tell because you tell what effect you hit by reading it's matchName.
    what if you have to copies of the same effect on one layer?
    how do you tell them apart?
    it's up to you to create a unique identifier.
    either a hidden slider holding a random value that's unique to each instance, or change the effect name to something unique (the user might change that without you knowing)
    the last problem with the index is that the user might change effects order on that layer, and your effect get no notification of that having happened.
    so even if you stored the itemID, layerID and effect index, you still have to make sure it's the correct effect before you do something hasty like access it.
    as i said,
    there is no perfect long term solution for tracking effects.

  • ***How to call BSP App when custom button event fired from toolbar group***

    Dear PCUI Experts,
       I have created one custom button for the transaction CRMD_BUS2000116.
    And my urgnet requirement is , I need to call BSP application which is used to   take data from custom fields and stores into BP table.
    How to call the BSP App. when i clicks on the button.
    Please help me..
    I will reward with great points.
    Regards,
    Stella.

    Hi Purushothaman,
                                 I have created a button in CRRM_ACCOUNT application.
    Now i want to call  a custom bsp application by clicking on that button.I have followed step given in this blog
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1646. [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    But the event is not triggered.Do I have to create an iview for my bsp application?
    How to do that?Plz help.
    Regards,
    Ruby.

  • How to call AIAAsyncErrorHandlingBPELProcess in my custom BPEL Process

    Hello
    We want to use AIA Foundation pack Error Handling capability to our SOA Interface. I installed & configured Foundation Pack (Notification). I would like to know
    1) How to invoke AIAAsyncErrorHandlingBPELProcess in my interface?
    2) What variables to pass?
    3) What error tables to look?
    4) Any other configuration I need to do before I start to invoke AIAAsyncErrorHandlingBPELProcess ?
    As this would be the first time we would be using AIA(FP). If you have any samples - would you share?
    Thanks
    Babu

    1) How to invoke AIAAsyncErrorHandlingBPELProcess in my interface?
    Its like calling a webservice endpoint, you need to construct AIAFault (found in meta.xsd) and then pass it to AIAAsyncErrorHandlingBPELProcess.
    2) What variables to pass?
    You have to construct AIAFault variable.
    3) What error tables to look?
    You can see WL JMS topic - AIAErrorTopic (configured - OOB after installing FP)
    4) Any other configuration I need to do before I start to invoke AIAAsyncErrorHandlingBPELProcess ?
    You might want to look @ AIA error notificaiton setup (using the AIAApplication - setup pages available ). But its optional, i.e. if you do not setup anything, still the default values will be picked up from the AIAConfigurationProperties.xml file.
    You can look @ AIADemo that gets shipped with FP for more information on how to call AIAAsyncErrorHandlingBPELProcess. You could also use AIA Service Constructor JDeveloper plugin which will autogenerate lot of code for you including EH, CAVS code.

  • How to call standard form in custom form

    sir,
    please help me .in calling standard form through custom form
    Edited by: user11996389 on May 15, 2012 10:00 PM

    Hi,
    As far as I understand, you have a standard form, S and a custom form, C. You want to call S from C.
    The API mentioned in my previous reply is the standard way to call one form from another in Oracle Apps. You may invoke this API from a trigger like WHEN-BUTTON-PRESSED. The API has a few mandatory parameters which you need to provide in order to successfully call the form. As mentioned, please refer to the Developer's Guide.
    If you have any doubts or face any problems/errors, post the details here. Forums members will be reluctant to help if you do not put in some efforts of your own.
    Regards,
    Sujoy

  • How to call a portal KM URL link from WAD template Link

    Hi All
    I  am trying to call a Portal KM URL Link from the web template using the link control.
    I cannot figure out whare and how to put the portal KM URL Link into the web application web link.
    Your help is greatly appreciated.
    Thanks
    Karen

    Add content administration role to the user.
    The the content administration tab would be visible to the user in the main menu tab.
    Then in content administration tab, configure the URL for KM URL tab or link.
    This would be done by EP experts. Please contact your EP experts to do.
    Hope this would help you.

  • How to call a method in one JSP from another JSP?

    say that I have 2 JSPs.
    JSP one has a button.
    JSP two has some method that, say, find the square root of the number passed from JPS one.
    How to - when click - the button on page one call the method on page two?
    Please note that I can not use object binding, but I want passing the actual parameter and call the method on page two.
    Please note that this is an update of a previous post on the same topic called "Object scope".
    Thank you all very much.

    No, i dont know how to call other than main methods from other classes
    And one more doubt i have i.e. Like in C can we see the execution of the program like how the code is being compiled step by step and how the value of the variable changes from step to step like(Add Watch).........

Maybe you are looking for

  • ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exi

    Hi all, suddenly our oracle 10g database stopped working. When we tried export the database following was the output C:\Documents and Settings\Administrator>EXP PMIS/PMIS FILE=C:\PMIS.DMP Export: Release 10.2.0.1.0 - Production on Wed Mar 25 16:15:08

  • Performance problems with JDBC and mysql

    Hi, I have here a "one table" database which has 1.000.000 data rows. The problem is, that deleting a special entry (ie delete from mytable where da_value="foo1") takes between 10 and 60 seconds. Does anyone can help me out of this performance trap.

  • Time Machine and Excel Missing File

    Hello, this is my first posting here and I would appreciate some help. An important Excel file of mine just disappeared both on my hard drive as well as on my Time Capsule backup, which is really puzzling me. Here are the facts: 1. I am using an iMac

  • DHTML Support in Portal

    <body class="prtlBody" xmlns:sap="urn:http://schemas.sap.com/SAP.Web.UI.Controls"> <STYLE>LI {behavior:url(irjportalappsSAP.PDK.Samples.ClientSideEventsCSscriptshilite.htc)} </STYLE> Mouse over the two list items below to see this effect. <UL> <LI>DH

  • Can't open spreadsheet

    An old Numbers-spreadsheet has been converted into a folder, and Numbers says that it can´t open folders. If I open the floder from finder, it contains some strange files, among others a zip-file. But I can't find the spreadsheet.  Any suggestions?