Difference between Optical Transmit and Receive Power?

Hi all,
I'm running fine with a 3750X Stack, 3 TE plugged in and multiple GB's.
Now I'm following errors in my logs:
May 11 13:16:43 MET-1DS: %SFF8472-5-THRESHOLD_VIOLATION: Te1/1/2: Rx power high warning; Operating value:  -0.5 dBm, Threshold value:  -0.9 dBm.
May 11 13:25:39 MET-1DS: %SFF8472-5-THRESHOLD_VIOLATION: Te2/1/1: Rx power high warning; Operating value:   0.0 dBm, Threshold value:  -0.9 dBm.
May 11 13:26:43 MET-1DS: %SFF8472-5-THRESHOLD_VIOLATION: Te1/1/2: Rx power high warning; Operating value:  -0.4 dBm, Threshold value:  -0.9 dBm.
The port Te1/1/1 is clean. A "sh int te1/1/2 trans detail" shows a high value for "Optical Receive Power". Also te2/1/1 shows high value for Receive Power.
Is this an indicator for the remote module or cable?
IMHO transmit power would be a broken module in the switch, but receive power should be the module in the host or cable, correct?
Thanks
MB

Your distant end is transmitting at a level which, when combined with the actual loss over the transmission media cables(s) and patch panels(s), exceeds the input specifications of the transceivers in your stack.
If you can check the details on the transmitting end and compare them to specification that will tell you whether it is the culprit. If it is operating within specification, you can insert an optical attenuator at one end or the other to drop the light levels by a couple of dB.
Hope this helps.

