Unsynchronised between date and twitter-FB

I have problem with my iPod touch. It seems there is something wrong with the date and twitter-facebook. Everytime I try to open twitter or FB he date will be back to may 2011 and can't be adjusted. I already try to restart the device and re-install my twitter-FB but it is still couldn't be synchronised. Thanks

Is Settings>General>Time&Date set to automatic?
In Settings>General>International is Calender set to Gregorian?

Similar Messages

  • Diference between DATA: and TYPES: on internal tables

    Hi people,
    Can somebody help me. I wanna know whats the diference between DATA: and TYPES: on internal tables
    and whitch has the best performance, here is a eg:
    DATA: BEGIN OF ti_sbook occurs 0,
              carrid   LIKE sbook-carrid,
              fldate   LIKE sbook-fldate,
              customid LIKE sbook-customid,
              loccuram LIKE sbook-loccuram,
           END OF ti_sbook.
    AND
    TYPES: BEGIN OF ti_sbook ,
              carrid   LIKE sbook-carrid,
              fldate   LIKE sbook-fldate,
              customid LIKE sbook-customid,
              loccuram LIKE sbook-loccuram,
           END OF ti_sbook.
    DATA: gw_sbook       TYPE  TABLE OF ti_sbook,
    gs_sbook       TYPE ti_sbook.
    witch of both types is better?
    thanks.

    Hi Marcelo,
    For compatibility matters is better to create internal tables with a work area separately. So yes it's better to use types. When you work with Object Oriented coding you will need to use internal tables defined with types. Also when defining tables with types is the new way of coding, the another coding is getting obsolete defined by SAP. That's why when working in ABAP with OO (Object Oriented) code you'll have to define tables with types and not the other way.
    Hope it helps.
    Regards,
    Gilberto Li

  • Whats  basic difference between data and types while declearing the itab

    whats  basic difference between data and types while declearing the internal tables...
    DATA : BEGIN OF t_vbap OCCURS 0,
    vbeln1 LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    netpr LIKE vbap-netpr,
    netwr LIKE vbap-netwr,
    werks LIKE vbap-werks,
    matnr LIKE vbap-matnr,
    arktx LIKE vbap-arktx,
       END OF t_vbap.
    vs
       TYPES : BEGIN OF t_vbap,
    vbeln1 LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    netpr LIKE vbap-netpr,
    netwr LIKE vbap-netwr,
    werks LIKE vbap-werks,
    matnr LIKE vbap-matnr,
    arktx LIKE vbap-arktx,
       END OF t_vbap.
    and vs
      TYPES : BEGIN OF t_vbap,
    vbeln1 LIKE vbeln,
    posnr LIKE posnr,
    kwmeng LIKE kwmeng,
    netpr LIKE netpr,
    netwr LIKE netwr,
    werks LIKE werks,
    matnr LIKE matnr,
    arktx LIKE arktx,
       END OF t_vbap.

    hi,
    like -> used for refering existing data elements in data dictionary or in sap
    type -> used for refering existing data types in sap.
    types: used for creating used defined structure of tables which has fields from more tahn one table.
    diff b/w types and type in creation of internal tables is that when u create a table with types then u can use same for work area creation also.
    ex:
    TYPES : BEGIN OF t_vbap,
    vbeln1 LIKE vbeln,
    posnr LIKE posnr,
    kwmeng LIKE kwmeng,
    netpr LIKE netpr,
    netwr LIKE netwr,
    werks LIKE werks,
    matnr LIKE matnr,
    arktx LIKE arktx,
    END OF t_vbap.
    data: itab1 type t_vbap
            wa_itab1 type t_vbap.
    when type is used then u have to create a defintion of work area for another time when internal table doesnt have headr line as
    ex:
    DATA : BEGIN OF t_vbap OCCURS 0,
    vbeln1 LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    netpr LIKE vbap-netpr,
    netwr LIKE vbap-netwr,
    werks LIKE vbap-werks,
    matnr LIKE vbap-matnr,
    arktx LIKE vbap-arktx,
    END OF t_vbap.
    DATA : BEGIN OF wa_vbap,
    vbeln1 LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    netpr LIKE vbap-netpr,
    netwr LIKE vbap-netwr,
    werks LIKE vbap-werks,
    matnr LIKE vbap-matnr,
    arktx LIKE vbap-arktx,
    END OF wa_vbap.
    if helpful reward soem points.
    with regards,
    suresh.

  • Deliveries between dates and time

    Hi All,
    I've to find deliveries between last run date and time of a program and current date and time of the same program taking into account LIKP-ERDAT and LIKP-ERZET.
    LIKP-ERDAT and LIKP-ERZET  should be greater than Last run date and time and smaller than current date and time.
    Can anyone suggest the different ways of doing this?
    Thanks

    Hi
    U can check in table CDHDR also.. May be very useful..
    Just have look at that where  in u can find deliveries created/modified for period ....etc.
    Venkat

  • Difference between Data and Create data

    Hi ,
    Can any one please tell me the difference between CREATE DATA and DATA statement.
    What all situations we need to use the create data statement.
    Thanks in advance.
    Joe

    Hi,
    here is a quote from ABAP documentation.
    Unlike the DATA statement, CREATE DATA creates the data object at execution time. DATA creates declared data objects when the corresponding program unit is loaded.
    More info can be found in ABAP documentation. CREATE DATA is usually used in dynamic programming where you work with generic types.
    Cheers

  • MRP run - misalignment for planned order between Date and Production Date

    Hi All,
    We've just integrated SAP for a new plant.
    The MRP runs based on Routing Lead Time for Make materials instead on Material Master Lead Time, for Capacity Assessment purpose.
    When requirements dates lay in the past, MRP performs forward scheduling starting from current date and properly defines Production End Date according to Routing.
    By checking MD04, for the proposed Planned Order, the basic date is same as Current Date (= same as Requirement Date) instead of being same as Production Date.
    It works as it if checks stil the MAterial MAster LEad time instead of Routing. In fact if I updated the LT of MM the MD04 provides the right Date.
    For future requirements, the MRP works properly, by having basic dates (both start and end date) aligned with Production Dates of Planned Order.
    How can I do the alignment w/o updating In House Production LT?
    Thanks,
    D

    Hi Caetano,
    we have already done this configuration in OPU5 but it doesn't provide any benefit.
    Below how we configured it:
    Scheduling level: Via detailed scheduling
    Adjust dates: adjust basic dates, adjust dep. reqmts to operation date
    For capacity scheduling: Always basic dates, dep. reqmts to operation dates
    Scheduling type: Backwards.
    Regards,
    D.

  • Labview XY graph with space between data and top/bottom of graph

    In Labview, how do I modify the properties of the XY Graph so that there is some empty space (of say 1 unit) between the top and bottom of my graph and the data points I'm plotting. For example, I have a sine wave and when its autoscaled, the top point is at the very top of the graph but I want some space between the top of the graph and the highest point of the sine wave.  I could "unautoscale it" and edit the minimum and maximum to be 1 above and below the data points but is there a way to set it so it stays that way regardless of the data points that I input?
    Thanks,
    Kevin

    elset191 wrote:  
    I don't know how big of a cushion it gives, but it's there.
    if you want to programmatically set it you can also do this (as I learned a bit ago right here on these forums!)
    Message Edited by for(imstuck) on 05-24-2010 03:45 PM
    Message Edited by for(imstuck) on 05-24-2010 03:46 PM
    CLA, LabVIEW Versions 2010-2013
    Attachments:
    graphScale.PNG ‏9 KB

  • Function Module for calculating hours between dates and their times.

    Hi all,
    Is there any standard function module for calculating the time difference in hours between two dates with start and end times.
    Regards,
    Sudipto.

    Sudipto,
    How're you ????????????????????
    Check out the following Function Module:
    SD_DATETIME_DIFFERENCE (Give the difference in Days and Time for 2 dates)
    Regards,
    Abir
    Don't forget to award Points *

  • Difference between data and types

    dear friends
           Its a very simple question i am confused with why we create structures with types where we can create structures with data as well :
    Types: begin of stru
    end of stru.
    Data: begin of stru
    end of stru...
    regards
    Naim

    To construct a new structured data type struc_typein a program, you use several TYPES statements:
    TYPES BEGIN OF struc_type.
      {TYPES dtype ...} | {INCLUDE {TYPE|STRUCTURE} ...}.
    TYPES END OF struc_type.
    The syntax for directly declaring a variable as a structure is the same as you would use to define a structured data type using the TYPES statement:
    DATA BEGIN OF struc.
      {DATA comp ...} | {INCLUDE {TYPE|STRUCTURE} ...}.
    DATA END OF struc.
    The individual components of a structure are addressed in the program with the structure component selector between the structure name and component name as follows: struc_comp.
    Have a look at below link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3364358411d1829f0000e829fbfe/content.htm
    I hope it helps.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • What's the connection between data connections (3G/4G/WiFi) and phone signal strength (calls)?

    At home I'm almost always on my wifi with the 3G/4G turned off.  I've turned it on to experiment, and I get 3G in my house, but the reception (to make and receive phone calls) stays at 0 to 1 bars.  There is a Target store about a 10 minute walk from my house and I get 4G LTE when I'm shopping there, but the reception (calls) is still weak, maybe better but I can't tell you offhand.
    There is a Verizon tower about 6 miles southwest of my home; they actually had me drive out and sit under it last winter to fix a Droid Pro problem once.
    I absolutely do not understand how 3G and 4G relate to call signal strength, as it's been eluded to in other discussions.  I'm getting the impression that it affects the signal strength for phone calls, but then how can I (on my old phone) toggle it off and still have signal for calls?  When I drive into the heart of 4G LTE country I can turn off the data and still have 4 or 5 bars.  What's the connection between data and phone signal strength?

    "Service isn't guaranteed inside buildings."
    Nor outside,
    Nor under a tower,
    Nor in a car,
    Nor while eating green eggs and ham,
    Sam I am.
    Sorry Dr Seuss. 

  • Using a sum formula with a data and text row?

    In 9.3.1 Financial reporting.
    One row is retrieving values from essbase connection and is a data row
    the second row is a fixed amount (390K) and was entered as a text row.
    The third row is the formula row that sums up row 1 and row 2
    However the total shows only the value of the data row (row 1)
    I read the doc and it doesn't say you cannot do a formula between data and text rows but it doesn't see to work. Anyone get by this without having to create a dimension to dump a fixed number in to report off of?
    JTS

    You are right on.. A text row by definition and functionality is to be considered as a text, and not as a number [Even though the text can be number based].
    Did you try something like this?
    sum(row[41],390)
    As you referred, you can always add a member in essbase DB
    Cheers
    RS

  • Calculation of Date and Time Keyfigure

    Hello Experts,
    I want to get the result out of two keyfigures with different data type. One keyfigure has the data type TIMS and the other DATS. Is it possible to calculate the following:
    Result =  (Keyfigure1 TIMS + Keyfigure2 DATS) - (Keyfigure2 TIMS + Keyfigure3 DATS)
    Thanks in advance for your help.
    AK
    Edited by: Siegfried Szameitat on Nov 5, 2008 3:52 PM

    Anastasios Kozas,
    Out put(Result) you need in days or hours..?
    Eg: For Hours: find difference between hour keyfigures + difference between date and convert to hours.
    Then it works.
    Srini

  • Class-data versus data and methods versus class-methods in OO ABAP

    Hi
    I was going thorugh following OO ABAP code.
    CLASS vessel DEFINITION.
      PUBLIC SECTION.
        METHODS: constructor,
                 drive IMPORTING speed_up TYPE i,
                 get_id RETURNING value(id) TYPE i.
        CLASS-METHODS: start,
                       objects,
                       inheritance,
                       interfaces,
                       events.
      PROTECTED SECTION.
        DATA: speed TYPE i,
              max_speed TYPE i VALUE 100.
      PRIVATE SECTION.
        CLASS-DATA object_count TYPE i.
        DATA id TYPE i.
    ENDCLASS.
    Whats is difference between methods and class-methods ?
    What is the difference between data and class-data ?

    Hi Rajesh,
    There are two types of componenets in a class
    1)Static components
    2) Instance components
    Instance components exist for every instance of the class, while static exist only once for any number of instances of the class.
    Components of the class are methods, attributes, events etc.
    static attributes are represented by CLASS-DATA and instance attributes are represented by DATA.
    static methods hence are done by CLASS-METHODS and can access only static attributes.
    Instance methods are done by METHODS and can access any attribute.
    For eg: supposing that in a class, there is a static attribute. Suppose after one instance is created, we are setting this static attribute value as 10. Now we are creating another instance of the same class. Now when you try to display the value of this attribute, it will be 10.ie. it needs to be initialized once and can be shared between instances.
    Just go through this document..You will get nice info from this.
    http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    If you want to go deeper, like object persistence and all, just refer this document.
    http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt
    Regards,
    SP.

  • Date and time not showing correct whe imported to Power query

    Hi,
    I have an Excel list that I imported to another Excel file via Power query. A few of the imported columns contains date and time, for example 2013-11-09 20:19. When imported to Power query this will show as 41587.84652777778 and only dates/times with zero
    hours and minutes will show correctly. When trying to change the data type to Date/Time it returns an error for all cells containing hours and minutes.
    I use a Swedish version of Excel that uses a different time format compared to standard excel and also uses a , as a delimiter between date and time compared to the . used as delimiter in standard excel. Don't know if that can explain
    this problem?
    Brgds,
    C

    I updated Power query earlier this week, so it should be the latest version. When I created the sample file now the problem appears, so if it is a bug it has not been solved.
    You find the sample file on the link below. 4 sheets with some info on the problem, the data, the query result and one sheet with the data and query result as pictures as it shows in my version of Excel, I guess it will look somewhat different when you open
    the file due to local date/time settings.
    Appreciate feedback on what you find!
    //Caj
    https://skydrive.live.com/redir?resid=94DF9214E3A6D4!107&authkey=!AEuAXX_kPC7yKaI&ithint=file%2c.xlsx

  • How to read date and time with Oracle_Loader (10g)

    ip pc username date time
    1.1.1.1 WS1 test 2000/01/01 01:01:01
    I am trying to read the date and time from data formatted as above from a .txt file.
    create TABLE test (IP char(20), OCID char(15), ID char(30), date_logon date, time_logon date)
    ORGANIZATION EXTERNAL (TYPE ORACLE_loader DEFAULT DIRECTORY phonebook
    ACCESS PARAMETERS (FIELDS TERMINATED BY WHITESPACE
    (IP char(20),
    OCID char(15),
    ID char(30),
    date_logon char(30) DATE_FORMAT DATE MASK "yyyy/mm/dd",
    time_logon char(30) date_FORMAT date MASK "hh24:mi:ss"))
    LOCATION ('test.log'));
    However, my external table returns a date (2007-05-01) AND the time for the time_logon column (e.g. 2007-05-01 01:01:01) . I just want the time (e.g. 01:01:01).
    What am I doing wrong?
    *I tried: date_logon char(30) DATE_FORMAT DATE MASK "yyyy/mm/dd hh24:mi:ss", reading both the date and time at the same time, but it doesn't work.
    Thanks.

    Justin, thank you so much for your help.
    When I try:
    SELECT a.ip, a.ocid, a.id, TO_CHAR( a.date_logon, 'DD-MON-YYYY HH24:MI:SS' )
    FROM test a
    date_logon entries are all dd-mon-yyyy and 00:00:00 (i.e. no time was stored).
    I don't have control over the text file, so I don't think I can make any changes to the formatting.
    I tried to declare the column as 'timestamp':
    date_logon char(60) DATE_FORMAT timestamp MASK "yyyy/mm/dd hh24:mi:ss",
    but time is still displayed as 00:00:00:000.... which leads me to suspect that the culprit is the space between date and time in the text file.
    Say if I have 2007/05/25 and 2007/05/01 16:19:23 in two separate date columns. Is it possible to grab the time from the second column and append it to the first column (while still retaining the DATE property, i.e. 2007/05/25 16:19:23).
    Thanks!

Maybe you are looking for

  • System.exit in Opera

    Hi Has anyone come across how Opera handles Java? I am suffering an issue to prevent frequent-refreshing pages, every time when quits a page, the applet will call System.exit. It works fine in IE and FF but in Opera, the browser shuts down! What happ

  • I have been without adequate reception for over a day now....

    I feel that Verizon has made it very convenient that once a cell tower falls no one can get ahold of Verizon customer service. They only give phone numbers. Guess what Verizon I can't call you? I have been with them for 7 years and they have never tr

  • OTA Server emulator and other tools

    Greetings, Some months ago i was developing smart cards aplications, using NetBeans as my IDE, and Axalto VIEWS Tools (ME simulator and OTA Manager) for the simulating these services. ME Simulator -> Simulated the SIM card menus on the mobile device.

  • Log execve syscall in 64bits kernel?

    sysent[SYS_execve] = (void*) new_execve; can't work. Could you tell me how to do? Thanks.

  • How to uninstall / Remove Snow Leopard?

    How can I get rid of Snow Leopard and go back to Leopard? Can I just install Leopard over the top or will it have to be a clean install to a blank HDD?