Unable to create Tree (af:tree  and af:menuTree) using ADF 10G

Hi All,
I have tried creating a tree af:menuTree and af:tree using ADF 10G (JDeveloper 10.3.1.4) and i am unable to see the output on the screen.
Can you please guide me on this.
Some searchs on OTN suggested that it is not supported in 10G. If this is so, can you suggest any workaround?
Thanks,
Ram

Hi Michael,
**Here is the code I used for Menu Tree
<afh:cellFormat valign="top">
<af:menuTree var="node" value="TEST">
<f:facet name="testNode">
<af:commandMenuItem text="testCM" action="#{node.action}"/>
</f:facet>
</af:menuTree>
</afh:cellFormat>
**Here is the code I used for Tree
<afh:cellFormat valign="top">
<af:tree id="productCategoriesTree" value="testTree" var="node" >
<f:facet name="nodeStamp">
<af:panelGroup >
<af:outputText rendered="#{node.ParentCategoryId eq null}" value="#{node.CategoryName}" inlineStyle="color:#FF8000;font-weight:bold;"/>
<af:outputText rendered="#{node.ParentCategoryId ne null}" value="#{node.CategoryName}"/>
</af:panelGroup>
</f:facet>
</af:tree>
</afh:cellFormat>
Kindly advice.
Thanks in advance,
Ram

