LLDP between Nexus5K and HP VC module

Hi all,
Has anyone of you ever connected a N5K to a HP Virtual Connect module and run LLDP on this connection ?
In my lab, they don't seem to be compatible as the N5K doesn't see anything ? I though LLDP was a vendor-independent standard ?
# sh lldp neigh
LLDP Neighbors
PS. I am running NX-OS 4.1(3)N2(1a)
regards,
Geert

Yesterday, I just upgraded from 2.33 to 3.16.
I encountered problems :
     VCM must be in BAY 1
     VCM must me alone in BAY 1 or with a VCM module in BAY 2 (I tryed with GbE2c in BAY 2)
I used vcsu 1.5.2 and all workded fine.
Before these upgrades, all the blade and the enclosure (C3000) where in lastest version.
BIOS : 2010-25-10 B
iLo2 : 2.05
OA : 3.21
Then I plugged the VCM and made the upgrade.

Similar Messages

  • Differences between R12 and 11i by module wise.

    Hi All,
    Could any one please give me the knowledge stack on "differences between R12 and 11i by module wise".
    Thanks,
    RED.

    Please refer to:
    Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404152.1
    Oracle Applications Concepts
    http://download.oracle.com/docs/cd/B40089_09/current/acrobat/120oacg.pdf
    Note: 433111.1 - Release 12 File System Changes : R12 Vs 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=433111.1
    Edited by: hsawwan on Feb 6, 2009 7:12 PM -- Added couple of helpful links/notes

  • Difference between poh and pov in module pool programming

    hi all,
                       pls tell me difference between poh and pov and how i check validation in screen

    Hi,
    POV gives you F4 help.
    like:
    You can call dialog modules in the POV event using the event keyword PROCESS ON VALUE-REQUEST.
    PROCESS ON VALUE-REQUEST.
      FIELD f MODULE mod.
    After the PROCESS ON VALUE-REQUEST statement, you can only use the MODULE statement together with the FIELD statement. When the user chooses F4 for a field f, the system calls the module mod belonging to the FIELD statement. If there is more than one FIELD statement for the same field f, only the first is executed. The module mod is defined in the ABAP program like a normal PAI module. However, the contents of the screen field f are not available, since it is not transported by the FIELD statement during the PROCESS ON HELP-REQUEST event. You can now program your own value lists in the module. However, this procedure is only recommended if it really is not possible to use a search help. Defining search helps is much easier than PROCESS ON VALUE-REQUEST, since the system takes over some of the standard operations, such as getting field contents from the screen. It also ensures that the F4 help has a uniform look and feel throughout the system. Furthermore, it means that you do not have to reassign input help to fields on each screen.
    Despite the introduction of search helps (and search help exits), there are still cases in which you need to use parts of the standard F4 functions directly. In this case, there are some standard function modules that you can use in the POV event. They support search helps, as well as all other kinds of input help, and are responsible for data transport between the screen and the input help. These alll  have the prefix F4IF_. The most important are:
    ·        F4IF_FIELD_VALUE_REQUEST
    Calls the input help of the ABAP Dictionary dynamically. You can pass the component names of a structure or database table of the ABAP Dictionary to the function module in the import parameters TABNAME and FIELDNAME. The function module starts the ABAP Dictionary input help for this component. All of the relevant screen fields are read. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user’s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead.
    ·        F4IF_INT_TABLE_VALUE_REQUEST
    This function module displays a value list that you created in an ABAP program. The self-programmed value list is passed to the function module as the table parameter VALUE_TAB. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user’s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead.
    There are also two function modules - DYNP_VALUES_READ and DYNP_VALUES_UPDATE - that can read the values of screen fields and return values to them during the POV event. For further information, refer to the relevant function module documentation.
    Input help in dialog modules
    REPORT demo_dynpro_f4_help_module.
    TYPES: BEGIN OF values,
             carrid TYPE spfli-carrid,
             connid TYPE spfli-connid,
           END OF values.
    DATA: carrier(3) TYPE c,
          connection(4) TYPE c.
    DATA: progname TYPE sy-repid,
          dynnum   TYPE sy-dynnr,
          dynpro_values TYPE TABLE OF dynpread,
          field_value LIKE LINE OF dynpro_values,
          values_tab TYPE TABLE OF values.
    CALL SCREEN 100.
    MODULE init OUTPUT.
      progname = sy-repid.
      dynnum   = sy-dynnr.
      CLEAR: field_value, dynpro_values.
      field_value-fieldname = 'CARRIER'.
      APPEND field_value TO dynpro_values.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE value_carrier INPUT.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
           EXPORTING
                tabname     = 'DEMOF4HELP'
                fieldname   = 'CARRIER1'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'CARRIER'.
    ENDMODULE.
    MODULE value_connection INPUT.
      CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                dyname             = progname
                dynumb             = dynnum
                translate_to_upper = 'X'
           TABLES
                dynpfields         = dynpro_values.
      READ TABLE dynpro_values INDEX 1 INTO field_value.
      SELECT  carrid connid
        FROM  spfli
        INTO  CORRESPONDING FIELDS OF TABLE values_tab
        WHERE carrid = field_value-fieldvalue.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield    = 'CONNID'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'CONNECTION'
                value_org   = 'S'
           TABLES
                value_tab   = values_tab.
    ENDMODULE.
    *POH gives you F1 documentation:*
    like:
    If data element supplement documentation is insufficient for your requirements, or you want to display help for program fields that you have not copied from the ABAP Dictionary, you can call dialog modules in the POH event:
    PROCESS ON HELP-REQUEST.
      FIELD  is defined in the ABAP program like a normal PAI module. The processing logic of the module must ensure that adequate help is displayed for the field in question. Instead of calling an extra screen with text fields, you should use one of the following function modules to display a suitable SAPscript document:
    HELP_OBJECT_SHOW_FOR_FIELD
    This function module displays the data element documentation for components of any structure or database table from the ABAP Dictionary. You pass the name of the component and structure or table to the import parameters FIELD and TABLE.
    HELP_OBJECT_SHOW
    Use this function module to display any SAPscript document. You must pass the document class (for example, TX for general texts, DE for data element documentation) and the name of the document to the import parameters DOKCLASS and DOKNAME. For technical reasons, you must also pass an empty internal table with the line type TLINE to the tables parameter of the function module.
    For further information about how to create SAPscript documents, refer to the  Documentation of System Objects documentation.
    Field help on screens.
    REPORT DEMO_DYNPRO_F1_HELP.
    DATA:  TEXT(30),
           VAR(4),
           INT TYPE I,
           LINKS TYPE TABLE OF TLINE,
           FIELD3, FIELD4.
    TABLES DEMOF1HELP.
    TEXT = TEXT-001.
    CALL SCREEN 100.
    MODULE CANCEL INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE F1_HELP_FIELD2 INPUT.
      INT = INT + 1.
      CASE INT.
        WHEN 1.
        VAR = '0100'.
        WHEN 2.
        VAR = '0200'.
        INT = 0.
      ENDCASE.
    ENDMODULE.
    MODULE F1_HELP_FIELD3 INPUT.
      CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD'
           EXPORTING
                DOKLANGU                      = SY-LANGU
                DOKTITLE                      = TEXT-002
                CALLED_FOR_TAB                = 'DEMOF1HELP'
                CALLED_FOR_FIELD              = 'FIELD1'.
    ENDMODULE.
    MODULE F1_HELP_FIELD4 INPUT.
      CALL FUNCTION 'HELP_OBJECT_SHOW'
           EXPORTING
                DOKCLASS                      = 'TX'
                DOKLANGU                      = SY-LANGU
                DOKNAME                       = 'DEMO_FOR_F1_HELP'
                DOKTITLE                      = TEXT-003
           TABLES
                LINKS                         = LINKS.
    ENDMODULE.
    Regards,
    Renjith Michael

  • TARIF - difference between Feature and Indirect Evaluation Module

    Greetings,
    What is the difference between feature Tarif that is used to default payscale area /ps type and Indirect eval module used for wagetypes ?
    How is this used, applied ?
    Thanks
    AP

    Ms Datar,
    Well described, Thanks. Understood that Valuation module for wage type has nothing to do with Feature Tarif.
    However, I also found Indirect Valuation Module called TARIF with variants -A,B,C, D.
    TARIF
    Valuation according to the "collective agreement group and level" specifications you enter in the IMG step:
    Module variant 'A'
    Country grouping derived from the employee's personnel area
    Pay scale type from infotype 0008/0052
    Pay scale area from infotype 0008/0052
    Pay scale indicator derived from the employee subgroup
    Pay scale group from infotype 0008/0052
    Pay scale level from infotype 0008/0052
    Wage type = SPACE
    Therefore, now i understand as : Feature Tarif defaults Payscale values in IT8 .
    and Ind Val Module Tarif ( A) reads the payscale values in IT8 and leaves the wagetype blank with no amount ?
    Is this correct ?

  • Link between Treasury And PS/IM module

    Hi
    Is there any link between the treasury and PS module?
    The exactrequirment is like this
    We have IM/PS and Treasury module implemented here.
    As the budgets are assigned to the Invetsment program, they need a report from treasy cash flow with all the budgetary values assigned to investment program (or to the projects.)
    Regards

    Solved:
    with a work around.
    HINT: once commitment are created,values will be update in FI/treasury

  • What is the difference between LH and LX modules?

    I would like to know the difference between LX and LH SFP modules. Long Haul ( LH ) denotes longer distances while Long Wavelength ( LX ) denotes less energy which is obviously shorter distance. Why does Cisco use both LX and LH for certain SFP modules?
    Do they denote the capability of the module to work both for MM ( which will be Long wavelength ) and SM ( Long Haul ) fiber? Do correct me if i am wrong.
    What does it infer if a modules says like "Cisco 1000BASE-LX/LH SFP" ?

    What does it infer if a modules says like "Cisco 1000BASE-LX/LH SFP
    Generally a module is either made for single mode (More distance) / multimode (short distance). But this module can be used for both Single mode and Multimode.
    If used with SM fiber it can go upto 10Km
    It used with MM it can go upto 550meters (depend on what kind os MM fiber you have) You need a mode conditioning patch chord too with legacy MM i think OM1 and 2.
    Long Haul ( LH ) denotes longer distances while Long Wavelength ( LX ) denotes less energy which is obviously shorter distance. Why does Cisco use both LX and LH for certain SFP modules
    Read this link and dont worry about LX/LH (You will ge tthe distance mentiond above depending on the type of fibe ryou are using)
    http://en.wikipedia.org/wiki/Gigabit_Ethernet
    Before it was standardized 1000BASE-LX10 was essentially already in widespread use by many vendors as a proprietary extension called either 1000BASE-LX/LH or 1000BASE-LH

  • Interface between sockmod and udp

    Hi,
    where can find info on interface between sockmod and udp stream modules. Iam specifically looking for how sockmod and udp/tcp modules inform each other of the destination ip/port numbers, source port number etc... any help would be greatly appreciated.
    Thanks,
    Surya

    Hi,
    In our case we are using
    IDOC-XI--SOAP ( For all Outbound scenarios)
    In this case ask abt wsdl files for SOAP Structure
    HTTPXI--IDOC ( For all Inbound scenarios)
    In this case POS will directly post the message to intergration server direcly by using parameters like namespace , IS details
    Regards
    Seshagiri

  • Difference between ME_READ_PO_FOR_PRINTING and ME_PRINT_PO

    I just saw these 2 function modules in standard PO printing program SAPFM06P. Can someone please let me know whatz the difference between ME_READ_PO_FOR_PRINTING and ME_PRINT_PO function modules...

    Hi friend......
    The function module ME_READ_PO_FOR_PRINTING is  used to read the PO
    The function module  ME_PRINT_PO is used to print the PO
    if u want let u know some more information
    How can i get PO partner functions using FM ME_READ_PO_FOR_PRINTING
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-mm/tcode-me9f-user-exit-exit_saplmedruck_001-617362

  • Difference between RV_PRICE_PRINT_ITEM and RV_PRICE_PRINT_ITEM_BUFFER FMs

    Hi Experts,
    I want to know the difference between RV_PRICE_PRINT_ITEM and RV_PRICE_PRINT_ITEM_BUFFER function modules.
    Both FMs are meant to fetch all pricing condtions for document.
    Thanks in advance,
    Sagar

    In the calculation schema you can customize your conditions. E.G: if they shall be printed or not.
    So the FM gets you back two tables of conditions.
    TKOMV (ALL of em)
    TKOMVD (Just the ones that are marked as to be printed)
    Those ones from TKOMVD are the ones you need for invoice printing.
    But for calculation issues or whatever you may need to have a look at some conditions which are not marked as to be printed and so you get TKOMV back to be able to do so.

  • Diff Between LISTBOX and LISTBOX KEY

    Hi
    Can any one tel the difference between listbox and listboxkey in module pool

    Hi,
    Listbox display only the list of particular filed values.
    But listbox key is displayed list of values with technical names
    like example,,.....
    Listbox: Company Codes
    SAP A.G.
    E.R. Squibb & Sons LLC
    BMS Westwood
    BMS Puerto Rico Inc
    BMS Manufacturing Company
    W.W. Med Grp-Syr Tech Ops
    B-M Products
    Mead Johnson Nutritional
    OTN, JV
    OTNAT
    OTN Online
    BMS Pharma Co.
    BMS Medical Imaging Inc
    BMS Pharma Ltd
    BMS Radiopharmaceuticals
    Squibb Manufactoring, Inc
    But in List box with key, it displays with country key also like
    0001      SAP A.G.
    0020      E.R. Squibb & Sons LLC
    0031      BMS Westwood
    0055      BMS Puerto Rico Inc
    0064      BMS Manufacturing Company
    0105      W.W. Med Grp-Syr Tech Ops
    0109      B-M Products
    0111      Mead Johnson Nutritional
    0127      OTN, JV
    0129      OTNAT
    0413      OTN Online
    0450      BMS Pharma Co.
    0451      BMS Medical Imaging Inc
    0454      BMS Pharma Ltd
    0455      BMS Radiopharmaceuticals
    0464      Squibb Manufactoring, Inc
    hope it is useful for u.............

  • Tonal change between develop and library module

    After having applied some changes in the develop module when I switch back to the library module I am experiencing a sever foreground tonal change? I can add that the foreground in this particular photo had a grad filter applied. The tone shifts from a cool blue to a purple? Shooting with a nikon d5100 with ADL turned off as per other similar problems brought up in this forum. Which by the way I still experience but have learned to live with is that after import of RAW picture looks good for about a second then exposure changes.

    dennis4g1 wrote:
    After having applied some changes in the develop module when I switch back to the library module I am experiencing a sever foreground tonal change? I can add that the foreground in this particular photo had a grad filter applied. The tone shifts from a cool blue to a purple?
    Are you using a calibrated/profiled monitor?  In Develop module, LR displays in ProPhoto colour space, in Library module it's Adobe RGB.  If the monitor doesn't have a proper profile there could be differences in view between Develop and Library.  However I would have thought LR would default to assuming monitors behave like sRGB if there's no profile (or no colour space info in the profile). 
    dennis4g1 wrote:
    ...Which by the way I still experience but have learned to live with is that after import of RAW picture looks good for about a second then exposure changes.
    The usual cause for that is that Adobe can't read Nikon proprietary metadata such as Picture control settings.  If you shoot with the Nikon Picture Control setting (Standard, Portrait or whatever) at default settings, and if you use the corresponding profile in Lightroom's "Camera Calibration" panel (Camera Standard, Camera Portrait etc) then the appearance should be very close to the out-of-camera jpeg preview appearance. 

  • Color shift between Library and Develop module

    Hi,
    I recently noticed a color shift between in the image when going from the library to the develop module. Yes, I know this is mentioned in the FAQ, but I did not find the solutions given there to be satisfactory.
    Let me explain what happens: I have taken Photos with my Canon EOS 300D, in Jpeg mode with Color Space in the Camera set to AdobeRGB. The photos I am talking about were taken with Tungsten light with auto white balance and have a distinct orange color cast. I use Windows XP and view my Photos on a LCD Display calibrated with the Pantone Huey system. The Lightroom Library Module and Photoshop CS2 both display the original image almost identically (there are no changes applied inside Lightroom or Photoshop, I view the original image in both applications). Photoshop is set to use the Adobe RGB Color space as its working Color space, Softproofing is switched off. However, when I switch to the Develop Module, the colors (especially the orange hues) shift very noticably toward pink. I can only assume that the Colorspace conversion or maybe some implicit soft proof used differs between the modules. So, to restate the problem: If I switch back and forth between Library and Develop, without changing anything and in 1:1 view to avoid errors introduced by different zooming methods, the colors shift quite drastically back and forth.
    I have to say that this is really quite annoying. The whole point for me to use the develop module is to use it to make adjustments to the colors, and for this to work properly I have to see the same colors in both modules and in Photoshop. There is no point in correcting a pink color cast away in Develop that is not even there in either the library module or Photoshop (and that would then have a stronger orange tint because I tried to counter the pink tint in develop).
    So this leads me to the final question: Is it possible to tell Develop to use the exact same color settings as the Library Module? Or is there another way to compensate for the color shift?
    I hope I was clear in what happens and what I tried to do. If it helps I can gladly provide a sample photograph that clearly illustrates the point.
    Thank you in advance for your help,
    Daniel

    Thanks for your comments, Don and Fred. I hope that this issue will be worked on soon.
    Fred, I have set the Preview Quality to High, but it doesn't seem to make any differences concerning the color shift. I have investigated this matter further by now and made the following observations:
    *The color shift is a lot less noticable on my laptop (the laptop screen is also color profiled). On my laptop the change is more of a subtle shift in contrast than in color. This might be caused by the smaller color gammut of my laptop display though.
    *I have uploaded a testimage so that others can check if this shift occurs at their workstations too - after all, it might be a misconfiguration of my color management software, though I doubt that (because Adobe already states that library and develop render different previews). I would be interested if the color shift I describe is noticable at other workstations too. The link to the testimage: http://www.danyx.com/colorshift.jpg (permission to use the image to test the color reproduction is of course granted hereby).
    Thanks for your help, I hope Adobe will listen soon,
    Daniel

  • What is the difference between subroutine and function module?

    What is the difference between subroutine and function module?

    Hi,
    they can both return values.
    FMs are mainly used when a routine is to be performed by many programs.
    Subroutines (forms) are generally only executed within one program.
    You can perform routines from other programs, but it's not often done.
    both forms and FMs are reusable modularization units.
    To distinguish we generally say that forms are used for internal modularization and
    FMs are used for external modularization.
    To decide on which to implement, consider whether you need the content to be used just for a limited program
    or wheteher it can be called from many independent programs.
    For the first purpose it is better to implement a form whereas for the second we implement an FM.
    However, ABAP does not isolate the usage context.
    That is; you can call a form from another program within whose code the form is not actually implemented.
    However, this requires attention since the form may utilize global variables.
    The same issue holds for FMs.
    FMs are encapsulated in function groups and function groups may have global variables that can be globally
    used by all FMs inside it.
    Thanks,
    Reward If Helpful.

  • Could any one tell me what is the difference between swfloader and module loader?

    Hi  All,
                          Could any one tell me what is the difference between SWFLoader and Module Loader in Flex3 in detail?

    Hi,
    ModuleLoader is a kind of strange API that is really just intended to look like SwfLoader for modules that contain a single visual component, and hides most of the module loading infrastructure, which is all about class factories.
    What I mean by "only loaded once" is that if you have several places in the code that call the ModuleManager.getModule("url").load() call, it will only ever get loaded over the wire and interpreted once, subsequent "loads" will just re-dispatch pseudo-load events to the new client.  In other words, the class factory is a singleton for a given url. Unloading is a totally different story.  As you note, not everything is truly unloadable, because there may be lots of references to stuff in
    the module that will keep it alive and un-GC'ed.
    I suggest playing with the low-level API so that you understand the backing implementation, and this should help you understand the limits of ModuleLoader.
    The main difference between modules and applications is that modules have lower overhead, and they only ever get loaded once, no matter how many times you load them. If you're using the ModuleLoader API, keep in mind that you're losing about half the functionality of the module system.  I will assume that you are, because otherwise it would be obvious where to expose methods.  You might want to play around with the lower level ModuleManager API just to get a hang of what's going on - ModuleLoader is a pretty thin veneer over the lower API.                
                    Basically, what you want to do is to have your module implement an interface, say IModuleWhatever.
    Also try and refer to this link which was previously discussed in this forum..
    http://forums.adobe.com/message/74404
    Thanks,
    Bhasker

  • Interface between business ware house system and SAP SD module

    hi,
    I want to develop interface between business ware house system(file adapter) and SAP SD module.  how can i post the data into SD system? can any one tell me which Idoc i should use in receiver side?
    if i want to go abap proxy how can do it?
    give some inputs(methods which i should use)
    Thanks in advance
    regards
    Ruban

    Hey
    the selection of IDOC depends upon what you wanna post into SD.get in touch with the ABAP guys and they should be able to tell u exactly which IDOC to use.
    once u have decided on IDOC,you can go for a File to IDOC scenario.
    as far as proxies are concerned,they kinda give better performance compared to IDOC but you need to do ABAP coding for them,in that case u dont need any IDOC
    Thanx
    Aamir

