6290 missing "torch" and "hide ID" functions

Started using Nokia 6290 after Siemens S75 and Moto V6 and missing these two functions very much.
Tried "S60SpotOn" and "Best Torch" freeware. Both work BUT:
S60SpotOn switches on red LED instead of white;
Best Torch uses screen backlight, not camera flash LED.
Can anyone suggest a torch software for 6290?
As to "hide ID for next call" and "show ID for next call" - I have no idea how to add it.
I hope Nokia programmers read this forum and will include these two functions into next firmware

Hello expert,
Thank you very much for your reply.
Actually the data model is very simple. There is only one physical table REJECT_FACT. The structure is as follows:
Reject ID (NUMBER)
Reject Category (VARCHAR2)
Reject Code (VARCHAR2)
Reject Code Desc (VARCHAR2)
Site Desc (VARCHAR2)
Site Code (VARCHAR2)
Region Desc (VARCHAR2)
Age Group (VARCHAR2)
Reject Date (DATE)
The hierarchy required is as follows:
Reject Category -> Reject Code Desc -> Site Desc -> Region Desc -> Age Group -> Reject Date.
I want to produce count on each hierachy level.
How to populate the hierachy structure effectively?
Thanks......

Similar Messages

  • Does anyone know why the delete and hide options are still missing in the crop tool option bar, despite having changed the background layer to a regular layer?  Thanks!

    Does anyone know why the delete and hide options are still missing in the crop tool option bar, despite having changed the background layer to a regular layer?  Thanks!

    "flying blind."
    "You totally lost me there, and I have no clue as to what your last question means."
    "I think I now know what you mean."
    Evidently language is of difficulty for you. 
    Perhaps the Oxford dictionary can provide you with your much needed “sensible, meaningful” content.
    According to the Oxford dictionary, a dialogue is to "Take part in a conversation or discussion to resolve a problem."  It also states that a dialogue is "A discussion between two or more people or groups, especially one directed toward exploration of a particular subject or resolution of a problem.”
    That IS the inherent nature of posts. A conversation is reciprocation.  Questions, followed by more questions.
    It is not difficult to understand.
    "how to ask your questions correctly for quicker and better answers" is best actualized by simply asking.
    Is it a Mac; is it not, etc.
    That IS sufficient.  That IS "quicker and better answers[ing]."  That IS what a dialogue IS.   And that IS actually what is "sensible," "meaningful," and "detailed." 
    The Oxford dictionary can best delineate and elucidate your lack of comprehension in what ACTUALLY “meaning” is.
    As well as what is "sensible" AND "detailed." 
    By the way, am I being repetitive.
    Still confused.  Let the experts that do not require much explanation respond with "quicker and better answers" for both "sensible, complete" responses." They are not "lost," "blind," or provide "incomplete" drivel.

  • Show and hide events in a dashboard widget

    These two functions never seem to fire off. If the widget is hidden the hide function doesnt run and the show function only runs on the insitial load.
    My problem here is that i am running a setinterval to perform a task every 30 seconds while visible and when the dashboard closes and the widget is hidden the timer still runs. I'd like it to stop and only start again when the widget shows, any ideas?

    I would use visible and includeInLayout properties
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Missing Tables and Indexes greyed out in DBACOCKPIT

    Hi All,
    I use Solution Manager 7.01 with MS SQL Server 2008 DB.
    I want to monitor with DBACOCKPIT a MS SQL Server 2005 DataBase of a SAP BPC 5.1.
    I connected the DB but in DBACOCKPIT some functionality are greyed out.
    I want to use in Diagnostics section the "MISSING TABLES AND INDEXES" function but this command is greyed out.
    Is it possible to use this function?
    Please, help me!
    Regards,
    Alessandro

    Hi,
    Gray color means that screen is disabled for any reason (authorization, SQL Server release, monitoring remote, etc).
    I believe, those items cannot be monitored unless these limitations are sorted out.
    Please refer to the Document "The SAP DBA Cockpit for Microsoft SQL Server" in SDN.
    You can get the status about the restriction in the bottom of dbacockpit screen.
    Thanks,
    Jagan
    Edited by: jagadheeshan govindasamy on Sep 16, 2009 1:03 PM

  • How to Hide BP Functions - Points will be awarded

    Dear Guru's,
    I would need to Block CRM Business Partner Functions which are not required to list out. I through with the following steps to block:
    (CRM 4.0)
    IMG --> CRM --> B.Functions --> Partner Processing --> Define Partner Functions.
    Here I Checked the Check box to Block the Functions. but i was wondering that the Functions are still visible in the Functions Field of Activity. How can i hide those.
    Kindly suggest me.. Points will be awarded for atleast help ful answer..
    Srujan

    Hi Srujan,
    The Block Check Box in the partner function definition is not meant to hide a partner function. If only changes the way of determination of partners. (as wriiten in the helps - Defines whether the source partner is added during partner determination for the resulting Quantity).
    What I understand is you do not want few partner function to be visble in the partner tab of the activity. For this in your partner determination procedure (which is assigned to the transaction type of activity) just add the partner function you want to be visible and put permitted functions as A Only Functions Assigned to the Procedure.
    Steps:
    1. Check the Partner determination procedure assigned to the Transaction Type of activity
    TCode: SPRO
    Customer Relationship Management --> Transactions --> Basic Settings --> Define Transaction Types
    2. OPen the Patner Determiantion Procedure
    Customer Relationship Management --> Basic Functions -> Partner Processing -> Define Partner Determination Procedure
    Here check the Partner Procedure and change the Permitted Function as A.
    Wish this helps.
    Regards,
    Shalini Chauhan

  • Please how do I unload and hide an external image?

    I have been trying for a few hours now just to unload an image but I get an error when I try it which sais ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
    at flash.display::DisplayObjectContainer/removeChild()
    at tester_fla::MainTimeline/ontester2ButtonClick()
    I have 2 buttons on the stage the first one adds the image and is called tester_btn, the second (attempts) to unload and hide the image and is called tester2_btn
    My code is as follows:
    tester_btn.addEventListener(MouseEvent.CLICK,ontesterButtonClick);
    function ontesterButtonClick(event:MouseEvent):void {
    var myrequest:URLRequest=new URLRequest ("HomeLogo.png");
    var myloader:Loader = new Loader();
    myloader.load(myrequest);
    myloader.contentLoaderInfo.addEventListener(Event.COMPLETE, imgLoaded);
    function imgLoaded(event:Event):void{
    addChild(myloader);
    tester2_btn.addEventListener(MouseEvent.CLICK,ontester2ButtonClick);
    function ontester2ButtonClick(event:MouseEvent):void {
    var myrequest:URLRequest=new URLRequest ("HomeLogo.png");
    var myloader:Loader = new Loader();
    myloader.unload();
    stage.removeChild(myloader);
    Any help will be much appreciated!

    whoa, you're creating a loader that's not accessible outside ontesterButtonClick and you're creating another locally defined loader with the same name that never gets added to the display list in ontester2ButtonClick and your nesting a named function.  all problems.  try:
    try:
    tester_btn.addEventListener(MouseEvent.CLICK,ontesterButtonClick);
    var myloader:Loader = new Loader();
    function ontesterButtonClick(event:MouseEvent):void {
         var myrequest:URLRequest=new URLRequest ("image");
         myloader.load(myrequest);
         myloader.contentLoaderInfo.addEventListener(Event.COMPLETE, imgLoaded);
         addChild(myloader);
    function imgLoaded(event:Event):void {
              // do whatever
    tester2_btn.addEventListener(MouseEvent.CLICK,ontester2ButtonClick);
    function ontester2ButtonClick(event:MouseEvent):void {
         var myrequest:URLRequest=new URLRequest ("HomeLogo.png");
         myloader.unload();
         removeChild(myloader);

  • How to hide some functions in the menu bar of flash paper

    Do anyone know how to hide some functions in the menu bar of
    flash paper? As I want to show a swf file(converted from pdf) on
    the website without printing function. How can I do it?
    Also, if possible, can anyone know how to hide all functions
    on the menu bar except the logo of flash paper?
    Thank you very much, it is very urgent.

    Here is an article about how to integrate flashPaper into
    Director. It has most of the functions that can be executed on
    flashPaper. Maybe it will help?
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    and here is all his code
    http://www.mediamacros.com/item/item-1006687373/
    Note: it is for 1.01, but works with 2.0

  • Javascript and hide and show.

    Is there any way to hide single item on the form (not region)?
    I have tried to hide an item based on the condition.
    I have radiobutton with value 1 and 0 so I have created on click event that check its value and hides item but:
    the item that I want to hide is a date item with the datepicker option. What happens that item is hidden but label and datepicker icon stays.
    here is the code
    function HideAndShowElement(fieldName,elementNameToHide)
    if(html_RadioValue(fieldName) == 0)
    $x_Hide(elementNameToHide);
    else
    $x_Show(elementNameToHide);
    Any suggestions?
    Robert

    Hello,
    $x_Hide(elementNameToHide); will only hide the element.
    To hide label .. edit the label of the itme.eg. suppose lable is MY_LABEL make it
    [span id="my_lable_id"]MY_LABEL[span] ( replce [ and ] with < and > )
    and make ur javascript code to
    $x_Hide(elementNameToHide);
    $x_Hide('my_label_id');
    Regards,
    Shijesh

  • How to hide F8 function on selection screen.

    Hi,
    How to hide F8 function on selection screen.

    Just create a customer status and SET this status in your INITIALIZATION block.
    <i>You can copy the standard status from program RSSYSTDB status %_00.</i>
    Regards

  • Missing photo and "attempt to perform arithmetic" error

    Hi y'all
    This is informational for y'all.
    I've been using Lightroom since the beginning of march and have about 4500 photos in my library. Photos are pentax raw files (*.pef). My machine is a windows XP pro Toshiba laptop and XP is fully updated. I've started having a couple of problems which I believe may be related. I've searched the usual places but haven't been able to find any answers.
    1) I have one photo that doesn't display in any of the views (library - grid and zoomed, develop and slideshow). It displays as a blank space in all views. It becomes visible in grid view with my develop changes (I made it grayscale) if I scroll to where it is when it is off the page but disappears again as soon as I let go of the scroll bar. If I try to reimport it I get a message that it is already in the database.
    2) If I continue to to try and access it I start getting the following error in a pop up box:
    ?:0 attempt to perform arithmetic on field ? (a nil value)
    once that starts occurring I can cancel the popup but then it starts to appear everytime I try and do anything (flag or rate a photo, access a menu etc) and can only be made to go away if I close Lightroom using task manager and then restart it.
    The photo is stored on an external disk and the actual pef file appears to be fine. I can open it successfully using rawshooter.
    I transfered the files to my external disk when using the beta and did so manually outside of lightroom and then used the locate missing files and folders function to relink it. It has what looks like a valid xmp file and all other photos in the shoot appear fine.
    I eventually managed to bring the photo back by deleting the folder from the lightroom library (but not from the disk!) and reimporting it. As xmp files were present all changes and ratings were correct when I reimported.
    Hope that helps someone else!
    cheers
    ed x

    It sounds like you might have a corrupted preset.
    Here's something you could try:
    Go to your Preferences/Presets tab and push the Show Lightroom Presets Folder button.
    Then close Lightroom and temporarily rename that folder. If the problem goes away, one of your presets is bad. Otherwise name the folder back to what it was and let us know what happened.
    Hal

  • Copy and Paste Stopped Functioning

    So I know how to copy and paste information. I have been doing it for years and now it has stopped functioning for me on my mac book pro =(
    I can't even copy/paste things in word, text edit, skype, internet emails etc.
    This is really frustrating me. I use the shortcut keys or even using the edit menu and can not get it to work... I have tried repairing disk utilities....
    Someone please help!

    purduegirl wrote:
    --Sorry I am new to the discussion board and don't understand how to make sure this is in the OS X forum. =(
    When you are in one of the forums, near the top of the page it tells you the forum name. If you are on one of the pages that does not show the forum name (such as the page I'm on now doing this reply), there is a path such as "Apple.com > Support > Discussions > iWork '09 > Numbers '09" near the top of the page to let you know where you are.
    I moved the file com.apple.finder.plist to the trash (because drag and click is also not working) and restarted. This didn't fix the problem...
    Didn't previously know you were missing click and drag also.
    I have looked at other discussion threads. Very similar problem is at:
    http://discussions.apple.com/thread.jspa?messageID=9780753&tstart=0
    It sure sounds like the same thing. Your reply in the other thread said you don't have your install disks handy. You can, however, still reapply the combo updater and give that a shot. Here is a link for the 10.5.7 combo update:
    http://www.apple.com/downloads/macosx/apple/macosx_updates/macosx1057comboupdate .html

  • FedEx - auto-select and hide available shipping options

    I'm looking to change some of the default shopping cart UI/UX functionality, and I'm assuming this can be done with jQuery - but I figured I'd check here first to make sure as this is a live site and I'd rather not play around too much.
    This particular store uses FedEx for shipping, and our feedback so far has been that the fact that a final shipping option turns up at the end is an issue for customers - they usually miss it, and it's just clunky and cumbersome overall.
    So I'm hoping that I can somehow have it automatically selected with jQuery and hidden, to show the final shipping amount only. Something like the right-hand side below:
    This would then alleviate the need for a pop-up and the extra step checking out.
    Has anyone completed this successfully? Is it possible? Would using (.shippingCalc input) as a selector work?
    Furthermore - separately - has anyone enabled a zip lookup so that state can be pre-selected for tax calculations?
    Thanks.

    Yes drop me a line, I've re-written nearly of this Javascript to auto select based on 1 input. Not done it for Fedex but have done it for the Australia post but the code and UI interface is the same.

  • Diff between at line selection and HIDE technique

    hi all,
           wht is the diff between at-line-selection and HIDE technique.
            wht r code instructor
            wht is extended testing
            how can we find selected error records in session                          method ex:-if there r errors in 4th 9th 13th record.
    tthnx in advance

    HIDE
    Syntax
    HIDE dobj.
    Effect
    This statement stores - in the current list level - the content of the variable dobj together with the current list line whose line number is contained in sy-linno. The data type of the variables dobj must be flat and no field symbols can be specified that point to rows of internal tables, and no class attributes can be specified. The stored values can be read as follows:
    For each user action in a displayed screen list that leads to a list result, all the row values stored using HIDE - that is, the row on which the screen cursor is positioned at the time of the event - are assigned to the respective variables.
    If a list row of an arbitrary list level is read or modified using the statements READ LINE or MODIFY LINE, all the values of this row stored using HIDE are assigned to the respective variables.
    Notes
    The HIDE statement works independently of whether the list cursor was set. In particular, variables for empty list rows can be stored - that is, rows in which the list cursor was positioned using statements like SKIP.
    The HIDE statement should be executed immediately at the statement that has set the list cursor in the row.
    Outside of classes, constants and literals that cannot be read in list results and in the statement READ LINE can be specified for dobj outside of classes.
    Example
    Storing square numbers and cubic numbers for a list of numbers. The example shows that arbitrary variables can be stored independently of row content. In the real situation, one would more likely store only the number and execute the calculation, when required, in the the event block for AT LINE-SELECTION.
    REPORT ...
    DATA: square TYPE i,
          cube   TYPE i.
    START-OF-SELECTION.
      FORMAT HOTSPOT.
      DO 10 TIMES.
        square = sy-index ** 2.
        cube   = sy-index ** 3.
        WRITE / sy-index.
        HIDE: square, cube.
      ENDDO.
    AT LINE-SELECTION.
      WRITE: square, cube.
    AT LINE-SELECTION
    Syntax
    AT LINE-SELECTION.
    Effect
    This statement defines an event block whose event is triggered by the ABAP runtime environment during the display of a screen list - provided the scren cursor is on a list line and you select a function using the function code PICK. Through the definition of this event block, the standard list status is automatically enhanced in such a way that the function code F2 and, with it, the double-click mouse function is linked up to the function code PICK.
    Note
    If the function key F2 is linked with a function code different than PICK, each double click will trigger its even, usually AT USER-COMMAND, and not AT LINE-SELECTION.
    Example
    This program works with the standard list status. A line selection with the left mouse key causes the event AT LINE-SELECTION and creates details lists.
    REPORT demo_at_line_selection.
    START-OF-SELECTION.
      WRITE 'Click me!' COLOR = 5 HOTSPOT.
    AT LINE-SELECTION.
      WRITE: / 'You clicked list', sy-listi,
             / 'You are on list',  sy-lsind.
      IF sy-lsind < 20.
        SKIP.
        WRITE: 'More ...' COLOR = 5 HOTSPOT.
      ENDIF.
    Thanks,

  • All drop down menus opens and hides emmideately on ubuntu 14 with touch screen display

    Hi!
    On ubuntu 14 with ViewSonic TD2340 touch monitor ("Advanced Silicon S.A CoolTouch(TM) System" touch panel) all drop down menus in firefox (in other system applications drop down menus works fine) opens and hides emmideately (I can't select any element in it).
    I can't use special system function "Click on Focus", because it is just like double click - drop down menus shows with delay, but it is not real to work in ubuntu - I always have 2 clicks instead 1.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to remove missing features and webparts?

    I've moved and upgraded a 2007 teampoint site to my Enterprise SharePoint 2010 site. The site is up and running but I've got this nagging error about a missing webpart and a missing feature.
    The features that were not compatable were not used so what SharePoint 2010 would allow me to remove has been removed. Now I have this error message that still needs to be dealt with.
    [MissingFeature] Database [WSS_Content_2007] has reference(s) to a missing feature: Id = [75a0fea7-cd50-401e-af0e-782f3662a299]. The feature with Id 75a0fea7-cd50-401e-af0e-782f3662a299 is referenced in the database [WSS_Content_2007], but is not installed
    on the current farm. The missing feature may cause upgrade to fail. Please install any solution which contains the feature and restart upgrade if necessary.
    [MissingWebPart] WebPart class [768ec641-8c6a-1cc6-6465-185094919a93] is referenced [1] times in the database [WSS_Content_2007], but is not installed on the current farm. Please install any feature/solution which contains this web part. One or more web parts
    are referenced in the database [WSS_Content_2007], but are not installed on the current farm. Please install any feature or solution which contains these web parts.
    So, I'd like to remove the references from the database for the feature and webpart mentioned in the error. I can't seem to spot how to do that with stsadm, it reports that the feature is not installed which leads me to conclude that I just need to remove
    the reference from the db. Is there a SharePoint way to do this or am I destined to remove it manually from the db myself?
    Kevin W. Gagel

    Kindly use the below script for removing missing Feature:
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > 0
    # Loading Microsoft.SharePoint.PowerShell
    $snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}
    if ($snapin -eq $null) {
    Write-Host "Loading SharePoint Powershell Snapin"
    Add-PSSnapin "Microsoft.SharePoint.Powershell"}
    function Remove-SPFeatureFromContentDB($ContentDb, $FeatureId, [switch]$ReportOnly)
     $db = Get-SPDatabase | where { $_.Name -eq $ContentDb }
     [bool]$report = $false
     if ($ReportOnly) { $report = $true }
     $db.Sites | ForEach-Object {
      Remove-SPFeature -obj $_ -objName "site collection" -featId $FeatureId -report $report
      $_ | Get-SPWeb -Limit all | ForEach-Object {
       Remove-SPFeature -obj $_ -objName "site" -featId $FeatureId -report $report
    function Remove-SPFeature($obj, $objName, $featId, [bool]$report)
     $feature = $obj.Features[$featId]
     if ($feature -ne $null) {
      if ($report) {
       write-host "Feature found in" $objName ":" $obj.Url -foregroundcolor Red
      else
       try {
        $obj.Features.Remove($feature.DefinitionId, $true)
        write-host "Feature successfully removed from" $objName ":" $obj.Url -foregroundcolor Red
       catch {
        write-host "There has been an error trying to remove the feature:" $_
     else {
      #write-host "Feature ID specified does not exist in" $objName ":" $obj.Url
    $databases = Get-SPContentDatabase 
    $featureID = "c4b5bf25-2a8a-4ba3-a6a8-87d7fe31ef02"
    Foreach ($db in $databases)
     #Use this line to remove the reference to the feature
     Remove-SPFeatureFromContentDB -ContentDB $db.Name -FeatureId  $featureID
     #Use this line to list all the sites that it has a reference to the feature
     Remove-SPFeatureFromContentDB -ContentDB $db.Name -FeatureId $featureID –ReportOnly

Maybe you are looking for

  • Windows 7 -No sound

    I an very frusrated and not to happy with Creative Support. I have Creative's? X-Fi Elite Pro sound hardware installed in my Asus Maximus Extreme Motherboard. It Functioned well in Windows XP environment. I performed a clean install on to a new WD TB

  • Two Apple IDs: Need to get rid of one

    I ended up with two Apple IDs because of a typo I didn't notice for a few weeks. The ID I have been using has an error in it (email address is missing a letter) In my haste to fix things, I ended up creating a 2nd account/ID, and while the "email" is

  • Adding field dynamically on screen.

    Hi All, I have to add fields dynamically on screen based on the no. of data records. Is there any way to add field dynamically. I need field like this: first a check box       second not editable field  third editable field. Table control is another

  • Not receive mail

    It is not possible to send e-mail. The message in the screen is 'the connection with the outgoing server failed. I checked al the options I received from my provider and everything is ok. Maybe inside of the Ipad the SSL is on. I do not know how I ca

  • Spotlight not finding items on connected servers

    when I connect to a server with various files within folders spotlight will not produce nay find results searching the server