Improper List Navigation

Hi gurus,
I am generating a list screen for Flight data, but in my case, I have provided user with interactive push-buttons on basic list for sorting in ascending and descending order. But, when I press sort-ascending it's displaying the data on another list and further more when I press sort-decending it's displaying the data on another list.
I noticed this problem, when I pressed F3 to get back to selection-screen, rather it took the screen with values sorted in ascending order and then again to basic list.
Can anyone suggest to overcome this.
I wait for your valuable suggestions.
Thankyou.

Hello Johny,
help.sap.com is the best temple to search your queries first.
And Johny, don't hesitate to search SCN.
The actual problem is due to not using SY-LSIND EQ listnumber.
Look, basic list number is 0, secondary list is 1.
What you have done is, you coded but forgot to REDEFINE LIST-NUMBER ,
Please read about SY-LSIND system field, which holds list-numbers. It's usually assumed that SY-LSIND is to check list-number in conditions. But, it can also be used to redefine list-numbers.
For example:
PERFORM get_flight_data.
PERFORM put_flight_data.
sy-lsind = 1.               " Re-directing to secondary list.
"or
sy-lsind = 0.               " Re-directing to basic list
PERFORM sort_flight_data_ascending.
PERFORM put_sorted_data.
sy-lsind = 1.
PERFORM sort_flight_data_descending.
PERFORM put_sorted_desc_data.
Try, with this code Johny, hope that would sweep-away your problem.
Thanks: Zahack

