46C - ECC 6.0 || Problem in PREPARE

Hello All!
I'm initializing PREPARE and when running option 1 on SAPUP menu, this message is displayed:
Message . . . . :   Function check. CEE9901 unmonitored by PREPAREOS4 at
  statement 0000046300, instruction X'0000'.
Viewing joblog, the first error is:
Message ID . . . . . . :   CPDB9C9       Severity . . . . . . . :   30       
Message type . . . . . :   Diagnostic                                        
Date sent  . . . . . . :   08/15/07      Time sent  . . . . . . :   13:16:00                                                                               
Message . . . . :   Internal system error.  Error code is -72.               
Cause . . . . . :   An internal error occurred loading i5/OS PASE program    
  /usr/sap/put/bin/SAPup.                                                    
Recovery  . . . :   Try the request again. If the problem persists, report the
  problem using the Analyze Problem (ANZPRB) command.
SAPUP is up-to-date. Can anyone help me what kind of "internal error" is this?
Thank for all help!
Best Regards,
André Koji Honma
FUJIFILM da Amazônia Ltda.

Hi Andre,
We got one requirement similar to the upgrade you have executed..
Operating system : OS/400
Machine Type      :  825
Platform ID          :  592
Database            : DB400 V5R4
Source
R/3 Version         :  4.6C
Target Version     :  ECC 6.0
In Service Marketplace it shows the upgrade guide selection as below
1)Unix DB2 UDB for UNIX and Windows
2)Unix DB2 UDB for z/OS
3)Windows DB2 UDB for UNIX and Windows
4)Windows DB2 UDB for z/OS
5)IBM eServer iSeries DB2 UDB for iSeries
I am obsolutely new to OS/400 environment. kindly suggest the relavent guide to be followed for executing the upgrade.
Regards
Kamal