Similar Messages

  • Difference between Receipts form and Receiving Transactions form

    Hi People,
    I have a doubt about two dorms. Firts I have created an Inter-Oranization Transfer generating the Shimpment num 1111.
    Then using Inventory Responsibility, I navigate to Transactions -> Receiving -> Receipts and find it withou any issue.
    But when I navigate to Transactions -> Receiving -> Receiving Transactiond, I am not able to find it. Why?
    Which is the difference between thos forms? Why I can see the transaction in one form but not in another?
    Thanks,
    Facundo.

    hi
    receiving can be configured to be a two-step process: first receive it in receving bay (using receipts form) and then deliverying to some storage area within warehouse (using receiving transaction form).
    on shipping network form, we can specify if we want to do receiving as 1-step (direct routing) or as 2-step (standard routing) or 3-step (inspection routing).
    in your case, there r two options:
    1. its a direct routing, so receiving transaction has already taken place...see receiving transaction summary form..
    2. receiving txn has gone to error status or is pending for processing. use receiving transaction status form to review if it is in pending/ error status.
    in case of pending...launch receiving transaction processor conc program....
    please check and set profile RCV: processing mode appropriately.
    thanks,
    hrishi

  • Difference between i book and power power?

    I am thinking about getting a Mac and I don't no the difference between a ibook and power book? someone please tell me!!!

    Here's a summary of both:
    http://www.apple.com/ibook/specs.html
    http://www.apple.com/powerbook/specs.html
    Summary: Powerbooks are abit faster,provide a bigger screen, a metal case, and are more expensive.

  • Difference between ncConfigCANNet.vi and ncConfigCANObj.vi

    What is the difference between ncConfigCANNet.vi and ncConfigCANObj.vi? What is a CAN Network Interface Object and a CAN Object? Can you give examples.
    Thanks,
    Peter

    Hi,
        I am getting -1074388736 error code with ncConfigCANObj.vi for message ID 1155 i.e 0x483. But for ID1156 there is no error.
    After this message I get the error code for all the other message(decreasing order)in the dbc file. Can somebody please help me.
    It is very urgent.
    The CAN Object Config Values are
    Period                                                  100
    Read Queue length                              0
    Write Queue Length                             0
    Receive Changes Only                       FALSE
    Communication Type                         Transmit Data By Call
    Transmit By Response                       FALSE
    Data Length                                         8
    Thanks,
    Siva

  • Re: what is difference between sap locking and database locking

    hi,
        what is difference between sap locking and database locking. Iam locked the table mara by using lock objects.
    But iam unable to unlock the mara table. I give u the coding. Please check it.
    REPORT zlock .
    CALL FUNCTION 'ENQUEUE_EZTEST3'
    EXPORTING
       MODE_MARA            = 'S'
       MANDT                = SY-MANDT
       MATNR                = 'SOU-1'.
    call transaction 'MM02'.
    CALL FUNCTION 'DEQUEUE_EZTEST3'
         EXPORTING
              mode_mara = 'E'
              mandt     = sy-mandt
              matnr     = 'SOU-1'.
    IF sy-subrc = 0.
      WRITE: 'IT IS unlocked'.
    ENDIF.

    Hi Paluri
    Here is the difference between SAP locks and Database locks, i will try to find the solution to your code.
    Regards
    Ashish
    Database Locks: The database system automatically sets database locks when it receives change statements (INSERT, UPDATE, MODIFY, DELETE) from a program. Database locks are physical locks on the database entries affected by these statements. You can only set a lock for an existing database entry, since the lock mechanism uses a lock flag in the entry. These flags are automatically deleted in each database commit. This means that database locks can never be set for longer than a single database LUW; in other words, a single dialog step in an R/3 application program.
    Physical locks in the database system are therefore insufficient for the requirements of an R/3 transaction. Locks in the R/3 System must remain set for the duration of a whole SAP LUW, that is, over several dialog steps. They must also be capable of being handled by different work processes and even different application servers. Consequently, each lock must apply on all servers in that R/3 System.
    SAP Locks:
    To complement the SAP LUW concept, in which bundled database changes are made in a single database LUW, the R/3 System also contains a lock mechanism, fully independent of database locks, that allows you to set a lock that spans several dialog steps. These locks are known as SAP locks.
    The SAP lock concept is based on lock objects. Lock objects allow you to set an SAP lock for an entire application object. An application object consists of one or more entries in a database table, or entries from more than one database table that are linked using foreign key relationships.
    Before you can set an SAP lock in an ABAP program, you must first create a lock object in the ABAP Dictionary.

  • What is difference between report programming and dialog programming?

    hi,
    what is difference between report programming and dialog programming? plz provide some example code
    bye

    ABAP programming
    Basically reports are used to read database and represent the results in lists.
    Reports are collections of processing blocks that the system calls depending on events.
    We can use reports to evaluate data from database tables.
    Reports are stand alone programs and controlled by events.
    A report itself never creates events
    steps in report:
    Processing the selection screen
    Reading the database
    Evaluating the data and creating lists
    Outputting a list.
    1st u write simple logics, after that u can enhance the code as step by step.
    http://venus.imp.mx/hilario/Libros/TeachYrslfAbap4/index.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802cfc454211d189710000e8322d00/frameset.htm
    http://www.sapdev.co.uk/reporting/reportinghome.htm
    Dialog Programming
    Structure of a Dialog Program
    A dialog program consists of the following basic components:
    Screens (dynpros)
    Each dialog in an SAP system is controlled by dynpros. A dynpro (DYnamic PROgram) consists of a screen and its flow logic and controls exactly one dialog step. The flow logic determines which processing takes place before displaying the screen (PBO-Process Before Output) and after receiving the entries the user made on the screen (PAI-Process After Input).
    The screen layout fixed in the Screen Painter determines the positions of input/output fields, text fields, and graphical elements such as radio buttons and checkboxes. In addition, the Menu Painter allows to store menus, icons, pushbuttons, and function keys in one or more GUI statuses. Dynpros and GUI statuses refer to the ABAP/4 program that control the sequence of the dynpros and GUI statuses at runtime.
    ABAP/4 module pool
    Each dynpro refers to exactly one ABAP/4 dialog program. Such a dialog program is also called a module pool, since it consists of interactive modules. The flow logic of a dynpro contains calls of modules from the corresponding module pool. Interactive modules called at the PBO event are used to prepare the screen template in accordance to the context, for example by setting field contents or by suppressing fields from the display that are not needed. Interactive modules called at the PAI event are used to check the user input and to trigger appropriate dialog steps, such as the update task.
    All dynpros to be called from within one transaction refer to a common module pool. The dynpros of a module pool are numbered. By default, the system stores for each dynpro the dynpro to be displayed next. This dynpro sequence or chain can be linear as well as cyclic. From within a dynpro chain, you can even call another dynpro chain and, after processing it, return to the original chain.
    Check this link for basics.
    http://sap.mis.cmich.edu/sap-abap/abap09/index.htm
    Check this link for Dialog Programming/Table Control
    http://www.planetsap.com/Tips_and_Tricks.htm#dialog
    Check this SAP Help for Dialog Program doc.
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    Check this SAP Help link for Subscreens.
    http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm
    Check this link for subscreen demo program.
    http://abapcode.blogspot.com/2007/05/demo-program-to-create-subscreen-in.html
    Also check this link too.
    http://abapcode.blogspot.com/2007/06/dialog-programming-faq.html
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/frameset.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/sld004.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/52/670ba2439b11d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/52/670c17439b11d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/52/670c17439b11d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9ccf35c111d1829f0000e829fbfe/frameset.htm
    http://abapprogramming.blogspot.com/

  • Difference between open loop and closed loop mode when finding the index on a stepper motor axis.

    I have a test system which uses a PXI-7352 motion controller with a MID-7602 stepper motor drive to position a 200 step/revolution stepper motor with an attached 1000 line encoder.  The MID-7602 is configured for 64 microsteps per step, giving 12,800 microsteps and 4000 encoder counts per revolution.  The system is controlled using LabView 7.1 and NI-Motion 6.13.  To home the motor, I've defined a sequence in MAX which first finds the reverse limit switch and then moves forward to the encoder index pulse.
    When finding its reference in open loop mode, the system its reference at the same microstep each time.  When findings its reference in closed loop mode, the system finds its reference somewhere within about a 20 microstep wide range.
    I hope somebody out there with more experience with this controller can describe the difference between finding the encoder index in open loop mode and finding the encoder index in closed loop mode. 
    Thanks,
    Mark Moss

    Hello Mark,
    I suspect that the behavior you are experiencing has today
    with the resolution difference between your encoder and your
    microstepping.  Let me illustrate with an
    example:
    Example Setup
    Stepper
    Motor
    NI
    Motion Controller
    10
    steps per encoder pulse (Every 10 steps the controller gets an encoder
    pulse, therefore positions 0-9 all appear to be 0 to the controller)
    The
    system has a maximum of 3 pull in moves set
    Open Loop Scenario
    The
    system is commanded to go to position 9.
    The
    controller sends out 9 pulses.
    The
    motor moves to position 9.
    Closed Loop Scenario
    The
    system is commanded to go to position 9.
    The
    controller sends out 9 pulses.
    The
    motor moves to position 9.
    The
    controller checks its position and sees that it is still at position 0
    because it has not received an encoder pulse.
    Because
    the controller thinks it is still at position 0, it sends another 9 pulses
    as its first pull in move.
    The
    motor moves to position 18.
    The
    controller checks its position and sees that it is at position 10 because
    it has only received one encoder pulse.
    Because
    the controller thinks it is still at position 10, it sends1 reverse pulse
    as its second pull in move.
    The
    motor moves to position 17.
    The
    controller checks its position and sees that it is at position 10 because
    it has only received one encoder pulse.
    Because
    the controller thinks it is still at position 10, it sends and additional
    single reverse pulse as its third pull in move.
    The
    motor moves to its final position of 16.
    I believe something similar is happening with your
    application as it looks for the index pulse. 
    Because the controller does not compensate for what it perceives as
    position error in open loop mode, the motor always goes to the same commanded
    position.  In closed loop mode, the motor
    is bouncing around inside the single index encoder pulse trying to find a
    certain position.
    There are several recommendations I can make towards
    correcting this behavior.  These
    recommendations are in order of effectiveness:
    Setup
    your system so that there are more encoder counts per revolution than
    steps per revolution.
    Turn
    off pull-in moves by setting them to 0 in MAX.
    Use an
    open loop configuration.
    Play
    around with the pull in window in MAX.
    Regards,
    Luke H

  • Difference between primary key and primary index

    Dear All,
             Hi... .Could you pls tell me the difference between primary key and primary index.
    Thanks...

    Hi,
    Primary Key : It is one which makes an entry of the field unique.No two distinct rows in a table can have the same value (or combination of values) in those columns.
    Eg: first entry is 111, if you again enter value 111 , it doesnot allow 111 again. similarly for the strings or characters or numc etc. Remember that for char or numc or string 'NAME' is not equal to 'name'.
    Primary Index: this is related to the performance .A database index is a data structure that improves the speed of operations in a table. Indices can be created using one or more columns, providing the basis for both rapid random lookups and efficient ordering of access to records. The disk space required to store the index is typically less than the storage of the table (since indices usually contain only the key-fields according to which the table is to be arranged, and excludes all the other details in the table), yielding the possibility to store indices into memory from tables that would not fit into it. In a relational database an index is a copy of part of a table. Some databases extend the power of indexing by allowing indices to be created on functions or expressions. For example, an index could be created on upper(last_name), which would only store the uppercase versions of the last_name field in the index.
    In a database , we may have a large number of records. At the time of retrieving data from the database based on a condition , it is a burden to the db server. so whenever we create a primary key , a primary index is automatically created by the system.
    If you want to maintain indices on other fields which are frequently used in where condition then you can create secondary indices.
    Reward points if helpful.
    Thanks,
    Sirisha..

  • What is the difference between jsp :include and server side include

    what is the difference between jsp :include and server side include(request dispatcher include method)????
    i understand that both request dispatcher include method and jsp:include take dynamic data,so when would one use request dispatcher include and when jsp:include.
    Is the usage interchangeable?i believe jsp include is used only for jsp/html but include directive can be used to include servlets ,jsp and html....correct me if i m wrong and
    do suggest if u hav ny other diff in this context...

    The difference really is: in what format do you want your inclusions? If your environment has many Java developers and only a few designers that focus mainly on, say, Flash, that might push you more towards the server-side include() directive. Or, if you have a large set of pages that receive dynamic content that is displayed in a consistent fashion (such as a workflow header area on a page).
    If, on the other hand, you have more web designers, there may be a greater desire to deal in markup rather than Java code. Java developers themselves might prefer to view markup (JSP) that more resembles the eventual output than something occuring in Java code.
    Finally, there are considerations of tiering. While it is totally possible to (and I have previously) implement 'view classes' that render markup or generate layout templates, JSP's offer, IMO, a subtle, psychological advantage. By forcing a developer to work in a different format, markup versus Java source, the separation on view from controller and model becomes a bit easier. It is still possible to make mistakes, but if a developer at some point notices, "Wait, I'm in a JSP, should I be importing a java.sql class?", then the choice to use JSP includes has paid off in spades.
    - Saish

  • Difference between Transaction Figures and Line Items

    Hi,
    I gone through FI like FI-GL,FI-AR,FI-AP..there i find...
    Line Items & Transaction figures as main...like
    in FI we have
    Line Items - 0FI_GL_4,0FI_AR_4,0FI_AP_4 etc...
    Transaction Figures - 0FI_GL_6,0FI_AR_6,0FI_AP_6 etc...
    Now Can some please explain...
    what exactly Line Items are?
    What exactly Transaction Figures are?
    How data flows from end to end in FI? i.e where exactly GL,AR,AP comes into picture..how they are internally related?
    Some one please explain me in detail (with expamles if possible) and quick reply is much appreciated...
    Regards
    Ramsunder

    Hi
    What exactly  line items :
    Line items are document items that were posted to a specific account. In contrast to a document item a line item only contains the information from the document that is relevant from the account view.
    You can display the following line items:
    Open items, Cleared items, Noted items, Parked items ,Items with special G/L transactions (in Accounts Receivable and Accounts Payable),Items with customer or vendor items (in Accounts Receivable and Accounts Payable)
    You can display the line items for the following account types:  Customer accounts,Vendor accounts,G/L accounts.
    What exactly Transaction Figures are?
    Transaction figures are the sums of line items on the debit or credit side. The balance is the difference between the debit and the credit transaction figure.
    If you take General ledger
    AP records all accounting transactions for dealings with suppliers(Vendors). Much of its data is obtained from procurement (Materials Management).
    AR records all accounting transactions for dealings with customers. Much of its data is obtained from Sales and Distribution.
    Asset Accounting records all accounting transactions relating to the management of assets.
    Travel Management manages and calculates travel costs and supports travel planning and travel expenses.
    Bank ledger supports the posting of cash flows.
    Regards
    Chandra Sekhar T

  • Feature set difference between FI-AR and FI-CA

    Hi,
    While I am trying to do a comparison analysis between FI-AR/AP and FI-CA for Insurance Industry, I can deduce various facts like FI-CA been developed for transaction extensive industries like telecom/insurance which might often need automated processing (FI-AR appears to have more of manual processes for handling aspects of incoming payments) along with required performance. FI-AR/AP are more of standard Accounts receivable/payable module not necessarily catering to exact needs of industries mentioned above. Another major difference is the more flexible master data model FI-CA has to offer compared to FI-AR/AP.
    However, I am not able to deduce clearly if there are corresponding features available in FI-AR/AP for specific features available in FI-CA for handling incoming & outgoing payments. e.g.:
    1) Is bank reconciliation supported in FI-AR/AP? Do we have mechanisms to upload electronic bank statement for the same?
    2) Does FI-AR provides varying features like different lot processing in FI-CA for bulk processing, Cash desk (i know this is not supported in FI-AR). The process of clearing appears to be very manual intensive.
    3) Similarly what is the support for payments (especially automated for bulk processing) in FI-AP? 
    4) Assume other insurance industry specific features like brokers collection, collection agency collections, co-insurance specific features etc. are not supported in FI-AR/AP and no corresponding features would exist for obvious reasons.  
    Please suggest any other major differences between FI-CA and FI-AR/AP from an Insurance/Reinsurance industry perspective you may know of.
    Thanks in advance for your time.
    Regards,
    Ankit

    Ravindra,
    1) Check the configuration.
    Data from SD is posted to accounts (FI/PCA) via condition type -> accout key -> access sequence -> account.
    Data from SD is posted to SIS via the mapping of condition type to key figures.
    2) Check if values are posted to sales accounts directly from FI. These will not reflect in SIS.
    Mohit

  • What's difference between iphone 4 and 4s?

    i bought an iphone 4 9months ago and the software was upgraded to iOS5 last month. since then i noticed that by the time i used to connect my iphone into my pc the itunes did not sync so i'd just tolerate as not a big deal for me... this is the problem that i have. yesterday evening, my iphone 4 was connected to my pc at the same downloading viber again from itunes at the moment i wanted to disconnect my iphone its dead! shut it off. i kept on switching evry10sec but there was no power. i knew there's enough battery as it connected in my pc. well, i gave up and leave it but 36hrs after when i'd tried again to switch on i saw on the lcd battery icon is red So i've charged immediately. now fine! i just want to share with you this experience... why its like this. Thanks there.

    what's difference between iphone 4 and 4s?
    Go here and see what's new:  http://www.apple.com/iphone/

  • Difference between Credit memo and subsequent credit

    All SAP Gurus,
    In MIRO, what is the difference between Credit memo and subsequent credit?
    Regards,

    Difference between Credit memo and subsequent debits/credits
    Subsequent Debits/Credits are used in cases where the quantity is in the original invoice is to remain the same. For eg.
    PO  10 - $10
    Gr   10 - $10
    LIV 10 - $11 (Logistics Invoice Verification)
    The vendor invoice is more than that in the Purchase Order. In order to correct, the Vendor may send in another invoice for
    the Increased amount or a credit memo for the increased amount.
    If you approve of the price increase, post the subsequent invoice received as a Subsequent Debit/Credit Invoice.
    If it is a credit memo that has been received, then post the credit memo as Subsequent Debit/Credit.
    This would retain the quantity but reduce the amount.
    Subsequent Debit/Credit is for the case when the credit is not for the full amount eg. if the Vendor decided to credit
    only the $1 overcharged.
    Credit memo is for the credit of the full amount and value.

  • What are the major differences between the air and the pro

    what are the major differences between the air and the pro?

    In a nutshell, the Air is a lightened, more compact system than the 13" Pro counterpart. The Air loses some hardware features to accommodate the physical downsizing.
    No FireWire port
    No built-in optical drive
    A lesser performing CPU to retain battery charge life, and adequate cooling.
    No Ethernet port
    No Kensington lock slot
    The Air does have a superior native resolution at 1440 x 900, and a standard SSD that does make up alot of the speed differential, and then some. Of course, the 13" Pro can be optionally configured with an SSD.
    You buy the Air if the physical size an weight savings are demonstrably more important than the features lost.

  • Difference between Free goods and BOM (ERLA)

    Hi,
    Could any body throw some light on the Difference between Free goods and BOM(ERLA) to clarify my weired thought.
    AS of what i know is Free goods is 1:1 ratio.
    The main item will be prices and sub item will be free .
    Than same thing is also With BOM (ERLA)
    Regards,
    Venksys

    Hi Venksys
    Please note as given below :
    Free Goods : This function allows you to offer your customers a product free of charge in the form of free goods when a certain quantity of products is ordered. Free goods is a kind of quantity discount, and is granted in the form of a goods delivery that is free of charge when a certain quantity is purchased. There are Two types of free goods :
    1.Inclusive : The customer only pays for part of the goods ordered. The rest of the products are provided at no extra cost. For example, a customer orders  for 3 bottels but pays for 2 bottels  and 1 is supplied free .
    2.Exclusive - The customer pays for the goods ordered, and also receives additional products for free. The materials delivered as free goods will not be the same as that of ordered onces. For examples customer orders 5 bottels , but will receive 1 Bottle opener free.
    BOM : It consists  of 2 or more items combined and sold as an package : Example : Combination of 1 Tooth paste  + 1 tooth brush  packed as BOM.
    The Higher level Material ( BOM) is  not relevant for pricing but relevant for picking : The tooth paste and brush is relevant for pricing  and also can be sold independently : The Item cat group of the Header BOM material will be ERLA  and for Tooth paste and brush material the Item category group will have TAN.
    For more details , please refer to the  link below:
    http://www.sap-img.com/sap-sd/what-is-bom-referring-to-sap-sd.htm
    Thanks and regards
    Veera
    Edited by: veera PV on Jan 24, 2011 9:06 AM

