E63: Day & Date not showing when profile changed

Hello All,
When I change profile from "Normal" to something else on Nokia E63, I do not see day and date on the top right corner  and instead see the profile name. I would like to see day and date with profile name there. Is there anyway I can get this done?
When phone goes to screen saver mode I have set up a digital clock as screen saver and in that I can see profile, day, date and time.
Thanks,
Ray 

Hello All,
When I change profile from "Normal" to something else on Nokia E63, I do not see day and date on the top right corner  and instead see the profile name. I would like to see day and date with profile name there. Is there anyway I can get this done?
When phone goes to screen saver mode I have set up a digital clock as screen saver and in that I can see profile, day, date and time.
Thanks,
Ray 

Similar Messages

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • Data not showing when not defining PARAMETER

    hi all,
    i have created a report in which  i have define two Parametres i-e S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790' and
    S_ZUJHR LIKE ANLA-ZUJHR*.When i execute it by giving year 2005, 2006,2007 or 2010, it gives me data but when i execute it without defining any year it does'nt show me any data.Eventhough i have check in the table that there data when execute at table level.Could anybody identified my mistake.Following are the code for report:
    include zalsd_alv_incl.
    *Define Tables
    TABLES:ANEP,ANLA,ANLC.
    SELECT-OPTIONS:
        S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790'.
    PARAMETER:
        S_ZUJHR LIKE ANLA-ZUJHR.
    DATA:BEGIN OF gi_anla OCCURS 0,
         bukrs  LIKE anla-bukrs,
         ANLN1  LIKE anla-ANLN1,
         ANLN2  LIKE anla-ANLN2,
         ZUJHR  LIKE anla-ZUJHR,"Fiscal Year
         AKTIV  LIKE ANLA-AKTIV,"Asset capitalization date
         ANLKL  LIKE ANLA-ANLKL,"Asset Class
         END OF gi_anla,
         BEGIN OF GI_ANLC OCCURS 0,
          bukrs  LIKE anlc-bukrs,
          NAFAP  LIKE anlc-nafag,"Posted Depreciation
          kansw  LIKE anlc-kansw,"Asset Acquisation Value
          ANLN2  LIKE anlc-anln2,"Asset Subnumber
          ANLN1  LIKE anlc-ANLN1,"Main Asset Number
          AFABE  LIKE ANLC-AFABE,"Real depreciation area
          ANSWL  LIKE ANLC-ANSWL,"Transactions for the year
         END OF GI_ANLC,
        BEGIN OF gi_main OCCURS 0,
         sno    type   i,       "S.No
         bukrs  LIKE anla-bukrs,"Company code
         ANLN1  LIKE anlc-ANLN1,"Main Asset Number
         anln2  LIKE anlc-anln2,"Asset Subnumber
         AKTIV  LIKE ANLA-AKTIV,"Asset capitalization date
         ANLKL  LIKE ANLA-ANLKL,"Asset Class
         ZUJHR  LIKE anla-ZUJHR,"Fiscal Year
         NAFAG  LIKE anlc-nafag,"Ordinary Depreciation Posted
         kansw  LIKE anlc-kansw,"Asset Acquisation Value
         PSTEND LIKE anlc-PSTEND,"Posting depreciation up to period
         AFABE  LIKE ANLC-AFABE,"Real depreciation area
         ANSWL  LIKE ANLC-ANSWL,"Transactions for the year
           END OF gi_main.
    DATA: date_from TYPE d,
          date_to   TYPE d.
    START-OF-SELECTION.
         PERFORM get_data.
         PERFORM organize_data.
         PERFORM f_display_report.
      END-OF-SELECTION.
    form get_data.
      Data:
            lv_year(4) type n,
            lv_prvyear(4) type n,
            lv_datefrom type d,
            lv_dateto type d.
        move s_ZUJHR to lv_year.
        lv_prvyear = lv_year - 1.
        concatenate lv_prvyear '10' '01' into lv_datefrom.
        concatenate lv_year '09' '30' into lv_dateto.
      SELECT anlc~bukrs anlc~anln1 ANLC~ANLN2 ANLA~ZUJHR kansw nafaG PSTEND ANSWL ANLKL AKTIV
        INTO CORRESPONDING FIELDS OF TABLE gi_main
        FROM
        ANLC
        INNER JOIN ANLA ON
        anlc~bukrs = anla~bukrs AND
        anlc~anln1 = anla~anln1 AND
        ANLC~ANLN2 = ANLA~ANLN2
       WHERE ANLC~AFABE eq '01'
        AND ANLA~ZUJHR EQ S_ZUJHR
        AND   ANLA~ANLKL in S_ANLKL
        AND   ANLA~AKTIV between lv_datefrom and lv_dateto.
        ENDFORM.
      FORM organize_data.
      data: lv_index type sy-tabix.
      LOOP at gi_anla.
      move sy-tabix to gi_main-sno.
        READ TABLE gi_anla WITH KEY bukrs = gi_anla-bukrs
                                    anln1 = gi_anla-anln1
                                    anln2 = gi_anla-anln2.
        MOVE-CORRESPONDING gi_anla to gi_main.
        READ TABLE gi_anlc WITH KEY bukrs = gi_anlc-bukrs
                                    anln1 = gi_anlc-anln1
                                    anln2 = gi_anlc-anln2.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING gi_anlc to gi_main.
        ENDIF.
        CLEAR gi_main.
    ENDLOOP.
        ENDFORM.
        form f_display_report.
      perform fill_fieldcat using 'SNO'       5    'S.No.' 'gi_main'.
      perform fill_fieldcat using 'ANLKL'     20   'Asset Class' 'gi_main'.
      perform fill_fieldcat using 'ANLN1'     20   'Asset Number' 'gi_main'.
      perform fill_fieldcat using 'ANLN2'     20   'Asset Subnumber' 'gi_main'.
      perform fill_fieldcat using 'AKTIV'     20   'Asset Capitalization Date' 'gi_main'.
      perform fill_fieldcat using 'KANSW'     20   'Asset Acquisation Value' 'gi_main'.
      perform fill_fieldcat using 'NAFAG'     20   'Posted Depreciation' 'gi_main'.
      perform fill_fieldcat using 'PSTEND'    20   'Posting depreciation up to period' 'gi_main'.
      perform fill_fieldcat using 'ANSWL'     20   'Transactions for the year' 'gi_main'.
      perform add_heading_alv using c_alv_head_header '' 'Ghulam Farooq Group'.
      perform display_alv using gi_main[].
    endform.

    hi abapGenin,
    i have used my PARAMETER as SELECTION-OPTION as under:
    SELECT-OPTIONS:
        S_ANLKL FOR ANLA-ANLKL DEFAULT '1100' to '2790',
        S_ZUJHR FOR ANLA-ZUJHR NO INTERVALS NO-EXTENSION.     
    and also used IN expression insetead of EQ in ANLA~ZUJHR IN s_zujhr as under
    SELECT anlc~bukrs anlc~anln1 ANLC~ANLN2 ANLA~ZUJHR kansw nafaG PSTEND ANSWL ANLKL AKTIV
        INTO CORRESPONDING FIELDS OF TABLE gi_main
        FROM
        ANLC
        INNER JOIN ANLA ON
        anlc~bukrs = anla~bukrs AND
        anlc~anln1 = anla~anln1 AND
        ANLC~ANLN2 = ANLA~ANLN2
       WHERE  ANLC~AFABE eq '01'
        AND   ANLA~ZUJHR IN s_zujhr
        AND   ANLA~ANLKL in S_ANLKL
        AND   ANLA~AKTIV between lv_datefrom and lv_dateto.
    but still data is not coming.
    Thanks
    abapfk

  • Chart binded data not showing when Window State property of form is set to Maximized

    Possible bug?
    Using In VS 2013 Community, .NET 4.5, MySQL w/Connector/NET...
    When a form is maximized, it wil not render the binded datasource on a chart.
    Example is a new project...  chart dragged onto a form... add a Dataset when initializing the chart and immediately bind that to the Datasource property with no changes to the chart except changing your XValue from a column to a line type. I only have
    3 columns in the table. keyId, entryDate, mcf.
    I can also maximize the window after the form is up and running and it doesn't effect the chart at all.
    Any ideas? I need the window to run in a maximized state.
    Many thanks!

    Hi,
    to debug your web content in IE
    f12>Debug tab, select "Break on all errors"... the debugger will break on any errors.
    Emulation tab, tells you which emulation mode the browser is using and which userAgent string it is using.
    File>Properties shows which IE security zone it maps to.
    "When a form is maximized it will not render the binded datasource on a chart"
    Probably you are running from a localhost proxy (http://localhost:8080)... the IE developer tool will show you any scripting errors. Publish your 'test' to a named webserver. eg.
    http://localhost/test.local
    - Questions about html, css and scripting for website developers. If possible please include with your question a link to your website or a mashup that shows the issue.
    Regards.
    Rob^_^

  • XMP data not showing up in the custom file info panels when upgraded to CC

    For several versions of Photoshop, I have been able to use a modified custom file info panel to input, update, and track psd files. With each version of photoshop there are always some changes in the way the object data is handled. The lastest challenge is:
    1. XMP data not showing up in the custom file info panels when upgraded CC from CS6.
    2. Raw data is not visible in CC in the File info panel.
    3. This occurs in new documents where we create the xmp wrapper while the file template is built.
    4. When metadata is manually entered into the file, the data is not added to the XMP wrapper when it is recreated on the save.
    5. When a file that was created in CS6 is opened that contains the Metadata in the file info template. It is visible. the Raw data is also visible. Once the XMP wrapper is recreated - write and then close. The data is no longer available. the Raw data will not pull up in the file info panel.
    Any feedback or a direction will be appreciated.

    I have a script that the user runs to input xmp data into a Customized version of the generic file info panel. it is data that is gathered from the user when the psd file is created. once the file is open in photoshop. the information is visible in the File info panel , the raw data, and as a schema addition in the advanced tab.
    in CC the nodes and the children of the XMP packet have changed positions. so that the XML -this.XMP.child(0).appendChild(this.createNode())
    is no longer the node that can be appended.
    Where XML.child(0).elements().length(); would enable the xmlns to be added in CS6
    <rdf:Description xmlns:phsa="' + this.namespace + '" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:x="adobe:ns:meta/" rdf:about="" />'
    it is visible in CC as namespace in a different arrangement. XML.child(0).child(0).namespaceDeclarations().toString()) and the children are  XML.child(0).child(0).elements().length().toString()); There are now 7 child nodes where before there were 1.
    with all shifted, the initialize of the values and the delete XMP packet wrapper and create new or the amend to the XMP packet wrapper is undefined.

  • Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.

    Hundreds of my iPhoto pictures will not be copied and will not show when I double-click on them.  When I do in iPhoto an exclamation surrounded by a triangle appears.  Though I can see the picture in the small tiles below it will not expand.  I also cannot attach any of these pics into an e-mail or into any other file.  I have already went through all 3 Repair options and when that did not solve it went through a complete Rebuild.  Any Help?!  Any Suggestions on how to fix this?!  I have spent almost 2 days now going through all of the published help.
    I have backups going back 6 months - I have not had the real need to check every album before - but - all of my backups also have this same problem.

    The triangle with the ! indicates that the connection between the thumbnail and the orginal is missing - this can be caused by many things including database corruption and user action emoving the originals photos on urpose or by accident
    If the database is corrupted then rebuilding is the solution - backup and depress the option and command keys, launch iPhoto and rebuild your database  --  if the iPhoto rebuild does not cure the problem then download iPhoto Library manager and use its rebuild command which creates a totally new library leaving the existing one untouched
    If you have deleted the photos then you need to start over with a new library and import the photos you have not deleted into it
    You can select one of the problem photos and use the reveal original in finder commander (file menu) to see if the original is there - if it is a finder window will open showing it
    LN

  • Preview icon not showing when in thumbnail. (Sketchu

    Hello,
    I recently updated my MBP to Yosemite and installed sketchup on it.
    The preview icon of my sketchup files are not showing when in thumbnail. But as i increase the size of the icon from thumbnail in viewoption i.e from 64px x 64px to 124px x 124px it shows. So my icon is shown as blank without any app logo. Also when i change my view from thumbnail to coverflow or something it shows. Otherthan thumbnail everything works.
    So where is the error in it?
    Please help...
    Thanks
    Amar

    Try the standard fixes:
    - Rest. Nothing is lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears. - Restore from backup
    - Restore to factory defaults/new iPod.

  • ABAP Query - Not showing the required changes through Z T.Code

    Hi,
    I have a ABAP Query for OPEN DELIVERY QUANTITY (T.Code - ZABC).  I change something in QUERY and activate. After that i execute it, and saw required changes.
    But when i execute it with the T.Code - ZABC, it does not show the changes. Even i Save and Test with the SQ01 t.code.
    Please tell me, what is the problem in it. Why not showing the required changes through T.Code - ZABC.
    Regards...

    HI,
    Dear, it seems that you have changed the query in SQ02 and then just save it and not generated.
    or may be after generation again clicked on SAVE button.
    So untill unless you will not generate the query, it won't work.
    Secondly, by chanegs in the query, i don't think it changes the name of the main program.
    Regds,
    Anil

  • Help: Records not showing when cube is placed under the Multiporivider

    Hi Experts,
    I have a Cube called Bcube with char Plant,calm year/month, material and Key Figure, Pqty
    When I generate a report on this Cube, everything looks fine and I see plants, year, etc in the report
    There are 2 other cubes:
    MCube also has char Plant,calyear/month, material and Key Figure: Pqty, Sqty, TQty, AQty
    DCube also has same as BCube: with char Plant,calyear/month, material and Key Figure Pqty
    When I place all three cubes under the multiprovider, the values from the BCube does not show up in reports
    e.g. in a simple report such as
    Row       :  Plant
    Columns:  Pqty, Sqty, TQty, AQty
    In the Multiprovider, under the Indentification of Characteristics, I checked the boxes for all three cubes whenever the same charactertic in all cubes showed up for identification: e.g..
    InfoProvider  InfoObject
    Bcube----
    Plant
    MCube-------Plant
    DCube -
    Plant
    and same for. e.g. 0Calyear
    and same for Key Figures, e.g. I checked all 3 boxes  for PQty which exists in each of the cubes
    1. Why is my data for BCube not showing when reporting against the multiprovider?
    2. what does it mean by checking the 3 boxes for Plant? and checking the 3 boxes for 0Calyear.
    Thanks

    Hi,
    regarding your questions:
    1. When I run listcube against the multiprovider, I only went to the output list to select the fields I needed in the output; then entered the particular cube e.g. BCube in the infoprovider field. That was it (NO other selection) and I got the described results I explained earlier. If you have a specific test for me to try, please let me know.
    2. Please find the settings in both characteristics and key figures for all cubes in the MULTIPROVIDER maintenance screen:
    Characteristic Assighment:
    0calyear -- 3 boxes checked for BCube, DCube & MCube
    Plant -- 3 boxes checked for BCube, DCube & MCube
    0Material-- 3 boxes checked for BCube, DCube & MCube
    Key Figure selection
    PQty-- 3 boxes checked for BCube, DCube & MCube
    Sqty --checked for DCube, this key fig is ONLY in DCube
    TQty--checked for DCube, this key fig is ONLY in DCube
    AQty--checked for DCube, this key fig is ONLY in DCube
    I hope this helps you to guide me.
    Or, were you referring to mappings in the transformations?
    Thanks

  • LSMW - Read Data not showing in Converted Data

    Hi,
    I am using LSMW to load data from a flat file (via recording).  I have it working except I have one issue.  When I display the data in read data all fields are showing.  No errors popup when I select convert data.  When I select display converted data the last few fields are missing.  Any ideas why or how to fix this?
    Any help is appreciated as I do not know how to proceed.
    Thanks,
    Annette
    Edited by: Annette Ameel on Dec 4, 2008 5:37 PM

    HI Bush,
    Currently I am also facing the same problem. In "display read data" it is showing all the field values. No error msg in "convert data". But only 2 fields are displaying in "display converted data". not showing any values in rest of the fields. Kindly suggest me how you fixed this problem

  • SSRS pulls data from ESSBASE cube, data not showing

    Dear Experts,
    We are connecting SSRS 2012 to Essbase 11.1.3 to pull data from the cube, and having some issues with some members data not showing in the query designer and report, while some have no problem. And we couldn't find a pattern on which members won't show. We are wondering if this is a known issue and if there is a way to solve the problem.
    Thanks very much.
    Grace

    Hi ,
    Check the following:-
    1 Check whether you have made the joins properly.
    2 Check data at multiprovider level .
    3 is data available for reporting in both the cubes
    Regards
    Rahul

  • My external hard drive does not show when I am trying to open a document in Office Org??

    My external hard drive does not show when I am trying to open a document in Office Org?? When looking in the about IMAC system support it shows as being connected. Any ideas??

    Does the drive show up under 'Devices' in Finder?

  • Battery icon dose not showing when i plug in to usb or power

    battery icon dose not showing when i plug in to usb or power? and not charging when phone is on

    I would try another cable or try the cable in another ios device
    to verify if the cable was broken or your iphones connector is

  • Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    Need to send my back up email a reset security questions email but the option does not show when I click on password and security

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97456)

  • My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    My control center and notification center are not showing when I swipe in there respective locations. Does anybody know why?

    Thank you for the sugestion, but it was working fine both on the lock screen and on my home screen. I check all my settings and it is how it was from Friday, when I got the iPhone 5s. It just stop working.  The only way I can fix it is by shutting down the phone. It will work for a while, then it won't. 