Similar Messages

  • R/3 4.7 upgrade to ECC 6.0 problem

    in the phase  INITPUT_PRE of PREPARE came out an error.
    says that excuted a sql error
    "select VERSION from SVERS" error.
    I had set up the authdication of DB user host\sidadm as what it descript on the screen.
    i tried to excuted the "select VERSION from SVERS" on SQL quarry.but error,
    only if i excuted the sql like select VERSION from erp.SVERS and it success.(erp is the DB name)
    what sould i do to change the authdication of DB use can be able to excute select VERSION from SVERS.
    Regards
    Jack Lee

    Dear jack,
    I also faced the same problem while upgrade. Please do the following :-
    In SQL Server management console, go to Security--> Logins. You will find one user <SID>adm. In the properties of this user, you make the default database 'erp' instead of master. That's it.
    Please try and confirm if it works.
    Jitendra Tayal

  • 4.0B to ECC 6.0; SPDD in PREPARE or UPGRADE phase?

    Hi Gurus,
    I am working on an upgrade from R/3 4.0 to ECC 6.0. I worked on pgrades before but am alien 4.0B. BTW, from a Developer perspective:
    1) SPDD adjustments are done in which phase? PREPARE or UPGRADE?
    2) Are here special cases where the adjustments need to be done before running the UPGRADE phase?
    Helpful Answers will be rewarded

    Hi Karthik
    >
    > 1) SPDD adjustments are done in which phase? PREPARE or UPGRADE?
    >
    SPDD is done in Upgrade ->Phase ACT_700
    > 2) Are here special cases where the adjustments need to be done before running the UPGRADE phase?
    >
    At ACT_700 phase stop the upgrade and take a backup of the DB and the PUT<DIR> before starting the SPDD activity.
    Make sure there are no pending tp request.  Either release them or delete them.
    All phase need to be completed successfully in PREPARE, before starting UPGRADE
    Cheers
    Shaji
    Edited by: Shaji Jacob on May 5, 2008 9:23 PM

  • Problem with Prepared Statement & MS Access

    Hi
    I have tried to find some info about this but can't see anything specific to what I think the problem may be. Hopefully someone can point me in the right direction.I am trying to get information out of an MS Access database using a Prepared Statement but I am getting strange results.
    When I run the query in the database it gives me the correct totals (�51) for 4 records. When I run the Prepared Statement ,I get 81. Has it got anything to do with the data type I am using( sorry if this is a really basic question). here is my code- the connection etc is elsewhere.
    private void getReportMoneyTotal() throws SQLException
              Calendar todayTotal =Calendar.getInstance() ;
               SimpleDateFormat reportDateFormat = new SimpleDateFormat("dd MM yyyy");
              PreparedStatement preparedT =context.getConnection().prepareStatement(
                   "SELECT Sum(tblSession.Fee) AS Total, Count(tblBooking.BookingID) AS CountOfBookingID FROM tblSession INNER JOIN "+
                   "(tblBooking INNER JOIN tblCustomer_Booking ON tblBooking.BookingID = tblCustomer_Booking.BookingID) ON tblSession.SessionID = tblBooking.SessionID "+
                   "WHERE (((tblBooking.EventDate)>DateAdd('m',-1,#"+reportDateFormat.format(todayTotal.getTime())+"#)) AND ((tblSession.Session)='Morning' Or (tblSession.Session)='Evening')) OR (((tblSession.Session)='Afternoon') AND ((tblBooking.Extension)=Yes))"
              ResultSet resultTotal =preparedT.executeQuery();
              resultTotal.next();
              Double total =resultTotal.getDouble("Total");
              Locale locale = new Locale("GBP");
            NumberFormat gbpFormat = NumberFormat.getCurrencyInstance(locale);
              System.out.println(gbpFormat.format(total));
              preparedT.close();
         }I do realise that my code probably isn't very elegant but I'm only learning!

    Hi Matt--
    I am not clear if you are saving the url with the # # around
    the text or if
    the
    data already contains the # marks.
    When you insert a link, you want to make sure you insert is
    insert into table ( link1) values ( <cfqueryparam
    cfsqltype="cf_sql_varchar"
    value='#linkvaluehere#'> )
    remember to
    1) enclose your data's value inside quotes (some databases
    are picky about
    single v. double quotes).
    2) if it IS in quotes, swap doubles for singles and see if
    that helps.
    3) make sure your data being saved is NOT double hashed like
    '##linkvalueher##'. Double ##'s tell
    Coldfusion not to treat it as a variable.
    hope his helps,
    tami
    "Mattastic" <[email protected]> wrote in
    message
    news:f9c7h0$8ub$[email protected]..
    | Hi Folks,
    |
    | I'm storing a link in a nvarchar field in SQL server,
    www.foo.co.uk, it
    looks
    | and works fine in SQL server. Problem occurs when I setup
    an ADP in Access
    and
    | insert links. Certain links have a hash symbol around them.
    so
    |
    http://www.foo.co.uk, would be #
    http://www.foo.co.uk# which is
    causing
    problems.
    |
    | Can anyone tell me why this is happening? and how to stop
    it?
    |
    | Thankyou
    |

  • Samsung ECC DDR RAM Problem

    I have a KT3 mainboard.  I bought 2pcs Samsung PC2700 DDR ECC RAM (K4H560838D-TCB3). If i use it the system don't boot. What is the solving?

    Quote
    Originally posted by maesus
    I doubt if KT3 can work with ECC RAM, but seems it works with K7T266. Have you tried with one piece of RAM first as suggested by wonkanoby?
    The board does support ECC, just not ECC functionality.  I've never had a problem running ECC in either board, generics at that.  I'd try another brand.....

  • Problems with Prepared Statement

    Hi,
    I am developing an Java Bean that reads from a database of Entertainments of my home city of Glasgow and displays that info to a text area. I want the User to input the type of Entertainment they want e.g. Bars or Clubs, and the name of the place they want to go and then the Java Bean displays the info of the specified place.
    The program works fine if I set the Query to display the data from the database but I want the User to define the query by thier input.
    So I used Prepared Statements, but I have error messages saying that
    Syntax Error in FROM Clause
    my code to query the database is shown below
    String query ="SELECT * FROM ? WHERE Name=?";
    PreparedStatement PresStatement=con.prepareStatement(query);
    //my input to test Database.will change to variable
    PreStatement.setString(1,"Pubs");
    PreStatement.setString(2,"Admiral");
    ResultSet rs=PreStatement.executeQuery();The Problem seems to the placholder after the FROM clause but I can't seem to fix it.
    Any Help would be greatly appreciated.
    Regards
    Brian

    just a guess here, but I'd imagine it's because of the way PreparedStatement handles Strings. Obviously, if you're using a String as part of your SQL query, you're going to want single quotes around the entire thing. Thus, the first setString() is probably trying to put single quotes around the table name, which could be causing problems.
    You don't really lose anything if you just work around this by changing your code to..
    tableName = "Pubs"; //or this is probably coming from your user
    String query ="SELECT * FROM "+tableName+" WHERE Name=?";
    PreparedStatement PresStatement=con.prepareStatement(query);
    //my input to test Database.will change to variable
    PreStatement.setString(1,"Admiral");
    ResultSet rs=PreStatement.executeQuery();

  • ECC ABAP Proxy Problem

    Hi,
    In ECC i did the follwong configuration for Client Proxy
    1. Create RFC destination XI_INTEGRATIONSERVER type H (with target host, service no-50X00 and path prefix), test it and getting HTTP Response 500. I am using PIAPPLUSER and this user have role SAP_XI_APPL_SERV_USER
    2. Went to SXMB_ADM select change global configuration select Applicatio Server and dest://XI_INTEGRATIONSERVER
    3. Create RFC destination SAP_PROXY_ESR type H (with tager host, service no-800X and path /rep), test it getting HTTP Response 200 OK.  I am using PIAPPLUSER and this user have role SAP_XI_APPL_SERV_USER
    when i go to the SPROXY tcode their it ask for user and ID for Resource rep, enter the PIAPPLUSER and password, it ask for user id mutliple time then it throws "No Authorization for Repository"
    I do not know what is wrong
    With Regards
    Sunil

    Sorry solve the problem.
    My bad...RFC SAP_PROXY_ESR must be type G instead of type H, problem fixed

  • URGENT :   EP 7.0 /ECC 5.0  -   Problem with Business Package : ESS/MSS

    Dear Portal Gurus,
    We are facing a problem with business package for ESS/MSS
    Our system Info is as under :
    Portal:- NW 2004s
    ERP2004: - (R3 ECC 5.0)
    ESS:- BP for Employee Self-Service (mySAP ERP 2004) 60.2
    MSS:- BP for Manager Self-Service (mySAP ERP 2004) 60.1.1
    SAP XSS  à (SAP ESS 100, SAP MSS 100 and SAP PCUI_GP 100 , all upto SP 12)
    After the Business Packages were installed,found that some  ess apps where not deployed...so manually deployed it.
    The JCO connections are OK.
    Do we need to set up the backend Homepage Framework for the same......even for preview.....was thinking not.
    Also, here is the error and exception that we get when we preview any ESS iview.
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    You dont have the authorization to start service sap.com/pcui_gp~xssutils/XssMenuArea.
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: You dont have the authorization to start service sap.com/pcui_gp~xssutils/XssMenuArea.
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:121)
    at com.sap.pcuigp.xssfpm.wd.BackendConnections.initBackend(BackendConnections.java:234)
    at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModel(BackendConnections.java:159)
    at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.connectModel(InternalBackendConnections.java:183)
    Thanks.
    Message was edited by: Ashutosh Rana

    I got the same problem :/
    not the authorization, but the fields in working time is displaying wrong.. (too big)
    Any solution to this?
    Best Regards
    Kristoffer Engh

  • BW 7.3 and ECC 6.05 Problem with BI Content Activation Objects

    Hi Experts,
    I'm trying to activate the Business Content 0HE (Higher educations) and using the procedure suggested by the document "Campus BW 7 for Content Management".
    I have done what the manual indicates.
    1. Enable data sources in the source system (RSA5)
    2. I replicated the data sources in BW (replicate).
    3. I tried to activate the DSO in the Business Content.
    The problem that arises is that a large number of infobjetos not activated and show me the following error "Attribute characteristic OBJECT_NAME from CHAR_NAME not (Actively) available".
    I tried with all three types of activation 1. Before the flow 2. Only items needed 3.Before and after the flow. In either case all objects are activated.
    In my case I tried to activate the DSO "0HE_DS01."
    I've done wrong?
    What should I check?
    Thanks,
    Ramon Sulvaran

    Hi,
    If you are in R/3 4.6 or higher, or if you are in ECC 6.0, the concept is equal. maybe just options can changed.
    For the dataflow this is the same steps. the only difference is if you use V7 dataflows or V3.x dataflows. Fomr R/3 same concept.
    Regards
    Cyril

  • ECC 6.0 Problems with transaction TRIP

    Hi all, we are working with ECC 6.0 and in the travel management when using the transaction TRIP we saved a travel, we got the error message
    "1 PTRV_WEB_ADVANCES_INT , PTRV_UTIL_VSCH"
    Following the sap note 871580 as we had enhanced the old structure PRTV_UTIL_VSCH, we now enhance the structure PTRV_WEB_ADVANCES_INT.
    But we got the same message.
    Can anybody help us?.
    Thanks,
    Alfonso

    The problem was a duplicate data element in one enhancement strucutre

  • Problem in prepared Statement

    hi,
    i have used following prepared Statement for the update in database.
    Can any one tell me that,How can i use date in following method.
    I have 4 field for date as given below:(BOLD shown)
    I have used String in that place.
    It is not working.
    PreparedStatement pstatement = conn.prepareStatement(
    "UPDATE sec_mast SET catg_code=?, vou_no=?, vou_date=?, vou_amt=?, due_date1=?, due_date2=?, mat_date=? where sec_no=? ");
    pstatement.setInt(1,Integer.parseInt(request.getParameter("catg_code")));
    pstatement.setString(2,request.getParameter("vou_no"));
    pstatement.setString(3,request.getParameter("vou_date"));
    pstatement.setInt(4,Integer.parseInt(request.getParameter("vou_amt")));
    pstatement.setString(5,request.getParameter("due_date1"));
    pstatement.setString(6,request.getParameter("due_date2"));
    pstatement.setString(7,request.getParameter("mat_date"));
    pstatement.setInt(8,Integer.parseInt(request.getParameter("sec_no")));
    int rowCount = pstatement.executeUpdate();
    conn.setAutoCommit(false);
    conn.setAutoCommit(true);
    plz help me

    thanx for u r reply.
    MY whole code is shown as below:
    This page is for the updating the values in database..
    <html>
    <body>
    <table>
    <tr>
    <td>
    <%@ page import="javax.servlet.*" %>
    <%@ page import="javax.servlet.http.*" %>
    <%@ page language="java" import="java.sql.*" %>
    <%
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection conn=DriverManager.getConnection("jdbc:odbc:pf","scott","ttlscott");
    System.out.println("got connection");
    %>
    <%
    String action = request.getParameter("action");
    // Check if an update is requested
    if (action != null && action.equals("update")) {
    conn.setAutoCommit(false);
    PreparedStatement pstatement = conn.prepareStatement(
    "UPDATE sec_mast SET sec_no=? , catg_code=?, face_val=?, pur_val=?, int_paid=?, int_recd=?, brkr=?, vou_no=?, vou_date=?, vou_amt=?, due_date1=?, due_date2=?, lf_no=?, mat_date=? where tot_val=? ");
    pstatement.setInt(1,Integer.parseInt(request.getParameter("sec_no")));
    pstatement.setInt(2,Integer.parseInt(request.getParameter("catg_code")));
    pstatement.setInt(3,Integer.parseInt(request.getParameter("face_val")));
    pstatement.setInt(4,Integer.parseInt(request.getParameter("pur_val")));
    pstatement.setInt(5,Integer.parseInt(request.getParameter("int_paid")));
    pstatement.setInt(6,Integer.parseInt(request.getParameter("int_recd")));
    pstatement.setInt(7,Integer.parseInt(request.getParameter("brkr")));
    pstatement.setString(8,request.getParameter("vou_no"));
    pstatement.setString(9,request.getParameter("vou_date"));
    pstatement.setInt(10,Integer.parseInt(request.getParameter("vou_amt")));
    pstatement.setString(11,request.getParameter("due_date1"));
    pstatement.setString(12,request.getParameter("due_date2"));
    pstatement.setString(13,request.getParameter("lf_no"));
    pstatement.setString(14,request.getParameter("mat_date"));
    pstatement.setInt(15,Integer.parseInt(request.getParameter("tot_val")));
    int rowCount = pstatement.executeUpdate();
    conn.setAutoCommit(false);
    conn.setAutoCommit(true);
    %>
    <%
    // Create the statement
    Statement statement = conn.createStatement();
    ResultSet rs = statement.executeQuery
    ("SELECT * from sec_mast ");
    %>
    <%
    // Iterate over the ResultSet
    while ( rs.next() ) {
    %>
    <tr>
    <form action="security_update.jsp" method="get">
    <input type="hidden" value="update" name="action">
    <td><input value="<%= rs.getInt("sec_no") %>" name="sec_no"></td>
    <td><input value="<%= rs.getInt("catg_code") %>" name="catg_code"></td>
    <td><input value="<%= rs.getInt("face_val") %>" name="face_val"></td>
    <td><input value="<%= rs.getInt("pur_val") %>" name="pur_val"></td>
    <td><input value="<%= rs.getInt("int_paid") %>" name="int_paid"></td>
    <td><input value="<%= rs.getInt("int_recd") %>" name="int_recd"></td>
    <td><input value="<%= rs.getInt("brkr") %>" name="brkr"></td>
    <td><input value="<%= rs.getInt("tot_val") %>" name="tot_val"></td>
    <td><input value="<%= rs.getString("vou_no") %>" name="vou_no"></td>
    <td><input value="<%= rs.getDate("vou_date") %>" name="vou_date"></td>
    <td><input value="<%= rs.getInt("vou_amt") %>" name="vou_amt"></td>
    <td><input value="<%= rs.getDate("due_date1") %>" name="due_date1"></td>
    <td><input value="<%= rs.getDate("due_date2") %>" name="due_date2"></td>
    <td><input value="<%= rs.getString("lf_no") %>" name="lf_no"></td>
    <td><input value="<%= rs.getDate("mat_date") %>" name="mat_date"></td>
    <td><input type="submit" value="Update"></td>
    </form>
    </tr>
    <%
    %>
    </table>
    <%
    // Close the ResultSet
    rs.close();
    // Close the Statement
    statement.close();
    // Close the Connection
    conn.close();
    } catch (SQLException sqle) {
    out.println(sqle.getMessage());
    } catch (Exception e) {
    out.println(e.getMessage());
    %>
    </td>
    </tr>
    </body>
    </html>

  • Problems with prepared statement in MYSQL.

    I 've this code:
    String sql = "UPDATE dcr SET Fecha=?, Origen=?, Destino=?, Mensaje=?, Estado=? WHERE IDDCR=? AND IDUsuario=?";
    PreparedStatement st = cn.prepareStatement(sql);
    SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd");
    java.sql.Date sqlDate = java.sql.Date.valueOf(fmt.format(this.fecha));
    st.setDate(1, sqlDate);
    st.setString(2, this.origen);
    st.setString(3, this.destino);
    st.setString(4, this.mensaje);
    st.setString(5, this.estado);
    st.setString(6, this.primaryKey);
    st.setString(7, this.usuario);
    I receive a SQLException with this message "Callable statments not supported" when the line "PreparedStatement st = cn.prepareStatement(sql)" is executed.
    My JDBC Driver is "mysql-connector-java-3.0.11-stable-bin" and my server is "*MySQL 4.0.17-max"*.
    Anybody see where is the problem?
    Tnaks in advance.
    Ricardo.

    I've more information about this problem.
    If I take my code and put it in a class with a main function it works fine.
    The original code is a part of a DAO pattern object that is invoked by a servlet (is the storeObject function).
    The servlet create a record, send a native TCP/IP transaction to a external system and whit this code update the record previously created with the result of the transaction.
    The system uses connection pooling. But the conection used in create of the record is diferent from the used in this code. (It's returned to the Datasource) All objects of the database process are closed in a finaly block before return the connection. (Statements, PreparedStatements , ResultSets, etc...)
    Thanks in advance.
    Ricardo

  • MDMP - Unicode 46c - ecc 6

    Hi sir, need some hint on the unicode conversion.. using spum4.
    on our SMLT we are having EN, DE, TH.
    after scanning the table without languange info and ambigious languange , and INDX analysis. there is words imported to vocabulary that need to be assigned.
    some of this word unreadable ( having characters @#$ | ), how can i determine what languange is it, in order able to add the languange assigment to the words.
    I have try to logon as TH. and i able to see some of Thai characters, and assigned it.. but the rest i'm lost.
    Could anybody help me on  this..
    Thanks
    Regards

    Hi in our system we are having this codepage:
    8600     Thai Codepage ISO988/2533
    1100     SAP internal, like ISO 8859-1        (00697/00819)
    Now.. my SPUM4 status is Preparation on start release finished. but with warnings
    @5D@     Vocabulary     31087 words have not been assigned a language
    @5D@     Reprocess Log     346 reprocess logs are not maintained completely
    @5D@     INDX Log     4 INDX logs are not maintained completely
    should i re-process all the warning ? , because words in the vocabulary it's self is very ambigous to me.
    Like this the one in IDX repair :
    AQQU/SAPQUERY/H0CM_05     "Lohnartenbetr&#3652;g | Lohnartenbetr&#3652;g | Verg&#63685;tungsbereich | Verg&#63685;tungsanpassungsgrund | Verg&#63685;tungsanpassungsart | Verg&#63685;tungsgrundgeh"     3
    the words in quote it's detected as text. but i think that is header fron the query.
    What should i do with the warnings ?
    Regards.

  • ECC 6 Dev  problem

    HI,
    I have 2 Dev Clients in ECC 6  one is gold and another one is unit test. I dont have any autharization for gold client.
    I am doing total migration steps in unit test client only. Now i need to change delta mode from direct delta to queued delta and set up V3 job .Client has changed that step in gold server but that's not reflected in unit test client.
    and i tried request copy in SCC1 also. its also not working.
    can u give me any suggestions on this.

    If they don't show in SAPMMC means that the services are not started... start the services open the MMC again and it all be there.
    Having said that, this is well known, please search before posting and read the "Rules of Engagement"
    Regards
    Juan

  • BB really slow and disconnection problems. Prepari...

    Hi all
    I've been having recent problems with my BB connection which resulted in a visit from an engineer last week. The engineer checked the master box and found no issues. He advised that I replace the cable connecting the hub to the master box as he thought it could be damaged and leading to the problem.  
    I've replaced the cable and microfilters throughout, reset the hub, moved the hub, tried wired and wireless connection, changed channels but I'm still getting really poor speeds and disconnections and its become totally unusable. I cant obtain a result from the BTspeedtest application as it continually says an error has occurred during the test (when I can get online at all).
    If I can get online when I get home I'll post up my exact hub stats. From memory the hub has remained connected for around 50hrs and the speeds are upstream 480kbps downstream 438kbps.
    Finally, in readiness for the 2nd engineer on Friday is there anything I should do, for example should I connect the hub to the test port on the master socket?
    Thanks in advance for your help.

    Ok folks,
    after removing the hub from the main BT socket (NTE5?) and connecting the hub directly to the test port I get an immediate improvement in download speeds. Stats below.
    What should my next course of action be, does that mean the socket is faulty or is something off somewhere else?
    BTspeedtest still shows the following error when I attempt a speedtest
    The Performance Tester could not perform Assured Rate throughput test , Please try again later.
    DSL Connection
    Link Information
    Uptime:
    0 days, 0:08:20
    Modulation:
    G.992.1 annex A
    Bandwidth (Up/Down) [kbps/kbps]:
    448 / 3,424
    Data Transferred (Sent/Received) [KB/KB]:
    281.00 / 856.00
    Output Power (Up/Down) [dBm]:
    11.5 / 19.5
    Line Attenuation (Up/Down) [dB]:
    26.0 / 43.0
    SN Margin (Up/Down) [dB]:
    17.0 / 9.0
    Vendor ID (Local/Remote):
    TMMB / ALCB
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    0 / 0
    Loss of Power (Local/Remote):
    0 / 0
    Loss of Link (Remote):
    0
    Error Seconds (Local/Remote):
    0 / 0
    FEC Errors (Up/Down):
    0 / 56
    CRC Errors (Up/Down):
    0 / 0
    HEC Errors (Up/Down):
    0 / 0
    Line Profile:
    Interleaved

Maybe you are looking for