Maybe you are looking for

  • Windows 8.1 Pro x64 update issue

    Hi. Having installed Windows 8.1 Pro x64 on my business laptop (installed all drivers, fully updated it from Microsoft . . .) I joined it to the domain and installed needed apps. Then I put it in OU where updating of all computers inside that OU was

  • How do I export a movie from imovie to a particular mobileme album

    The Mobileme Gallery option in the Share menu of iMovie does not provide for exporting to a particular mobileme album. What is the best way to do this?

  • Dynamically changing the size of KM document IView.

    Hi All, At present the framework page has 3 KM document Iview. All iviews are calling HTML files. Now if the content in HTML file increases, I get an scroll bar for that Iview. Also based on the resolution of the screen I get the scrollbar. e.g I hav

  • **Urgent**: GO_ITEM to pop-up CANVAS with IMAGE in Sun JRE gives error

    Our Forms 10g Environment is this: Forms [32 Bit] Version 10.1.2.0.2 (Production) using Sun JRE i.e. Java Plug-in 1.6.0_06 Problem is that when we try to navigate to a canvas (from a Button) which has an IMAGE ITEM the form is exited. This happens in

  • Query/Enumerate eDirectory in Powershell via System.DirectoryServices

    Hello Scripting Guy,     I have been tasked with taking a .Net program/project and converting it to PowerShell.  The .Net program exported three sources of information and inserts those exports into a SQL database for multiple functions and reasons.