How to change a LOV into a Checkbox in OIE (iExpenses)

Hi again Gurus!
I needing some help here.
I needed to add a checkbox at page in OIE (iExpenses)
/oracle/apps/ap/oie/entry/lines/webui/DetailsPG
so first i did was add an descriptive flexfield segment into Payables - "Expense Report Line"
inside Global Data Elements i set a field pointing to an standard value set named "Yes_No"
so now when i go in that page, the new fields appear OK.
the problem is that this new field looks like an input text with a LOV.
but i want to change this look to a checkbox because is a Yes/No and will look better
is there is any chance to do this?
how?
thanks a lot!!!!
and im sorry for my poor english

Hi,
I am not sure how you have configured the flex field,
I think the VO associated with the data is EO based, use one of the Attribute1 to Attribute15.
Make sure that attribute is not being used by some other customization.
And just add a new field of type Chexbox via personalization and then associate the VO instance and VO Attribute (say Attribute15)
and then check the value is getting saved in the Attribute15.
Thanks,
With regards,
Kali.
OSSI.

Similar Messages

  • How to change 'z' key into 'A' key with key blinding?

    How to change 'z' key into 'A' key?
    Although txt.setText("A") can set the text field with 'a', but it is not original input from keyboard because it cant trigger the key listener.
    It is possible to perform key pressing more than a key in same time? Example, perform 'q' & 'w' keys pressing at the same time.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Main
    {   public static void main(String[] args)
        {   JFrame f = new JFrame("Test");
            Test GUI = new Test();
            GUI.setOpaque(true);
            f.setContentPane(GUI);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.pack();
            f.setVisible(true);
    class Test extends JPanel
    {   JTextArea txta = new JTextArea(10,20);
        JTextField txt = new JTextField(10);
        JScrollPane sp_txta = new JScrollPane(txta);
        public Test()
        {   this.setPreferredSize(new Dimension(400,300));
            setLayout(new BorderLayout());
            txta.setEditable(false);
            add(sp_txta, BorderLayout.CENTER);
            add(txt, BorderLayout.PAGE_END);
            Action testAction = new AbstractAction()
            {   public void actionPerformed(ActionEvent ae){ txt.setText("A"); }
            txt.getInputMap().put(KeyStroke.getKeyStroke('z'), "test");    //Change z into A
            txt.getActionMap().put("test", testAction);
            txt.addKeyListener
            (   new KeyListener()
                {   public void keyPressed(KeyEvent e){ txta.append(e.getKeyChar() + " key is pressed \n"); }
                    public void keyReleased(KeyEvent e){ txta.append(e.getKeyChar() + " key is released \n"); }
                    public void keyTyped(KeyEvent e){ txta.append(e.getKeyChar() + " key is typed \n"); }
    }Edited by: 835972 on Feb 11, 2011 8:11 AM

    It is possible to perform key pressing more than a key in same time? Example, perform 'q' & 'w' keys pressing at the same time.With r.keyPress method, it only can perform single key pressed at a time. Do you have any idea how to perform multiple key pressed at a time?The javadoc for Robot.keyPress suggests ( "+The key should be released using the keyRelease method+" ) that the key remains "pressed" until you keyRelease(...) it. So, press the keys sequentially:
    theRobot.keyPress(KeyEvent.VK_Q);
    theRobot.keyPress(KeyEvent.VK_W);
    // At this stage both Q and W are pressed "in same time"
    ... // do stuff
    theRobot.keyRelease(KeyEvent.VK_W);
    // At this stage, only Q is pressedI suspect that in real life, unless you're a very gifted musician, you don't really press keys "at the same time" (under the time resolution of a keyboard, which I imagine is around a few milliseconds).

  • I have just installed Illustrator CS6 yesterday, but I found it was in French. Could help me figure out how to change the language into English?

    I have just installed Illustrator CS6 yesterday, but I found it was in French. Could help me figure out how to change the language into English?
    I got my series number from my Institut (which is in Paris, FR). I do not use Creative Cloud.
    When I was installing the software, I cannot select a language.
    Could you help me with my problem? Do I have to get a different series number?

    lunc,
    You will have to get a new application in English, to replace the French one.
    You, or your Institute will have to get help from Adobe, I am afraid.
    You may try a chat here,
    Get help with orders, refunds, and exchanges (non-CC, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-b.html
    or (have your Institute) talk to Adobe in France
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html
    If you fail to get any help, please report back here, and I will ask a special forum staff friend to try to find the right one at Adobe to have things sorted out.

  • Ibooks 3.1 how to change horizontal scroll into vertical scroll

    update to ibooks 3.1, the scroll mode is changed into horizontal scroll, now in my .epub books it cut so many picture in two parts and display in two pages...how to change , back to vertical mode...

    I find this maybe is the new feature only for books with Asia-Pacific words....english books is right with vertical scrolling mode...but chinese books whit horizontal scrolling mode
    why apple doesn't make a set up to change between this ..

  • How to change the lov query??

    Hi Friends,
    I am trying to extend a controller of the base page to change the lov query. I am not able to get the lov VO since I am not getting the lov AM in the controller.
    I want to use the setQuery() to set the lov query programatically in base class controller PR.
    My controller code looks like ::
    OAApplicationModule am = oapagecontext.getRootApplicationModule();
    oapagecontext.writeDiagnostics(this,"The Root AM is : " + am.toString(),6); // displaying oracle.apps.icx.por.req.server.RequisitionAMImpl
    OAApplicationModule lovAM = (OAApplicationModule)am.findApplicationModule("RequisitionLovAM"); // Returning Null
    OAViewObjectImpl vo = (OAViewObjectImpl)lovAM.findViewObject("ReqSupplierVO");
    String seededQuery = vo.getQuery();
    oapagecontext.writeDiagnostics(this,"Seeded Query for ReqSupplierVO is "+ seededQuery,6);
    String customQuery = "new_query" // here i m writing my new query.
    vo.setQuery(customQuery); // setting my custom query.
    oapagecontext.writeDiagnostics(this,"Custom Query for the ReqSupplierVO is "+ vo.getQuery(),6);
    The following are the details.
    Base Page : /oracle/apps/icx/icatalog/shopping/webui/NonCatalogRequestPG
    Base Page Controller : logi.oracle.apps.icx.icatalog.shopping.webui.NonCatalogRequestCO
    Lov Region : /oracle/apps/icx/lov/webui/ReqSupplierLovRN
    Lov Controller : oracle.apps.icx.lov.webui.ReqSupplierLovCO
    Lov VO : oracle.apps.icx.lov.server.ReqSupplierVO ( i want to remove outer join in this VO query )
    I cant extend the lov controller since the same lov region is using in other pages also where i dont want apply my new lov query.
    Is the way i am trying is correct? How can i get the Lov AM in the base page? Any help highly appreciated.

    Hi Pratap,
    Thanks for coming back on this.
    The background of this customization is, We are implementing AME and are trying to restrict the number of approvers in the Change First Approver LOV (ApprroverLovVO.xml) based on company code and cost centre during the creation of Requistion. At the moment, the LOV is bringing back every employee who has a valid WF role.
    At the moment (up till I saw this thread) I was trying to customize ReqApprChfCo.java by adding this code to processRequest method
    OAMessageLovInputBean CompanyCode = (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("ChargeAccountFlex0_column"); //this is returing null
    OAMessageLovInputBean CostCentre = (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("ChargeAccountFlex1_column"); //this is returing null
    RequisitionLovAMImpl am = (RequisitionLovAMImpl)oapagecontext.getApplicationModule(oawebbean); // this is returning null
    OAViewObject approverLovVO = (OAViewObject)oam.findViewObject("ApproverLovVO");
    Then, once found to append the viewobject with where clause. Was this the right method of achiving it, or to create a new custom VO and region?
    Regards,
    Chetan

  • How to change Transport request into local object $temp.?

    Hi experts,
    I would like to know to how to change a Transport request into and local object.
    I have already assigned Infopackage to TR, but its not required. We dont want this infopackage to be transported to prod. So how can i change that as a local object.
    Please put our valuable inputs.
    Thanks in advance.
    Regards,
    Dubbu

    Go To that Infopackage ,
    Extras Menu----Object catalog entry.  There you can change package name.
    or
    In SE09---Under the transport requests you can search for the infopackage name and delete from the TR.
    Regards,
    Srikanth
    Edited by: srikanth on Feb 19, 2009 2:26 PM
    Edited by: srikanth on Feb 19, 2009 2:27 PM

  • How to change Error Message into warning message

    Dear Friends,
    I am getting an error
    The qty stored that was entered is adjusted
    Message no. XU 040
    at the time of GRN. I am maintaining batch specific Unit of Measure.
    Please tell me how to change this error message in to a warning message.
    Thanks
    Prashant Atri

    Hello Prashant,
    This is satndard SAP messagge which is maintained in customizing;
    SPRO>>Logistics - General>>Batch Management>>Define Attributes of System Messages
    Here you can convert this messages to warning message. I urge you to please check with abaper as this may be hardcoded message and it may have implications on valuation and posting.
    In the above IMG path you can do the changes
    Br,
    Tushar
    Edited by: Tushar Patankar on Jan 1, 2011 5:36 PM

  • How to Change Open item into Non open item for GL

    Dear All,
                    I have created a GL in FS00 and clicked the open item management for it. 1 entry is posted to that account.Then i have reversed the entry and want to change the Gl from open item to non open item .The message appears as the balance is zero but open item exists.Please suggest how to make it non open
    Moderator: Please, search SDN

    Hi,
    Check the below threads which are useful.
    Open item management status change
    How to change Line item to open item management in G/L transaction?
    Thanks
    Aravind

  • TS3354 HOW TO CHANGE HD MOVIES INTO REGULAR MOVIE

    how to change hd movies on itunes to regular movies

    iTunes automatically syncs HD videos (if they exist in your library) unless you check "Prefer standard definition videos" in the iTunes iPad Summary tab.

  • How to change the image into byte and byte array into image

    now i am developing one project. i want change the image into byte array and then byte array into image.

    FileInputStream is = new FileInputStream(file);
    byte[] result = IOUtils.toByteArray(is);
    with apache common IO lib

  • MASTER DATA: HOW TO CHANGE SHIP TO INTO SOLD TO

    Hi Gurus,
    can you please help?
    i need to change a ship to party into a sold to party. can you tell me how to do it?
    thanks
    C.

    Hi,
    If u want to change a SP to SH then use XD07.. to change the a/.c grp..

  • How to change Cisco EPC2425 into bridge mode

    Hi,
    I need help regarding how to chage ECP2425 into bridge mode. I have Wireless NAS drive router which has its own DHCP and NAT service. At the moment my Wireless Timecapsule (NAS Drive) is in bridge mode and connected to EPC2425 with ethernet cable. Everything is fine. But in order to access my timecapsule over the internet, I need to use its (timecapsule)'s NAT service. For this, I need to put EPC2425 which is my first point of access from internet, into bridge mode or atleast disabled its (EPC2425) NAT service. Unfortunately, I am not been able to find NAT or Bridge mode option on EPC2425. I will appreciate if anyone can help me out in this case. I need to change my EPC2425 router into bridge mode or gateway mode.
    Thank you very much                  

    Hi Azhar,
    Thank you for your question.  However, this community is for Cisco Small Business Products and the DPC/EPC2425 is not a Cisco Small Business Product.
    Your product is an internet service provider (ISP) supported product.  In other words you need to contact your ISP or technology reseller that you purchased this from to help you with your question.
    http://www.cisco.com/web/consumer/support/modem_DPC2425.html
    http://www.cisco.com/web/consumer/support/prod_modems.html
    Regards,
    Cindy Toy
    Cisco Small Business Community Manager
    for Cisco Small Business Products
    www.cisco.com/go/smallbizsupport
    twitter: CiscoSBsupport

  • How to change the angle into front perspective using smart object vectors

    Hello, I need this answered so i could succesfully do my school project.
    I was using a logo mock up vector(smart object file) for my illustration and was wondering if there is any way to present it in front perspective?
    This is just a sample image. I had created a brand new illustration not just a logo but the effect is same.
    As you can see the wood engraved logo is presented in an angle. Could i change the position of this sample logo into a front view or i have to make this effect myself from scratch?

    On your example i used the Perspective Crop Tool
    1. Draw out the perspective crop and move the corner handles to line up with the inside corners of the logo
        (blue circles)
    2. Then drag out the side handles just outside the image
    3. Press the checkmark button to complete the crop
    You said vector smart object.
    Is that logo something you created in illustrator?

  • How to change in sql_text into normal readable format?

    hi all
    yesterday inour production environment the dev. did wrongly updated one query.
    they want to know who and when did the changes?
    i found some info from dba_audit_object,
    but in that table the column for sql_text is not showing the full query ,it shows the update table_name set column name=new row id where =old row id..
    by using this query i dont know how to trace the sql_query in norma readble format.
    pls help me to sort out this issue..
    Thanks
    M.Murali..

    Hi
    I am little confused with your question...
    >
    they want to know who and when did the changes?
    but in that table the column for sql_text is not showing the full query ,it shows the update table_name set column name=new row id where =old row id..
    by using this query i dont know how to trace the sql_query in norma readble format.
    >
    If you are getting back the update table_name set column name=new row id where =old row id.. statement then you can get back the values you want.so, what does by using this query i dont know how to trace the sql_query in norma readble format mean.The update statement is in readable format only.
    The answer for who and when changed it is
    select USERNAME,to_char(TIMESTAMP,'DD-MON-YY HH24:MI:SS'),USERHOST,TERMINAL,OWNER,OBJ_NAME,ACTION_NAME,SQL_TEXT from DBA_AUDIT_OBJECT;
    The username will be the database username who updated the column.Timestamp will tell you the time when it was done,terminal will give the terminal name of the PC,owner is the object's owner and sql_text is the update command fired by the username on the owner's table.
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> sho parameter audit
    NAME                                 TYPE        VALUE
    audit_file_dest                      string      C:\ORACLE\PRODUCT\10.2.0\ADMIN
                                                     \MATRIX\ADUMP
    audit_sys_operations                 boolean     FALSE
    audit_trail                          string      DB, EXTENDED
    DB,EXTENDED -- As db, but the SQL_BIND and SQL_TEXT columns are also populated.
    SQL> grant select,insert,update on scott.emp to lap;
    Grant succeeded.
    *FROM THE LAP SESSION DID*
    SQL> update scott.emp set MGR=7777 where MGR=7698;
    5 rows updated.
    SQL> commit;
    Commit complete.
    FROM THE OTHER SYS AS SYSDBA SESSION
    SQL> select count(1) from sys.aud$;
      COUNT(1)
             1
    SQL> select USERNAME,to_char(TIMESTAMP,'DD-MON-YY HH24:MI:SS'),OWNER,OBJ_NAME,ACTION_NAME,SQL_TEXT from DBA_AUDIT_OBJECT;
    USERNAME                       TO_CHAR(TIMESTAMP, OWNER
    OBJ_NAME
    ACTION_NAME
    SQL_TEXT
    LAP                            15-NOV-08 17:31:45 SCOTT
    EMP
    UPDATE
    update scott.emp set MGR=7777 where MGR=7698
    So i am getting the sql_text of the update done by LAP user on the SCOTT's  EMP table.HTH
    Anand

  • How to change enthernet address into mac

    i wana change my enther net address how i can change any one tell me .......
    i have install mac os x snow leopard 10.6.8

    Ok now i understand. Well, there is an easy way to do it, but it is only available for OS X 10.7and previous version, anyway here you have the link because they will support 10.8.* in a near future.
    https://github.com/halo/LinkLiar
    Now, the "not so easy" way depends on your experience with terminal consoles, but anyway it is easy to do it.
    Follow this steps:
    1- Open System Preferences
    2- Open Network
    3- Click on your Ethernet connection
    4- Click on the Advanced... button
    5- At the bottom of the window you will see your MAC address (Ethernet Address: xx:xx:xx:xx:xx:xx) write it down in a text file and save it, just in case you need to set it back.
    6- Open a Terminal window
    7- Login as superuser (root) in your terminal by typing:
    sudo -s
    If you didn't set a password for your root user then type your user password
    8- Now that you are a superuser type:
    ifconfig en0 | grep ether
    I am assuming that your ethernet interface is en0 because this is the Macbook Air discussion forum and that's the default interface name for the WiFi interface. The output from that command must give you a MAC address matching the one you wrote down in step 5
    If you are not sure what is your ethernet interface name just type:
    ifconfig
    and you will have a list of your interfaces. For me, when i connect my USB LAn adapter it is en2, you must check yours, and then just change everything that says en0 in these steps to your interface name.
    9- Now turn off your ethernet interface by typing:
    ifconfig en0 down
    10- And now let's change the MAC address by typing:
    ifconfig en0 ether your:new:mac:address
    11- Turn back on your ethernet interface by typing:
    ifconfig en0 up
    12- Check that you have your desired MAC address:
    ifconfig en0 | grep ether
    And that's all
    I'm not sure if this change will be permanent or if your MAC address will be rolled back to default after reboot. But now you now how to check it.
    Good luck

Maybe you are looking for

  • A/R Extractor, Validation, and Enhancement......

    Hello ALL Need HELP in undesrtanding A/R extraction and validation.  Also need your help in LOGIC for Enhancement: 1.  We use 0FI_AR_4 to pull in data into ODS.  As a Std. BC data surce and cube, the mapping includes 0DOC_NUMBER      (SD Document Num

  • Project Systems - Quantity withdrawn with reference to network

    Here material is assigned to network. The requirement is 10 nos. But when the quantity is withdrawn from warehouse (mvt 281), it is 15 nos. Now we have withdrawn 5 nos more than requirement. Can I cofigure my system so that quntity should not be with

  • Mini display to my tv

    I have iMac and am trying to connect my iMac to my tv I have got and adapter that goes from mini display to hdmi on tv which the desktop goes onto my tv as lion although I have a different picture but all my icon I can see on my tv but have disappear

  • Safari 4.0.5 build 6531.22.7 no Quicktime

    Snow Leopard iMac, Safari 4.. sites which play audio normally via Quicktime just give me a question mark. I have both QT 7 and QT 10 on my Applications folder.. QT 7 won't run under Snow Leopard if I read correctly.. can't find documentation how to w

  • How do I remove the autonumbering within Visio?

    I have inherited a file of Visio maps from a previous contractor who loved to use the Autonumbering feature.  Unfortunately, I now have to figure out how to get rid of a gazillion little numbers in the shapes. I know how to turn ON the autonumber fea