Caller ID, Background question....

On the iPhone commercials, whenever an incoming call is coming in it shows the Caller ID at the top of the screen and a small contact picture to the right and your wallpaper background on the screen. On all the iPhone's that I have seen the Caller ID takes up the whole screen with a big contact picture. I guess my question is this.......is it possible to set the Caller ID to show up like it does on the commercial or is it not possible??

it has to do with how you set the picture...
If you set the pictures via address book on the computer, they show up as small icons in the caller id bar.
if you set the contact pictures via the phone, they show up as wallpaper instead.
I ran into this same oddity when I first started setting pictures to contacts, i figured i'd do it on the phone and save time. First time I got a phone call, I was confused. I eventually narrowed down that I had set those contact pictures via the phone.

Similar Messages

  • How to get transaction id of a function called in background

    Hi all,
    does someone know how to retrieve t-id of a function called in background (tRFC) client side? I found
    'ARFC_GET_RECEIVER_TID'
    'ARFC_GET_TID'
    but these works server side (function called knows its t-id .. caller no). Is there some similiar client side so that after calling function I can retrieve its transaction id ? I know it's not the same context, for explaining better, what I need it's something like fork() in C, where process father (the one that forks) receive as return value process id of process forked.
    SEARCHING ON FORUM I see that many people answered on question about transaction id with sy-tcode misunderstanding the question. This transaction id it's not the tcode. This is the char 32 unique transaction code
    thank you
    regards
    Gabriele

    You can have a look at function TRFC_RECEIVER_INFO
    [qRFC API for the Inbound Queue|http://help.sap.com/saphelp_nw04/helpdata/en/21/5c5f3ca0dd9770e10000000a114084/content.htm]

  • There is something wrong with the volumes buttons in my macbook pro, every time i pressed the one who raises the volume, it leads me to the screen where (i do not no what its called) the background is black with the date and time and a calculator.

    There is something wrong with the volumes buttons in my macbook pro, every time i pressed the one who raises the volume, it leads me to the screen where (i do not no what its called) the background is black with the date and time and a calculator. However, when i lower it, my safari tab goes out of the screen. What do you guys think i should do? I'm getting very nervous.

    hey HAbrakian!
    You may want to try using the information in this article to adjust the behavior of your function keys to see if that resolves the behavior:
    Mac OS X: How to change the behavior of function keys
    http://support.apple.com/kb/ht3399
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • RFC call in background error

    We are having a unique problem in upgrade BW system. We have several RFC function calls in start routine and abap programs to R/3 and APO systems. After the upgrade these calls are not working in background. When we run the program online/dialog the RFC calls are fine and we get the data back. But when run in background we get CALL_FUNCTION_REMOTE_ERROR with  "Name or password is incorrect. Please re-enter" message in the dump.
    We have checked the RFC destination password for ALEREMOTE and they are okay. We have even tried all upper case or all lower case password options but still does not work. It seems like RFC call in background from BI 70 to non-70 (APO 3.0), the system is not passing the password in right format or something related to encryption problem.
    We came across following links but not sure if it applies. Any input on this topic is appreciated.
    Note: 792850
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/6717ed439b11d1896f0000e8322d00/frameset.htm
    Regards
    -Bala

    Michael,
    It is not the problem with the user. All or any user - works fine when run online and fails in the background.
    Regards
    -Bala

  • Call function background is not working

    Hi All,
    I created an RFC function module with one import parameter and 2 tables.
    I am calling this function module in baground
    CALL FUNCTION "ABC" IN BACKGROUND TASK
       Exporting
        var = var
    tables
      tab1 = tab1
      tab2 = tab2
    i am passing var and tab1 and updating tab2 in FM
    tab2 is not updating if i call in BACKGROUND
    It is working fine in onlie mode.
    Can anyone please through some light on this
    Thanks,
    Naveen

    Hi Rob,
    Thanks for the reply. Here is the code     
    Here i am passking lv_flname, lt_binary_file and updating lt_objbin
    in the function module i am going to update lt_objbin.
    The reason i am doing this becuase if i use open dataset it failing authorization.
    Thats why i want execute these statements in background. These report will be executed by many users, so they can not give authorization for everyone.
    CALL FUNCTION 'ZFI_VIM_OPEN_DATASET' IN BACKGROUND TASK
            EXPORTING
              lt_flname      = lv_flname
            TABLES
              ls_binary_file = lt_binary_file
              ls_objbin      = lt_objbin
            EXCEPTIONS
              error_dataset  = 1
              OTHERS         = 2.
    Here is the function module code
    FUNCTION zfi_vim_open_dataset.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(LT_FLNAME) TYPE  CHAR80
    *"  TABLES
    *"      LS_BINARY_FILE STRUCTURE  TBL1024
    *"      LS_OBJBIN STRUCTURE  SOLISTI1
    *"  EXCEPTIONS
    *"      ERROR_DATASET
      OPEN DATASET lt_flname FOR OUTPUT IN BINARY MODE.
      IF sy-subrc = 0.
        LOOP AT ls_binary_file.
          TRANSFER ls_binary_file TO lt_flname.
        ENDLOOP.
        CLOSE DATASET lt_flname.
      ENDIF.
      CLEAR: ls_objbin. REFRESH: ls_objbin.
      OPEN DATASET lt_flname FOR INPUT IN BINARY MODE.
      DO.
        READ DATASET lt_flname INTO ls_objbin.
        IF sy-subrc <> 0.
          CLOSE DATASET lt_flname.
          EXIT.
        ELSE.
          APPEND ls_objbin.
        ENDIF.
      ENDDO.
      DELETE DATASET lt_flname.
    ENDFUNCTION.
    Moderator message - Please use code tags to format your code
    Edited by: Rob Burbank on Apr 1, 2010 3:42 PM

  • Use of function called "in background task"

    Hi folks!
    In my company there are rumors that a function called "in background task" can be used to make sure that all database changes of previous statements are already persisted. This would mean that a function called "in background task" can be used to read data from database that has been written by the same report - in any case (update dispatching over several instances,...). Usually this won't be a good idea (we know well about SAPs update concepts and read everything about it on help.sap.com). Has anybody some experiences about this or is there even a guru, able to explain why it will always work (or not)? We don't have evidence that the database has finished writing for sure when the function starts - that's why I'm worried.
    Example:
    REPORT test.
    INSERT something to database.
    CALL FUNCTION function in background task.
    End of the report
    Will it always work (when testing, it does)?
    Any help will be appreciated!
    Greetings

    Hi,
    Logically it is correct. BACKGROUND TASK Triggers an asynchronous process. This FM is executed in multiple steps.
    In first step system save the data passed to FM interface to buffer. When ever program encounters Explicit/implicit commit, the source code of the FM is processed.
    Note: You can't get back the data from this FM call.
    Check the F1 help on call function statement. You will get much more details.
    Thanks,
    Vinod.

  • How to capture errors when a Function module is called as BACKGROUND TASK

    How to capture errors when a Function module is called as BACKGROUND TASK?.Please advise.
    FUNCTION ZRPM_DELETE_PROJECT_DATA_API.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(IV_EXTERNAL_ID) TYPE  RPM_TV_EXTID OPTIONAL
    *"     VALUE(IV_PROJECT_GUID) TYPE  RPM_TV_GUID OPTIONAL
    *"     VALUE(FLAG) TYPE  BOOLEAN OPTIONAL
    *"  EXPORTING
    *"     VALUE(EV_RC) TYPE  I
    *"     VALUE(EV_MSG) TYPE  STRING
    *"     VALUE(ET_MSG) TYPE  RPM_TT_MESSAGES
      IF flag = cl_rpm_co=>sc_true.
        Call function 'RPM_DELETE_PROJECT_DATA' IN BACKGROUND TASK
          EXPORTING
            IV_EXTERNAL_ID  = IV_EXTERNAL_ID
            IV_PROJECT_GUID = IV_PROJECT_GUID
          IMPORTING
            EV_RC           = EV_RC
            EV_MSG          = EV_RC
            ET_MSG          = ET_MSG.
        COMMIT WORK.
      ELSE.
        CALL FUNCTION 'RPM_DELETE_PROJECT_DATA'
          EXPORTING
            IV_EXTERNAL_ID  = IV_EXTERNAL_ID
            IV_PROJECT_GUID = IV_PROJECT_GUID
          IMPORTING
            EV_RC           = EV_RC
            EV_MSG          = EV_MSG
            ET_MSG          = ET_MSG.
      ENDIF.
    ENDFUNCTION.
    In above code how to capture 'EV_RC' when FM is called as background task.

    Prakash,
    CALL FUNCTION IN BACKGROUND TASK allows no IMPORTING parameters, so that your code will produce a syntax error.
    The calling program can only handle errors of remote function calls (RFC) if these are either
    - synchronous RFC  (that is CALL FUNCTION ... DESTINATION ...) or
    - asynchronous RFC (that is CALL FUNCTION STARTING NEW TASK ... DESTINATION ...).
    Both synchronous and asynchronous RFC allow the capturing of errors by means of exceptions. But that is a different topic.

  • Can a transaction be called in background dynamically using ABAP program??

    Hi Experts,
    Can a transaction be called in background dynamically using ABAP program without BDC???
    Regards,
    Mansi.

    u can create job dynamically through programming..Try this sample code..
    data: jobname like tbtcjob-jobname value
                                 ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    Insert process into job
    SUBMIT zreport and return               << Here it is a static call but u can make it dynamic
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
                event_id             = starttime-eventid
                event_param          = starttime-eventparm
                event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
                laststrtdt           = starttime-laststrtdt
                laststrttm           = starttime-laststrttm
                prddays              = 1
                prdhours             = 0
                prdmins              = 0
                prdmonths            = 0
                prdweeks             = 0
                sdlstrtdt            = starttime-sdlstrtdt
                sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
                targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    Regards,
    JOy.

  • Fireworks CS3: How to call a background

    Hello,
    At work, I use Fireworks CS3. My job is to normalize our
    products pictures to the group’s colors.
    In fact I take a picture and retouch it, then I load a
    standard background, I put the pic on it and I export all in jpg.
    Instead of searching for the background file in my computer
    and copy/paste the detoured pic on it, I would like to
    “call” this background as a calque into my document,
    and automatically resize my document.
    Is it possible ?
    Sorry for my English, I’m French. Please use easy words
    to reply :)

    "Mike_fr" <[email protected]> wrote in
    message
    news:gh6be1$bpm$[email protected]..
    > Hello,
    >
    > At work, I use Fireworks CS3. My job is to normalize our
    products pictures
    > to
    > the group?s colors.
    >
    > In fact I take a picture and retouch it, then I load a
    standard
    > background, I
    > put the pic on it and I export all in jpg.
    >
    > Instead of searching for the background file in my
    computer and copy/paste
    > the
    > pic, I would like to ?call? this background as a calque
    into my document,
    > and
    > automatically resize my document.
    >
    > Is it possible ?
    I'm guessing there is a batch process you could do here...
    unfortunately,
    I've never used batch processing, so....
    Tim G.
    http://www.pactumweb.com
    http://www.shortordersite.com
    Be smart:
    http://www.pactumweb.com/client/tips.php

  • Every time I load Firefox it loads a tab called "ask a question|Navigation|Firefox Help" -- how do I disable this?

    Running Windows XP, Firefox 3.6.16

    Thanks for the swift reply. I'm sorry I wasn't clear in my question. Two tabs are loaded. One tab is my Home Page the other is the tab called "Ask a question|Navigation|Firefox Help" It's not a problem, just an irritation because I delete the tab every time. I have the "Help" menu selection and can click at any time so I don't need that "Ask a question|Navigation|Firefox Help" tab loading each time.

  • Can we debug programs called in background job?

    Hi Everyone,
    Here is my question:
    I set some breaakpoints in program A which is call by another program B.
    And in B, it defines a background job to run A.
    but when i run program B , the berakpoints set in A don't work,why???
    (I can not run A directly, for it needs a large amount of parameters which can't be input manually)
    How to solve it? Thanks
    Regards.

    Hi,
    Yes if it is a custom program.
    Here how it works.
    - Put a endless loop in your code.
    - Run the program.
    - Go to SM50 and select your process.
    - Then go to Program/Session->Program-> Debugging.
    - It will open the debugger. Now come out of endless loop by changing values and check whatever you want.
    Regards,
    pranaya

  • JCo  client calls as background processes (avoiding timeouts)

    Hi Guys!
    Could you please assist us to resolve a simple issue:
    Our JCo Client call takes sometimes longer than the given timout for sap dialog processes (so, it's now clear,  the jco client simply uses the dialog processes and not something smarter/more flexible).
    My question is, ho to entice the jco client call to run without runtime timeout and take as long time as necessary. If the only possibility is, to use the tRFC, does anybody have an example for tRFC usage from JCo Client?
    Is also a JCo server component  needed to implement some callback functionality from SAP system by using the tRFC, or it could be enough to poll the server and implement the timeout on the client level (it could be for us the best solution if we realy must use the tRFC).
    Once again, we want to run the JCo client calls unlimited time (as long as needed) without the annoying dialog process timeout. The tRFC is not necessary by use cases now.
    Any help would be      appreciated!
    Many thanks, Gena

    Hi Gena,
    so, it's now clear, the jco client simply uses the dialog processes and not something smarter/more flexible
    Well, that's a feature of the underlying RFC protocol: All RFC calls are executed in dialog work processes, thus also the runtime limitations for dialog processes apply.
    My question is, ho to entice the jco client call to run without runtime timeout and take as long time as necessary. If the only possibility is, to use the tRFC, does anybody have an example for tRFC usage from JCo Client?
    The JCo client cannot do anything about it, it's a profile parameter in SAP, i.e. rdisp/max_wprun_time. But as this parameter applies to all dialog processes (so dialog users and RFC calls), so it shouldn't be changed to make a single RFC application work. Anyhow, tRFC won't help you in this case, because all RFC calls are processed in a dialog process no matter of the type of RFC.
    Once again, we want to run the JCo client calls unlimited time (as long as needed) without the annoying dialog process timeout.
    Impossible without making any changes in SAP. In theory one could modify the RFC function so that it resets the "runtime counter" and thus having the capability to run longer than rdisp/max_wprun_time. I'd recommend though not to do that, especially since a very long running RFC seems rather questionable. Long running tasks should be processed in background.
    Cheers, harald

  • Background Question

    I have no idea if this belongs but in Leopard(well it is obvious that is) there is a new background called Aurora. In the Server addition the color of Aurora is Blue. My question is it possible to change the color of Aurora in the Regular version or is it only in the Server version? If so how?

    goldsonic45 wrote:
    I have no idea if this belongs but in Leopard(well it is obvious that is) there is a new background called Aurora. In the Server addition the color of Aurora is Blue. My question is it possible to change the color of Aurora in the Regular version or is it only in the Server version? If so how?
    I just googled and found it.

  • Animated Background Question

    Hey,
    Ok, I wasn't sure if this was the right section but I am trying to learn how to create an animated light effect over a web image. I guess the easiest way to explain what I am looking to do is provide an example.
    I want to add the moving bubble lights over my web image like on this website. http://www.yannanderson.com/
    Was this created in Photoshop or is it a flash animation?
    Any help or suggestions would be greatly appreciated.
    Thanks in advance.

    hi, you speak about my website it's an AJAX website, but the bubbles animation is javascript powered... it's a simple scrit that i have purchased here :
    http://codecanyon.net/item/background-3d-parallax/1154837
    if you have other question, please write me here [email protected] and for subject you write YOUR WEBSITE YANN ANDERSON..................... ok ? i hope this message will help you

  • BAPI CALL IN BACKGROUND TASK

    Hi,
    We have a sales order workflow for exceptional demand.
    In one of the steps of the workflow,the corresponding task executes in background.
    Sales Order Change BAPI is called within this task.
    Now the problem is that in case the sales order is locked for execution by some other user, the BAPI call returns a message of type 'E'.
    Currently we send a mail to the concerned people to indicate that the sales order change has failed. However the users are concerned, since there is no immediate feeback on the errors.
    Is there any way that the user's can be informed instantly that an error has occured and also a retry option so that the BAPI call can be reexecuted at a later time.
    Regards,
    Jitender

    You can do this in two ways
    1. Put the BAPI call after a WHILE loop, that always checks for SY-SUBRC and within it you call the FM to lock the order
    OR
    2. Do this in workflow by using the return message type E to start the same task with some delay, say 30 mins or so...
    Good Luck
    Ravi

Maybe you are looking for

  • Sync problems from Iphone 4S to MacBook Pro

    I cannot sync Icall from phone to Mac. Syncing from Mac to phone works perfect. What to do?

  • Canon camcorder + scratch disk questions

    I have a Canon Optura 50 (I now know that was not the best choice!). But, given what I have and I can't buy a new camcorder for a while, I would like some advice and clarification. I have been following the thread on dropped frames and the do's and d

  • Blu-Ray is compressed???

    Hello, I am burning movies every now and then to Blu Ray.  I don't use any menus, just a timeline with chapters.  I had a run in with "fatal error code 6", but i think i have fixed that problem.  My question is my video asset (for this example) was c

  • Combobox for Find and RowsetIterate tag

    Hi, My first question is: When using a custom data web bean, I recognized that the rowset fetched by getRowset() is not the same rowset that the original datasource in the jsp page uses. Is this a normal behaviour? That creates a problem when for exa

  • Site loads internally but outside users can't see anything

    i did a fresh 10.5.2 server install today. anyone on our campus (univ.edu) network can see the site but outside users can't. my server is automatically assigned a dns entry from our campus network similar to udp01234.univ.edu i've enabled the web ser