Adobe Pro fires validation event when new page is created

Adobe Pro fires validation event when a new page is created on many fields.
When testing in Livecycle, I can add a new page fine, but with Adobe Pro a large list of errors appears and the fields are highlighted in red.
The errors don't happen in other versions of Adobe.
These are valid errors if the user tried to submit a field that is required and has not been entered yet, but the error happens when the page is initially created (added).

I was able to get my role processor to work.
EventHandlers.xml
>
<?xml version="1.0" encoding="UTF-8"?>
<eventhandlers xmlns="http://www.oracle.com/schema/oim/platform/kernel"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.oracle.com/schema/oim/platform/kernelorchestration-handlers.xsd">
<action-handler class="oim11g.code.eventhandler.RoleProcessor" entity-type="Role" operation="ANY" name="RoleProcessor" order="9999" stage="postprocess" sync="TRUE"/>
</eventhandlers>
>
plugin.xml
>
<?xml version="1.0" encoding="UTF-8"?>
<oimplugins xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<plugins pluginpoint="oracle.iam.platform.kernel.spi.EventHandler">
<plugin pluginclass="oim11g.code.eventhandler.RoleProcessor" version="1.0" name="RoleProcessor"/>
</plugins>
</oimplugins >
>
Code:
>
public EventResult execute(long l, long l2, Orchestration orchestration) {
String operation=orchestration.getOperation().trim().toString();
HashMap<String, Serializable> parameters = orchestration.getParameters();
System.out.println("<---------- Calling " + getClass().getName() + ": Operation[" + operation + "] Execute ---------->");
System.out.println("<---------- Ending " + getClass().getName() + " Operation[" + operation + "] Execute ---------->");
return new EventResult();
>
When i modified one of my roles, it output the following:
>
<---------- Calling oim11g.code.eventhandler.RoleProcessor: Operation[MODIFY] Execute ---------->
<---------- Ending oim11g.code.eventhandler.RoleProcessor Operation[MODIFY] Execute ---------->
>
Hope this helps.
-Kevin

Similar Messages

  • Help using app_standard.event(when-tab-page-changed')

    Hello ,
    I need to create a form with the following requirements . There is one content canvas which contains a tabbed canvas and on this there are two stacked canvases .
    The problem is that when I compile my form and ftp to oebs , I cannot view the tab pages on the canvas .
    I see only my the fields displayed in the first tab page without the 'tab pages'.
    How do I solve this issue please ?
    My when-page-page-trigger contains the following :
    BEGIN
         APP_STANDARD.EVENT('WHEN-TAB-PAGE-CHANGED');
    if name_in('system.cursor_block') = 'XX_ERROR_MANAGEMENT' then
    if not form_success then
    -- Revert tab to prior value and exit
    set_canvas_property('CAN_INT',topmost_tab_page,name_in('system.tab_previous_page'));
    return;
    end if;
    -- Move to first item on each tab
    if target_canvas_name = 'CAN_INT' then
         SHOW_VIEW('CAN_ONG1');
    go_item('XX_ERROR_MANAGEMENT.INTERFACE_TYPE');
    else
    show_view(target_canvas_name);
    end if;
    END IF;
    END;
    Any help will be much appreciated . Thanks .

    bump

  • Is it possible to fire an event when radio buttons are clicked in a report?

    Hi All,
    I have got a requirement. In the selection screen i have certain input fields and three radio buttons. When radio buttons are clicked i have to grey out certain input fields. Is it possible to fire an event when i write program through se38??
    Thanks
    Rakesh

    Hi Rakesh,
    Check this code.
    SELECTION-SCREEN BEGIN OF BLOCK FINPUT WITH FRAME TITLE TEXT-001.
    PARAMETERS  : FILENAME(132) TYPE C LOWER CASE  NO-DISPLAY,
                  FDLOAD RADIOBUTTON GROUP RAD1
                  USER-COMMAND R1 ,
                  FUPLOAD RADIOBUTTON GROUP RAD1 .
    SELECTION-SCREEN END OF BLOCK FINPUT.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
    PARAMETERS : FUNAME(132) TYPE C LOWER CASE MODIF ID AA.
    SELECTION-SCREEN PUSHBUTTON /33(30) ACTION USER-COMMAND
                     BTNACT MODIF ID AA VISIBLE LENGTH 8 .
    SELECTION-SCREEN PUSHBUTTON 43(30) CANCEL USER-COMMAND
                     BTNCAN MODIF ID AA VISIBLE LENGTH 8  .
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    PARAMETERS : FDNAME(132) TYPE C LOWER CASE MODIF ID BB.
    SELECTION-SCREEN PUSHBUTTON /33(30) ACTIONS USER-COMMAND
                     BTNACT1 MODIF ID BB VISIBLE LENGTH 8.
    SELECTION-SCREEN PUSHBUTTON 43(30) CANCELS USER-COMMAND
                     BTNCAN1 MODIF ID BB VISIBLE LENGTH 8.
    SELECTION-SCREEN END OF BLOCK B2.
    DATA : ACTNAME(8) TYPE C,SCRGRUP(2) TYPE C.
    INITIALIZATION.
    ACTIONS = 'Download'.
    CANCEL = 'Cancel'.
    ACTION = 'Upload'.
    CANCELS = 'Cancel'.
    ACTNAME = 'Download'.
    SCRGRUP = 'AA'.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.
    IF FUPLOAD = 'X'.
         MOVE 'Upload' TO ACTION.
         MOVE 'Upload' TO ACTNAME.
    ELSEIF FDLOAD = 'X'.
         MOVE 'Download' TO ACTION.
         MOVE 'Download' TO ACTNAME.
    ENDIF.
    AT SELECTION-SCREEN.
    IF SY-UCOMM = 'R1'.
        IF ACTION = 'Download'.
          SCRGRUP = 'AA'.
         MESSAGE S007(ZMESSAGE).
        ELSEIF ACTION = 'Upload'.
          SCRGRUP = 'BB'.
         MESSAGE S008(ZMESSAGE).
       ENDIF.
    ELSEIF SY-UCOMM = 'BTNCAN' OR SY-UCOMM = 'BTNCAN1'.
      LEAVE PROGRAM.
    ENDIF.
    *AT USER-COMMAND.
    CASE SY-UCOMM.
       WHEN 'ACTIONS'.
         LOOP AT SCREEN.
           IF SCREEN-NAME = 'FUNAME'.
           ENDIF.
         ENDLOOP.
    ENDCASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FUNAME.
      PERFORM call_filedialog CHANGING FUNAME.
    PERFORM call_filedialog CHANGING FUNAME.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = SCRGRUP AND ACTNAME = 'Download' .
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = SCRGRUP AND ACTNAME = 'Upload'.
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    FORM call_filedialog CHANGING fname.
      DATA: li_filetable TYPE STANDARD TABLE OF file_table,
        lv_return TYPE i,
        lw_filetable TYPE file_table.
      CALL FUNCTION 'TMP_GUI_FILE_OPEN_DIALOG'
        TABLES
          file_table = li_filetable
        EXCEPTIONS
          cntl_error = 1
          OTHERS     = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      READ TABLE li_filetable INDEX 1 INTO lw_filetable.
      fname = lw_filetable-filename.
    ENDFORM.                    "call_filedialog
    Reward Points, if useful.
    Regards,
    Manoj Kumar

  • Fire an event when loosing focus on "dateFrom" EditText

    Hello,
    im trying to fire an event when im "going out" dateFrom (EditText). I used the following code which is not working. Have You and different way to do it ??
    im main goal is to format the text in the EditText to the propriet one when the user will focus on other element.
    If pVal.EventType = BoEventTypes.et_LOST_FOCUS Then
    If pVal.ItemUID = "dateFrom" Then
    oAppObj.MessageBox("", 1, "OK")
    End If
    End If
    Thanks

    Hi Adele
    when im "going out" nothing happend. Im using this event  in my oAppObj_ItemEvent Sub,maybe here is my mistake ?? but i dont think so !!
    One more think:
    Im trying to work on the Employee Info and when i update some fields ( exp. startDate = 09/09/06  - dd/mm/yy) im getting an error ( the starting date is befor the birth date =21/01/70 dd-mm-yy) !!! is it a 2K year problem ??
    All this it looks so strange ... im using B1 2004A and VB.Net

  • Set a dynamic default property when a page is created?

    Is there a way to set a default property that is dynamic for a page when it is created? For example, i want to capture a user id from our system and store it in an "author" property when the page is first created. This value can be changed to a different user by the author but in case they don't set it i want to have it default on page creation.
    I guess a better question would be, is there somewhere i can put code so that it will be executed when a page is created?
    I considered writing a custom widget and putting this in page properties, but that won't actually run unless page properties has been opened.
    Thanks

    For anyone in the future, here is how i implemented the event handler -
    @Component
    public class PageCreationObservation implements EventListener {
        Logger log = LoggerFactory.getLogger(this.getClass());
        private Session adminSession;
        @Reference
        SlingRepository repository;
        @Activate
        public void activate(ComponentContext context) throws Exception {
            log.info("Activating PageCreationObservation");
            try {
                String[] nodetypes = {"cq:Page"};
                adminSession = repository.loginAdministrative(null);
                adminSession.getWorkspace().getObservationManager().addEventListener(
                    this, //handler
                    Event.NODE_ADDED, //binary combination of event types
                    "/content/appname", //path
                    true, //is Deep?
                    null, //uuids filter
                    nodetypes, //nodetypes filter
                    false
            } catch (RepositoryException e) {
                log.error("Unable to register session",e);
                throw new Exception(e);
        @Deactivate
        public void deactivate(){
            if (adminSession != null) {
                adminSession.logout();
        public void onEvent(EventIterator eventIterator) {
            try {
                while (eventIterator.hasNext()) {
                    Event newEvent = eventIterator.nextEvent();
                    log.info("something has been added : {}", newEvent.getPath());
                    //Check if node exists and it is a content node of the newly created page
                    if (adminSession.nodeExists(newEvent.getPath())
                            && adminSession.getNode(newEvent.getPath()).getProperty("jcr:primaryType").getString().equals("cq:PageContent")) {
                        Node contentNode = adminSession.getNode(newEvent.getPath());
                        if (contentNode.getProperty("jcr:createdBy") != null) {
                            contentNode.setProperty("author", contentNode.getProperty("jcr:createdBy").getString());
                adminSession.save();
            } catch(Exception e){
                log.error("Error while treating page creation events",e);

  • When using Pages to create an EPUB file, how would I force a page brake?

    when using Pages to create an EPUB file, how would I force a page brake?

    Sory Peter but you don't seem to understand.
    If you pick up an e-book by random on the iBook Store, you will see that professional e-books ALWAYS start their chapters at the top of a new page, whatever the reader, the color of the page or the size of the text are.
    I know how to add a new chapter with the use of the appropriate style in Pages but I want to be able to divide SECTIONS as well.
    What I want to to do is to force a page break in between two paragraphs and apparently, this option is not possible with Pages.
    Rémy.

  • How to detect when new record is created?

    How can I detect when new record is created in PA30? For example, a newly create record for infotype 6 (address).
    Can I get the information in PCL4?

    Hi Irene,
    the field PAnnnn-AEDTM, nnnn is the infotype number, will give you the date when the record was last changed.
    Not sure if you can precisely get the date when the infotype was created. I dont feel the need to read cluster form the same.
    Regards,
    Pulkit

  • [svn:osmf:] 14227: FactoryElement no longer emits a Ready event when it' s finished creating it's media element.

    Revision: 14227
    Revision: 14227
    Author:   [email protected]
    Date:     2010-02-17 17:10:34 -0800 (Wed, 17 Feb 2010)
    Log Message:
    FactoryElement no longer emits a Ready event when it's finished creating it's media element.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/FactoryElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/FactoryLoadTrait.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Adobe Media Encoder Debug Event (when exporting audio)

    I do alot of vj'ing... I have a good pipeline for exporting short film clips, optimized for the vj software I use.
    I export photojpg at 75 quality, at 640x480, with no audio.
    However, i'm now trying to export some of the same clips, but with the audio intact.
    No matter what audio format and bitrate setting I choose, however, media encoder refuses to export the audio.
    I've tried it with a number source videos, with various combinations of source video/audio codec combinations, and I continue to get the same error:
    Adobe Media Encoder Debug Event
    [..\..\Src\Win\WinFile.cpp-754]
    When I unclick audio, each clip exports fine, as normal.
    What gives?
    -Matt Daly

    I'll tryed now everything. If I choose update it tells everything is up to date. If tryed to run patch from: "http://download.adobe.com/pub/adobe/mediaencoder/win/7.x/AdobeMediaEncoderTrial_64-7.0.1-m ul-AdobeUpdate.zip", it runs ok but nothing has updated when I start Media Encoder again.

  • I purchased a computer that has no cd drive. How can I get my Adobe Pro XI program on my new computer?

    I purchased the Adobe Pro XI a few months ago and now I purchased a new computer that does not have a cd drive to install the program. How can I install it on my new computer?

    Hi Lena,
    You can download the setup from here : https://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    Regards,
    Rahul

  • Adobe pro 9 changes printers when mouse moves over printer window

    When trying to print an adobe document, the default printer is ignored and the selected printer changes as the mouse moves across the printer window to reach the print button, making it difficult to stabilize the printer selection. Please advise

    I have now checked other people in my departments Adobe versions.
    I have Adobe Pro V9.0.0, and does not print correctly.
    1 person has Adobe XI Pro and prints correctly.
    1 person has Adobe Pro 9.5.5 and prints correctly.
    1 person has Adobe Pro V9.0.0 and does not print correctly
    I have now installed the available upgrades which only took me to 9.2.0 and still prints incorrectly.
    I wil try and find the other updates and see if that helps.
    thx.

  • MIGO: Events when new doc(Goods Issue) is created

    Hi,
    My requirement is, whenever there is a Goods Issue created in SAP using MIGO transaction, the data should flow to an external system. Do we have a standard IDoc associated with it.
    As MIGO tx. is built using OO-ABAP, do we have any standard events that get triggered when a new document is created.
    How do i acheive this..? Any pointers appreciated.
    Regards.

    check this thread -
    Re: Goods Receipt MIGO IDOC
    Regards,
    Amit

  • JDev 10.1.3 ADF: How to fire an event when clicking a Radio Button

    I have a <af:table> component with the following code for my radio button
    <af:tableSelectOne text="Select and"
    binding="#{backing_viewFees.tableSelectOne1}"
    id="tableSelectOne1"
    attributeChangeListener="#{backing_viewFees.tableSelectOne1_attributeChangeListener}"
    autoSubmit="false">
    When I click the radio button it does not fire up my event in my backing bean?

    Thank you for the suggestion...it does work and fires the event, but it is still not selecting the current record when I try to perform an Update or Delete.
    I had to modify your code a bit in order for it work in JDev 10...used the JUCtrlValueBindingRef instead of the FacesCtrlHierNodeBinding.
    Here is what my af:table tag looks like:
    <af:table value="#{bindings.FeesView1.collectionModel}"
    var="row" rows="#{bindings.Fees001View1.rangeSize}"
    first="#{bindings.FeesView1.rangeStart}"
    emptyText="#{bindings.FeesView1.viewable ? \'No rows yet.\' : \'Access Denied.\'}"
    selectionListener="#{backing_viewFees.tableSelectOne1_attributeChangeListener}"
    binding="#{backing_viewFees.table1}" id="table1">
    If I put back my 2 original attributes, then my Delete and Updates work.
    selectionState="#{bindings.FeesView1.collectionModel.selectedRow}"
    selectionListener="#{bindings.FeesView1.collectionModel.makeCurrent}"
    Here is my code in the backing bean:
    public void tableSelectOne1_attributeChangeListener(SelectionEvent selectionEvent) {
    JUCtrlValueBindingRef binding = (JUCtrlValueBindingRef)this.getTable1().getSelectedRowData();
    if (binding != null) {
    Row currentRow = binding.getRow();
    if (currentRow != null) {
    System.out.println(currentRow.getAttribute("CurrentRecordInd")); // this does print my selected value!!!!
    }

  • How do I stop all tab group windows cascade open when new page is started

    Upgrade to latest Firefox version two days ago, and now whenever I start a NEW PAGE, all tabbed pages cascade onscreen, ie "open link in new window" brings up all tab groups on toolbar.
    This has never been a problem - I "save" windows in Tab Groups on my toolbar, and bring up a Group for reference during the day.
    Something in the new download has altered my settings, and I cannot find how to keep the tabbed window groups from cascading onscreen, and having to constantly minimise them.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Template view fine in test browser but not when a page is created from it

    I'm trying to recreate a template page from my site using different code for the drop down menu at the top. The template behaves properly when i test it in Safari vs. 5.0.6 but when i test a page made from that template (using the File>New> Page from Template) it dosen't present with styles. Can anyone see anything wrong with the code? I checked both the code and the CSS using the validators.
    haworth.org/TEST2.html

    I put your HTML page (TEST2.html) and CSS file (body_new.css) on my server and it looks OK.
    http://www.ossiningdesignguild.com/TEST2.html
    It's possible your web server is not properly configured and sends a Content-Type HTTP header that says text/plain instead of text/css for your style sheet file.
    If you're using Apache, have your server admin check the httpd.conf file for MIME type settings.
    Should they need assistance, send them here:
    http://httpd.apache.org/docs/2.2/configuring.html
    This is not a problem with your main site since the CSS is embedded, rather than remote.
    I'll call you after lunch.
    Ken

Maybe you are looking for

  • Refurbished iPod Touch Help Please?

    Hello, I'm considering purchasing two of the iPod Touch for my wife and I for Christmas. Considering that the cheapest one is $229, I thought about the refurbished ones that are selling a lot cheaper and I'm interested in maybe getting those. I found

  • How much data does iMessage use to text internationally?

    I have a friend in France n I live in Hawaii, and I'd like to know how much data it uses to text there cause I have a limited data plan and I don't want to go over >_<

  • BBCiplayer global

    My BBC iPlayer global has disappeared from the screen and I can't reload it from the app store, nor can I delete from iPad to reinstall

  • Running scrpt exe silently

    Hi, I want to run a command (Start /S /M test.exe). If i try as below, then the console window is showing up. I want to execute the below without showing the console window. I tried using WinExec, but this is not executing the command. system("Start

  • Device Manager start up

    I do not want the device manager to start up on widows system startup. I have left the box on "start up Device Manager on system startup" unchecked in properties, but it still loads and slows my start up (XP Home) dramatically. What can I do? Thank y