Notificaciones

donde puedo ver las configuracion de las aplicaciones para que me lleguen las alertas del facebook, ebuddy, twitter, whatsapp, etc?

vas a tu app de configuraciones. Al final sale la lista de tus applicaciones (FB, twitter, etc). Selecionas la aplicacion que quieres cambiar y enciendes las notificaciones para que te mande las alertas.

Similar Messages

  • Upload and Attach file to Service Notificacion through Web Dynpro

    Hi,
    I need to upload and attach a file (Word, PDF, TXT ...) to Service Notificacion (TX - IW53) through Web Dynpro.
    I have used the integration component "File Upload" to obtain the "fileName" atribute. Also, I have used the functions SO_OBJECT_UPLOAD, SO_INSERT_OBJECT and BINARY_RELATION_CREATE_COMMIT.
    But have a problem, because the function SO_OBJECT_UPLOAD use the class "cl _ gui _ frontend _ services" and that clash with Web Dynpro.
    My question is: how could I resolve that problem?
    I look forward to your response.
    Thanks

    IV_NAME     Importing     Type     STRING
    IV_CONTENT     Importing     Type     STRING
    IV_CONTENT_HEX     Importing     Type     XSTRING
    IS_LPORB     Importing     Type     SIBFLPORB
    IV_OBJTP     Importing     Type     SO_OBJ_TP
    RT_MESSAGES     Returning     Type     BAPIRETTAB
    method save.
      data ls_message type bapiret2.
      data:
        filename     type string,
        filefullname type string,
        mime_type    type string,
        size         type i,
        offset type i,
        offset_old type i,
        temp_len type i,
        objname type string,
        l_obj_type type so_obj_tp,
        hex_null type x length 1 value '20',
        l_document_title type so_text255,
        file_ext type string,
        lt_objcont type standard table of  solisti1 initial size 6,
        objcont like line of lt_objcont,
        lt_ls_doc_change type standard table of sodocchgi1,
        ls_doc_change like line of lt_ls_doc_change,
        lt_data type soli_tab,
        ls_data type soli,
        lt_xdata type solix_tab,
        ls_xdata type solix,
        l_folder_id type sofdk,
        ls_object_id type soodk,
        l_object_id_fol type so_obj_id,
        l_object_id type so_obj_id,
       l_doc_info TYPE sofolenti1,
        l_object_hd_change type sood1,
        l_tab_size type int4,
        l_retype type breltyp-reltype,
        lt_urltab  type standard table of sood-objdes.
    get foler
    l_folder_id = 'FOL29000000000004'.
      call function 'SO_FOLDER_ROOT_ID_GET'
        exporting
         owner                            = sy-uname
          region                           = 'B'
        importing
          folder_id                        = l_folder_id
       tables
         path_table                       =
      if iv_objtp = gc_type_file.
        size = xstrlen( iv_content_hex ).
    get file name and extension
        call method split_path
          exporting
            iv_path           = iv_name
          importing
         E_PATH           =
           ev_filename       = filename
         E_PSERVER        =
        call method split_file_extension
          exporting
            iv_filename_with_ext = filename
          importing
            ev_filename          = objname
            ev_extension         = file_ext.
        ls_doc_change-obj_name = objname.
        ls_doc_change-obj_descr = objname.
        ls_doc_change-obj_langu = sy-langu.
        ls_doc_change-sensitivty = 'F'.
        ls_doc_change-doc_size = size.
        offset = 0.
        while offset <= size.
          offset_old = offset.
          offset = offset + 255.
          if offset > size.
            temp_len = xstrlen( iv_content_hex+offset_old ).
            clear ls_xdata-line with hex_null in byte mode.
            ls_xdata-line = iv_content_hex+offset_old(temp_len).
          else.
            ls_xdata-line = iv_content_hex+offset_old(255).
          endif.
          append ls_xdata to lt_xdata.
        endwhile.
    set object type relation type and other header info
        l_retype = 'ATTA'.
        l_obj_type = 'EXT'.
        l_object_hd_change-objnam = ls_doc_change-obj_name.
        l_object_hd_change-objdes = ls_doc_change-obj_descr.
        l_object_hd_change-objsns = ls_doc_change-sensitivty.
        l_object_hd_change-objla  = ls_doc_change-obj_langu.
        l_object_hd_change-objlen = ls_doc_change-doc_size.
        l_object_hd_change-file_ext = file_ext.
      prepare header
        data lt_obj_header type standard table of solisti1.
        data ls_header type solisti1.
        concatenate '&SO_FILENAME=' filename into ls_header.
        append ls_header to lt_obj_header.
        clear ls_header.
        ls_header = '&SO_FORMAT=BIN'.
        append ls_header to lt_obj_header.
    change hex data to text data
        call function 'SO_SOLIXTAB_TO_SOLITAB'
          exporting
            ip_solixtab = lt_xdata
          importing
            ep_solitab  = lt_data.
      else.
    for note
        size = strlen( iv_content ).
        objname = iv_name.
        ls_doc_change-obj_descr = objname.
        ls_doc_change-sensitivty = 'O'.
        ls_doc_change-obj_langu  = sy-langu.
    put content into table
        offset = 0.
        if iv_objtp = gc_type_note.
    it's a note
          l_retype = 'NOTE'.
          l_obj_type = 'RAW'.
          l_object_hd_change-file_ext = 'TXT'.
    read note content into table
          while offset <= size.
            offset_old = offset.
            offset = offset + 255.
            if offset > size.
              temp_len = strlen( iv_content+offset_old ).
              clear ls_data-line.
              ls_data-line = iv_content+offset_old(temp_len).
            else.
              ls_data-line = iv_content+offset_old(255).
            endif.
            append ls_data to lt_data.
          endwhile.
    get title from content , if it's initial
          if objname is initial.
            read table lt_data index 1 into l_document_title.
            while l_document_title+49 <> ' '.
              shift l_document_title right.
            endwhile.
            shift l_document_title left deleting leading ' '.
            ls_doc_change-obj_descr = l_document_title.
          endif.
        else.
    it's url (not note)
          l_retype = 'URL'.
          l_obj_type = 'URL'.
          if objname is initial.
            split iv_content at '/' into table lt_urltab.
            describe table lt_urltab lines l_tab_size.
            read table lt_urltab index l_tab_size into ls_doc_change-obj_descr.
          endif.
          while offset <= size.
            offset_old = offset.
            offset = offset + 250.
            if offset > size.
              temp_len = strlen( iv_content+offset_old ).
              clear ls_data-line.
              ls_data-line = iv_content+offset_old(temp_len).
            else.
              ls_data-line = iv_content+offset_old(250).
            endif.
            concatenate '&KEY&' ls_data-line into ls_data-line.
            append ls_data to lt_data.
          endwhile.
        endif.
        ls_doc_change-doc_size = size.
       l_object_hd_change-objnam = ls_doc_change-obj_name.
        l_object_hd_change-objdes = ls_doc_change-obj_descr.
        l_object_hd_change-objsns = ls_doc_change-sensitivty.
        l_object_hd_change-objla  = ls_doc_change-obj_langu.
        l_object_hd_change-objlen = ls_doc_change-doc_size.
      endif.
    save object
      call function 'SO_OBJECT_INSERT'
           exporting
                folder_id                  = l_folder_id
               OBJECT_FL_CHANGE           = OBJECT_FL_CHANGE
                object_hd_change           = l_object_hd_change
                object_type                = l_obj_type
               ORIGINATOR_ID              = OWNER_ID
              OWNER                      = USER-USRNAM
           importing
               OBJECT_FL_DISPLAY          = OBJECT_FL_DISPLAY
               OBJECT_HD_DISPLAY          = OBJECT_HD_DISPLAY
                object_id                  = ls_object_id   "l_doc_info-object_id
           tables
                objcont                    = lt_data
                objhead                    = lt_obj_header
               OBJPARA                    = OBJECT_PARA
               OBJPARB                    = OBJECT_PARB
           exceptions
                component_not_available    = 01
                folder_not_exist           = 06
                folder_no_authorization    = 05
                object_type_not_exist      = 17
                operation_no_authorization = 21
                parameter_error            = 23
                others                     = 1000.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 into ls_message-message.
        ls_message-type = sy-msgty.
        ls_message-id = sy-msgid.
        ls_message-number = sy-msgno.
        ls_message-message_v1 = sy-msgv1.
        ls_message-message_v2 = sy-msgv2.
        ls_message-message_v3 = sy-msgv3.
        ls_message-message_v4 = sy-msgv4.
        append ls_message to rt_messages.
        return.
      endif.
    create relation
      data l_obj_rolea type borident.
      data l_obj_roleb type borident.
    MOVE-CORRESPONDING wd_this->ms_lporb to l_obj_rolea.
      l_obj_rolea-objkey = is_lporb-instid.
      l_obj_rolea-objtype = is_lporb-typeid.
      l_obj_rolea-logsys = is_lporb-catid.
      l_object_id_fol  = l_folder_id.
      l_object_id = ls_object_id.
      concatenate l_object_id_fol l_object_id into l_obj_roleb-objkey respecting blanks.
      l_obj_roleb-objtype = 'MESSAGE'.
      clear l_obj_roleb-logsys.
      call function 'BINARY_RELATION_CREATE'
        exporting
          obj_rolea    = l_obj_rolea
          obj_roleb    = l_obj_roleb
          relationtype = l_retype
        exceptions
          others       = 1.
      if sy-subrc = 0.
        commit work and wait.
       wd_this->MV_UPDATE_FLAG = 'X'.
      else.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 into ls_message-message.
        ls_message-type = sy-msgty.
        ls_message-id = sy-msgid.
        ls_message-number = sy-msgno.
        ls_message-message_v1 = sy-msgv1.
        ls_message-message_v2 = sy-msgv2.
        ls_message-message_v3 = sy-msgv3.
        ls_message-message_v4 = sy-msgv4.
        append ls_message to rt_messages.
        return.
      endif.
    endmethod.
    Edited by: Reyleene Hunt on May 26, 2009 10:05 AM

  • Hola ayuda, actualice mi iphone 5 con el ios 7 y me sale en el Face, Twitter,whats lo siguiente: "conectese a Itunes para recibir notificaciones, ya lo conecte y nada, que puedo hacer, gracias

    Hola ayuda, actualice mi iphone 5 con el ios 7 y me sale en el Face, Twitter,whats lo siguiente: "conectese a Itunes para recibir notificaciones, ya lo conecte y nada, que puedo hacer, gracias

    Bueno, honestamente nunca había escuchado de un problema así pero te recomiendo que llames al número de AppleCare de tu país y veas si te pueden dar asistencia telefónica, normalmente así debería ser por tratarse de un equipo nuevo.  Si con la ayuda que te den por ese medio no se corrige seguramente te dirán que lo lleves a un centro de servicio o con tu compañía telefónica.
    Me extraña que te hayan dicho ellos que no podían hacer nada porque a mi en la mía cuando tuve un problema me cambiaron el teléfono (que estaba en garantía) pero algunas son menos 'amigables' con los usuarios.

  • Mi iphone a dejado de sonar puedo ver peliculas escuchar musica pero si me llaman o me envian cualquier notificacion solo vibra y no suena que puedo hacer?

    MI iphone 5 a dejado de sonar puedo ver peliculas escuchar musica pero no recibo ningun sonido de notificacion ni ninguna llamada y lo tengo todo conectado a maximo volumen

    Join this group on facebook.
    Unanse a este grupo en facebook.
    https://www.facebook.com/groups/437070263016099/

  • No me salen las notificaciones de sonido en twitter en iphone 6

    Hola que debo hacer para recibir en twitter las notificaciones de sonido? las notificaciones en tiras y eso me salen he probado todo y no me salen gracias por adelantado

    Hi manuel,
    What OS you are using?
    Regards,
    Sumit Singh

  • No me llegan notificaciones del correo

    Tengo configurado el correo en mail con varias cuentas, una de gmail y otra de ono y cuando recibo un correo no me avisa el centro de notificaciones, ni tan siquiera teniendo abierto el mail. ¿Aqué puede deberse esto?. Gracias

    Si he entendido bien, el número de correos nuevos aparecen en el icono de Mail en Dock, pero no aparecen los correos en el Centro de Notificaciones, ¿correcto?
    Esto se debe a que Mail no está configurado para mostrar correos en el Centro de Notificaciones. Para modificar esta configuración, abra Preferencias del Sistema > Notificaciones > Mail, y seleccione "Tiras" o "Alertas". Para probar si funciona, recomiendo seleccionar "Tiras", así que, cuando usted reciba un correo, aparecerá en la esquina superior derecha, pero no presione esa alerta. Después, abra el Centro de Notificaciones y verá el correo

  • No me llegan notificaciones de ninguna aplicacion en mi ipod touch 4 y lo acabo de comprar, ¿Qué hago? :(

    Lo compre a penas el Sábado y no me llegan notificaciones de ningun tipo y lo reinicie como de fabrica y aun asínollegan.

    Google translate:
    I do not get notifications of any application on my ipod touch 4 and I just bought, what do I do? : (I bought it to penalties on Saturday and I do not get notifications of any kind and factory reset and even as asínollegan.
    http://support.apple.com/kb/HT3576?viewlocale=es_ES

  • Porque quitaron los atajos que habian de Facebook y Twitter en las notificaciones ?

    Quisiera que alguien me aclare el porque quitaron los atajos que de Facebook y Twitter que estaban en el centro de notificaciones ?

    ¡Hola!
    Las notificaciones se desactivan cuando se modifica el sistema y este no tiene los conductores para que funcione el Led, la forma en que puede funcionar es instalando una version oficial.
    ¡Un saludo!
    Victor H. Diaz @VictorDiaazz
    Spanish Community Moderator
    Es importante recalcar también que los foros suplementan los recursos de los usuarios de Lenovo pero no reemplazan el servicio técnico oficial. Para un listado de números de servicio sigue el enlace: Numeros de Soporte
    Comunidad en Español  English Community  Deutsche Community   Русскоязычное Сообщество

  • Sin notificaciones de facebook y twitter

    Ojala alguien sepa a que se debe este fallo.
    A pesar de que tengo registradas cuentas de facebook y twitter no recibo notificaciones y las cuentas no aparecen dentro de "centro de notificaciones" (anexo foto)
    Si puedo hacer comentarios directo desde la barra lateral los cuales se publican en respectivas redes sociales pero notificaciones entrantes no recibo ninguna.
    Tengo OSX 10.9.1 en una mackbook air de 13"
    Agradeceria mucho la ayuda. Gracias y saludos

    tengo el mismo problema la unica forma es reiniciar el equipo y ya te muestra todo de nuevo, es una de los pocas cosas que me tiene aburrido

  • Hay solucion del error para publicar en facebook desde el centro de notificaciones ?

    hay solucion del error para publicar en facebook desde el centro de notificaciones ?

    No. Not that I know of, maybe 10.8.3

  • En youtube no se pueden ver notificaciones ni modificar el diseño del canal, funciona perfectamente en otros navegadores

    estube viendo que en youtube no se pueden ver notificaciones ni modificar el diseño del canal, funciona perfectamente en otros navegadores, (lo testee en varios y en el unico que me trajo conflicto fue en mozilla D:)
    Atte: LCdD ColTKinG

    Es probable que el plugin de Flash se encuentre bloqueado en la página, impidiendo que las funciones de YouTube que lo requieran, fallen. Para más información visita: http://mzl.la/1xKuGJj

  • Despues de la ultima actualizacion, se ha quedado la notificacion activa en el icono de ajustes

    Despues de la ultima actualizacion, se ha quedado la notificacion activa en el icono de ajustes, como se puede eliminar el aviso??
    Un saludo.

    Buen dia,
    Bienvenido al Foro.
    Que modelo es tu equipo? esto ocurre cuando se instala una version diferente a la estipulada para el equipo confirmanos el modelo de tu equipo ejemplo G480, G580 ETC para indicarte los pasos a seguir.
    Gracias y Saludos,
    Jorge Montenegro
    Support Specialist
    Comunidad en Español  English Community   Deutsche Community
    Es importante recalcar también que los foros suplementan los recursos de los usuarios de Lenovo pero no reemplazan el servicio técnico oficial. Para un listado de números de servicio sigue el enlace: Numeros de Soporte

  • Notificaciones De Reclamos Con Enlaces

    Hola a todos,
    Tengo una consulta, quiero saber si es posible que en las notificaciones que reclamos que le llegan a los usuarios, se pueda agregar un enlace que lleve al reclamo mismo en el sistema CRM.
    Gracias de Antemano.

    Referencias, meras referencias a unos archivos gráficos, que no tienes. Asi que no puedes extraer las fotos por que no están dentro del archivo.
    En InDesign las imágenes se colocan enlazadas (vínculadas) al archivo original que se mantiene en su localización. Es decir no se colocan dentro, ni se cambian de ubicación.
    En resumen: No tienes las fotos dentro de ninguno de esos archivos actualmente.
    Cuando se quiere transladar o mover un trabajo completo hay que usar la función Archivo>Empaquetar, que crea una carpeta con el archivo de InDesign las fuentes y copia de las imágenes con enlace directo a esa carpeta.
    Soluciones:
    Abrir el archivo original de nuevo, con acceso a las imágenes originales y Empaquetar.
    Tener acceso a las imágenes y volver a vincular. (Esto se hace desde el menu lateral en el panel de Vínculos, pero hay que saber donde estan las fotos y si se puede acceder a ese archivo.
    Pedir copia de las fotos e igualmente revincular (vincular desde otra ruta o lugar) cada una de las imágenes.

  • Generacion notificaciones IMSS

    buenos dias
    tengo un problema con la generation de la notificacion al IMSS: no me aparece la fecha de notificacion al imss ni el el reporte de la transaccion PC00_M32_CAFLO Y tampoco en el infotipo 372 alguien sabe el porque.
    Para infotypo 372 la puedo introducir manualmente pero no me aparece la persona para nada en el reporte HMXCAFL0.
    No existe ningun log para orientarme entonces es muy dificil de entender porque sale este problema.
    Alguien tuvo este tipo de problema?
    Gracias

    Hola Octavio
    Yo tuve el mismo problema y elaboré un documento con el caso que tenía yo. Lo puedes revisar en Calculo del SDI, fecha de aniversario y vacaciones . Ahi estan todas las notas aplicadas que solucionaron el caso.
    Saludos
    Johnatan

  • No recibo notificaciones de

    de WhatsApp, Line ni WeChat por que? Ya verifique q estuviesen todas las notificaciones de c/aplicación habilitada.

    Qué???

Maybe you are looking for

  • Query For Finding Yearly Opening and Closing Balance for All the Items

    Hi Experts, I am working on Query Based Report for finding the Yearly Opening and Closing Stock for all the Items i will give yearwise selection and I want opening and closing stock in between that years Warm Regards, Sandip Kokate Edited by: Sandipk

  • Error in deploying a jar file on JBOSS

    What could be the error here ? 12:49:30,643 INFO [URLDeploymentScanner] Started 12:49:31,074 INFO [MainDeployer] Deployed package: file:/C:/jboss-3.2.1_tomcat-4.1.24/server/all/conf/jboss-service.xml 12:49:31,094 INFO [Server] JBoss (MX MicroKernel)

  • HELP! HAVE SOMEHOW ACCESSED IPOD 'HARD DRIVE' and CANT GET BACK TO MY MUSIC

    I just turned my ipod on, and instead of the usual menu, it came up with a BLACK AND WHITE SCREEN, and OPTIONS SUCH AS 'RESET,' 'ACCESSORIZE TEST' and 'SLEEP' (as well as a few others) panicing, I kept pressing buttons to try to get myself out of thi

  • HELP with sRGB in Photoshop Color Management Winows Vista

    Greetings beautiful Windows people! I am stumped with a Windows Vista problem - it is not displaying sRGB properly. I posted bigger files here if this is easier to follow http://www.gballard.net/windows_srgb/ But here goes: First, my main question is

  • IBook won't sleep when cover is closed

    When I close the cover it will not sleep. Only after a time it will sleep per settings in the energy saver. When I open the cover, it will not automatically awaken. Have to hit apple key a few times to awaken? Not the end of the world but would like