E51 : How to Display Calling Number

Help :
How to Display the Calling Number along with Contact Number from the Address book when Receving Call from the number stored in the address book.
Eg :
Last Name : Z
First Name : A
Mobile : +1 12 123465789
Tel(Home) : +1 12 987654321
Tel(Office) : +1 12 192837645
Now say this above said Contact Stored in my address book
is calling on my cell phone.
It shows only
ZA
Calling
how to get the Number on display from which number the call is actually when it is ringing.
either the Call is from Mobile or Home or Office.
This feature is there in S60 v2 phones eg Nokia3230
Help please

As vmoisa said, this is a well known and a HIGHLY irritating bug. Here is a workaround - /discussions/board/message?board.id=communicators&​thread.id=15956
Ofcourse, the correct solution would be a firmware upgrade.. I have seen this "mobile phone icon for all numbers" problem baffle new users (including me). It's a pity, because such a basic feature is implemented properly even on S40 phones!

Similar Messages

  • E52: How to display caller phone number in call?

    Hi,
    May I know how to display the telephone number in call for E52? 
    It is only displaying the contact name in my phone book. How can I get the contact number to be displayed too?
    For callers whose number is not in my phone book, I will not be able to see the number at all when I am talking. Any idea how to show the number while I am talking?

    this should help
    /discussions/board/message?board.id=topfaq&thread.id=28
    posted by patc
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Message-Popup: How to display a number (from variable) in hex-format?

    Hello,
    i have a numeric FileGlobal that is display in a MessagePopup-step with str(FileGlobal.param1)
    How can i change this that it display the number as hexvalue.
    For example if Number is a 10, then the MessagePopup should display a 0xA.
    Thanks for help
    Solved!
    Go to Solution.

    HI,
    You should try this expression Str(FileGlobal.param1,"%X",1 ,True)
    Hope this helps
    Rodéric L
    Certified LabVIEW Architect

  • Don't display caller number

    I configure AutoAttendant through call router and call handler in unity ,but the caller number can't display and it prompts "From Voicemail" on phone before the call is picked up.And after picking up it,the caller number is display normally . Why ?

    Hi,
    Assuming that you've set up the call transfer to be 'supervised transfer' this is the behavior you're going to see. When Unity puts the original caller on hold in order to call your phone, the two call legs aren't bridged together, so the call appears to CallManager to be a simple call from Unity. When you pick up the call, then Unity bridges the two legs together, and CallManager changes the caller ID to reflect the change. If you reconfigure Unity to use 'release to switch' then you will see half a second of the call being from Unity, but when it bridges the two legs together (while your phone is still ringing), CallManager will immediately change the readout.
    When you choose 'release to switch', Unity will put the caller on hold, dial the user's number, and connect the two. So, the caller should hear a very brief moment of music on hold, then hear the ringback from the phone, etc. To get it so that there's MoH until the recipient answers, you'd have to go back to 'supervised transfer', which would break your Caller ID.
    HTH
    //G

  • How to display Call list Large view as the initial view dynamically.

    My requiremet is that 
    1) User chooses a call list -> then clicks display calls -> then clicks Calls Full view
    Now ClmCallListDetailsLarge View is displayed
    2) Now the user chooses a call and then prceeds to Account confirmation, Interaction Record and then ends the call.
    3) Now when the Call list is choosen from navigation bar Available 'ClmAvailbleCallLists' View is displayed, but the requirement is to display 'ClmCallListDetailsLarge' view.
    4) There is some standard code related to this in 'DO_REPLACE_INITIAL_VIEW' method of the window controller. but this method is not getting triggered at all.
    Please let me know how this can be achieved

    Thanks for idea.
    Assume I stored my data in a List of HashMap.
    Could you provide an example of JSTL for displaying this list?

  • How to display serial number in reports

    Hi,
    I want to display serial number (for each row of records retrieved ) in reports.How can I accomplish that?Please help
    Regards,
    Nycy

    Like this:
    SELECT ROWNUM RN,
    COL1,
    COLN
    FROM (SELECT COL1,
    COLN
    FROM TABLE
    ORDER BY ORDERCONDITION
    or
    sometime you sould use logic like this:
    first, you should take a summry column into relevent group.
    then
    goto its property
    then
    goto Function field
    then
    select Count from list
    then
    select the source means you want to count records acoording to which column.
    then
    select from relevent group cource from Reset at
    Now, give this summary column source to the required field then generate the report.
    If you feel better to understand then give comments otherwise mail me at "[email protected]"I will give you the complete procedure with images.
    Edited by: Waqas Attari on Feb 18, 2009 7:13 AM

  • Displaying called number on destination phone

    Hello,
    We are using UCM + CCX 7.   We are looking for a way to have the called number (or the digits passed for the called number) displayed on the recipient's IP phone -- for select extensions/agents -- versus showing the caller ID of the originator.    For an individual phone, I've tried checking "Dialed Number" under Forwarded Call Information Display, but it still shows the caller ID instead.   Does anyone know of a way to accomplish this, either through UCM or CCX?
    Thanks

    then you can have a look under call routing at Transformation Patterns => Called Transformation Pattern, create a CSS and PT for that apply it to the DevicePool of the Jabber phones.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/9_0_1/ccmcfg/CUCM_BK_CDF59AFB_00_admin-guide_chapter_0110000.html
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucmbe/admin/7_0_1/ccmcfg/b03cldpt.pdf

  • How to display row number in form?

    Hi guys,
    First I fll you in on the story so far..
    I have a database data block named :V_PAYUPLOADHEADER_HP, in the property palette I set order by facility and warehouse.
    I want to display row number for each fetched record, so I make :V_PAYUPLOADHEADER_HP.NUMB, which will contain the row number.
    The following is some methods that I already tried:
    - First I tried to make this field a database item=Y , column name = ROWNUM.
    The result is the number jump around (3, 1, 2, 5, 4 etc. instead of 1, 2, 3, 4, 5) I think it is because of the order by that I set.
    I have to keep this order by setting, so I look for another way to display the rownum.
    - Next I tried to set database item = N, column name = null, calculation mode = formula, formula = :system.trigger_record.
    When I run it all the value of :V_PAYUPLOADHEADER_HP.NUMB is 1. For all the records fetched is 1, 1, 1, 1 instead of 1, 2, 3, 4.
    - I also tried using POST-QUERY trigger attached to the block.
    In the trigger I have this code:
    :V_PAYUPLOADHEADER_HP.NUMB := :system.cursor_record;
    When I run it all the value of :V_PAYUPLOADHEADER_HP.NUMB is 1. For all the records fetched is 1, 1, 1, 1 instead of 1, 2, 3, 4..
    Is there something that I missed?
    What can I do to display the rownum?

    Hi
    You can achieve this by adding new item named 'ROWNUM'. in the Data Block you are working on.
    And it's 'BASE TABLE ITEM' property needs to be set as TRUE'. IN the property ,IN the post-query Trigger use...
    SELECT ROWNUM
    INTO :ROWNUM
    FROM TABLE
    WHERE EMP_ID =EMP_ID;Hope this helps...
    Regards,
    Abdetu...

  • How to display the number of row in a grid

    Hi,
    In a Form I have a grid (populated from a table). The first field is the Code ID_NUMBER, datatype varchar2(4), mask format 9999.
    I need that when I click (or insert) on a new row in the datagrid, the field Code must be filled with a new value automatically. For example, if in the previous rows I have "0002", "0004", "0006", the new value in the new rows must be "0008".
    How can perform this ?
    Thanks in advance and Best Regards.
    Gaetano

    Thank You,
    I have tried to insert in the DataBlock a trigger WHEN_CREATE_RECORD that call a procedure like this:
    PROCEDURE NEW_ROW IS
    max$Row NUMBER(4) := 0 ;
    BEGIN
    SELECT MAX(TO_NUMBER(NVL('M_REP_PARAMS.REP_PAR_ORDER','0'),'9999')) INTO max$Row FROM M_REP_PARAMS ORDER BY REP_PAR_ORDER ;
    max$Row := max$Row + 2 ;
    :M_REP_PARAMS.REP_PAR_ORDER := LPAD(TO_CHAR(max$Row, '9999'),4,'0') ;
    END;
    But when I click on the field in the row, no value is displayed.
    I means the I mistake something.
    Can You help me ?
    Bye
    Gaetano

  • How to display Caller Name and Company

    How can i change the display of the incomming caller details to include the company name, without using third party utilities ?
    Thanks
    Pete

    The only way I can think of, would be to include the company name in one of the Name fields... So set it as:
    First Name: Bill Gates
    Surname: Microsoft
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • How to display the number of line items in sap-script report?

    Hi friends,
    I need a help regarding the SAP Script. In my script (report) I create two pages and created three windows (MAIN, HEADER, FOOTER) for each pages. Now the problem is while displaying the fewer line item which can come under the main window of the 1st page these line items are comming perfectly but for the remaining line items that comes on the second page the table headings and the boexs are not comming.
    Also it is displaying the total and the amount in text in every pages that should be display in last page.
    Here if I eleminate or comments the total and the amount in text for the first page the same is reflected in second page. Also I need to display the page-nor for each pages to displayed.
    I am requesting all the people out there kindly help me to solve this issues.
    Thanks and Regards

    There is no pre built solution for this. But we can show total pages in the report body.
    one way is Create a other column in the report with code sum(count(1))/25. that gives you total number of pages. 25 here is no of rows in each page. The code you can write in narrative "Total pages in the report are @5" and out put may be "Total Pages in the report are 30".
    If you are using pivot tables, you can try this.
    http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-pagination-in-pivot-tables/
    - Madan

  • AS2- How to display Idoc number in ACK MDN

    Hi ,
    I have an requirement where I have to send the Idoc number in MDN which is sent as an acknowledgement after AS2 system has received an INVOIC Idoc .
    Scenario is like below:
    Part I: R/3(Invoic idoc)>PI>(Idoc xml)AS2 
    R/3 system will send an Idoc to PI. PI will do the mapping and sent to AS2 system with the Idoc number in AS2 subject. This is done by an udf. Part I is working fine. 
    Part II: AS2(MDN)>PI>R/3(ALEAUD Idoc)
    After receiving the idoc xml, AS2 system will send an MDN. This MDN does not contain idoc # which has been processed successfully in the part I. PI is receiving the MDN message like below
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <DtReport xmlns="http://uri.seeburger.com/dt/master/schema">
      <clientId>000</clientId>
      <correlationId>dbeb6ed9-2cbe-11e1-c7f1-000007ec0f66</correlationId>
      <category>DeliveryReport</category>
      <state>SUCCESS</state>
      <finalReport>true</finalReport>
    - <specificData>
      <key>messageID</key>
      <value><[email protected]></value>
      </specificData>
    - <specificData>
      <key>subject</key>
      <value>Message Disposition Notification</value>
      </specificData>
    - <specificData>
      <key>channelID</key>
      <value></value>
      </specificData>
    - <specificData>
      <key>channel</key>
      <value>CC_SND_AS2_MDN_XX_PKI</value>
      </specificData>
    - <specificData>
      <key>originalchannel</key>
      <value>CC_RCV_AS2_XXX_EDI_SEEBURGER_INVOIC_PKI</value>
      </specificData>
    - <specificData>
      <key>to</key>
      <value>PARTY_XX</value>
      </specificData>
    - <specificData>
      <key>from</key>
      <value>PARTY_YY</value>
      </specificData>
    - <reportAttachment refID="dffd66c0-2cbe-11e1-9654-af0c1a5b180a">
      <ns1:objectInfo charset="binary" creation="2011-12-22T17:03:31.116+00:00" location="MEMORY" size="3391" type="INLINE" xmlns:ns1="http://uri.seeburger.com/bisas/message/schema" />
      </reportAttachment>
      </DtReport>
    Can anyone please let me know how can I get the idoc number in received MDN from AS2? So that we can easily identify which has been received the MDN and processed successfully.
    Thanks,
    Arivarasu S

    Hi Prateek,
    This is my code:
    FUNCTION ZPI_PICK_IDOC_NUM .
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(IN_GUID) TYPE  SXMSMGUID
    *"  EXPORTING
    *"     VALUE(IDOC_NUM) TYPE  EDI_DOCNUM
    *"  EXCEPTIONS
    *"      KEYSTRING_EMPTY
    *"      RETURNFIELD_EMPTY
    *"      KEYFIELD_DOES_NOT_EXIST
    *"      INVALID_DATA
    TYPES: BEGIN OF ty_itab,
           GUID     type SXMSMGUID,
           IDOCNUMBER type  EDI_DOCNUM,
           END OF ty_itab.
    DATA:  it_itab TYPE TABLE OF ty_itab,
           wa_itab type ty_itab.
    SELECT GUID IDOCNUMBER FROM IDXSNDPOR INTO table it_ITAB
             WHERE GUID = IN_GUID.
      IF sy-subrc EQ 0.
        loop at it_itab into wa_itab.
         move wa_itab-IDOCNUMBER to IDOC_NUM.
         exit.
        endloop.
      ELSE.
        RAISE invalid_data.
      ENDIF.
    ENDFUNCTION.
    I guess this is giving one of the exception which I have added in exception tab.
    Thanks,
    Arivarasu

  • How to display SC Number in approval table?

    Hi All,
    On the HOME page of EBP , click
    Approval
    , a table is displayed with three columns
    1)Description
    2)Created On
    3)Action
    We need to display the SC number in this table , prefreably by adding a new column and showing the Sc Numbers in that or at least add the SC Number in the description column.
    We found out that some modifications in the ITS Service BBPAPPROVAL , Template SAPLBW02  1200 required .
    Any information will be of great help.
    Thanks,
    Anubhav

    Hi Masa,
    Found the following data in txn SWI2_FREQ
    TS10407930     Read Lang.-Ind. Text for Approval Status
    TS14007989     Determine next Approver
    TS10407929     Send Mail to Persons Involved
    WS14900032     Sub-Workflow to Send Mail / SC loop
    TS14907939     Create object BUS4101
    TS10008126     Approval of shopping cart
    WS10000049     Event Handling in the Component
    WS14000133     Approval Shopping Cart n-Level (BADI)
    WS14000134     Subworkflow for N-Level Approval BADI
    WS10400051     Final Proc. After Approval Alternative 2
    TS10007991     Set SC status to 'Released'
    WS14900031     Sub-Workflow to Send Mail / SC
    WS10000060     Workflow Without Approval Shopping Cart
    TS10407972     Change Rejected Shopping Cart
    WS10400026     Sub-Workflow to Send Mail / SC
    WS10400010     Goods Receipt Workflow Without Approval
    WS10000129     One Step approval of shopping cart
    TS10407935     Set Status of Goods Receipt to Released
    TS10407971     Get Confirmation Rejection Description
    WS10000203     Wait for confirmation events
    WS10400003     Update confirmation upon approval/reject
    TS10107914     Present changes to requester
    TS00008267     Generic decision task
    WS30100051     Workflow system verification
    I Tried by selecting Standard Task and entering TS10008126 by it gives "Task does not exists" message.
    Thanks a lot,
    Anubhav

  • How to display the number with negative sign in the front in ALV.

    most important, this ALV is also can totalize.
    can someone give me some suggestion?
    thanks   
       jisuwen

    i hope you want a negative sign before a char but holding some number. then that case
    loop at itab.
    concatenate itab-char '-' into itab-char.
    modify itab.
    endloop.
    and you can display in ALV with negative sign...
    Totalling you need to Specify
    DO_SUM = 'X' while populating fieldcatalog...
    If subtotals then you have to Build sort table and based on that you can proceed./.
    examples are there you can find inn SLIS package..
    vijay.

  • How to display page number based on group.

    Hi All,
    I have a report and it consists two groups. First group is displaying 20 pages and the second group is displaying 30 pages. My requirement is to display the page numbers based on the group. That is, the second group output page numbers should start with 1 after displaying first group output. So, the page numbers should be as followed in the report output:
    First group page numbers:
    Page 1 of 20
    Page 2 of 20
    Page 20 of 20
    Second group page numbers:
    Page 1 of 30
    Page 2 of 30
    Page 30 of 30
    How do I achieve the above requirement.
    Thanks in advance.

    Post your report related question in the [url http://forums.oracle.com/forums/forum.jspa?forumID=84]Reports Forum, this is the Forms Forum.
    Tony
    Message was edited by:
    Tony Garabedian

Maybe you are looking for

  • How to create a context element

    Hai, How can i create a context element for a view dynamically. regards,

  • Easiest way to change font size/color with CSS?

    I've never used CSS before; I need to know how to change the font size and color using CSS, since it seems to be the only way to do it now. Sometimes I just need to change the font just for a few words, or a line here and there. Not necessarily page-

  • Problem about "Checkpoint not complete"

    Dear Friends , I got the following error in my database 2 or 3 times a day . The error is : Current log# 1 seq# 4127 mem# 0: /dbfs/oradata/ababil/redo01.log Thread 1 cannot allocate new log, sequence 4128 Checkpoint not complete I am using Oracle 10g

  • How to convert columns to rows

    I have 70 columns and I need to convert them into rows. Please help! Currently, it is showing as listed below message 1 message 2 message 3 message 4 message 5 .......... message 70 system 1 20 10 40 60 100 system 2 40 30 50 80 110 system 3 60 60 70

  • Does the School of Design in Cambridge qualify for the Creative Cloud education discount?

    Dear interest me price Creative Cloud-and if you attend school design Cambidge university? Does it cost to students? Thanks in advance!