Date format truncation

Hello,
I have string representation of date in varchar datatype in the format 2006-08-17 10:00 [YYYY-MM-DD HH24:MI].
I want to convert this varchar into DATE type.I was using the following function
table_date := to_date(datestring,'yyyy-mm-dd hh24:mi:ss');
Where datestring is string of the format [YYYY-MM-DD HH24:MI] as described above.
Now the value of table_date is truncated version with just the current date and the hour and minute information removed and even the date format changed back to DD-MM-YY like 17-AUG-06.
Can some one please suggest a way to convert a string in yyyy-mm-dd hh24:mi:ss to DATE of format yyyy-mm-dd hh24:mi:ss.
Thanks
Regards
Prateek

Hello,
I got the following output
SQL> declare
2 table_date date;
3 begin
4 table_date := to_date('2006-08-17 10:00','yyyy-mm-dd hh24:mi:ss');
5 DBMS_OUTPUT.PUT_LINE ( 'table_date = ' || table_date );
6 DBMS_OUTPUT.PUT_LINE ( 'table_date = ' || to_char(table_date,'yyyy-mm-dd hh24:mi:ss') );
7 end;
8 /
table_date = 17-AUG-06
table_date = 2006-08-17 10:00:00
PL/SQL procedure successfully completed.
Which is same as you got.
So do I need to change my date format of system???
Thanks for your help!
Regards
Prateek

