How to validate the hide checkbox on shares of invoice

How we check validate hiding in the Actions of the invoice.

Thank you
Abdul Wasi

Hi Adam,.

PL. create new personalization rule as shown below. (according to EBS 11i - 11.5.10.2 worm)

TRIGGERING EVENT: A TIME-NEWS-BLOCK-INSTANCE
TRIGGER OBJECT: INV_SUM_ACTIONS

In the ACTIONS TAB:

TYPE: PROPERTY
OBJECT TYPE: AGENDA
TARGET OBJECT: INV_SUM_ACTIONS. APPROVE THE
PROPERTY NAME: POSTER
VALUE: FALSE

APPLY THIS RULE & switch responsibility and retest it.

HTH
Sanjay

Tags: Oracle Applications

Similar Questions

  • How to validate the field "Reason for change" in the commercial indications using JavaScript?

    How to validate the field "reason for change" in the commercial directions Summary tab using JavaScript?

    Current version of PLM4P: v6.1.1.5.2

    Please help me to validate the fields using JavaScript.

    Thank you

    Nefertari

    Developed using some of the Javascript predefined functions that we offer, it's just JavaScript and jQuery.

    But here is an example.

    (Use Internet Explorer F12 developer tools to find the IDS of the fields to work with.)

    $(document).ready(function() { 
    
        if (UI_Ext_isSpecInEditMode && UI_Ext_HasWorkflowBehavior('1005'))
        {
           //normally, we can use jquery to retrieve elements ($('#ifOfInput).val()), but it seems to fail when the id and the name attributes are the same. so we just use javascript document.getElementById instead.
           var reasonForChange = document.getElementById('ctl01$SpecSummaryctl1$ctlCollapsibleContentContainer$ctl00$txtChangeReason')
    
           if (reasonForChange != null) { 
    
                if (reasonForChange.value == null || reasonForChange.value.length == 0) {
                     UI_Ext_MarkFieldAsRequired('ctl01_SpecSummaryctl1_ctlCollapsibleContentContainer_ctl00_lblSpecSummaryReasonforChange');
                     alert('Reason For Change is required');
                }
           }
        }
    }); 
    

    However, not the user registration or workflow specification. If you were to do this, you must remove record them and workflow buttons and links, and this probably isn't the best practice. On the contrary, you would write validation server that would give you this error message if they try to save/workflow. (So most customers do not use Extensions of the user interface for this type of validation).

    Kind regards

    Ron

  • How to validate the license if installed XP from another drive?

    Hi all...

    * original title - how could validate my old driver's license if I cause istalled the BONES of another license (CD), I don't have the original to my PC (laptop IBM) CD? *

    Have you used "Your" product key during installation of operating system from another CD?

    Also is the an OEM XP CD or a CD at retail with the product key?

    Here are some utilities, which will display your product keys:

    Belarc Advisor: http://www.belarc.com/free_download.html
    (He did a good job of providing a wealth of information.)

    Also: http://www.magicaljellybean.com/keyfinder.shtml
    and: http://www.nirsoft.net/utils/product_cd_key_viewer.html

    Note: Also check the side of your PC case or at the bottom of the laptop for the
    Key OEM code. If there is a sticker with the code, it will probably not
    corresponds to what is displayed by the utilities mentioned above as OEM such as
    Dell use an internal key code when they build your PC.

    The key on the sticker code should be used with your Windows CD
    (who came if everything goes well with your PC) If you need to reinstall Windows.

    JS
    http://www.PAGESTART.com

    Never be afraid to ask. This forum has some of the best people in the world to help.

  • How to validate the format of the SSN

    How can I validate the input SSN is in the format XXXX-XXXX-XXXX or not

    You must write a custom method to validate the format.

    It depends on where you want to validate. If that's all by accepting an entry from the page, you can use regular Expressions, or you can use the string splitting and validate according to what you need.

    If it's during recovery of the database, you can do it even in the application it self.

    You can write the logic and let us know if you get stuck or gettting error.

    See you soon

    AJ

  • How we use the variable checkbox?

    I use Cap 8. Finally, I want to set a variable to store the user's decision to play any narration automatically, or do not play automatically narration.

    A check box appears as a perfect way to let the user make this decision, so I used the box widget to display only a single checkbox. Successfully, I set the text property of checkbox and entered a unique variable name (myNarrationDefault) to store the State of the checkbox. Now how to access the variable?

    I added a text field, so I could see the value of this variable. However, when I try to insert a variable, I don't see the new user variable, in the list. Then I tried to add an action to a button just to see if the variable appears in the tool; There can be no.

    I'm doing something wrong?

    Thank you

    Pete

    In fact, you will need to create so that the variable you made in the interaction interface, CP does not do it for you, project/Variables in the top Menu.

    When the box is checked, the value is then assigned to the variable.

  • How to validate the data of the LOV

    Hello

    How to validate data from field lov?

    Requirement is my page 2 lov fields, this is a load of lov.
    The fields will not allow invalid lov fields data when I click 'Save' button. Then, I need to display a message "select valid values in the lov fields."

    Can someone help me on this req...

    Thank you

    Published by: 926074 on April 12, 2012 13:23

    Hello

    Then, you will need to add the validation logic in the action to add another button of line also.

    OAAdvancedTableBean tableBean = (OAAdvancedTableBean) webBean.findIndexedChildRecursive ("AdvTableId");
    OATableFooterBean footerBean = (OATableFooterBean) tableBean.getFooter ();
    if(footerBean!=null)
    {
    If ((tableBean.getName (pageContext) .equals (pageContext.getParameter (SOURCE_PARAM))) & (ADD_ROWS_EVENT.equals (pageContext.getParameter (EVENT_PARAM))))
    {
    DO the validation performed in Save button here too

    }
    }

    Try this if it works.

    Kind regards.

  • How to validate the number of characters in the text entry box?

    Hello

    I have inserted a text box entry and assigned a variable (UserName). Now, I need to limit the entry of a number, maxinum of 20 characters. In other words, how can I validate the number of characters in the text entry area and provide feedback if it is more than 20 characters?

    I think that you should study the Jim Leichliter widget that allows you to use regular Expressions to validate text input.

  • How to validate the Date value in the text column

    Hi all

    I entered DATE value in the element of text field (Char Data Type), now how do I validate, the entered date is valid or not.

    Thanks in advance.

    Well, the easiest would be to make the part of DATE data type.

    Another possibility is to try to convert the value to a date in the WHEN-VALIDATE-POINT-trigger, as

    DECLARE
      dt DATE;
    BEGIN
      dt:=TO_DATE(:BLOCK.ITEM);
      -- if code comes here, the date is valid
    EXCEPTION
      WHEN OTHERS THEN
        -- seems to be no valid date
        MESSAGE('Error');
        RAISE FORM_TRIGGER_FAILURE;
    END;
    

    Published by: Andreas Weiden on 19.12.2010 12:23

  • How to validate the field LOV?

    Dear members,

    I have an OFA Page in which there are two fields i.e., F1 and F2.
    I created two lov ' Lov1 and Lov2. Lov2 is a dependent lov Lov1-based.

    Lov1 attached to F1.
    Lov2 attached to F2.

    When Iam by entering values in the F1 or F2 which do not appear in their respective lov, no error is encountered. IAM able to save these values as well.

    Any one can you please tell me how to validate fields lov, my requirement is whenever I get a wrong value that isn't in the lov, I want to display an error message.

    I tried selecting the value 'Yes' for the property "use for Validation" in lovmappings, and there is still no use. "

    Thanks in advance.

    Best regards
    Arun D. Reddy

    Try the following steps:

    What we need to do is the following.

    1. create a formValue field in the form.
    2. in the LOV create a mapping, with return element as the ID of the created formValue field.
    3. also for this map, together 'use for Validation' = yes.

    It works like a charm now and the user cannot enter invalid values.

    Thank you
    -Anil
    http://oracleanil.blogspot.com/

  • How to validate the interactive transformation?

    When I hit enter or double-click to validate the interactive processing stage, I get an error.

    Turn into double layer

    function InteractiveTransform() {}

    app.runMenuItem (charIDToTypeID ("FrTr"));

    };

    InteractiveTransform();

    Error:

    error.PNG

    InteractiveTransform() is a function someone wrote wrote and it looks like the the function intercepts not a cancellation or any changes made by the user.  surround the function with a try catch or difficulty of the function add a try catch inside...

    try {InteractiveTransform()}

    catch (e) {alert ("Image transform cancelled") ;}}

    try {}

    InteractiveTransform()

    }

    {catch (e)}

    = Interactive Transform =.

    function InteractiveTransform() {}

    Edit > free transform

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putEnumerated (cTID ('Mn'), ('MnIt') cTID, cTID ("FrTr"));

    DESC1.putReference (cTID ('null'), ref1);

    try {}

    executeAction (cTID ('slct'), desc1, DialogModes.NO);

    }

    {catch (e)}

    };

  • How to validate the columns in tabular form date?

    Hello


    I have two columns in tabular form date

    1.start_date 2.End_date so here I need validate the end_date shouldn't be less than column start_date

    so any solution for this?

    Hello

    use a validation of type "Function returning a Boolean" and the following code:

    IF to_date(:YOUR_END_DATE,'YYYY-MM-DD') < to_date(:YOUR_START_DATE,'YYYY-MM-DD') THEN RETURN FALSE;
    ELSE RETURN TRUE;
    END IF;
    

    The date format is of course your choice.

    I hope this helps...

    Thank you
    Sandro

  • How constantly uncheck the "Hide extension" checkbox box

    Hello

    I would like to see the extension of each file I have.  When a file is created, by whatever means, I see via the icon of circle-i of the finder a box named "Hide extension" is checked.  Could someone please tell me how I can permanently uncheck this box, so that my files always show extension that comes with?  Thank you!

    Tena

    Back up all data before proceeding.

    Please triple - click anywhere in the line below on this page to select:

    defaults write -g AppleShowAllExtensions -bool YES

    Copy the selected text in the Clipboard by pressing Control-C key combination.

    Launch the Terminal application integrated in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    Paste in the Terminal window by pressing the command-V key combination. I tested these instructions only with the Safari browser. If you use another browser, you may need to press the return key after pasting.

    Wait for a new line ending with a dollar sign ($) below what you entered. You can then quit Terminal. Log off or restart the computer.

  • How to install the Bluetooth PAN, to share the Internet between Windows 7 PC and Samsung phone?

    Hello!
    I'm trying to connect my phone Samsung Galaxy Ace to my Windows 7 PC via Bluetooth and to set up a pan when my phone is connected via Bluetooth, it will appear in devices and printers, but when I open Bluetooth Personal Area Network, it is not at all. How can I configure a PAN which allows to share the internet connection from my PC to my phone?

    Original title: unable to connect to the Bluetooth device in Personal Area Network

    Hello
     
    Contact the support of Samsung for the support team.

    Kind regards.
  • How to validate the data in the source

    Hi all


    I am new to ODI, in my process could be called in 2 modes of Validation and load

    a. validation - V - should perform validation on the data from the source according to the filter criteria
    b. load - L - could make a mandatory check and load the data into the target table

    My concern is how do only validation on data sources, please share any ideas on this...


    Thanks in advance...

    Dragging data store in the package in order to apply the static control, you are doing your validation without loading.
    This validation step will copy the invalid data in the table of errors (E$) and you can also decide if you want to remove from the source (and keep the data only in the error table).

  • How to check the Boolean checkbox

    HII.
    I jdev 11.1.1.3.i have one table.in that I have active column which is a box.on check Boolean loading of the page it will show all active lines in the active table IE = 'y '.
    I have a show all the also.in check that clicking on it will show all active and inactive rows in the table.
    I have an add, remove emissions and also of the button Save page.
    I want to add a row.on clicking the add a line button is coming.it has the active field as unchecked.on adding the line itself, I want the Boolean to be checked.i active box cannot give the value selected to be true in the property inspector, because if I give by clicking Show all also, it will be checked.how I can do that in any other way.on adding a line to the active to check field?

    Your state of the checkbox depends on a line attribute (active), init you attribute to 'Y' and it should show only checked box.

    Timo

Maybe you are looking for