How do I check if a cell is an error (Red triangle)?

How do I check if a cell contains an error (Ie. a red triangle)? I can't seem to find an apropriate function, nor an answer using the search function on this board (Nor Google).
Otherwise I'll have to do a ton of IF functions to fix it...

Hi David,
"How do I check if a cell contains an error?"
To check if a cell contains an error, you look at the cell. If it shows a red triangle, it contains an error.
Do you mean 'How do I fix an error?"
That depends on what the error is. You start by clicking the error triangle to view the error message.
If it says "The formula contains a syntax error," you examine the formula carefully to find the syntax error, then correct the error. The most common source of syntax errors in complex formulas is misplacing one or more parentheses.
If it says "bad reference" you examine the cell references in the formula to see if one or more is beyond the boundaries of the table referenced.
Other error messages require other detective work.
Can you clarify the issue with more specific details? What do you mean by "an appropriate function"? Appropriate to what purpose?
Regards,
Barry

Similar Messages

  • How to get the sum in appropriate column without a red triangle appearing?

    Hello,
    In 'Numbers" - How do get columns to add (calculate) the sum in each decending column on an Expense Report.
    When I highlight the decending column the total appears on the far left of the screen.  When I drag the sum amount from there to the appropriate column a red triangle with an ! appears instead of the amount.
    Thanks for your immediate help.

    The red triangle is an Error triangle. Clicking it will display the error message and tell you what error has occurred. From your description, my assumption is that you dragged the SUM() function from the quick calculations at the lower left and dropped it intto a cell in the column being summed.
    If that's the case, this is likely the error message you would see:
    When you highlighted the 'decending column,' you likely selected all of the cells in that column, including the one into which you dropped the function.
    Instead, do one of the following. These assume the column you want to sum is column B.
    If you want the sum at the top of the column:
    Make sure the row you want the sum to appear in is a Header row.
    Enter this formula into any Header Row cell in column B:   =SUM(B)
    If you want the sum at the bottom of the column:
    Add a Footer row to the table. (Go Table (menu) > Footer Rows > 1).
    Enter this formula into the Footer Row cell in column B:   =SUM(B)
    SUM (and other functions) that expect a range of cells will interpret a cell reference entered using only the column letter (B) as meaning 'all of the non-header, non-footer cells in column B', and will exclude those cells in header or footer rows.
    Regards,
    Barry

  • JTree - How to make Check box as cell editor?

    Dear Swing developers,
    I am planning to make a editable JTree with each node having a JCheckbox. I am kind of stuck at defining the cell editor, any suggestion?
    thanks
    -jay

    take the answer there :
    http://www.mutualinstrument.com/Easy/FAQ/Tree/tree.html

  • How do I check if my PC's Wi-Fi card is compatible?

    I have a notebook and it's a Dell Latitude D410 with Intel Pentium 1.6 GHz running windows XP pro 2002. I checked my wireless connections and i have two:
    1. Sierra Wireless EDGE Adapter
    and a
    2. Dell Wireless 1350 WLAN Mini-PCI Card
    I want to purchase an Airport Extreme Base Station and I'd like to know three things:
    (1) How do I check if any of those two are Wi-Fi certified 802.11b and/or 802.11g cards?
    (2) If they are, which of the two wireless cards/adapters do I use to set up a wireless home network that I will use for sharing an internet connection from a cable modem and also use for sharing a USB printer.
    (3) Will I be able to have my mac and PC communicate with each other to share files?

    1. The Dell Wireless 1350 WLAN Mini-PCI Card is a WiFi certified 802.11b/g card.
    2. You use the Dell Wireless 1350 WLAN Mini-PCI Card to connect to a home wireless network.
    3. With both the Mac and PC connected to a home wireless network, they will by definition be "networked" to each other. Set up file sharing by following the advice at http://www.efelix.co.uk/tech/3001.html
    By the way, the Sierra Wireless EDGE Adapter is a wireless broadband card - you use it to connect to the internet wirelessly when you are "on the road" - much like using a cell phone.

  • How to insert check box fields in a htmlb: tableview

    Hi,
    Can anybody tell me how to insert check box fields in a htmlb: tableview in a sequence of rows in a table view. How to generate the sequence no for the checkbox inorder to know the row that is checked.
    Thanks in advance,
    Aruna.

    Here is the code which has the custom "Checkbox" in the tableview & Triggers the event. <b>You can identify the checkbox based on cell ID (p_cell_id)</b> in the method "IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START" & Based on the event name + Cell ID. Look at the code & let me know if you any issue.
    <b>Layout:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "design2002+design2003"
                   controlRendering = "SAP"
                   rtlAutoSwitch    = "true"
                   forceEncode      = "ENABLED" >
      <htmlb:page title="Test " >
        <htmlb:form>
          <%
      data TV_ITERATOR Type Ref To zcl_itr.
      data iterator type ref to IF_HTMLB_TABLEVIEW_ITERATOR.
      create object tv_iterator exporting appl_cons = application.
      iterator = tv_iterator.
          %>
          <htmlb:tableView id              = "fligts"
                           headerText      = "Flight"
                           width           = "100"
                           headerVisible   = "true"
                           design          = "alternating"
                           visibleRowCount = "10"
                           fillUpEmptyRows = "true"
                           showNoMatchText = "true"
                           filter          = "server"
                           sort            = "server"
                           onHeaderClick   = "MyEventHeaderClick"
                           table           = "<%= APPLICATION->itab %>"
                           iterator        = "<%= ITERATOR %>" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Event Handling:</b>
    DATA: EVENT_ID1 TYPE REF TO IF_HTMLB_DATA.
    EVENT_ID1 = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    CASE EVENT_ID1->EVENT_SERVER_NAME.
    IF NOT event_id1 IS INITIAL.
       if event_id1->server_event+0(9) = 'chkevent'.
      SPLIT event_id1->server_event AT '-' INTO v_event v_dummy v_row v_col.
      endif.
    endif.
    method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS.
         CLEAR p_column_definitions.
        CLEAR p_overwrites.
        DATA: tv_column  TYPE TABLEVIEWCONTROL.
        tv_column-COLUMNNAME  = 'FLDATE'.
        tv_column-edit        = 'X'.
        tv_column-sort        = 'X'.
        tv_column-TITLE               = 'Flight Date'.
        tv_column-WIDTH  = '100'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CONNID'.
        tv_column-TITLE               = 'Conn.ID'.
        tv_column-WIDTH  = '70'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CHECKBOX1'.
        tv_column-TITLE               = 'Check Box'.
        tv_column-WIDTH  = '30'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
    endmethod.
    METHOD IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
           DATA: L_EVENT TYPE STRING.
      CASE P_TABLEVIEW_ID.
        WHEN 'fligts'.
          CASE P_COLUMN_KEY.
            WHEN 'CHECKBOX1'.
    *          CONCATENATE 'chk_event' '123' '2323' INTO L_EVENT SEPARATED BY '-' .
    CONCATENATE 'chkevent' p_cell_id INTO l_event SEPARATED BY '-'.
              P_REPLACEMENT_BEE = CL_HTMLB_CHECKBOX=>FACTORY( ID = P_CELL_ID
            ONCLICK = L_EVENT CHECKED = 'false' ).
          ENDCASE.
      ENDCASE.
    ENDMETHOD.
    Hope this will solve your problem.
    <b><i>* Reward each helpful answer.</i></b>
    Raja T
    Message was edited by:
            Raja T

  • Was my T61 shipped without Bluetooth? How can I check?

    Recently I bought a T61 with Windows Vista Ultimate.
    When I ordered it, I selected bluetooth capability and the integrated bluetooth pan (or whatever was there to click).
    I am totally new to that whole bluetooth thing, so I wanted to try out whether I can connect my bluetooth enabled cell phone with my Laptop. So I activated bluetooth on the phone and made it visible to other devices, but when my T61 searched for devices, it couldn't find anything.
    So there is a lot of settings, I thought maybe I did something wrong, but everything seems correct. But then I thought, maybe both devices have to be visible. So I wanted to set my T61 to "Allow Bluetooth devices to find this computer" in Start -> Control Panel -> Bluetooth Devices -> Options.
    But to my surprise when I click 'Apply' or 'OK', I get this error message:
    Bluetooth Service Error
    An error occurred while Windows was saving your settings. The
    Bluetooth device might be unplugged.
    The following settings were not saved:
    Discoverability settings
    Connection settings
    How can the device be "unplugged" in a Laptop???
    Maybe it's not even built in.
    I am not really familiar with what is necessary to have bluetooth capability. When I look at the shipping itemization though, it seems there are multiple items needed.
    Among many other entries the following lines were in the shipping listing (email):
      62P6054 VBB INTEGR.BLUETOOTH PAN   
      42X1482 SBB BLUETOOTH W/ ANTENNA    
      42X1483 SBB BLUETOOTH SCREW    
      42V8654 SBB CL.PLATE T61WLAN BLTOOTH   
    These are the entries that sound like bluetooth.
    (btw. What's a bluetooth screw, what's so special about it and what do I need it for?)
    So, my brandnew T61 ought to have bluetooth capability, right?
    But, maybe they forgot to put one of the components in. After all the fan was broken at arrival, not the best omen, I'm afraid.
    How can I check, if Bluetooth is actually in the laptop?
    Hope somebody can help me,
    I don't want to call Lenovo and have some repair guy come over just to tell me how it's turned on.
    Thanks,
    MarkusK

    Hi MarkusK, welcome to the forum,
    I believe your T61 does have bluetooth. Have you turned bluetooth on using Fn F5. If BT has not been turned on I get exactly the same message you are describing. BT is turned off as standard setting, when you turn it on for the first time it will automatically load the necessary drivers - and away you go.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • How I can check is my auto renewable subcription is renew or not ?

    In auto renewable subscription apple automatically get payment from account but in case my credit card is expire or some other issue with payment then in my application how can I check is user subscription is on/off.

    You know, just like in Invasion of the Body Snatchers, but in this case the alien seed pods duplicate cell phones in order to take over the planet.   The look the same, but they're not the same.....

  • How do I check if my iPhone 4s is genuine

    Jus bought iphone 4S, it has chinese writing in the back whereas my iphone 4 is in English. How do I check if its genuine or not

    Enter the serial number here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    If it correctly reports the model of iPhone, then it's probably genuine. A final check will be if it has the iTunes Store or App Store app and successfully connects.
    Note, though, that being genuine doesn't mean that you can use the iPhone. Used iPhones frequently turn up with Activation Lock or are locked to some other country's cell carrier, making them often ususable by the purchaser.
    Regards.

  • How to print Check Box in smartform

    HI,
      How to print check box in smartforms. I am using Include Sap Symbol but in the print it is coming as #. Do we need to do any setting like we do for barcode?
    Thanks
    Raghavendra

    hi,
    u can print a check box in different ways.. by inserting symbols and making window as check box..
    once go through the thread u will get to k now differnt ways
    putting checkboxes in smartform?
    Please Close this thread.. when u r problem is solved. Reward all Helpful answers
    Regards
    Naresh Reddy K

  • How does APEX check for null values in Text Fields on the forms?

    Hello all,
    How does APEX check for null values in Text Fields on the forms? This might sound trivial but I have a problem with a PL/SQL Validation that I have written.
    I have one select list (P108_CLUSTER_ID) and one Text field (P108_PRIVATE_IP). I made P108_CLUSTER_ID to return null value when nothing is selected and assumed P108_PRIVATE_IP to return null value too when nothign is entered in the text field.
    All that I need is to validate if P108_PRIVATE_IP is entered when a P108_CLUSTER_ID is selected. i.e it is mandatory to enter Private IP when a cluster is seelcted and following is my Pl/SQL code
    Declare
    v_valid boolean;
    Begin
    IF :P108_CLUSTER_ID is NULL and :P108_PRIVATE_IP is NULL THEN
    v_valid := TRUE;
    ELSIF :P108_CLUSTER_ID is NOT NULL and :P108_PRIVATE_IP is NOT NULL THEN
    v_valid := TRUE;
    ELSIF :P108_CLUSTER_ID is NOT NULL and :P108_PRIVATE_IP is NULL THEN
    v_valid := FALSE;
    ELSIF :P108_CLUSTER_ID is NULL and :P108_PRIVATE_IP is NOT NULL THEN
    v_valid := FALSE;
    END IF;
    return v_valid;
    END;
    My problem is it is returning FALSE for all the cases.It works fine in SQL Command though..When I tried to Debug and use Firebug, I found that Text fields are not stored a null by default but as empty strings "" . Now I tried modifying my PL/SQL to check Private_IP against an empty string. But doesn't help. Can someone please tell me how I need to proceed.
    Thanks

    See SQL report for LIKE SEARCH I have just explained how Select list return value works..
    Cheers,
    Hari

  • How do I check Edge status?

    How can I check on the Edge network status?
    I suddenly can't connect to the Apple mail server to send/check email and can't view anything on the Web, but the 'E' still shows up that the network is there.
    Is there a place to check on the Edge network status?
    I couldn't find anything but a coverage map that doesn't tell you anything except what areas are covered for voice or data coverage (but not current status).

    I'm not aware of any status sites that give the status of a particular tower. Sometimes, putting the phone in airplane mode for a minute will correct the issue.

  • I have 1 GB RAM on an '07 MacBook Pro. 1) How do I check remaining memory? 2) I have Microsoft office 2004 - do I need to buy more RAM to upgrade to '11? 3) I need a new battery ... Is it worth the $$ to buy a new battery, RAM and Microsoft office 2011?

    I have a MacBook Pro from '07 with 1 GB of memory. The battery is shot and my AppleCare has run out. I just upgraded the OS to 10.6.8. But a few questions:
    1 - How do I even check how much memory I have left on this computer?
    2 - How do I check how many battery cycles are left?
    3 - I want to upgrade to Microsoft Office '11 because I don't have Adobe Acrobat to creat pdf's and I need to be able to do this for school... Instead of buying acrobat, I figured I would just upgrade to Office '11 because I can generate pdf's from Word. Roughly how much RAM does Office '11 take up?
    4 - Does Apple still make batteries for this computer (from '07)? How much do they cost?
    5 - How much does 1 more GB of memory cost?
    AND lastly -- is it even worth it to spend the $ on more RAM, a new battery and Office '11?
    Or does it make more sense to just get a new computer entirely? (trying to avoid this).
    ANY help would be sooo appreciated! Thanks.

    1 - How do I even check how much memory I have left on this computer?
    If you're asking how to check to see if you need more RAM, open Activity Monitor and go to the System Memory tab, then compare page outs and page ins.  If page outs is 10% or more of page ins, you probably need more RAM.
    2 - How do I check how many battery cycles are left?
    There's no limit on the number of battery cycles, it's just that the more cycles you've used the more "worn out" your battery gets.  You've got a 4-year-old machine, and if it's still got the original battery, it's probably about time for a replacement battery.  You can check battery health using System Profiler...  look at the Power section under Hardware.
    3 - I want to upgrade to Microsoft Office '11 because I don't have Adobe Acrobat to creat pdf's and I need to be able to do this for school... Instead of buying acrobat, I figured I would just upgrade to Office '11
    You don't need Office 2011 to create PDFs.  Any application capable of printing can create PDFs on a Mac.  Just choose File -> Print, but instead of clicking the Print button in the print dialog, click the PDF button and choose Save As PDF in the menu that appears.
    4 - Does Apple still make batteries for this computer (from '07)? How much do they cost?
    5 - How much does 1 more GB of memory cost?
    I'll "ditto" sig's answers to these.
    AND lastly -- is it even worth it to spend the $ on more RAM, a new battery and Office '11?
    Or does it make more sense to just get a new computer entirely? (trying to avoid this).
    If Office 2004 is still working fine for you, stick with that and don't incur the costs of Office 2011.  As to the RAM, only add more if the test I mentioned above indicates that you need it.  If you buy more RAM when you don't really need it, you won't see much (if any) performance improvement.  That just leaves the battery...  and if the machine is still doing what you need it to do and you don't really need a new machine for anything, you could definitely buy a new battery and get a few more years out of it. 

  • How do you check Memory Speed on ICD

    Hi everyone
    I am new to the forums and I am also a soon to be first time mac owner(Receiving my 20" ICD this week) .
    I am buying the imac with an extra 1gig DIMM installed, non-apple memory.
    Now the reseller assures me that the 3rd party memory that he'll be using is compatible with the imac.
    I'm assuming that if there are no issues at start-up then the memory is compatible, but I would like to know how can I check that the memory is running at 667 mhz and that he did not install 533 mhz memory.
    So how can I check that the memory is running at 667?
    Thank you in advance
    20" Imac ICD     1.5ghz memory

    Ah, I think I'm reading that you may be concerned about a potentially counterfeit SO-DIMM. That's one reason to buy direct from a reliable seller such as Apple or Crucial. I'm not sure the memory utility Memtest will verify the DIMM's speed, but it will verify whether or not the SO-DIMM is working properly. That might include a speed calculation, and possibly you can email the Memtest author to find out.

  • When i try to add DownloadHelper it comes up with unexpected installation error review the error console log for more details - 203, how to it check the log and how do i fix this problem?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    When i tried to install DownloadHelper this happened Firefox could not install the file at
    https://addons.mozilla.org/en-US/firefox/downloads/latest/3006/addon-3006-latest.xpi?src=addondetail
    because: Unexpected installation error
    Review the Error Console log for more details.
    -203
    , how do i check the log and how do i resolve this problem? thank you
    == This happened
    ==
    Just once or twice
    == today
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Ask Toolbar for Firefox
    2.1.0.5
    true
    AVG Safe Search
    9.0.0.783
    true
    {3f963a5b-e555-4543-90e2-c3908898db71}
    Java Console
    6.0.17
    true
    Microsoft .NET Framework Assistant
    1.1
    true
    {20a82645-c095-46ed-80e3-08825760534b}
    BitDefender Antiphishing Toolbar
    2.0
    true
    [email protected]
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar
    0
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    extensions.lastAppVersion
    3.6.3
    general.useragent.extra.microsoftdotnet
    (.NET CLR 3.5.30729)
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1276351876
    print.print_printer
    HP Photosmart D5300 series
    print.printer_HP_Photosmart_D5300_series.print_bgcolor
    false
    print.printer_HP_Photosmart_D5300_series.print_bgimages
    false
    print.printer_HP_Photosmart_D5300_series.print_command
    print.printer_HP_Photosmart_D5300_series.print_downloadfonts
    false
    print.printer_HP_Photosmart_D5300_series.print_edge_bottom
    0
    print.printer_HP_Photosmart_D5300_series.print_edge_left
    0
    print.printer_HP_Photosmart_D5300_series.print_edge_right
    0
    print.printer_HP_Photosmart_D5300_series.print_edge_top
    0
    print.printer_HP_Photosmart_D5300_series.print_evenpages
    true
    print.printer_HP_Photosmart_D5300_series.print_footercenter
    print.printer_HP_Photosmart_D5300_series.print_footerleft
    &PT
    print.printer_HP_Photosmart_D5300_series.print_footerright
    &D
    print.printer_HP_Photosmart_D5300_series.print_headercenter
    print.printer_HP_Photosmart_D5300_series.print_headerleft
    &T
    print.printer_HP_Photosmart_D5300_series.print_headerright
    &U
    print.printer_HP_Photosmart_D5300_series.print_in_color
    true
    print.printer_HP_Photosmart_D5300_series.print_margin_bottom
    0.5
    print.printer_HP_Photosmart_D5300_series.print_margin_left
    0.5
    print.printer_HP_Photosmart_D5300_series.print_margin_right
    0.5
    print.printer_HP_Photosmart_D5300_series.print_margin_top
    0.5
    print.printer_HP_Photosmart_D5300_series.print_oddpages
    true
    print.printer_HP_Photosmart_D5300_series.print_orientation
    0
    print.printer_HP_Photosmart_D5300_series.print_pagedelay
    500
    print.printer_HP_Photosmart_D5300_series.print_paper_data
    9
    print.printer_HP_Photosmart_D5300_series.print_paper_height
    11.00
    print.printer_HP_Photosmart_D5300_series.print_paper_size_type
    0
    print.printer_HP_Photosmart_D5300_series.print_paper_size_unit
    1
    print.printer_HP_Photosmart_D5300_series.print_paper_width
    8.50
    print.printer_HP_Photosmart_D5300_series.print_reversed
    false
    print.printer_HP_Photosmart_D5300_series.print_scaling
    1.00
    print.printer_HP_Photosmart_D5300_series.print_shrink_to_fit
    true
    print.printer_HP_Photosmart_D5300_series.print_to_file
    false
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_bottom
    0
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_left
    0
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_right
    0
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_top
    0
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows Vista
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-npdivxplayerplugin
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *6.0.12.732
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *RealJukebox Netscape Plugin
    *Shockwave Flash 10.0 r45
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *DivX Web Player version 2.0.0.254
    *GEPlugin
    *4.0.50524.0
    *Office Live Update v1.4
    *NPWLPG
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *RealPlayer(tm) HTML5VideoShim Plug-In
    *Google Update
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    Mark Leary:
    As TXGuy posted above:
    See:
    https://support.mozilla.com/en-US/kb/Unexpected+installation+error+-203+when+installing+add-ons
    http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox#Unexpected_installation_error_-203
    Also see:
    http://support.mozilla.com/en-US/kb/Profiles#How_to_find_your_profile
    http://kb.mozillazine.org/Show_hidden_files_and_folders

  • How to config Check Digits function module for Student Number Validation

    Hi SLCM Experts,
    In the SAP-SLCM, How to use check digits function module for validate student number.  Just only config it or need to customizing program.
    *Any idea to student number validation in SLCM?*
    Best Regards,
    Suvatchai K.

    Hi ,
    Can you expalin it further ?
    You configure the St. no in piq_matr . And set it  as external or internal no. range which suits your business .
    What is the validation you are looking for ?
    Regards
    Gajalakshmi

Maybe you are looking for

  • Returning multiple values from a method

    I have to return a string and int array from a method (both are only of size 5 for a total of 10) What would be considered the best manner in which to do this ? Dr there's 10 points in it for you or whoever gives me the best idea ;-P

  • Parsing code from a database table

    Hi, How do I output / parse / evaluate HTML and CF code stored in a database table? For example, I have the following query which retrieves some HTML and CF code: <cfquery datasource="MyDatasource" name="GetEmailCode"> select Mail_Content from Messag

  • Stock not updating after STO?

    There are two plants 5000 and 7000.Plant 5000 transfer material to plant 7000 with STO process. But after STO process stok of plant 7000 is updating (addition) but stok of plant 5000 is not reducing..Both  material document is showing right quantitie

  • ListBox question in: CS3 (Mac-Windows)

    Hi all, I'm trying to implement a ListBox that always contain a unique different contents in its last row, all other rows including first to one before last row have the same content. To be more clear for what I want to implement something like this

  • Starting OC4J_BI_FORMS automatically after reboot on Win2000

    Does any know how to configure OCJ4_BI_FORMS to startup automatically after rebooting on win2000. Now, I'm manually starting the OC4J_BI_FORMS instance, and would like to automate the startup after reboot. Thanks in advance Joe