Similar Messages

  • Print a report on doc format truncate data

    hi
    I have a report launching with a form in an oracle applications, when I print a report on pdf format looks ok
    but when I print the same report on doc format truncate data on left and right side.
    Can you help me
    thanks

    Hi Herbe
    Reports does not support .doc format. Are you referring .rtf format?
    In any case, you must contact Oracle Support to get the issue resolved.
    Regards
    Sripathy

  • Truncated date format

    Hi,
    for creating a unique index with a date-column A_DATE I'm using a
    calculated column X_DATE as (trunc(A_DATE)):
    CREATE UNIQUE INDEX UX_A_TABLE
    ON A_TABLE (
    X_DATE
    Using A_DATE in UX_A_TABLE would fail if someone would use sysdate two
    times a day.
    Is there a column-data-type restricted to truncated date format?
    Regards
    Sandeep

    user13100082 wrote:
    Hi,
    for creating a unique index with a date-column A_DATE I'm using a
    calculated column X_DATE as (trunc(A_DATE)):
    CREATE UNIQUE INDEX UX_A_TABLE
    ON A_TABLE (
    X_DATE
    Using A_DATE in UX_A_TABLE would fail if someone would use sysdate two
    times a day.
    Is there a column-data-type restricted to truncated date format?
    Regards
    SandeepAll the data types are documented in the fine SQL Reference manual.
    Of course if you have a DATE datatype, and you limit it to just the date (eliminate time component) and also make it a unique constraint, you could only have one row per day. It sounds like you are looking for some magic data type that gets around this fundamental logic.

  • Data getting truncated while exporting report to a text file in crystal 10?

    Hi All,
    I am using crystal 10.When exporting report to a text file ,a dialog prompts asking for Character perinch with a default value 9.If I change the value from 9 to 16 i am getting the correct data(that means character per inch value is 16) and it update "CharPerInch" value in registry under following location to 16.
    HKEY_CURRENT_USER\Software\Crystal Decisions\10.0\Crystal Reports\Export\Text
    The dialog asked for character per inch also has option to select not to prompt again and i also selected that in first go.
    When i export the report again in text format it didn't prompt for number of character per inch but the data gets truncated.
    What i believe is even though it updates entry in registry and reads, it is not using the same value for export. It never consider the value that is in registry, if the check box is not selected then it is using the value entered in the dialog and if the check box is selected then in the next run it uses the default value as 9.
    Can anyone suggest me how to override this problem ? Is there any other setting place in registry where i can enter the number of character per inch.I don't want to crystal to prompt always for character per inch.

    Hi Venkateswaran,
    The other option to avoid truncation of the data could be
    Right click the text filed
    Click on Format Text to open the Format Editor
    On Common tab check the text box for Can Grow.
    This will prevent the data from truncating in preview as well as while exporting to text.
    Otherwise you will have to set the characters per inch to 16 each time. I donu2019t see changing the registry value causing any difference here.
    Regards,
    Aditya Joshi

  • How to define the date format for this date string

    2006-11-13 00:00:00.0
    How to define the date format in control file for sqlldr. "yyyy-mm-dd hh24:mi:ss" or "yyyy-mm-dd hh24:mi:ss.FF1" does not work
    thanks,

    SQL> desc t
    Name                                      Null?    Type
    TS                                                 TIMESTAMP(6)
    SQL> !cat t.ctl
    load data
    into table t
    truncate
    (ts timestamp "YYYY-MM-DD HH24:MI:SS.FF1")
    SQL> !cat t.dat
    2006-11-13 00:00:00.0
    SQL> !sqlldr userid=scott/tiger control=t.ctl data=t.dat log=t.log
    SQL*Loader: Release 10.2.0.3.0 - Production on Fri Sep 7 11:19:28 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 1
    SQL> select * from t;
    TS
    13-NOV-06 12.00.00.000000 AMBest regards
    Maxim

  • RE: Oracle DATE data format conversion..

    <C.M> Motta's question about dates and oracle>
    Dealing with dates and Oracle is somewhat of a nuisance. Oracle is very
    particular about how date strings are formatted, and if you get it wrong,
    you get the (unhelpful) message that C.M. Motta showed us. However, if
    you pass a DateTimeData to Oracle, Forte' does the right formatting for you.
    If you do need to format the date prior to interacting with Oracle, use the
    following format:
    dd-mmm-yy <time component>
    You can change the default format, but it is not easy.
    If you customise Express generated code that interacts with an Oracle
    database, again, make sure that you pass a DateTimeData, and not the
    .TextValue.
    Good luck!
    Richard Kirk

    Date: Wed, 06 Nov 1996 08:18:37 -0500
    To: "C. M. Motta" <[email protected]>
    From: Jim Milbery <[email protected]>
    Subject: Re: Oracle DATE data format conversion..
    Cc: [email protected]
    Cheers:
    Most likely what is happening is that you are using the default date
    format of Oracle, and you are sending a four-character year. As follows:
    SQL> insert into jimbo values ('01-dec-1997')
    2 /
    insert into jimbo values ('01-dec-1997')
    ERROR at line 1:
    ORA-01830: date format picture ends before converting entire inputstring
    >
    Oracle defaults to a format of 'dd-MON-yy'
    You can either truncate the year, or manipulate the date to match the standard
    database as follows:
    insert into jimbo values (to_Date('01-jan-1997', 'DD-MON-YYYY'))
    \jimbo
    At 09:21 AM 11/6/96 -0200, you wrote:
    Forte Users,
    First, Id like to thank all those who answered my question on
    droplist & SQL. I got just what I was looking for: its up and runnunig
    now.
    I have another question: Im trying to insert a DATE into an Oracle
    database. The source date is:
    data : DateTimeData = new;
    data.SetCurrent();
    So, when I try to insert data.Value or data.textvalue into DB, I
    get the following exception:
    ORA-01830: date format picture ends before converting entire
    input string.
    Are there any suggestions?
    Thanks for your help,
    C.M. Motta
    ====================================================================
    Jim Milbery
    Milbery Consulting Group
    132 N. West St., Allentown, PA 18102
    O: 610 - 432 - 5350 F: 610 - 432 - 5380
    E-Mail : [email protected]
    ====================================================================

  • Date Format in SQL Loader

    Dear All,
    I have a table CMS_HO where I have defined different columns. One column is of date type STATUS_DATE. I want to upload one ASCII file where one field is in the format like below:
    5/26/2008 12:41
    5/26/2008 8:51
    5/28/2008 9:01
    5/28/2008 13:54
    5/13/2008 10:45
    4/6/2008 9:21
    I want to upload file into Oracle database. Currently I am using following control file:
    LOAD DATA
    INTO TABLE CMS_HO TRUNCATE
    FIELDS TERMINATED BY "\t"
    TRAILING NULLCOLS
    ( ID,EXPIRYDATE, VER, SN, STATUS_DATE)
    There seems error in the STATUS_DATE field in control file. Can any one help how to modify this Control file so that data against this field can be uploaded into date format please?
    Thanks

    Here's an example i pulled from the web on specifying the date format in a control file.
    http://infolab.stanford.edu/~ullman/fcdb/oracle/or-load.html#loading%20date%20data
    Based on the sample data you provided, i think this is the format you're after.
    ME_XE?select
      2     to_date('5/13/2008 10:45', 'mm/dd/yyyy hh24:mi') as date_value_24_hours
      3  from dual;
    DATE_VALUE_24_HOURS
    13-MAY-2008 10 45:00
    1 row selected.
    Elapsed: 00:00:00.89

  • Msg 0, Sev 0, State 1: Unknown token received from SQL Server [SQLSTATE HY000] String data, right truncation [SQLSTATE 01004] [SQLSTATE 08S01] error

    I'm looking for some general guidance on this complete error:
    Msg 0, Sev 0, State 1: Unknown token received from SQL Server [SQLSTATE HY000]
    String data, right truncation [SQLSTATE 01004]
    Msg 16389, Sev 16, State 1: The connection is no longer usable because the server response for a previously executed statement was incorrectly formatted. [SQLSTATE 08S01]
    This error is caused by a SQL Agent Job, but it does not always occur. I understand this could be an issue with SQL dropping the connection, but what is the best way to troubleshoot this?
    Thanks,
    Phil

    Hi philliptackett77,
    It would be more helpful for troubleshooting the issue if you post the SQL Server error log and SQL Server version. Additionally, please state what purpose of using the agent job.
    Based on my research, [SQLSTATE 08S01] error means communication link failure. If the executed statement returns invalid value in the job, the connection between server and client will fail. This error could be caused by the error of [SQLSTATE HY000] and
    [SQLSTATE 01004]. I’d like to share my knowledge about these errors as below.
    Quote: String data, right truncation [SQLSTATE 01004]
    This error could occur when passing data whose length is larger than the received object,and the passed value is truncated, and returns invalid value. So please check if the data type of the objects are identical and the length of passed value is not larger
    than the received object.
    Quote: Msg 0, Sev 0, State 1: Unknown token received from SQL Server [SQLSTATE HY000]
    The error could occur in the two cases below.
    1. If you use SQL Server version 6.50, and execute the cursor in the job step, set the statement options to use a server-side cursor and prepare a select statement on a SQL Server system table. The first execution of the select creates the cursor successfully.
    After you close this cursor, if you execute the prepared statement again, the error could occur.
    I recommend you to apply the latest service pack firstly. If the error still occurs, you could change your code by using a forward-only cursor instead of a static, keyset, or dynamic cursor on the system tables. If a forward-only cursor is unacceptable,
    prepare the select statement again on the system table and execute it to create a server-side cursor. For more information about the process, please refer to the article:
    http://support.microsoft.com/kb/151693/en-us
    2. The TDS stream from the server is invalid when transfer data between a database server and a client. This error is typically caused by a problem on the server. For more information about errors above, please refer to the article:
    http://technet.microsoft.com/en-us/library/aa937531(v=sql.80).aspx
    Regards,
    Michelle Li

  • OWB 10g R2 - Dates getting truncated in rejected records

    Hi,
    We have been using Oracle Warehouse Builder 10g R2 in a data warehouse built on a Oracle Database Server of the same version. We utilise OWB run-time repository to extract data rejects that might occur in OWB mappings and re-process them, if necessary. In particular, we used to query to RAB_RT_EXEC_ERROR_COLUMNS view in order to retrieve data rejects.
    As I have noticed, OWB stores rejected data in its run-time repository having all values transformed to VARCHAR2(2000) data type. The problem I am trying to resolve is the fact that when OWB transfers rejected DATE values to the run-time repo, it truncates all dates so the time component is lost.
    For instance, a source table contains a record with a DATE column value "26-AUG-2006 14:30:27". The source column is mapped in an OWB mapping to a target column of the same data type. When the mapping successfully processes the records, DATE values appears in the target table unchanged, with date and time components. When the mapping rejects the record, it appears in OWB run-time repository in VARCHAR2 data type, but without time component. When I query RAB_RT_EXEC_ERROR_COLUMNS, I get "26-AUG-2006" value.
    This is a real problem for us, as rejected data being re-processed can cause unique constraint violations and does not match exactly the source data.
    Any ideas how to resolve the situation are highly appreciated.

    Yes, we capture errors in row-based mode. We considered using DML error tables, but refused to be able to capture and re-process data rejects occured at any stage in a mapping, not necessarily when the data is being loaded to a destination table.
    BTW, today I tried to set up manually NLS date format
    EXECUTE IMMEDIATE 'ALTER session SET nls_date_format = ''DD/MM/YYYY HH24:MI:SS''';
    immediately before running a mapping through WB_RT_API_EXEC package (OWB API), but result was the same -- rejected dates got truncated.

  • Date format problem in excel format

    Hi,
    I am uploading the date field  from excel to program.
    My problem is in date format.
    I am gettting the date format in ddmmyyyy if it is 01012006 then my excel sheet contains the date as 1012006 i.e '0' initial zero is truncated in the excel sheet .
    Now how can i use this date in my program i.e i have to convert into date as per program requirements like dd.mm.yyyy  .How can i convert.
    Thanks and regards,
    shyla

    Hi Shyla,
    if the provided excel sheet contains date in format "20122006" the field is considered as a number format.
    In this case you can do the following select the whole column and go to format/cells. Choose the "custom" category on the Number tab and
    enter zeros in eight digits, i.e. 00000000 under "Type:".
    This should solve your problem before uploading the data into SAP.

  • Helps on date format

    Hi all,
    I got the column in table A where the date format is dd/mm/yyyy ( 01/03/2005), and another table B where the date format is dd/mm/yyyy HH24:MI:SS. So in order to let the two table to talk to each other, I hv the following query
    B.transaction_date >= TO_DATE(A.start_date , 'DD-MON-RRRR HH24:MI:SS')
    B.transaction_date <= TO_DATE(A.end_date, 'DD-MON-RRRR HH24:MI:SS')
    I hv problem with the end result b'cos of the date format in table A is dd/mm/yyyy whereas the transaction_date in table B has the format with time. How can I format or convert the date in the table B to be in defaulted time such as A.start_date 00:00:00 and b.end_date 23:59:59 ??
    How to format this ? please helps. Thanks
    Rgds
    Lim

    Hello
    Are the transaction_date, start_date and end_date columns all DATE data types?
    If so, all DATE columns have the time component but it may be truncated i.e. set to 00:00:00. To do a date range in your case you could do something like:
         B.transaction_date >= A.start_date
    AND
         B.transaction_date < A.end_date + 1By using this construct you are forming a range between today at midnight and tonight at 23:59:59, so you don't have to worry about setting the time component on your end_date.
    HTH

  • Custom DBProvider - Date Format Problem

    Hi All,
    I have created a custom DBProvider that inserted form value into database .
    I want date format in "yyyy-MM-dd HH:mm:ss" ..
    When I pass date in this format ....
    It throws error :
    05.31 11:49:43.943     IdcServerThread-3     Exception !csDateParseError,2010-05-25!syUnableToParseDate,2010-05-25!syUnableToFindText,/
    intradoc.data.DataException: !csDateParseError,2010-05-25!syUnableToParseDate,2010-05-25!syUnableToFindText,/
         at intradoc.jdbc.JdbcQueryUtils.appendParam(JdbcQueryUtils.java:305)
         at intradoc.jdbc.JdbcQueryUtils.buildQuery(JdbcQueryUtils.java:174)
         at intradoc.jdbc.JdbcWorkspace.buildQuery(JdbcWorkspace.java:745)
         at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:639)
    Please help

    Hey,
    could share your code part inwhich you save the date, also the date format of your UCM.
    cheers,
    sapan
    Edited by: Swapnil Solanki on Jun 1, 2010 1:07 AM
    SYSTEMLOCALE
    Type and Usage
    ™ Configuration Variables (page -3)
    ™ Localization (page -25)
    Description
    Sets the system locale for the content server.
    ™ This setting controls the following:
    • localized strings used in the content server interface
    • character encoding for web pages
    • date/time format
    • time zone
    • parameters used for full-text indexing
    Any of these individual features can be controlled by separate configuration entries or
    by changing the settings for the SystemLocale.
    ™ This setting can be changed on the Server tab of the System Properties utility. The
    defaults for a specific locale can be changed on the Localization tab of the System
    Properties utility.
    ™ If SystemLocale is not specified as a configuration setting, the SystemDateFormat
    (page -779) will be deduced directly from the OS settings in the Java VM instead of
    using the content server configuration table settings for the SystemLocale. If
    SystemLocale is explicitly defined, then the date/time format from the content server
    configuration tables for that locale will be used instead.
    ™ The configuration entries VerityLocale (page -889) and Ve r i tyEncoding (page -887)
    will still override settings from the SystemLocale, but configuring the SystemLocale
    directly is the preferred solution because there are many choices for Ve r i tyLocal e and
    VerityEncoding that are not compatible.
    SYSTEMDATEFORMAT
    Type and Usage
    ™ Configuration Variables (page -3)
    ™ Date and Time (page -16)
    ™ Localization (page -25)
    Description
    Sets the date/time format for the content server.
    Note that there are two types of date formats: one that stores seconds and one that
    truncates seconds and stores the date up to the minute. If seconds are used, dates can only
    be stored up to the year 2037.
    ™ If SystemLocale (page -781) is not specified as a configuration setting, the
    SystemDateFormat will be deduced directly from the OS settings in the Java VM
    instead of using the content server configuration table settings for the SystemLocale. If
    SystemLocale is explicitly defined, then the date/time format from the content server
    configuration tables for that locale will be used instead.
    ™ The syntax for this format is an extension of the date format functionality provided in
    the standard Java class libraries.
    Location
    <install_dir>/config/config.cfg
    Example
    Used as a configuration entry to set the standard US date time using the four digit year
    format:
    SystemDateFormat=M/d{yyyy} {h:mm[:ss] {aa}[zzz]}
    Note: See Using Content Server in International Environments for information on date
    and time formats.

  • 30EA3 : Unload DATE caused truncated Time portion

    Hi,
    As has been explained in the following thread on which are closely related :
    30EA1: unloading data seems to favor timestamp over date format
    I tried the unload feature and found these annoying thing :
    - Unloading DATE column from SQL Query grid, the time part is correctly given
    - Unloading DATE column from table's context menu or Database Unload, both gives me 00:00:00 as the time part, truncating the time portion.
    I choose 'csv' and 'insert' as the unload method.
    Actually there was a workaround suggested by Raghu by disabling the mapDateToTimestamp, but this workaround caused another problem as stated on above thread.
    Hope to see a safe solution to use this buggy unload feature.
    Regards,
    Buntoro

    I have corrected this problem, thanks to the guys on Metalink.
    If anyone is interested in the solution, All I had to do was copy:
    %ORACLE_HOME%\jdbc\lib\classes12.jar
    to
    %ORACLE_HOME%\mobile_oc4j\jdbc\lib\classes12dms.jar
    on the Mobile Server.

  • Problem with Date formatting

    Hi Tim,
    I am facing some issues with formatting the date using XMLP. The following is the sample XML data file i am using:
    <LIST_G_HEADER>
    <G_HEADER>
    <QUOTE_HEADER_ID>1455</QUOTE_HEADER_ID>
    <QUOTE_NUMBER>2027</QUOTE_NUMBER>
    <QUOTE_VERSION>1</QUOTE_VERSION>
    <QUOTE_NAME>Test GM Report - Rabindra</QUOTE_NAME>
    <SOURCE_NAME>Fletcher, MR. Paul</SOURCE_NAME>
    <QUOTE_DATE>27-OCT-2005</QUOTE_DATE>
    <CURRENCY_CODE>GBP</CURRENCY_CODE>
    </G_HEADER>
    </LIST_G_HEADER>
    The formatting i use for my date field i.e <QUOTE_DATE>, ends up either with NO formatting or giving me an error "[010906_114656657][][ERROR] Invalid XSD string: 27-OCT-2005 (XMLP Template Viewer)". The default formatting available with the form field dialog box (MS-Word) feature also doesn't work.
    I have the following formatting for this field in the form field:
    <?format-date:QUOTE_DATE; 'MEDIUM' ?>
    When i read the user guide, it reads that the date should be in the canonical format i.e: YYY-MM-DDThh:mm:ss+HH:MM
    However i am not getting the date from the base table's in this format. Is the error happening due to incorrect format or is there some other reason behind this? Please let me know, how can i overcome this issue.
    Thx,
    Nitin

    As i mentioned in another thread
    substring function and date format
    Please use this standards
    <?xdofx:expression?>
    for extended SQL functions or
    <?xdoxslt:expression?>
    for extended XSL functions.
    Use like
    <?xdofx:rpad(LAST_NAME),30, ’x’)?>
    <?xdofx:Instr(’abcabcabc’,’a’,2))?>
    <?xdofx:upper(char)?>
    <?xdofx:lower (char)?>
    <?xdofx:greatest ( expr [, expr]... )?>
    ETC.....

  • How can we give the Data Format (File Type ) in Runtime

    Hi all,
    How can we give the Data Format (File Type ) in Runtime for the following method,
    cl_gui_frontend_services=>gui_download.
    Thanks in advance
    Sri

    There is a filetype parameter which you can set
    CALL METHOD cl_gui_frontend_services=>gui_download
      EXPORTING
    *    BIN_FILESIZE              =
        filename                  =
    *    FILETYPE                  = 'ASC'
    *    APPEND                    = SPACE
    *    WRITE_FIELD_SEPARATOR     = SPACE
    *    HEADER                    = '00'
    *    TRUNC_TRAILING_BLANKS     = SPACE
    *    WRITE_LF                  = 'X'
    *    COL_SELECT                = SPACE
    *    COL_SELECT_MASK           = SPACE
    *    DAT_MODE                  = SPACE
    *    CONFIRM_OVERWRITE         = SPACE
    *    NO_AUTH_CHECK             = SPACE
    *    CODEPAGE                  = SPACE
    *    IGNORE_CERR               = ABAP_TRUE
    *    REPLACEMENT               = '#'
    *    WRITE_BOM                 = SPACE
    *    TRUNC_TRAILING_BLANKS_EOL = 'X'
    *  IMPORTING
    *    FILELENGTH                =
      changing
        data_tab                  =
    *  EXCEPTIONS
    *    FILE_WRITE_ERROR          = 1
    *    NO_BATCH                  = 2
    *    GUI_REFUSE_FILETRANSFER   = 3
    *    INVALID_TYPE              = 4
    *    NO_AUTHORITY              = 5
    *    UNKNOWN_ERROR             = 6
    *    HEADER_NOT_ALLOWED        = 7
    *    SEPARATOR_NOT_ALLOWED     = 8
    *    FILESIZE_NOT_ALLOWED      = 9
    *    HEADER_TOO_LONG           = 10
    *    DP_ERROR_CREATE           = 11
    *    DP_ERROR_SEND             = 12
    *    DP_ERROR_WRITE            = 13
    *    UNKNOWN_DP_ERROR          = 14
    *    ACCESS_DENIED             = 15
    *    DP_OUT_OF_MEMORY          = 16
    *    DISK_FULL                 = 17
    *    DP_TIMEOUT                = 18
    *    FILE_NOT_FOUND            = 19
    *    DATAPROVIDER_EXCEPTION    = 20
    *    CONTROL_FLUSH_ERROR       = 21
    *    NOT_SUPPORTED_BY_GUI      = 22
    *    ERROR_NO_GUI              = 23
    *    others                    = 24