Similar Messages

  • Is it possible to create a tree with drag-and-drop functionality using ajax

    I saw these samples;
    Scott Spendolini's AJAX Select List Demo
    http://htmldb.oracle.com/pls/otn/f?p=33867:1:10730556242433798443
    Building an Ajax Memory Tree by Scott Spendolini
    http://www.oracle.com/technology/pub/articles/spendolini-tree.html
    Carl Backstrom ApEx-AJAX & DHTML examples;
    http://htmldb.oracle.com/pls/otn/f?p=11933:5:8901671725714285254
    Do you think is it possible to create a tree with drag-and-drop functionality using ajax and apex like this sample; http://www.scbr.com/docs/products/dhtmlxTree/
    Thank you,
    Kind regards.
    Tonguç

    Hello,
    Sure you can build it, I just don't think anyone has, you could also use their solution as well in an APEX page it's just a matter of integration.
    Carl

  • Unable to create a webi report and 3 times it prompting for logon credentai

    Hi,
    We have a issue,
    1.We are  unable to create a webi report and 3 times it is prompting for logon credentials.
    3.After giving the logon credentials 3 times then it is working fine.
    4.We are  using IIS Jakarta redirector .
    5.We are  able to view the webi documents successfully ,the issue occurs only when we  create a new webi report.
    Any one please help me on this issue.
    Thank you in advance.
    Environment u2013
    BOXI3.1,
    SSO,
    IIS Jakarta redirector.
    Thanks & Regards,
    Powell.

    bypass IIS and jakarta (go to tomcat directly with an enterprise account like administrator), does the issue still exist?
    Regards,
    Tim

  • I have a file that was created in FH 11 and I am using same version.Originator opens file and everything is fine and also earlier version opens it fine.when I open it the links shift 1/8" up and left.Has anybody had this happen to them

    I have a file that was created in FH 11 and I am using same version.Originator opens this file and everything is fine and also an earlier version opens it fine.When I open it it shifts the links 1/8" up and to the left.Has anybody ever had this happen to them?

    What file format(s) are the "links"?
    If raster images, do they contain clipping paths or transparency?
    What is your platform and OS?
    Were the FH documents created on the same platform (Mac or PC) as the one you are currently using?
    Were the linked files created on the same platform (Mac or PC) as the one you are currently using?
    Can you reproduce the problem with a newly created document and the same linked images?
    There was once an issue with transparent 1-bit TIFF images shifting, but I believe that was in a previous version of FH.

  • Create tooltip on Previous and Next button in ADF UI

    Hi,
    I have a question on how to create tooltip on Previous and Next button in ADF UI.
    The tooltip for Previous button shows previous record id and previous record name.
    The tooltip for Next button shows next record id and next record name.
    How can you get previous and next record info easily when you are on the current record?
    Thanks,
    Jenny

    Hi,
    which ADF UI, Swing or Faces ? Note that on Faces the tootip is set cia "shortDesc" property
    Frank

  • HT5625 I did'nt created an apple id and someother is using my fake id how do i remove it from my device?

    I did'nt created an apple id and someother is using my fake id how do i remove it from my device?

    Sorry. You need to rephrase the question or post in your native language. This doesn't make any sense at all.

  • Not able to create a text file in Client Machine using Forms 10g

    Hi - I'm mot able to create a text file in Client Machine using Forms 10g. I'm getting error when system executes the bolded line.(i.e. CLIENT_TEXT_IO.FOPEN). During run-time system is throwing "ORA-06508: PL/SQL: could not find program unit being called".
    I had attached webutil.pll in the form.
    Please advise me.
    DECLARE
    l_Temp CLIENT_TEXT_IO.FILE_TYPE;
    LC$Name Varchar2(100) ;
    LC$Fic Varchar2(100) ;
    LN$Lines Pls_integer := 0 ;
    LC$Line Varchar2(4000) ;
    Cursor C_CUR Is
    Select * From TEST_TEXTIO where rownum <= 50;
    BEGIN
    LC$Name := 'tmp_file.txt' ;
    LC$Fic := 'c:\temp\tmp_file.txt';
    Begin
    l_temp := CLIENT_TEXT_IO.FOPEN( 'C:\temp\tmp_file.txt', 'W');
    Exception
         when others then
         message( 'OPEN FILE ERROR ' || LC$Fic ||sqlerrm );
         display_error;
         raise form_trigger_failure;
    End ;
    -- Write the lines --
    For Cur In C_CUR Loop
         LC$Line := Cur.CODE || ' -> ' || Cur.COL1 || ',' || Cur.COL2 || ',' || Cur.Col3 ;
         CLIENT_TEXT_IO.PUT_LINE( LF$File, LC$Line ) ;      
         LN$Lines := C_CUR%ROWCOUNT ;
    End loop ;
    -- Close the file --
    CLIENT_TEXT_IO.FCLOSE( LF$File ) ;
    Exception
         When others Then
    message('err='||sqlerrm);message(' ');
    display_error;
    CLIENT_TEXT_IO.FCLOSE( LF$File ) ;      
         Raise ;
    END;
    Thanks.
    Arun

    Hi ,
    i have one Question though its not related to thos question if some could help me it will be really helpful,
    i have created one program to import and export excel to forms vice versa, if the form is attached with webutil its working fine am using ole2.but i have a new idea if i add this program in menu, it can be used for all the forms attched to that menu, i made program also, but problem am facing right now is if the form is not attched with webutil it will not work so is there possiblity to share my webutil from one form to another form ,so i will keep one form as a interface form in that webutil will be attched ,i can share that webutil to all other forms so that all the forms no need to attach webutil again
    if its possible means please suggest some ideas

  • Unable to create Business Partner - Organization and Group

    Hello Experts,
    I am learning SAP CRM, I am working on version 5.0. I am not able to create BP in Org and Group, but I am able to create the person. I made few changes in BP role, since then I am not able to create BP in Org and Group...these both are deactivated...
    Plz help me...
    All valid answers would be given points....that's sure...!!!
    Thanks all..Happy Posting...

    Hi
    Check the roles that are not hidden.
    Are the categories Org and Group assigned to them?
    To do so, the path is IMG>Cross-Application Components> SAP Business Partner--> Business Partner > Basic Settings> Business Partner Roles-->Define BP Roles
    Here choose the option BP Role categories, now double click on the role you will see if it is permitted with the categories Org and Group.
    Incase you done have the Org or Group checked for your visible BP Roles, it will not permit to create Orgs and Groups. Check Org or Group category and you should be able to create BPs in these categories.
    Hope this helps
    Regards
    Rekha Dadwal-Shet

  • Unable to create any files under '/' and /export/home as root user

    Dear Forum,
    Please help me on this problem.
    In my server I cant create any files under / and /export/home . But I can save files under /var, /tmp ,/opt
    #cd /
    #touch tempfile
    touch: tempfile cannot create
    #cd /export/
    # ls -lp
    total 2
    drwxr-xr-x   9 root     root         512 Oct 20 11:09 home/
    # cd home
    # touch testfile
    touch: testfile cannot create
    # id
    uid=0(root) gid=0(root)
    # df -kh
    Filesystem             size   used  avail capacity  Mounted on
    /dev/md/dsk/d0         9.9G   5.5G   4.2G    57%    /
    /devices                 0K     0K     0K     0%    /devices
    ctfs                     0K     0K     0K     0%    /system/contract
    proc                     0K     0K     0K     0%    /proc
    mnttab                   0K     0K     0K     0%    /etc/mnttab
    swap                    22G   1.2M    22G     1%    /etc/svc/volatile
    objfs                    0K     0K     0K     0%    /system/object
    /dev/md/dsk/d3         9.9G   6.8G   3.0G    70%    /usr
    /platform/sun4u-us3/lib/libc_psr/libc_psr_hwcap2.so.1
                           9.9G   5.5G   4.2G    57%    /platform/sun4u-us3/lib/libc_psr.so.1
    /platform/sun4u-us3/lib/sparcv9/libc_psr/libc_psr_hwcap2.so.1
                           9.9G   5.5G   4.2G    57%    /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1
    fd                       0K     0K     0K     0%    /dev/fd
    /dev/md/dsk/d5         7.9G   2.5G   5.3G    33%    /var
    swap                    22G   400K    22G     1%    /tmp
    swap                    22G    48K    22G     1%    /var/run
    /dev/md/dsk/d4          20G   4.7G    15G    25%    /opt
    /dev/md/dsk/d6          63G    36G    26G    58%    /data
    # more /etc/vfstab
    #device         device          mount           FS      fsck    mount   mount
    #to mount       to fsck         point           type    pass    at boot options
    fd      -       /dev/fd fd      -       no      -
    /proc   -       /proc   proc    -       no      -
    /dev/md/dsk/d1  -       -       swap    -       no      -
    /dev/md/dsk/d0  /dev/md/rdsk/d0 /       ufs     1       no      -
    /dev/md/dsk/d3  /dev/md/rdsk/d3 /usr    ufs     1       no      -
    /dev/md/dsk/d5  /dev/md/rdsk/d5 /var    ufs     1       no      -
    /dev/md/dsk/d6  /dev/md/rdsk/d6 /data   ufs     2       yes     -
    /dev/md/dsk/d4  /dev/md/rdsk/d4 /opt    ufs     2       yes     -
    #10.183.103.11:/backup  -       /backup nfs     -       yes     rw
    /devices        -       /devices        devfs   -       no      -
    ctfs    -       /system/contract        ctfs    -       no      -
    objfs   -       /system/object  objfs   -       no      -
    swap    -       /tmp    tmpfs   -       yes     -
    10.183.103.11:/nfs_backup/NCMDB1 - /rman_backup nfs 0 yes rw,bg,intr,hard,timeo=600,wsize=32768,rsize=32768
    Regards,

    Please have the output of /etc/mnttab
    /dev/md/dsk/d0  / ufs rw,intr,largefiles,logging,xattr,onerror=panic,dev=1540000 1382602314
    /devices /devices        devfs dev=5400000     1382602306
    ctfs /system/contract ctfs    dev=5440001     1382602306
    proc    /proc proc    dev=5480000     1382602306
    mnttab  /etc/mnttab mntfs   dev=54c0001     1382602306
    swap /etc/svc/volatile       tmpfs xattr,dev=5500001       1382602306
    objfs   /system/object  objfs dev=5540001     1382602306
    /dev/md/dsk/d3  /usr ufs rw,intr,largefiles,logging,xattr,onerror=panic,dev=1540003 1382602315
    /platform/sun4u-us3/lib/libc_psr/libc_psr_hwcap2.so.1 /platform/sun4u-us3/lib/libc_psr.so.1   lofs dev=1540000     1382602313
    /platform/sun4u-us3/lib/sparcv9/libc_psr/libc_psr_hwcap2.so.1 /platform/sun4u-us3/lib/sparcv9/libc_psr.so.1 lofs    dev=1540000     1382602313
    fd      /dev/fd fd      rw,dev=5700001  1382602315
    /dev/md/dsk/d5  /var ufs rw,intr,largefiles,logging,xattr,onerror=panic,dev=1540005 1382602315
    swap    /tmp tmpfs   xattr,dev=5500002 1382602315
    swap /var/run        tmpfs xattr,dev=5500003       1382602315
    /dev/md/dsk/d4  /opt ufs rw,intr,largefiles,logging,xattr,onerror=panic,dev=1540004 1382602318
    /dev/md/dsk/d6  /data ufs rw,intr,largefiles,logging,xattr,onerror=panic,dev=1540006 1382602318
    -hosts  /net    autofs nosuid,indirect,ignore,nobrowse,dev=57c0001     1382602321
    auto_home /home   autofs  indirect,ignore,nobrowse,dev=57c0002 1382602321
    NCM1:vold(pid393) /vol    nfs ignore,noquota,dev=5780001      1382602322

  • How to create the Export Data and Import Data using flat file interface

    Hi,
    Request to let me know based on the requirement below on how to export and import data using flat file interface.....
    Please provide the steps involved for the same.......
    BW/BI - Recovery Process for SNP data. 
    For each SNP InfoProvider,
    create:
    1) Export Data:
    1.a)  Create an export data source, InfoPackage, comm structure, etc. necessary to create an ASCII fixed length flat file on the XI
    ctnhsappdata\iface\SCPI063\Out folder for each SNP InfoProvider. 
    1.b)  All fields in each InfoProvider should be exported and included in the flat file. 
    1.c)  A process chain should be created for each InfoProvider with a start event. 
    1.d)  If the file exists on the target drive it should be overwritten. 
    1.e)  The exported data file name should include the InfoProvider technical name.
    1.f)  Include APO Planning Version, Date of Planning Run, APO Location, Calendar Year/Month, Material and BW Plant as selection criteria.
    2) Import Data:
    2.a) Create a flat file source system InfoPackage, comm structure, etc. necessary to import ASCII fixed length flat files from the XI
    ctnhsappdata\iface\SCPI063\Out folder for each SNP InfoProvider.
    2.b)  All fields for each InfoProvider should be mapped and imported from the flat file.
    2.c)  A process chain should be created for each InfoProvider with a start event. 
    2.d)  The file should be archived in the
    ctnhsappdata\iface\SCPI063\Archive directory.  Each file name should have the date appended in YYYYMMDD format.  Each file should be deleted from the \Out directory after it is archived. 
    Thanks in advance.
    Tyson

    Here's some info on working with plists:
    http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/Introduc tion/chapter1_section1.html
    They can be edited with any text editor. Xcode provides a graphical editor for them - make sure to use the .plist extension so Xcode will recognize it.

  • Unable to create Business Foundation Layer in XI4 IDT using OLAP connection

    Hi,
    I have created a BICS connection against an SAP BW cube and want to use this connection in order to build a Business Layer in XI4 Information Design Tool. When I try to map this connection to the business layer, it errors out "Error occurred during connection selection - Connection is not supported".
    I'm currently using BO XI4 SP1 and SAP BI NW Eh1 SP6.
    Can anyone throw some light on how to create a Business Layer/Universe against an SAP BW cube?
    Also, can we query ECC systems using the new semantic layer in XI4 from WebI?
    Thanks in advance.
    Abhi

    Hi,
    I'm getting the same error. Did you already solve the problem?
    Kind regards,
    Eric
    Edit:
    Hi,
    i found this in another thread:
    [Information Design Tool and SAP BICS|Information Design Tool and SAP BICS;
    Seems like SAP doesn't want to enable Universes on OLAP-Connections?!
    Regards,
    Eric
    Edited by: Eric REDLIN on Jun 24, 2011 4:49 PM

  • Create a data source and database tables using WSAD

    Hi, guys:
    the following is from a tutorial:
    http://www-106.ibm.com/developerworks/websphere/techjournal/0306_wosnick/wosnick.html
    "To create the data source and Cloudscape database tables automatically, right click on the HelloWorldServer in the Servers view, and select the Create tables and data sources menu item. A dialog will then display showing that the data source and database tables were created successfully (Figure 5)."
    I am using WSAD 5.0 trial version. I cannot find Create tables and data sources menu item if I right click on the HelloWorldServer in the Servers view. I am wondering if this is because trial version does not have this feature?
    regards

    This question is a little off topic but you may get a reply. Please note this forum is about Sun's J2EE SDK and its related technologies. You may have better luck posting your question to an IBM specific resource.

  • How to create table.maint.generator and enduser should use using ztcode

    Hi,
           can any one guide me how to create table maintanence generator and after creating,enduser must use using ztcode.
             any help can be appreciated.
    Thanks & Regards,
    Sandeep.

    Hi,
    Table Maintenance generator is required to do Manual entries in the Table. If the requirement is to update the table only programmatically and not manually then table maint. generator is not required.
    Manual entries in table can be maintained ( New record can be inserted / existing can be modified ) using transaction SM 30, if the table maintenance for the table is generated.
    How to activate Table maint.
    Goto SE11 and open the table.
    Click UTILITIES -> Table Maint. Generator, Enter the details and click on Save. Then activate the table.
    chk a sample 1.
    refer.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    some more helps
    Check out this thread:
    table maintenance
    http://help.sap.com/saphelp_erp2005/helpdata/en/a7/513520407a11d1893b0000e8323c4f/frameset.htm - a link for basics on Table Maintenance.
    Also, Check out this weblog on table maintenance:
    /people/sudheer.cheedella/blog/2006/02/20/extracting-data-in-table-maintenance
    <b>how to create a a T-code of that</b>
    Go to se93.
    Then create the new T.code.
    Under that select parameter Transaction.
    Then give the sm30 in the t.code in default values tab.
    check the checkbox skip initial screen.
    in classification tab.
    click checkbox inherit gui attributes..
    Now below..
    In the default values..
    WRITE
    viewname = give ur table name.
    show = X
    save and check it once...
    now u can able to call ur table through ur new t.code...
    rgds
    anver
    if hlped pls mark points

  • Create Custom list form and validate fields using sharepoint designer 2010

    Hi All,
    I have a requirement to create a custom job application form which will be filled and submitted by anonymous users. I have a an option to create custom user control web part but I wanted to
    create it using custom list form using SharePoint designer. My requirement is below
    Date of birth (user age should be above 22yrs )
    Email Validation
    Phone validation
    Resume attachment (should attach only word documents or PDF)
    Qualification (If other is selected then show textbox else hide)
    Can above validations be done using SharePoint designer (JavaScript or validation controls)? Or do I have to create custom control web part?
    MercuryMan

    Hello,
    I think jquery/javascript can be used to put validations on those fields. Fortunately some of validation can be done via sharepoint itself like: email, phone, age. For Attachment and Qualification fields use jquery/JS.
    See below link for column validations:
    http://thechriskent.com/2012/08/15/validate-phone-number-columns-in-sharepoint/
    http://sharepointsolutions.com/sharepoint-help/blog/2011/12/how-to-validate-an-email-address-using-column-validation-in-sharepoint-2010/
    See this for attachment:
    http://stackoverflow.com/questions/4234589/validation-of-file-extension-before-uploading-file
    For qualification:
    http://sharepoint.stackexchange.com/questions/88064/hide-show-field-on-list-form-based-on-value-from-another-field
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Database Views and Master-Detail using ADF

    How would I create a master-detail form using a database view for the search-able master table and a database view as the detail table?
    The detail-view will need to be update-able (adf-table) using an instead-of trigger to perform the updates to the database table.
    Thanks in advance...

    There are several sections in the ADF Developer's Guide about using views (http://www.oracle.com/technology/documentation/jdev/b25947_01/index.html):
    - 26.4 Basing an Entity Object on a PL/SQL Package API
    - 6.2.4 Creating an Entity Object for a Synonym or View
    You can also try Steve Muench's web log: http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html
    There are at least two (old) items there that involve view with instead-off triggers:
    -      Composite Entity Using Stored Procedure API to Create/Modify/Remove Master and Children
    - Entity Object Based on View With Instead Of Triggers Avoiding Returning Into Clause
    Jan Kettenis

Maybe you are looking for

  • Swap numbers between two smartphones same account?

    hi all I just upgraded to the htc m8 from the htc one, I need to move the old number to the new phone and the new number to the old phone, could you tell me the steps?

  • Converted DVD file -nowhere to be found on my computer?

    Ok so I ripped a DVD and converted using Videora ipod converter. It took me 2 hours to do this. And now, the converted file is not in the folder that the ipod converter outputs to, and I did a search on my computer and it comes back with no results.

  • "Here is a media file that can be deleted. Can it?" –

    Or: managing media files across multiple projects. Here is what happens in our workflow: We do a lot of shows for one specific customer. Each program is a project. Usually a bunch of tapes is shot and then edited. So far, the project stands for itsel

  • Moving all jar files from our applcation to applib folder on server

    Hi, In our project we have three web applications bundled into a EAR file,to reduce the upload size we had a plan of moving all the jar files from WEB-INF/lib to the applib folder in the standalone server, but after moving i tried to run the applicat

  • How to change DNS name ?

    I have an iMac and Macbook Pro, both of which I set up to triple-boot Leopard, XP and Ubuntu. I've noticed that after booting into one of the other OSes, the DNS Name of that machine shown in Remote Desktop will remain whatever it was called in Ubunt