Similar Messages

  • How to get a CSS list navigation hover working as needed?

    I'm at an impasse with a left navigation. I thought it was ok, then realized the whole buttons weren't selectable, only the text. And the hover is not working right. It looks right when you hover over the text, but not when you're off to the side of it. What's under the text is the normal state "showing through". Being very new at this I could sure use the help and learn from it, too. Thanks in advance! Please let me know if you need more info.
    Regards,
    Sal
    URL: http://www.sallyaverill.com/bom/
    css for the nav:
    .navdiv {
      width: 200px;
      height: 590px;
      float: left;
    .leftnavigation {
    width: 192px;
    margin: 70px 0px 0px 0px;
    padding-left: 8px;
    /* float: left; */
    list-style-type: none;
    .leftnavigation a, .leftnavigation li{
    margin-left: 0px;
    width: 171px;
    padding-left: 0px;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    /* float: left; */
    color: #392F9D;
    font-size: 10px;
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    background-image: url(images/nav_normal.jpg);
    background-repeat: repeat-x;
    background-position: 0px 0px;
    .leftnavigation li {
    float: left;
    background: url(images/nav_normal.jpg) top left no-repeat;
    border-bottom: 1px solid #999;
    line-height:150%;
    padding-left: 10px;
    .leftnavigation li:visited {
    color:#66C;
    .leftnavigation li:hover {
    color:#fffff;
    background-image: url(images/nav_down.jpg);
    .leftnavigation a:visited {
    color: #66C;
    .leftnavigation a:hover {
    color: #ffffff;
    background-image: url(images/nav_down.jpg);

    Replace what you have now with this:
    /* LEFT NAVIGATION */
    .navdiv {
    width: 200px;
    float: left;
    .leftnavigation {
    width: 190px;
    margin: 70px 0px 0px 0px;
    padding-left: 8px;
    .leftnavigation li {
    background: url(images/nav_normal.jpg) top repeat;
    border-bottom: 1px solid #999;
    list-style:none;
    .leftnavigation li a {
    width: 171px;
    padding: 10px 5px;
    font: bold 10px/1.2 Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    display:block;
    .leftnavigation li a:link {color: #392F9D;}
    .leftnavigation li a:visited {color: #66C;}
    .leftnavigation li a:hover,
    .leftnavigation li a:active,
    .leftnavigation li a:focus {
    color:#FFF;
    background-image: url(images/nav_down.jpg);
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • List navigation problems

    Hi all,
    I have a basic page that I am working on but I am not
    getting the
    list right. I have a big div called page id that wraps the
    whole page
    including the footer. The next div is called header which
    has a fixed
    width of 794px, where there is an image at the top of the
    page which is
    794x110. Inside the header div is the ul topnav div which is
    the
    navigation. There was a big white gap between the header
    image and the ul
    which I have partially got rid of using display: inline on
    the topnav id.
    The ul div has a fixed width of 794px and as there are 8
    links I have
    put the width of the lis as 100% divided by 8 which is 12.5%
    As you can see the links are still a mess and there is a
    small
    white gap between the image and the topnav.
    So my questions:
    1.What do I need to do to sort out the ul?
    2.Is using the page id as a wrapper containing the footer
    div a good
    method?
    Thank-you!
    http://tinyurl.com/yw74qo

    Hydrowizard wrote:
    > Hi Osgood,
    > Thank you for the help really great!
    http://www.villa-corti.com/text.html
    I am
    > having a slight problem though working out why it is
    different to this page:
    >
    http://www.villa-corti.com/index.cfm
    as all the dimensions are the same. The
    > flash is the same size as in the tables version but in
    the css version it
    > messes up the bottom line (the left column and main
    photo and the flash div
    > should all have their end exactly at the same line
    horizontally as it is with
    > the index.)
    > Thanks for any pointers
    >
    You really need to be careful when using a css constructed
    page, much
    more careful than when using tables as it is less forgiving
    of any
    errors in your mathematics.
    Your three internal <divs> added up to more that their
    container 'page'
    <div> therfore there was no room for the last
    <div> so concequently it
    gets positioned somewhere else.
    You need to take into account that adding borders and padding
    to a <div>
    will add to its overall width so for instance a <div>
    that is declared
    with a width of 200px and a border of 1px is really 202px
    wide NOT
    200px. You take into account the left/right borders.
    You cannot replicate what tables do when using <divs>.
    Therfore you have
    to 'cheat' a bit. To create those vertical grey lines you
    will need to
    use a repeating background image and attach it to the 'page'
    <div>
    Below is the revised css and html code. You just have to make
    the
    background image for the 'page' <div>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html
    xmlns="
    http://www.w3.org/1999/xhtml"
    xml:lang="en" lang="en"><head>
    <meta http-equiv="content-type"
    content="text/html;charset=utf-8">
    <meta name="Description" content="Villa Corti the
    exclusive Tuscan Villa.">
    <meta name="Keywords" content="villa corti, poggio alle
    corti, corti,
    villa, italian villa, villa in italy, haunts of rich and
    famous, villa
    for rent, tuscany, italy, greve in chianti, florence,
    panzano, badia a
    passignano, tuscan rental, 6-bedroom tuscan villa to rent,
    sleeps 11,
    villas"><title>Poggio alle Corti-Exclusive Italian
    Villa</title>
    <style type="text/css">
    html, body {
    color : #000;
    margin : 0;
    padding : 0;
    body {
    font : 100% tahoma, arial, sans-serif;
    color : #4d4d4d;
    text-align : center;
    h1 {
    font-size : 100%;
    font-weight : normal;
    margin : 0;
    padding : 0;
    a {
    color : #7f99ae;
    text-decoration : none;
    a:hover {
    text-decoration : underline;
    br.both {
    clear : both;
    br.right {
    clear : right;
    br.left {clear : left;}
    .clear {
    height : 0;
    clear : both;
    #page {
    width : 794px;
    margin : 0 auto;
    text-align : left;
    border: 1px solid #ccc;
    #header {width: 794px;}
    #header img { display: block;}
    #topnav {
    padding: 0 0 3px 0;
    margin: 0 ;
    background-color: #006600;
    text-align: center;
    border-bottom: 1px solid #ffffff;}
    #topnav li {
    margin: 0;
    margin-left: -5px;
    padding: 0;
    list-style: none;
    display: inline;
    text-align: center;
    #topnav a {
    font : 70% tahoma, arial, sans-serif;
    color : #fff;
    padding: 4px 12px;
    border-left: 0px solid #fff;
    text-decoration: none;
    #topnav a:hover
    {background-color: #66CC66;
    #leftcontent {
    border-right: 1px solid #ccc;
    width: 178px; /* 179px */
    float:left;
    #leftcontent p{
    font : 70% tahoma, arial, sans-serif;
    color: #333333;
    margin-top : 0;
    margin-bottom : 0;
    #leftcontent h2{
    font-size : 110%;
    font-weight: bold;
    margin-top : 0;
    margin-bottom : 0;
    text-align: center;
    color: #006600;
    background-color: #dadada;
    #centrephoto {
    border-right: 1px solid #ccc;
    width: 538px; /* 539px */
    float:left; }
    #flashscroll {
    width: 74px;
    float:left;
    text-align:center; }
    #footer_home { clear : left;
    text-align : center;
    padding: 10px 0;
    width : 100%;
    font-size: 75%;}
    #footer_home p {
    margin-top : 0;
    margin-bottom : 0;}
    #footer_home a {color: #a2a2a2; text-decoration: none;}
    .chiantimap {border: 0px;}
    .thinborder {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    </style>
    <script type="text/JavaScript"
    src="trial_files/photocindex.js"></script></head>
    <body>
    <div id="page"><div id="header"><img
    src="images/bgtop.gif" alt="Poggio
    alle Corti Exclusive Tuscan Villa" width="794"
    height="110">
    <ul id="topnav">
    <li><a href="
    http://www.villa-corti.com/index.cfm">home</a></li>
    <li><a href="
    http://www.villa-corti.com/info.cfm">villa
    information</a></li>
    <li><a
    href="
    http://www.villa-corti.com/accommodation.cfm">accommodation</a></li>
    <li><a href="
    http://www.villa-corti.com/bookingform.cfm">bookings</a></li>
    <li><a href="
    http://www.villa-corti.com/pricing.cfm">pricing</a></li>
    <li><a href="
    http://www.villa-corti.com/facilities.cfm">services
    &amp;
    facilities</a></li>
    <li><a href="
    http://www.villa-corti.com/map.cfm"
    class="labelstrong">map</a></li>
    <li><a href="
    http://www.villa-corti.com/contact.cfm"
    style="border-right: 0px solid rgb(255, 255,
    255);">contact us</a></li></ul>
    </div><!-- end header -->
    <div id="leftcontent">
    <h2>Villa Corti</h2>
    <img src="images/front.jpg" alt="Swimming pool photograph"
    width="178"
    height="135">
    <p>One of the most beautiful and elegant houses in
    Chianti, complete
    with a tennis court and a wonderfully unique sloping pool,
    Villa Corti
    is the place to relax in comfort and give in to the excellent
    service
    from its resident staff.</p>
    <p><a href="
    http://www.villa-corti.com/map.cfm"><img
    class="chiantimap"
    src="images/map.gif" alt="Map of Chianti" width="174"
    height="98"></a></p>
    </div><!-- end leftcontent -->
    <div id="centrephoto">
    <div id="image1"> <img src="images/scan002.jpg"
    alt="Villa photograph"
    name="image1" width="538" height="351"
    id="image1"></div>
    </div><!-- end centrephoto -->
    <div id="flashscroll">
    <object type="application/x-shockwave-flash"
    data="flash/flashsidemainold.swf" width="63" height="364">
    <param name="movie" value="flash/flashsidemainold.swf">
    <img src="banner.gif" width="63" height="364"
    alt="banner">
    </object>
    </div><!-- end flashscroll -->
    <br style="clear:both;" />
    </div><!-- end page -->
    <div id="footer_home"><a
    href="
    http://www.villa-corti.com/index.cfm">home</a>
    | <a
    href="
    http://www.villa-corti.com/info.cfm">villa
    information</a> | <a
    href="
    http://www.villa-corti.com/accommodation.cfm">accomodation</a>
    |
    <a href="
    http://www.villa-corti.com/bookingform.cfm">bookings</a>
    | <a
    href="
    http://www.villa-corti.com/pricing.cfm">pricing</a>
    | <a
    href="
    http://www.villa-corti.com/facilities.cfm">facilties</a>
    | <a
    href="
    http://www.villa-corti.com/localinfo.cfm">local
    events </a> | <a
    href="
    http://www.villa-corti.com/map.cfm">map</a>
    | <a
    href="
    http://www.villa-corti.com/contact.cfm">contact
    us</a><br>
    © Poggio alle Corti 2006 Time in Tuscany: Sep 18, 2007
    11:49:21 PM
    </div>
    </body></html>

  • Remote  System Directory Listing/Navigation in JTree

    Hi
    I want my Remote System(Linux) directory listing to be available in a JTree. I need some help on implementing the same. Also How do i constantly get the directory structure of the remote system.
    Thanks in Advance

    http://java.sun.com/docs/books/tutorial/uiswing/components/tree.html
    http://en.wikipedia.org/wiki/Model-view-controller
    How you get the data depends on how you access the server. Maybe FTP.

  • List - Navigation Outline - how to open link in new window/tab?

    I have created Navigation Outline but would like to open links in the new window or tab.
    We are using single sign-on within our intranet therefore the links looks like that: f?p=105:1:&SESSION..
    Does anybody have any ideas how to open new window, I have tried this: target="_blank" but it doesn't work.
    Thanks in advance.
    Robert

    Where exactly are you building this link to open a new window? Are you builidng it inside the query? a column link? I'm just curious; as it would make a slight difference in syntax, or where to escape, or whether or not you need to escape or not. But anyways, you could look into the javascript:popupURL syntax.
    So if you were building a link inside a query, the syntax would look similar to:
    '<a href = "javascript:popupURL(''f?p=&flow_id.:101:&session.::&debug.::&P101_ITEM:&P99_MATCH_ITEM.'')">Link</a>'
    Those are two single quotes that start and end the ....f?p-url-part....I.e., escaped.
    But thats just an example. Hope that helps.

  • Validating an unordered list navigation

    Hi.
    My website isn't validating because of this error (repeated a few times on every page).
    Can anyone help me fix it please.
    Thank you very much
          <li><a href="../legislation/index.html">Legislation</a></li>

    The mentioned element is not allowed to appear in the context in which       you've placed it; the other mentioned elements are the only ones that       are both allowed there and can contain the element mentioned.       This might mean that you need a containing element, or possibly that       you've forgotten to close a previous element.
    One possible cause for this message is that you have attempted to put a       block-level element (such as "<p>" or "<table>") inside an       inline element (such as "<a>", "<span>", or "<font>").

    im thinking it might be because i have an unordered list with a nested unordered list inside it.
    would something like this cause validation problems?
    <ul>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <ul>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    </ul>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    <li><a href="www.widget.com">LIST ITEM</a></li>
    </ul>
    Thank you in advance,

  • Adding space between a buttons in a navigation list

    Hello,
    I am currently using apex 3.2.1 with a 10g backend. All of my forms are using a button list navigation. On one of my forms, I want to add more space between two buttons. Is this possible?
    Thanks,
    Mary

    That doesn't work for a button list navigation. It just makes the button bigger. I need space between two of the list entries in the navigation.
    Thanks,
    Mary

  • Navigation List

    Hi everybody
    i am using jdeveloper11.1.1.3.0, in my page i set list of fonts as ADF navigation list, and set input text change font type depend on selected font from list,
    navigation list properties (auto submit true / ID) , input text properties(partial Triggers list_Id )
    navigation List on change value Listener give it action to change font family , i am using text.setContentStyle("font_family:fontName;") but it not worked
    thanks All

    this my code in jspx
    <af:selectOneChoice id="nl1" autoSubmit="true"
    value="#{bindings.CareFontType.inputValue}"
    label="#{bindings.CareFontType.label}"
    valueChangeListener="#{perference001.dddsds}">
    <f:selectItems value="#{bindings.CareFontType.items}"
    id="si1"/>
    </af:selectOneChoice>
    <af:panelHeader text="Details" partialTriggers="nl1"
    id="ph1">
    <af:inputText label="Label 1" id="it1"
    value="#{perference001.valuess}"
    binding="#{perference001.testInput}"/>
    </af:panelHeader>
    and this in my managed bean
    public void dddsds(ValueChangeEvent valueChangeEvent) {
    this.setValuess("222");
    AdfFacesContext.getCurrentInstance().addPartialTarget(this.getTestInput());
    }

  • Changing hight of navigation bar

    I am new to dreamweaver.  I have created an unordered list navigation bar that sits in an absolute-position div.  I had set the div  with at 770 pix and the height for a hundred pix.  I then created an <u>l pressing return on my mac between each list item.  I then used the <li> in the tag selector to creat an css rule making the list float left. 
    My problem:  I would like to reduce the height of the div to just accomodating the list items.  I changed the div height in the property inspector to 0px.  But the actual visage image of the div does not change.  There is too much space within the div, above and below the list items of the navigation bar and I can't seem to adjust it.  How can this be done?  Is it to do with the div box set up?
    I have already removed "padding" from the top and bottom as well as "white space" of the navigation div.
    Help.....
    Dulce

    A link to your page is what is needed to get any positive and meaningful response.
    Good luck.

  • IPod Touch 5th Gen. Music Library is screwed up

    I have an iPod Touch 5th Gen. 32 GB that runs on IOS 8.1.2: One of the artists in my iPod library is categorized under two different letters but they are not even in the right order and the list navigator thing on the right with the letters isn't working it just skips from letter A to like letter P, which are also the letters that the artist I just mentioned is falling under. All the other artist in my library are in the right place and when I delete all the songs by that particular artist everything goes back to normal and the navigator starts working again. If anyone has any wisdom on this subject it would be greatly appreciated.

    That is how it works now. Make a suggestion to Apple to fix it by going here:
    http://www.apple.com/feedback/ipodtouch.html
    For work around see:
    https://discussions.apple.com/thread/5338621?start=90&tstart=0

  • Creating Electronic Binders Using PDF Portfolio - Commenting and Highlighting

    For a few years now I have been using Portfolios to create electronic versions of binders.  Users want to be able to review, search, highlight and comment within the PDFs - and each have a copy with their comments.  Security is also a big deal.  My main question is:  Is using Adobe Portfolios the best solution for making an electronic binder, or does Adobe or another vendor offer a better one?  Recently I saw a product called GDoc Binder that looks promising.  For now using the Portfolios is the best solution I know of.
    Problems with the current solution:  Right now I have to create multiple copies of the document to allow users to comment and highlight on their own copy.  File size can be problematic - if it's too big searching can take a long time even after I index the file.  Updating and adding sections is problematic since if you update a page or file you could lose their comments, and so I have to update multiple copies of the same file.  I know you can export and import comments but that can be complex/time consuming. One question I have: Is there a search and/or report on comments and highlights from the full Portfolio rather than just one at a time?
    Since Adobe Pro X I have had to use a custom template from PracticalPDF.com to recreate the list navigation of Adobe Pro 9. I did see another post saying that the use of Flash with Portfolios mean that it's day are numbered. Question: I am curious if this is true, and if Portfolios using Flash are becoming obsolete, what Adobe Pro would use for an alternative?
    Thank you in advance for any insight and answers - it is greatly appreciated.

    Take a look at the free 'CoolList' layout from Joel Geraci : http://blog.practicalpdf.com/portfolios/

  • Wishlist for creator

    now i have worked a little bit with creator and can say it's a wonderfull tool but there are still many missed things:
    Wishlist
    Better page/link-management in the navigation-page
    * The navigation-page should be scalable (at the moment we have a scroll-orgy by big webapps)
    * Possibillity to color the page-icons in the nav-view (as optical help, ex for optical "grouping" pages)
    * Other-"controls" should be configurable in the navigation-page/view, too (not only buttons, ex. link-controls and all other input-controls with auto-submit (choiceable: auto-submit with javascript))
    * Support for "external" links (incl. support for request-vars (post/get))
    * Support for INCLUDING (not linking) internal/external links (ex. templates, static-text, html-comments, aso.)
    more html-controls
    * menu-controls (with and without jscript, with poss. to import own graphics as background)
    * tabcard-control (like in your own sun-appsrv-admingui, with poss. to import own graphics as background)
    * tree-control (like in your own sun-appsrv-admingui, with poss. to import own graphics as background/icons)
    * common-dialog-control (with js-support: a real modal dialog | without js-support: showing another html-page with (yes/no/cancel/ok, aso.) buttons | incl. answer-management for yes/no/cancel, aso. | inkl. (and replacable) standard-icons for question/info/warning/error, aso)
    * html-comment-control
    * link/include/template-controls (for including external pages/content in a jsp-page)
    Common for all controls
    * Additional for all control-values a "Bind to locale-resource" (support for multi-language in our own jsp-pages)
    Examples
    * a complete creator-example-project (like the nothwind in asp.net, not only a view example-zip-files)
    * more database-examples (list-navigation <<|<|>|>>, list2detail-records, aso.)
    * the complete help on the creator-website in ONE downloadable zip-file (inkl. all html/pdf-files for offline-working)
    * an example for "binding" a db to a droplist (not only an ex. for filling a list)
    * flash-learn-movies about the work with creator (learn-movies are better for learning than this long and sometimes wrong texts)
    Other
    * Auto-export of a war-file for jakarta/tomcat (ver 4/5, inkl. all required jar-files, aso)
    * Creator-Option for the appserver (sun appsrv or tomcat)
    * Creator inkl. mysql/postgre-jdbc-drivers
    * Creator-Option for the GUI-Optic (sdi-optic should be possible to)
    * Query-Generator with support for pk/fk-links between 2 tables and auto-creating the (inner) joins
    * CVS-support
    Creator-Website
    * Creator-Forum should have more chapters (then it's not necessary to put hints, wishlists and tech-questions in the same forum)
    * A vote-area for the creator-wishlist (then u will see what has the highest priority by your CUSTOMERS)

    You might want to give page fragments a try for
    things like this - you define the page fragment and
    then can use it in multiple pagesbut this is no solution for multiple templates. and there are at the moment no possibillities for importing external designed html-pages/fragments
    then if you
    change the page frag, the change will be reflected
    across the pages.this doesn't work.
    1. create a new fragment-page (jspf-file)
    2. create a new fragment-control on a "main" page with the fragment created before as value
    3. rename or move the fragment-page (jspf-file) to another directory
    => the file-property of the include-statement on the main-page will not be updated automatically. this will produce a broken link and an error at runtime.
    u have to change the include-property on any master-page by hand to solve this problem. an so it makes no different if i have to update manually the image-url or the fragment-url.
    and this is what i mean when i say the creator has at the moment absolut no url/link-management. link-, image-, fragment- or any other resource-url's will not be automatically updated (or checked). but this is on of the most important features by developing html-pages which mostly contains urls.
    and by the way. the directory "Resources" can't be renamed. why?! exactly cause the same problem.

  • ACSM file doesn't seem to open (Mac OS 10.5.6) in DE

    I downloaded a book and the .acsm file appeared on my desktop, but when I open it using DE, nothing seems to happen. It also seems like nothing happens when I drag the acsm file into the DE window. When I close DE and open it using DE, I get a message from DE saying "One or more downloads are not finished. Do you want to resume pending tasks?" When I click "OK," there is no indication that any download is taking place. Is there a way for me to see pending downloads in DE or another way to avoid this problem and get access to my e-book? Thanks in advance for any/all help!

    Here's what I did.  I had the same problem when I tried to download an e-book I purchased.  I was using the Safari web browser, and when I clicked on my download link, it would just download the .acsm file to my computer's Downloads folder, not load the book into Digital Editions.  When I double-clicked on the .acsm file and told it to "Open with Adobe Digital Editions," it wouldn't do anything, either.  The solution that worked for me was to use the Firefox web browser instead.  In Firefox, when I clicked on my download link, it brought up a window that asked if I wanted to Open the file or Save it to my computer.  I chose "Open" and then chose "Other" from the application list, navigated to Adobe Digital Editions, and finally the download began inside Digital Editions.  What a hassle, but it worked.

  • Blackberry apps full version(serial key or no key)

    VR+ full:
    Features
    High quality voice recordings
    Whether you want to podcast, record a voice note, lecture, or a meeting, VR+ is the app for that.
    Select the quality of a recording from the lowest to highest depending on your needs.
    Email your voice memos for playback on any Mac, PC, or mobile
    Send the recordings on the go. MP3 format makes the sending and listening easy.
    Share in social networks
    Share your voice notes with friends on Facebook, MySpace, Twitter, and Blogger.com.
    Version 1.8 full (no key)
    http://bbe4b923.linkbucks.com
    Xplayer full:
    Watch fullscreen videos and listen to live music on BlackBerry!
    A perfect music and video player for BlackBerry. Relax on the beach and shuffle songs from your playlist or play your favorite videos and music on the go. Add all your MP3 songs to Mobiola xPlayer and party it up! Supports every popular audio and video format: mp3, m4a, avi, mp4, 3gp, wma, amr, mid, wav, aac, WMV. Create, Edit, Sort, Shuffle your own playlists. Search through all your multimedia files. Works via all types of connection - BIS, BES, Wi-Fi and direct TCP.
    Live radio stations
    Explore 100+ predefined radio stations of all genres: Classical, Jazz, Rock, Hiphop & RNB, world, pop.
    Listen to podcasts
    Listen to podcasts on BlackBerry to stay tuned for the latest business, sport, music, showbiz, and entertainment events from live news and add your own podcasts as well! Subscription for new podcasts is available via RIM Push.
    New! Dropbox integration
    Playback of Dropbox mp3 files. You can add files to xPlayer playlist, manage playlist with Dropbox files.
    Version full (no key)
    http://772f0477.linkbucks.com
    will post the download link
    All standard file operations
    Copy, Move, Rename, Delete, New Folder and Send as Email. In addition, recursive Copy, Move and Delete operations are supported.
    Manage your Zip archives
    Open and browse Zip archives the same as you would folders. Extract all of the contents, or select and extract just a subset. Create new archives or add to existing ones.
    Select multiple files and folders simultaneously
    Select multiple files and folders at the same time. Do any file operation on the selected items, including compressing them into a Zip archive or sending as email.
    Search for files and folders
    Search for files in a single folder or across multiple folders, even recursively. Specify whether to search on whole words only or to use case sensitivity. Select files in the search results and perform any file operation. And File Manager Pro is blazingly fast, searching 1000's of files in seconds.
    View as thumbnails
    View your files as thumbnails, specifying small, medium or large images. Control the showing of labels from none, one or two line display.
    Launch files in Documents to Go
    Click on a Word, Excel, PowerPoint, or any file with a native format program, and File Manager Pro will open it automatically in its application. Click on any media file — audio, video or image — and have it launched in your media application.
    Integrated Text Editor
    Edit any file opened as text with the integrated Text Editor. Includes Find & Replace with options for case sensitivity and word only matching, Spell Checking (trackball devices only), multiple Zoom levels and more.
    Enhanced shortcut support
    Quick access to many of the common operations, including file list sorting, list navigation, searching, zooming, Favorites and more!
    Fast access with the Favorites list
    Avoid tedious folder navigation by using the Favorites list to quickly access frequently used files or deeply nested folders. Jump directly to your destination with a single click.
    Sort and view files your way
    Sort files by Name, Size, Type or Date, in either Ascending or Descending order. Specify the display of file information, and control the viewing of hidden files.
    Localized user interface
    File Manager Pro is localized in English and Spanish, allowing users to utilize the application in their native language.
    Modify file attributes
    View file and folder properties, and assign the Read-Only and Hidden attributes.
    Intuitive user interface
    File Manager Pro conforms to the BlackBerry user interface guidelines, so that it works just like all of your built-in BlackBerry applications. There's no learning curve, and from the moment you open the application you'll be productive. No non-standard or unfriendly user interface to frustrate you.
    Unsurpassed performance
    Fully designed to give uncompromising performance. Fast file and folder navigation while still providing quick application load time. Open and browse folders containing 1000's of files with virtually no performance penalty. File Manager Pro is the fastest way to browse and work with your files — even faster than the built-in Media application!
    Support for the BlackBerry touch screens
    Get the most from your touch screen BlackBerry. File Manager Pro supports the Torch (9800) and Storm, with features such as double and triple tap selections, multi-touch selections, and swiping for fast scrolling.
    Version update 1.7 with serial key active
    http://b56f2d9a.linkbucks.com

    ABC Amber BlackBerry Converter - view the backup file. IPD full version
    Features:
    These programs convert the backup file of BB to other formats. ABC Amber BlackBerry Converter is a tool that can convert the file. IDP (BlackBerry backup) emails, contacts, SMS messages, PIN messages, AutoText entries, calendar events, phone hot list entries, memos, phone call logs and tasks to any of Which of the following formats: PDF, HTML, CHM, RTF, HLP, TXT, DOC, MDB, XLS, CSV ...
    link:
    http://c84ae8b7.linkbucks.com

  • Security Settings For Deleting Process Instance Information

    Hi there,
    We are currently having issues with our more "novice" users deleting "unsuccessful" or "error" process instances. Are their any security settings we could use for this type of user profile that would not allow them to delet these instances?
    This is in PS Financials V8.9
    Thanks, Dan
    Edited by: user6340243 on 5-Mar-2009 9:58 AM

    Hi Dan,
    Yes you can do that. The process file associated with the Userid is not having Permission to alter process request.
    Identify the Process Profile permission list:
    Navigation: PeopleTools > Security > User Profile
    Make changes to the Process profile permission list:
    Navigation: PeopleTools > Security > Permission Lists
    Select the appropriate process profile permission list.
    Go to 'Process' Tab. Click on 'Process Profile Permissions' hyper link. Under 'Allow process request' section should be changed to Owner or none based on your requierment.
    Hope this helps.
    Regards,
    Pratheepan

Maybe you are looking for

  • I need to buy a camcorder -- upgrading from a Flip. Which would you recommend as easiest to use with iMovie 11? Which for Final Cut Pro? Thanks!

    I need to buy a camcorder -- upgrading from a Flip. Which would you recommend as easiest to use with iMovie 11? Which for Final Cut Pro? Thanks!

  • IPM SDK Developer Help?

    Hi, I'm doing development with the SDK and I am having trouble executing an Ad-Hoc through code. I am using C#.net, and am mainly using the Stellent.IBPM.Interop.Imaging object model. I can authenticate and login to the server just fine with "userTok

  • Random corrupt video from 3GS

    After transferring a number of video clips from my new iphone 3GS to my mac using image capture, I have found that a seemingly random number of them are corrupt and won't play. The message quicktime kicks out is: The movie could not be opened. Operat

  • 10.6.4 deleted most startup items

    Hi there, I installed 10.6.4 yesterday without any error messages. After the reboot I realized that most of my startup items have vanished. How could that happen? Does anyone know the physical folder where these items are normanlly stored? Thx! Jan

  • How to install IGS for the ABAP trial version SP11

    Hi, Please can anyone provide me with the steps to install IGS for the ABAP trial version SP11. Which version of IGS to download? What are extracting the SAR files what steps should be followed? Please advice, Thanks, sam