Maybe you are looking for

  • Not getting submissions imported to forms central?

    I am only getting the submitted applications via our provided e-mail address instead of them being automatically sent to forms central as data collection.  I've had students tell me the "submit" button isn't working, so they just save the application

  • Earlywatch Alert with No Ratings

    Hi All, I had configured one of my XI system to my Solamn for EW Alerts. It was working fine and giving me the reports every week for the last 3 months. But last week onwards, I am not getting the report. When I checked in DSWP Solutions Overview, I

  • Unable to import file from Backend in SAP Virsa AE 5.2

    hi, currently we are having AE 5.2 with SP11. when we go to Configuration tab -> Role -> Import role and give the role name which is in the backend and click on Import role, we are getting an error as " Action Failed". the role is existing in the bac

  • Create service PR using BAPI_PR_CREATE

    Hi experts, I am trying to create service PR using BAPI_PR_CREATE, though i am a able to create a service PR with account assignment category =  'K'(i.e. cost centre), I am not ble to create PR with acc. assign. category = 'N' (i.e. network). It give

  • Activacion

    PROBLEMA: En el mes de octubre del año 2013 compre mi iPhone 5 color blanco nuevo en MOVISTAR - COLOMBIA, y lo active con mi ID, posterior a esto el día sábado 16/08/2014 realice l actualización del IOS a 7.1.2, una vez realizado este procedimiento d