Maybe you are looking for

  • Meu Ipad é o iOS 5.1.1, somente wi-fi.

    Meu Ipad é o 3, com iOS 5.1.1, somente wi-fi. O Itunes já é o 11. Antes eu consegui sincronizar músicas do Itunes com o Ipad sem problemas. Mas agora não consigo.O Itunes diz que não é possível conectar-se ao Ipad.O que devo fazer?

  • Adobe reader "An internal error has occurred."

    Using OSX10.10.1 on Mac Air. I can not open Adobe reader.   It responds with "An internal error has occurred." I have uninstalled Reader and removed to trash all files from libraries related to reader, emptied the trash and have repaired permissions

  • "Send link" inserts plain text into an email instead of a hyperlink. How do I correct this?

    I got a new computer and installed Firefox. Previously, when is sent a link to a website, the URL automatically pasted as a hyperlink. Now it shows up as plain text requiring the recipient of my email to cut and paste the URL into his browser. How do

  • Oracle apps workflows

    Hi Team, sql query for Finding the  Workflow name, type, product, creation & update dates order by Product in oracle apps Thanks, chandu

  • No receiver found;

    Hi, Scenario : IDOC --> XI --> JMS Here i has configured the ReceiverCC properly, but when i trigger the IDOC am getting the error saying that, No receiver found; message stopped but has no errors Please give me any suggestions here and i cross check