Can you get a dir list using the SDK

I've looke through the docs and can't see one ? I see apis for moving, creating files dir etc but not listing.
I'm looking to build a dynamic webpage that queries a directory and presents a list of iles/urls for download

Try: http://download-west.oracle.com/docs/cd/B25553_01/content.1012/b25584/toc.htm
http://download-west.oracle.com/docs/cd/B25553_01/content.1012/b25584/oracle/ifs/fdk/Attributes.html lists the attributes that are supported by the various Item types.
http://download-west.oracle.com/docs/cd/B25553_01/content.1012/b25584/oracle/ifs/fdk/FileManager.html describes the methods supported by the FileManager.
For an overview see:
http://www.oracle.com/technology/products/cs/developer/contentservicesdev/pdf/ContentServices-WebServices-TechnicalPaper_Final.pdf
-sancho

Similar Messages

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_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.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • Can you creat an Apple ID using the iTunes gift cards?

    Can you creat an Apple ID using the iTunes gift cards?

    Jack, are you trying to make a new account on a computer or and iOS device, you need to click the links and follow the instruction to make the account without a credit card.  After you make your account then redeem your iTunes card. http://support.apple.com/kb/ht2534

  • How can you get audio for  books on the kindle

    how can you get audio for  books on the kindle

    The audio inputs on Macs are line level inputs and not mic inputs.  You need a mic with a built in preamp (battery powered) or more conveniently a USB mic or bluetooth headset.

  • Can you get your photos back after the iphone does a restore

    Can you get your photos back after the iphone does a restore?

    Actually, wrong.
    The tech support people can help with Playbook purchased apps. If you've called and they said they cannot, you were lied to.
    Even in the link you posted, in #10, it states clearly "App Refund related matters are handled by BlackBerry Customer Care." That, my friend is accessed by the support number. Again, if you were told otherwise, you should inform them of such or ask for a manage/supervisor.
    And, you don't have a "Partner ID" because you are not a "Partner". The section you're referring to applies to mobile providers, which are the Partners.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can you get an applet to obey the CSS z-index attribute?

    How can you get an applet to obey the CSS z-index attribute?
    I have a DHMTL page with a panel that I want to slide back and forth. But another part of the requirement is to have the panel look like it is sliding under another panel.
    The problem is that an applet is on the panel that slides. When the sliding panel move under the stationary panel the applet does not go under the stationary panel, but the reset of the sliding panel does render looking like it is sliding under.
    See below.
    - ~~~~~~~~~~~~~~~~~~~~~~~~ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -
    - ~                      ~ ^                         ^ -
    - ~                      ~ ^                         ^ -
    - ~           #############***************           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #############^**************           ^ -
    - ~                      ~ ^                         ^ -
    - ~                      ~ ^                         ^ -
    - ~                      ~ ^                         ^ -
    - ~~~~~~~~~~~~~~~~~~~~~~~~ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -
    ~ has a z-index of 1
    # and * have a z-index 2
    # shows above ~ and below ^
    ^ has a z-index of 3What I am getting with the applet on the panel with a z-index of 2 is the following
    - ~~~~~~~~~~~~~~~~~~~~~~~~ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -
    - ~                      ~ ^                         ^ -
    - ~                      ~ ^                         ^ -
    - ~           #############***************           ^ -
    - ~           #            ^             *           ^ -
    - ~           #  @@@@@@@@@@@@@@@@@@@@    *           ^ -
    - ~           #  @                  @    *           ^ -
    - ~           #  @                  @    *           ^ -
    - ~           #  @                  @    *           ^ -
    - ~           #  @                  @    *           ^ -
    - ~           #  @                  @    *           ^ -
    - ~           #  @                  @    *           ^ -
    - ~           #  @@@@@@@@@@@@@@@@@@@@    *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #            ^             *           ^ -
    - ~           #############^**************           ^ -
    - ~                      ~ ^                         ^ -
    - ~                      ~ ^                         ^ -
    - ~                      ~ ^                         ^ -
    - ~~~~~~~~~~~~~~~~~~~~~~~~ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -
    --------------------------------------------------------Where @ is the applet. Notice how the applet is on top of the ^ but the panel under it, ^, is under like it should be. All the panels are 1x1 tables with a border. So how can I get the applet on the drawing shown with # and * to follow the rendering of the z-index of 2?

    Hi,
    I have the same problem, and don't know how to solve it, So, i had tried to put my applet in a div tag wih z-index=0, but it still hide my other Dhtml divs with bigger Z-index (z-index =1000)
    Have you any idea to solve this.
    Thanks
    Hakim

  • Can't get my mail when use the USB Ethernet adapter

    I can't get my mail when use the Apple USB Ethernet Adapter. If I use a wireless connection, there is no problem. The LAN which I'm trying to connect is behind a proxy server but the Internet is working 100%.

    Hi ViK,
    This sounds like a question for the network administrator of the location. Without knowing how the proxy is set it's impossible to know what it's blocking (incoming/outgoing). It sounds like it might be filtering the incoming mail server.

  • How can you get an actual person on the phone...My simple issue is taking days using email.

    Anyone?

    Hello thewarlock927,
    Thank you for the question.  Use the following resource to contact Apple for support:
    Contact Apple for support and service
    http://support.apple.com/kb/HE57
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How can I get an Infoprovider list via the BI XML/A SOAP interface?

    I have a followup question for this as well. Currently with xMII we are using the XML/A SOAP interface to query against remote enabled queries in BI. Is it possible through this interface to request a list of InfoProviders? I know that through MDXTEST in SAP GUI there is a list of providers there but is that available through the XMLA interface?  The BAPI that I found that will do this is BAPI_MDPROVIDER_GET_CUBES with the CAT_NAME value set to $INFOCUBE.  This name/description value set is what I am looking for.

    Sorry about that. I had the link ready to paste but neglected to do so: http://acrobatusers.com/tutorials/getting-external-data-into-acrobat-x-javascript
    The idea is that you can read in data from an external or attached file, but it will need to be a different format such as XML, tab-delimited text, or CSV, which can all be exported from a spreadsheet.

  • Can you get iTunes to sync in the background?

    First, I'm on a PC, not a Mac...
    What I mean by my question is, that I'd like iTunes to sync every time I attach the iPhone, but I don't necessarily want the iTunes application to maximize and come to the front upon plugging the phone back in. For that matter, I don't need it to be taking up space on my taskbar.
    While I'm at work, I'm using the USB cord to charge the phone and sync my calendar (which my place goes wild with), but when I receive a phone call, I need to unplug the phone and leave the room (coverage issues), so when I get back to my seat and plug it in, I have to minimize iTunes (and see it on my taskbar).
    Is there an add-in or third-party app, or some sort of script that allows you to a) configure iTunes to sync, but only in the background and b) hide the task button or put it in the system tray?

    I just want to know if I can. I'm not asking whether I have a good reason to. I probably don't. hehe :o)
    But to explain WHY I want to, here you go:
    I've got a personal secretary and 4 assistants. They do all my calendar entries and set up all my appointments. They do this via shared calendaring in Outlook. I also enter some of my own appointment info, but mostly they do. The point is, half the time I don't even know what they're putting on my calendar unless I check it.
    When I receive phone calls, I like to unplug it so the cord isn't dangling from my ear. I thought "wouldn't it be great since I do this anyway, that EVERY time I plug it back in, it syncs and I don't have to see iTunes." At work, I have no use for iTunes except to configure the iPhone. This way, if I forget to sync as I'm leaving, I'll at least gotten most if not all of my appointments.
    The point is a little moot and my question is just "a nice to have" because -- since I'm the boss :o) -- I ordered the IT dept. to open up the Exchange server for IMAP, so I get my calendar entries synced no matter what. It's just that I like the iPhone's calendar interface SO much and looking at my calendar entries in an IMAP folder ain't a lot of fun.
    Also, I'm guessing ActiveSync WILL be licensed, but figured it couldn't hurt to ask anyway. Thanks.

  • How can I get a printable list of the web sites in a tab showing both the name of the site and it's location?

    I use tab groups for specific projects and would like to print/save a list of the websites used on each project. Using the list function on a tab group produces a list of the web-sites which can be printed/saved via PrtSc and Word. How can the web-site addresses be included? With this list available I would then close the tabs.

    Someone might have created an add-on for this, although I didn't find one in a search.
    Could I suggest this workaround for now:
    (1) Use the Bookmark All Tabs feature (right-click a tab when your tab group is displayed) to save all tabs to a new folder on the bookmarks menu. Some tips in the "How do I bookmark all of my open tabs?" section of this article: [[How to use bookmarks to save and organize your favorite websites]].
    (2) Export bookmarks to an HTML file. Unfortunately, this will be all bookmarks, not just the ones you want, but hang in there. This article has the steps: [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]].
    (3) Open the exported HTML file in Firefox or your favorite WP program. Now you can either:
    (A) Copy/paste the live links for your tab group into your preferred form of archival storage. Or
    (B) Print (e.g., select the relevant bookmarks and use the Print Selection feature). However, in order to show the URLs, you need to hack the page a little bit.
    (i) In Firefox, you can run a little script in the Web Console on the bookmarks page. Press Ctrl+Shift+k to open the web console. Copy the following line of script, then paste it next to the caret (">") in the web console and press Enter. The URLs should appear after the links.
    for(var i=0; i&lt;document.links.length; i++) {document.links[i].parentNode.appendChild(document.createTextNode(' ['+document.links[i].href+']'))}
    (ii) In Word, there probably is a macro to split the hyperlink fields into the display text and URL. If Word is your preferred tool, I'll see whether I can write one.

  • Can you get your money back if the app you purchased doesn't work properly?

    Hi,
    I recently bought the MobileNoter SE app in order to sync my OneNotes between Playbook, Windows Phone and Laptops.
    Once the Playbook was added to the previously fully functioning sync system things started to go wrong, so much so that I've had to re-create a lot of my notebooks.
    There are a whole host of flaws and bugs with the app - some people say this is just an Android App which is ported which might account for the bugs if it wasn't fully tested after.
    I posted a review which has been taken down - presumably by MobileNoter - without explanation.
    I mailed support and they initially sounded like they wanted to help but have since gone silent. I have asked for my money back but more silence.
    I wouldn't mind but this app is £20 for which you would expect a fully functional app. This is far from it.
    Anyone know what the procedure is now to get a refund. Is there some way Blackberry can help?
    Many thanks

    Actually, wrong.
    The tech support people can help with Playbook purchased apps. If you've called and they said they cannot, you were lied to.
    Even in the link you posted, in #10, it states clearly "App Refund related matters are handled by BlackBerry Customer Care." That, my friend is accessed by the support number. Again, if you were told otherwise, you should inform them of such or ask for a manage/supervisor.
    And, you don't have a "Partner ID" because you are not a "Partner". The section you're referring to applies to mobile providers, which are the Partners.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can you have 2 contacts lists on the same iTunes account?

    I have an iTunes account that both my wife and myself use, me with a 4, my wife with a 4s. I want to swap phones with her, can the two sets of contacts be saved on the same account, or do we need seperate accounts, back up the respective phone, then sync in the other account?

    Yes. You can easily have multiple iPods on the same iTunes account on the same computer. Each iPod will show up with its name when plugged in, and each iPod can have its own set of preferences (i.e., what music, videos, photos, audiobooks, etc. to sync).
    What you can't do easily is use the same iPod on multiple computers with different instances of iTunes. One instance of iTunes has to be "in charge" of an iPod.
    John

  • Can you get to "my videos" in the youtube section of Apple TV?

    Hello all,
    I have a question about the YouTube section of Apple TV.  I currently store all of my home videos on youtube.  I upload them as "private" and organize them in playlists, just as if each playlist was a DVD that I would burn.  (As an example... one playlist is titled "Disney World 2011" with about 5 different videos from that week.)  I love having everything private and stored in the cloud, and you can't beat youtube's free unlimited storage... but the only way we can watch family videos is on the computer.  I'd love to not hook a cable up from my computer to TV, and it would be awesome if I could just easily see everything right through Apple TV.
    I can see that you can get to "Featured Videos" "Favorites" "History" etc... in the youtube section.  Is there any way to get directly to the videos that you've uploaded or to the playlists that you've created in the YouTube section on Apple TV?
    If you can, I'm definitely going to buy the new Apple TV that just came out.
    Any help, ideas or comments are very much appreciated! 
    Thanks, Doug

    Nobody has the answer?
    Please, tell me if I was unclear so I can reformulate my question...

  • How can you find your password to use the App Store on an iPhone?

    My friend has forgotten her password for the App Store.
    Her account is her email address.
    How can she either get her password or create a new one in order to use the App Store?

    I think I tried this last night but will attempt it again.
    I was tired after talking with an AT&T technical representative about a voicemail issue.
    I hope her voicemail is still accessible today.
    I asked the AT&T person to remove the voicemail password.

Maybe you are looking for

  • Performance in the Server with the created report - Crystal Report 2008

    Hi       We have developed a complex report and deployed in the server. It takes more time to process and once if the report created and we are trying to expand a group/navigate different pages, the same time delay is happeneing. Sometimes it takes m

  • Digital copy codes not working

    Hi, I'm from the uk and I've got quite a few bluray DVDs with digital copies with them, they have codes but I don't have a computer to put the disks in to then move them to the iTunes is there any way I can just put the films straight to iTunes with

  • No posting rules exist for account key

    Hi When i am creating PO with Excise, it shows the below error: No posting rules exist for account key Message no. FF714 Diagnosis No posting rules have been defined for the account key in the tax table in table T007B. Procedure Change the tax table,

  • How can I fix the "download error"? I couldn't download any app yet.

    I am trying to download the apps through Adobe Creative Cloud, but I did not succeeded, despite of following the instructions on tha tutorials at client support pages.

  • How t ocreate tax code ...?

    hi all Can anybody explain me how to create tax code for my company code in IDES. I tried to create new tax code in FTXP.. System is asking for tax jusdricaton.. Please guide me how to proceed further Thanks sap-mm