Maybe you are looking for

  • Getting an error in the "Partner Link" when specifying an https-base wsdl

    Hi friends, this is Hari. I'm getting an error in the "Create Partner Link" dialogue when specifying an https-based wsdl url. The non-ssl wsdl url works fine, but I need it to work for ssl (https). The specific errror reads: Error:Failed to read wsdl

  • Error in  runtime repository

    Hi Gurus,             Here I am facing a problem with the component enhancement. I have deleted the enhancement for the component CPGOE_DETAILS after that in the Web UI, the OVEFDETAILS view,It is appearing only with the right side fields. when i am

  • USE sequence.nextval in SQL statement

    Hi, I want to use SEQUENCE_name.NEXVAL in our query. But it gives error ora-02287: sequence number not allowed here Select distinct dd.agreementid,dd.cityid,dd.bankid,dd.bankbranchid,zz.bankbranchdesc, account_no,account_type,Sysdate,'A',Null,'1001',

  • Regarding the use of different services for different parts in the same display layout

    hi, i am trying to design an application using flex at the frontend and in the gui what i have designed i have the upper portion consisting of four panels displaying the critical events at real time whereas in the lower half of the gui design i have

  • How do I do I stop System Preferences from Launching in Mountain Lion when I switch on?

    Since I upgraded to Mountain Lion, system preferences opens every time although I quit it when shutting down and the box is unchecked for reopen windows when I shut down and I have ticked the box in General to close windows when quitting an applicati