How to avoid the Blank elemts in the List Item

Dear All,
I am using a List Item
List Elements List Item Value
Yes 1
No 2
Only two elements in this List Item.But at Run time there is one Blank element.
I need to display only two elements from the List Item .How to avoid the Blank.
Thanks and Regards,
Fazil

Fazil,
I am using a List ItemList Elements List Item Value
Yes 1
No 2
Only two elements in this List Item.But at Run time there is one Blank element.
I need to display only two elements from the List Item .How to avoid the Blank.>
Maybe you actually have null entries in your list. You can clean it up using keys as discussed here http://paranoid-engineering.blogspot.in/2008/05/wonderland-of-oracle-forms-builder.html (Ignore the personal opinions of the author if you will ;) ).
Cheers,

Similar Messages

  • How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something"sign... it just doesn't start the system....

    How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something" sign... it just doesn't start the system....
    Please help
    Marcelo

    If there is no loading bar, it's usually a problem with a third party kext file in OS X itself.
    You can press the power button down to force a hardware shutdown, then reboot holding the shift key down on a wired or built in keyboard, this will disable them and you go around and update your third party software.
    Gray, Blue or White screen at boot, w/spinner/progress bar
    Also take this time to backup your users files off the machine if possible.
    Most commonly used backup methods
    Sometime that won't work and you need to do more
    ..Step by Step to fix your Mac

  • How do I get rid of the blank space at the bottom of the new Firefox menu?

    The new firefox 4 has a different menu system. IT has blank space at the bottom wiht just a plus sign that opens new tabs. I can get that from the + sign by the tabs and don't want it or the rest of the blank space on the bar. I need all the space in the main window I can get. How do I get rid of this?
    Found my own answer, disable Conduit Engine toolbar, whatever the heck that is. Why it's enabled to start with is beyond me.

    Hi stephanie,
    These are unrelated questions/statements.
    Space before and space after a paragraph are controled in the Text Inspector, as you've found out.
    Pages will create a page break whenever there is no room for another line on the page. That break can come anywhere in a paragraph.
    You may be thinking of Widow and Orphan prevention, and the other Pagination controls, found under the More button in the Text Inspector. (If that's what you found, then thanks for the refresher! I hadn't been to that pane for awhile, and had forgotten the variety of pagination controls available.
    Regards,
    Barry

  • I am creating a form, it shows 1 page, but when I save it as a PDF Form there are 2 pages, 1 is blank. How do I get rid of the blank page in the form?

    I am creating a form, it shows 1 page, but when I save it as a PDF Form there are 2 pages, 1 is blank. How do I get rid of the blank page in the form?

    Hi,
    You may open the original form in FormsCentral and toggle to “Page View” at the lower right corner. Adjust the page content to make sure no page breaks in this view.
    Thanks,
    Wenlan

  • How to remove the blank lines at the end of the JTextArea .

    Hi,
    I need to remove the blank lines in the JTextArea at the end. Suppose i am giving 'A' in the first line and press the enter key two times, after i am giving the 'B' in the third line and press enter key for two times. I need to remove, the last two lines of JTextAreae, . How i can remove these lines?

    String#trim() removes all whitespace from both ends of the String.
    The requirement was to remove line breaks from the end of the String only.
    String#replaceAll with a suitable regex would do the trick. Untested regex for this:text.replaceAll("[\\n\\r]+$", "")db

  • How can I fill the blank space in the example below?

    I have to fill using sql statement the blank space with the same description that appears below that belong to the same STTCKT. I
    am using a temporary table.

    There is no need in ROW_NUMBER. You can use simple query like below sample which cost 6% relative to the use of ROW_NUMBER which cost 94% (sort is havy operation with no index).
    DDL+DML:
    CREATE TABLE test( [STBK#] varchar(50), STTCKT int)
    truncate table test
    Insert into test values
    (null, 48035)
    ,('First Two Truck', 48035)
    ,(null, 48039)
    ,('First Two Truck', 48039)
    ,(null, 48046)
    ,('First Two Truck', 48046)
    ,(null, 48054)
    ,('KLS LOGISTIC, INC.', 48054)
    GO
    select * from test
    GO
    If all you need is SELECT with FILL then check this:
    select
    --[STBK#] ,
    STTCKT, [Fixed_STBK#]
    from test T1
    Cross APPLY (SELECT TOP 1 T.[STBK#] FROM test T WHERE T.STTCKT = T1.STTCKT and T.STBK# IS NOT NULL) T2 ([Fixed_STBK#])
    And you can use this query as well without CROSS APPLY
    select
    --T1.[STBK#] ,
    T1.STTCKT, T2.[Fixed_STBK#]
    from test T1
    LEFT JOIN (SELECT T.STTCKT,MAX(T.[STBK#]) [Fixed_STBK#] FROM test T GROUP BY T.STTCKT) T2 ON T1.STTCKT = T2.STTCKT
    If you are looking for update the original table please check this:
    UPDATE test
    SET [STBK#] = T2.[Fixed_STBK#]
    FROM test T1
    Cross APPLY (SELECT TOP 1 T.[STBK#] FROM test T WHERE T.STTCKT = T1.STTCKT and T.[STBK#] IS NOT NULL) T2 ([Fixed_STBK#])
    WHERE T1.[STBK#] IS NULL
    GO
    I hope this is helpful and answer your need, If not please try to clrify your needs and post your DDL+DML
    [Personal Site] [Blog] [Facebook]

  • Help I just get stuck with the blank screen and the white circle

    help I just get stuck with the blank screen and the white circle after i erase all content and setting
    i dont know how to do pls help.

    Try connecting the device to your iTunes library and restoring it.  If necessary place the iPod into recovery mode using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • How to Create a Dynamic http address that opens the Explorer Window for a List Item When a Button Is Clicked--Currently Trying to Make this Work with Javascript

    I have created a button (via Content Editor) that uses JavaScript to open the Attachments folder of a list item in the Explorer Window in SharePoint 2010. The purpose is to have drag and drop functionality for each list item, having multiple attachments.
    The button works but opens the "Attachments" folder containing all of the other folders for each list item (one folder per item). It seems that when you add an attachment to a list item, SharePoint numbers the folder based on the item's ID. What
    I'm trying to do is take the JavaScript I have and have it run when a button is clicked in a custom form. When it runs, I'm trying to get it to open the "specific" folder for the list item. I have had success creating a hyperlink in the list that
    does this; however, the link WILL NOT work until I use the Content Editor created button that runs JavaScript, that prompts me to click OK to my profile certificate, and then opens the Attachment folder. After that occurs, I can use my hyperlinks without issue
    because I'm no longer prompted to click OK for my cert.
    So I'm trying to take the JavaScript I have and place it in a list item form (custom form) and have it run when a form button is clicked. The problem is I have very little knowledge of JavaScript (did I mention little?) and
    "don't know how to take the "http:" address I have in the script and append to it the list item ID, according to the record I have open."
    So that for any record I open, the script will grab the corresponding record ID (or list item ID) and append it.
    Here's the script I'm working with (which I didn't create but am grateful for):
    <style>
    .httpFolder {behavior:url(#default#httpFolder);}
    </style>
    <script text = "javascript">
       function fnOpenFolderView(){
       oDAV.navigateFrame("https://server/collection/site/subsite/Lists/Sublist/Attachments","_self");
    </script>
    <div id = "oDAV" class = "httpFolder"/>
    <input type = "button" value = "Open Attachment Folder" onclick = "fnOpenFolderView()"/>
    The above script, in the Content Editor, creates a button that opens the Attachments folder for the corresponding SharePoint list.
    JackSki123

    Hello Thriggle,
    Thank you for pointing that out. I appended your "GetUrlKeyValue" to the end and it worked. That said, I noticed it doesn't run as smoothly as when I simply click on the Content Editor button I created that resides on the SharePoint List
    ASPX page (not the form). The Content Editor button has the same code, minus the "GetUrlKeyValue". I click it; I get prompted to choose my cert; it opens right up.
    Now go to the ASPX Display form where I dump the code in a table cell. Button appears in cell; I click it; wait; wait; I get prompted for cert; it opens. Do I need some sort of "throttle" for the JavaScript? For instance, I thought before running
    JavaScript, you reference the library first. This code doesn't do that. I'm wondering if there's something more I need to make this run smoothly. Thank you both for getting me this far. 
    JackSki123

  • Changing the Modified Date of a List Item using the SharePoint Client Object Model (C#) with Contribute Permission

    I have a small snippet of code that I use to update the Modified Date of a list item and it works great for users with Full Control permissions.  However, for users with just Contribute access to the site the code doesn't work.  Instead, SharePoint
    just updates the Modified Date to now.
    I did some testing, and narrowed down the specific permission level that allows updating of Modified dates and oddly enough, it's the "Manage Permissions" level.
    Has anyone run into this issue? If so, how do I work around this and update the Modified date as a user with only Contribute access to a site/library?
    Here's the code:
    DateTime Test = new DateTime(2012, 5, 4);
    ListItem li = list.GetItemById(itemID);
    li["Modified"] = Test;
    li.Update();
    ct.ExecuteQuery();
    Thanks,
    Max

    Hello,
    As a workaround you can pass admin credential in your code because as per my knowledge contributor can't update default columns like: created by, modified by, modified, created.
    ClientContext clientContext = newClientContext(siteUrl);
    ClientContext.Credentials = newNetworkCredential(UserName, Password, Domain);
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to again add workflow to workflow completed list item?

    Hi All,
    How to again add workflow to workflow completed list item?Thanks!

    Hi,
    According to your description,my understanding is you want to add a new workflow to the completed list item.
    a) If yes, then you need to follow the same process attaching the workflow to the list/library and while deploying the workflow you should  select  the option "Allow this workflow to be manually started.......".
    Go to the workflow completed list item  and start the workflow which was created newly in the above step.
    b) If your query is want to restart the same workflow for completed list item then,
    You need to go to the workflow completed list item-->workflows-->start/click on  the workflow again.
    To do this, you might have selected the option "Allow this workflow to be manually started......." while attaching the workflow to the list.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ******************************************************************************************
    s p kumar

  • How to avoid a blank page at end of the page?

    Hi Experts,
    I have created a smartform where i need to display the line items based on the customer data.
    I have created a command at the end of the loop. For every new customer it has to go to new page. After the completion of the report i'm getting a blank page at the end.
    If i take a single customer or multiple customer, I'm getting a blank page at the end. I need to avoid this.
    Please let me know the procedure to avoid it.
    Thanks and Regards,
    Abdur Rafique

    Hi,
    Try this logic
    In the "Initialization" tab of global definitions
    DESCRIBE TABLE IT_TAB LINES W_COUNT.
    Here IT_TAB contains all the customers
    While looping IT_TAB count the records into W_COUNT_CURRENT " Current record count
    In the COMMAND give the condition
    W_COUNT_CURRENT  <> W_COUNT (Go to new page as long as current customer is not the last customer)
    For the last customer both variable will be equal and there will not be a new page.
    Note that the COMMAND must be at the end of the LOOP for this logic to work
    Regards

  • How to avoid withholding tax posting in the case of ERS

    Hi
    We are trying to process Rent using Frame work Order.
    The issue here is withholding tax codes maintained for other purposes like Professional Fee, etc in the vendor master gets picked up automatically in this Rent invoice and the relevant WH Tax postings are made in the accounting document.
    Being ERS and usage of T code MRRL, the invoice generation is automatic instead of manual MIRO. Hence, user has no control to deselect withholding tax codes while generating invoices.
    Appreicate any suggestions how to avoid this?
    OR
    Is there any way of posting rent using frame work order instead of ERS (ie MRRL)?
    Please let me know if I m not clear.
    Thanks
    Sridevi
    PS: In Spain, there is no WH tax on Rent

    Hi,
    Assign a new Accounting Document to T. Code "MRIS" in OMR4.
    First create a new Document Type
    Then Assign Document Types in Invoice Verification
    Now go to OBBH - Substitution in Accounting Documents and write substitution for this new FI Doc Type and T. Code MRIS. Here take help of your FI consultant.
    You can use field XREF3 - Cash Flow, and keep constant vale for this as "Blank" since it is Relevant with Cash Flow.

  • How to avoid pop up appearing in the screen middle top when playing video full-screen ?

    I created a landing page with embedded video hosted on Vimeo. When I click to play the video full-screen there's always a pop up window in the middle top saying the meaning like Vimeo is playing full-screen, press escape to get out of it. I don't want that pop up from appearing, I am wondering if any code I can put on the embedded video to prevent the pop up ? Thank you very much.

    No, as a web developer, you can't tamper with that message. The point is to prevent a situation where the user is trapped in full screen, as would happen if full screen is initiated by the page and the page doesn't provide controls to exit full screen.
    If users trust the site in question, they can check the "Never ask me again for this domain" checkbox to avoid the message in the future.
    Users can also get rid of all such messages altogether:
    # Install Stylish and restart Firefox when prompted.
    #* https://addons.mozilla.org/firefox/addon/stylish/
    # Click the Stylish icon on the navigation toolbar and choose Write New Style, then Blank style.
    # Paste the following in the text box, give the style a name, then click the Save button.
    <pre><nowiki>
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    #fullscr-toggler,
    #full-screen-warning-container {
    display: none !important
    </nowiki></pre>
    If you don't want to install an add-on, you can use the ''userChrome.css'' file instead, but I don't recommend it. In that file, the first line of the style should only appear once at the top.
    * http://kb.mozillazine.org/UserChrome.css

  • How to Avoid another Black X Over the Battery?

    Forgive me if this is already a topic. If so, please direct me to the correct thread.
    I was recently working on my Late 2010 Macbook Pro 13 inch laptop when it just shutdown. It took about 5 minutes to start back up, and I immidatley noticed that there was a black X over the battery symbol, and the fan was running at a full (and a very loud) speed. I shut it down and plugged in the power cord, which only glowed very faintly.
    After some googleing, I figured out what was wrong and fixed it using a different thread. I basically had to restart the SMC. The thread I used is here: http://support.apple.com/kb/HT3964
    However, even though it helped me fix the problem, it didn't answer any questions. So, if you could please help me. Why did this happen to my Mac? How did resetting the SMC fix the problem? How can I avoid this problem in the future? Is this an issue with the battery, or is it something else?
    I want to know what I did to make this happen and how to avoid it in the future, if it's possible. All input is appreciated. I am not very computer savy when it comes to the inner workings, so I'm hoping someone smarter than me can help me understand what just happened with my computer.
    Thanks!

    An SMC reset can 'fix' several battery issues -
    A portable Mac doesn't appear to respond properly when you close or open the lid.
    The computer sleeps or shuts down unexpectedly.
    The battery does not appear to be charging properly.
    The MagSafe power adaptor LED doesn't appear to indicate the correct activity
    - but I've no idea why you had your problem in the first place, so I can't tell you how to avoid it in the future. Maybe you let your battery drain completely down? I don't know - but now you know the 'fix' for it should it happen again.
    Clinton

  • How to avoid to print decimals in the output

    Hi,
    Please suggest me how to avoid getting decimals in the output.
    The variable that i am using is RKMNG. While declaring it i have used it in this manner,  rkmng type p decimals 0.
    but this only avoids fetching the data with decimals, when i am trying to print this value to the output using ALV FM, the decimals are appearing.
    Please can u provide me how to remove these three decimals that are appearing in the output.
    Thanks,

    do this :
    data : lv_var like i.
    move rkmng to lv_var.
    print lv_var.

Maybe you are looking for