Information on PI Interfaces

Hi All,
How can we determine whether a interface is simple,medium or complex before building PI interfaces,and also effort estimation
for a interfaces.

Hi Vidya,
There is not an easy answer, you should use your experience in this.
When you have the requirements, you need to know quickly if you would need an easy/medium/complex message mapping, if you need a XSL o java mapping the difficulty increase. Also the adapter chosen has importance. For example, if you need a jdbc adapter and you need to install the drivers.
Summing up, you can consider for you complexity estiamtion:
1. Mapping difficulty.
2. Adapter configuration. RFC, HTTP, SOAP, FILE without FCC, etc are easy; IDOC, FILE with FCC medium, JDBC and JMS difficult. (At least form me )
3. You need a ccBPM o SAP NW BPM.
Regards.

Similar Messages

  • How can I get RTE information in operator interface (LV) from TS API?

    Hi!
    I have operator interface in Labview and use TS API to run tests.
    I would like to eliminate RTE dialog and to show error messages directly in front panel control.
    I have created callback for TS Application Manager BreakOnRTE event.
    It works good and I can lock dialog apearance.
    But if I try to get ErrorObject from event parameter (execution) is is empty (has no error information).
    But this parameter is real execution which contains step with RTE.
    When I allow the dialog appearance in this callback, it contains RTE information.
    Where can I get error information from this callback or get it any another way?
    Thanks in advance for any assistance.
    Solved!
    Go to Solution.

    I have found the way to get RTE from callback BreakOnRunTimeError of ApplicationMgr.
    This way is:
     Execution->GetThread[0]->GetSequenceContext[0]->GetRuntimeErrorMessageEx().
    It was not clear for me: all Error fields in step and Sequence are not filled yet on callback time.
    Only the context method can return error message.
    The question is closed.

  • How to get log information about any interface...scenario etc

    I have created an package which loads file in a perticular folder dynamically.
    here after loading each file i want to maintain the log i.e number of records inserted,updated,deleted,error etc,i came to know that in work repository snp_session,snp_sess_task_log, will have the statistics.but in these table records loaded available in the insert step.how do i query these tables properly,how do i get session no other information from odi.
    plz help me.
    Jai

    Thank u.
    I got one more way to solve this.
    SELECT <%=odiRef. getPrevStepLog("sess_no")%> FROM DUAL
    we can use this statement in a variable.
    After execution of the interface we can use this variable which lets us to know session_no of previous interface then we can use this session_no to get the log by quering tables in work_rep.
    Regards,
    Jai

  • SNMP inform request source-interface

    Instead of using SNMP TRAPS I would like to use INFORM requests. When I receive TRAPS everything is working correcty. When I receive INFORM requests, the source interface is reported wrong.
    My config:
    snmp-server trap-source Loopback0
    snmp-server source-interface informs Loopback0
    snmp-server enable traps snmp linkup
    snmp-server enable traps config
    snmp-server host 10.101.1.15 inform version 2c public
    snmp-server host 10.101.1.15 version 2c public
    The TRAPS report their source address as Loopback0 but the INFORMS report their source address as FastEthernet0.

    Hello,
    we are also migrating from traps to informs and I can see that this source-interface issue is still open. I can confirm it is happening on Cisco 7609-S with IOS: 12.2.(33)SRD5, SRD6 and SRE2.
    In bug toolkit I can see it opened for 6500 under CSCtc43231 (http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtc43231) but there is no any SR release under affected versions.
    If anyone knows any workaround, I would appreciate it a lot.
    Thanks in advance!

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi,
    I need information about actionscript interfaces and
    namespaces, I'm preparing for ACE for Flash CS3 and I need to learn
    about this subjects and I can not find resources or simple examples
    that make these subjects understandable.
    Anybody can help me!
    Thanks a lot.

    Interfaces (cont.)
    Perhaps the most useful feature of interfaces is that you not
    only can define the data type but also method signature of the
    class that implements this interface. In other words, interface can
    define and enforce what methods class MUST implement. This is very
    useful when classes are branching in packages and team of
    developers works on a large application among others.
    The general syntax for an Interface with method signatures is
    written the following way:
    package{
    public interface InterfaceName {
    // here we specify the methods that will heave to be
    implemented
    function method1 (var1:dataType,
    var2:datType,…):returnType;
    function method2 (var1:dataType,
    var2:datType,…):returnType;
    To the previous example:
    package{
    public interface IQualified {
    function method1 ():void;
    function method2 ():int;
    Let’s write a class that implements it.
    If I just write:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    public function ClassOne(){}
    I will get a compilation error that states that I did not
    implement required by the interface methods.
    Now let’s implement only one method:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    public function ClassOne(){}
    I will get the error again because I implemented only one out
    of two required methods.
    Now let’s implement all of them:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    private function method2():int{
    return 4;
    public function ClassOne(){}
    Now everything works OK.
    Now let’s screw with return datatypes. I attempt to
    return String instead of void in method1 in ClassOne:
    private function method1():String{
    return “blah”;
    I am getting an error again – Interface requires that
    the method1 returns void.
    Now let’s attempt to pass something into the method1:
    private function method1(obj:MovieClip):void{
    return;
    Oops! An error again. Interface specified that the function
    doesn’t accept any parameters.
    Now rewrite the interface:
    package{
    public interface IQualified {
    function method1 (obj:MovieClip):void;
    function method2 ():int;
    Now compiler stops complaining.
    But, if we revert the class back to:
    private function method1():void{
    return;
    compiler starts complaining again because we don’t pass
    any parameters into the function.
    The point is that interface is sort of a set of rules. In a
    simple language, if it is stated:
    public class ClassOne implements IQualified
    it says: “I, class ClassOne, pledge to abide by all the
    rules that IQualified has established and I will not function
    correctly if I fail to do so in any way. (IMPORTANT) I can do more,
    of course, but NOT LESS.”
    Of course the class that implements an interface can have
    more that number of methods the corresponding interface requires
    – but never less.
    MORE means that in addition to any number of functions it can
    implement as many interfaces as it is desired.
    For instance, I have three interfaces:
    package{
    public interface InterfaceOne {
    function method1 ():void;
    function method2 ():int;
    package{
    public interface InterfaceTwo {
    function method3 ():void;
    package{
    public interface InterfaceThree{
    function method4 ():void;
    If our class promises to implement all three interface it
    must have all four classes in it’s signature:
    package{
    public class ClassOne extends DisplayObject implements
    InterfaceOne, InterfaceTwi, InterfaceThree{
    private function method1():void{return;}
    private function method2():int{return 4;}
    private function method3():void{return;}
    private function method4():void{return;}
    public function ClassOne(){}
    Hope it helps.

  • Remote Access VPN and NAT inside interface

    Hi everyone,
    I have configured Remote VPN access.
    Inside interface and vpn pool is 10.0.0.0 subnet.
    ASA inside interface has NAT exempt as per config below
    nat (inside,outside) source static NETWORK_OBJ_10.0.0.0_24 NETWORK_OBJ_10.0.0.0_24 destination static NETWORK_OBJ_10.0.0.0_25 NETWORK_OBJ_10.0.0.0_25 no-proxy-arp route-lookup
    object network NETWORK_OBJ_10.0.0.0_24
    subnet 10.0.0.0 255.255.255.0
    object network NETWORK_OBJ_10.0.0.0_25
    subnet 10.0.0.0 255.255.255.128
    Also i have ASA inside interface connected to R1 as below
    R1 ---10.0.0.2------------inside int  IP 10.0.0.1--------ASA
    R1 has loopback int 192.168.50.1 and ASA has static route to it.
    When i connect to remote access vpn i can ping the IP 192.168.50.1 from My pc which is connected to outside interface of ASA.
    This ping works fine.
    Mar 04 2014 21:58:27: %ASA-6-302020: Built inbound ICMP connection for faddr 10.0.0.52/1(LOCAL\ipsec-user) gaddr 192.168.50.1/0 laddr 192.168.50.1/0 (ipsec-user                                                                                        )
    Mar 04 2014 21:58:28: %ASA-6-302021: Teardown ICMP connection for faddr 10.0.0.52/1(LOCAL\ipsec-user) gaddr 192.168.50.1/0 laddr 192.168.50.1/0 (ipsec-user) Mar 04 2014 21:58:27:
    Need to understand how this ping works without exempting 192.168.50.0 from natiing
    or
    how does nat work for above ping from 10.0.0.52 VPN user PC IP to loopback interface of R1 in regards to NATing?
    Regards
    Mahesh

    Hi Jouni,
    IP address to PC is 10.0.0.52 ---------Assigned to Client PC.
    Leting you  know that i have removed the NAT below config from inside to outside interface 
    ASA inside interface has NAT exempt as per config below
    nat (inside,outside) source static NETWORK_OBJ_10.0.0.0_24 NETWORK_OBJ_10.0.0.0_24 destination static NETWORK_OBJ_10.0.0.0_25 NETWORK_OBJ_10.0.0.0_25 no-proxy-arp route-lookup
    object network NETWORK_OBJ_10.0.0.0_24
    subnet 10.0.0.0 255.255.255.0
    object network NETWORK_OBJ_10.0.0.0_25
    subnet 10.0.0.0 255.255.255.128
    Still ping works fine from VPN client PC to IP 192.168.50.1
    Packet tracer output
    ASA1# packet-tracer input outside  icmp 10.0.0.52 8 0 192.168.50.1
    Phase: 1
    Type: ROUTE-LOOKUP
    Subtype: input
    Result: ALLOW
    Config:
    Additional Information:
    in   192.168.50.1    255.255.255.255 inside
    Phase: 2
    Type: ACCESS-LIST
    Subtype: log
    Result: ALLOW
    Config:
    access-group outside_access_in in interface outside
    access-list outside_access_in extended permit ip any host 192.168.50.1 log
    access-list outside_access_in remark Allow Ping to Loopback IP of R1 Which is inside Network of ASA1
    Additional Information:
    Phase: 3
    Type: NAT
    Subtype: per-session
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 4
    Type: IP-OPTIONS
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 5
    Type: CP-PUNT
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 6
    Type: INSPECT
    Subtype: np-inspect
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 7
    Type: VPN
    Subtype: ipsec-tunnel-flow
    Result: DROP
    Config:
    Additional Information:
    Result:
    input-interface: outside
    input-status: up
    input-line-status: up
    output-interface: inside
    output-status: up
    output-line-status: up
    Action: drop
    Drop-reason: (acl-drop) Flow is denied by configured rule
    I can ping from PC command prompt to IP 192.168.50.1 fine.
    Here is second packet tracer
    ASA1# packet-tracer input inside icmp 192.168.50.1 8 0 8.8.8.8
    Phase: 1
    Type: ROUTE-LOOKUP
    Subtype: input
    Result: ALLOW
    Config:
    Additional Information:
    in   0.0.0.0         0.0.0.0         outside
    Phase: 2
    Type: ACCESS-LIST
    Subtype: log
    Result: ALLOW
    Config:
    access-group inside_access_in in interface inside
    access-list inside_access_in extended permit ip any any
    Additional Information:
    Phase: 3
    Type: NAT
    Subtype: per-session
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 4
    Type: IP-OPTIONS
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 5
    Type: INSPECT
    Subtype: np-inspect
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 6
    Type: INSPECT
    Subtype: np-inspect
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 7
    Type: DEBUG-ICMP
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 8
    Type: DEBUG-ICMP
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 9
    Type: NAT
    Subtype: per-session
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 10
    Type: IP-OPTIONS
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    Phase: 11
    Type: FLOW-CREATION
    Subtype:
    Result: ALLOW
    Config:
    Additional Information:
    New flow created with id 18033, packet dispatched to next module
    Result:
    input-interface: inside
    input-status: up
    input-line-status: up
    output-interface: outside
    output-status: up
    output-line-status: up
    Action: allow
    So question is how ping from outside is working without nat exempt from inside to outside?
    So does second packet tracer proves that i have no NAT config from loopback to outside and ping works because i have NO NAT configured?
    Regards
    Mahesh
    Message was edited by: mahesh parmar

  • APEX and 11.5.10 Payables Open Interface Tables

    Hi,
    Wanted to see if APEX would be a tool that could be used to connect to oracle application interface tables and load data from a spread sheet into the ap_invoices_interface and ap_invoice_lines_interface tables. Once this is done the information could be interfaced into the application.
    Has anyone done this?
    Thanks in advance for any responses.

    Scott,
    Do you have experience in how to populate Oracle eBusiness Suite Open Interface tables with Excel-data using a APEX form/report/process?
    If so, can you give me a clue how to do it? Uploading CSV will not work, because of treating text-fields as numbers. Our item numbers look like numbers, but must be handled as text. Example: 002.112.002
    Regards,
    Geert.

  • Pros & Cons of Using SAP PI Interfaces for Report Generation

    Hi Guru's
    I have a Scenario's like
    I have to generate a customized report in SAP with the main data's available in SAP ECC and some required data available in the Legacy System.
    I want to know the Pros & cons of using SAP PI RFC/Proxy adapter interface to get the data from the legacy system for each time the user execute the report in SAP ECC.
    Thanks in Advance

    There are couple of "dimensions" to consider in your PI interface design. For exemple when you are running the sizing exercise (Since we are considering adding a net new interface), you will need to capture specific information about new interface.i.e. S/A, adapters, frequency, avg payload size. etc..Note that the last two attributes will be hard to size properly in this case since you can't predict how frequent the end user will run the report which will impact the latency time required to pull the data. Latency will affect the user experience as visible side affect and definitely the SLA for other interfaces running at the same time.
    On the other hand, the data you are trying to retrieve from the legacy won't be used for transactional purpose but for the end user to pull KPIs from the system which can affect ECC as well. You may end up doing lot hot fixes for your report (Assuming that the report is a medium complexity code)
    There are other factors to consider but let's consider these are the major one.
    Cheers,
    F

  • Troubleshoot CRS with 100GE interface

    Hi guys,
    We have some trouble with 100GE interfaces. Log says it's a far end failure, but anyway I would like to discard this side.
    Looking at the output of "show controllers hundredGigE 0/13/0/0 all" I really can't tell everything's Ok.
    I would like to understand a few things about this output:
    100GBASE-LR4 has 4 lanes, but there are 20 lanes listed in section
      "Mapping of Service Interface Lane and RX PCS Lane:"
    What does PCS mean?
    What might be the root cause of current PCS Lane BIP Error Counters?
    Is there anything I would need to check on plim, pse, etc?
    Also, any reading material will be appreciated.
    Here you have the command output:
    show controllers hundredGigE 0/13/0/0 all
    Tue Oct 22 16:38:40.597 BsAs
    Operational data for interface HundredGigE0/13/0/0:
    State:
        Administrative state: enabled
        Operational state: Up
        LED state: Green On
    Phy:
        Media type: R fiber over 4 Lane optics (long reach)
        Optics:
            Vendor: CISCO-FINISAR
            Part number: FTLC1181RDNS-C2
            Serial number: FIN1636000W
    MAC address information:
        Operational address: 001d.454d.8412
        Burnt-in address: 001d.454d.8412
        No unicast addresses in filter
        Operating in multicast promiscuous mode
    Autonegotiation disabled.
    Operational values:
        Speed: 100Gbps
        Duplex: Full Duplex
        Flowcontrol: None
        Loopback: None (or external)
        MTU: 9200
        MRU: 9200
        Inter-packet gap: standard (12)
    Statistics for interface HundredGigE0/13/0/0 (cached values):
    Ingress:
        Input total bytes           = 1104715
        Input good bytes            = 1081503
        Input total packets         = 5803
        Input 802.1Q frames         = 0
        Input pause frames          = 0
        Input pkts 64 bytes         = 6
        Input pkts 65-127 bytes     = 3377
        Input pkts 128-255 bytes    = 1706
        Input pkts 256-511 bytes    = 293
        Input pkts 512-1023 bytes   = 313
        Input pkts 1024-1518 bytes  = 108
        Input pkts 1519-Max bytes   = 0
        Input good pkts             = 5803
        Input unicast pkts          = 5790
        Input multicast pkts        = 10
        Input broadcast pkts        = 3
        Input drop overrun          = 0
        Input drop abort            = 0
        Input drop invalid VLAN     = 0
        Input drop invalid DMAC     = 0
        Input drop invalid encap    = 0
        Input drop other            = 0
        Input error giant           = 0
        Input error runt            = 0
        Input error jabbers         = 0
        Input error fragments       = 0
        Input error CRC             = 0
        Input error collisions      = 0
        Input error symbol          = 15579
        Input error other           = 0
        Input MIB giant             = 0
        Input MIB jabber            = 0
        Input MIB CRC               = 0
    Egress:
        Output total bytes          = 2862870
        Output good bytes           = 2836906
        Output total packets        = 6491
        Output 802.1Q frames        = 0
        Output pause frames         = 0
        Output pkts 64 bytes        = 4
        Output pkts 65-127 bytes    = 3587
        Output pkts 128-255 bytes   = 1186
        Output pkts 256-511 bytes   = 244
        Output pkts 512-1023 bytes  = 16
        Output pkts 1024-1518 bytes = 1454
        Output pkts 1519-Max bytes  = 0
        Output good pkts            = 6491
        Output unicast pkts         = 6455
        Output multicast pkts       = 35
        Output broadcast pkts       = 1
        Output drop underrun        = 0
        Output drop abort           = 0
        Output drop other           = 0
        Output error other          = 0
    Management information for interface HundredGigE0/13/0/0:
    Port number: 0
    Bay number: 0
    Interface handle: 0x1d80100
    Config:
        Auto-negotiation: Configuration not supported (Off)
        Carrier delay (up): Not configured
        Carrier delay (down): Not configured
        Speed: Configuration not supported (100Gbps)
        Duplex: Configuration not supported (Full Duplex)
        Flow Control: Not configured (None)
        IPG: Configuration not supported (standard (12))
        Loopback: Not configured (None)
        MTU: 9192 bytes
        Bandwidth: Not configured
        BER-SD Threshold: Configuration not supported
        BER-SD Report: Configuration not supported
        BER-SF Threshold: Configuration not supported
        BER-SF Report: Configuration not supported
        BER-SF Signal Remote Failure: Configuration not supported
    Driver constraints:
        Min MTU: 64 bytes
        Max MTU: 9600 bytes
        Max speed: 100Gbps
        Interface type: HundredGigE
        Management interface: No
        Promiscuous mode: Yes
        Default carrier delay up (auto-neg on): 0 ms
        Default carrier delay down (auto-neg on): 0 ms
        Default carrier delay up (auto-neg off): 0 ms
        Default carrier delay down (auto-neg off): 0 ms
        Allowed config mask: 0x26b
    Cached driver state:
        MTU: 9200 bytes
        Burnt-in MAC address: 001d.454d.8412
    Operational carrier delay:
        Carrier delay (up): 0 ms
        Carrier delay (down): 0 ms
    Not a member of a bundle interface.
    Satellite uplink settings:
        Not in satellite uplink (ICL) mode.
    Port FSM state:
        Port is enabled, link is up
    Complete FSM state:
        Admin up
        Client admin up
        Client admin tx not disabled
        Port enabled
        Port tx enabled
        Hardware link up
    IDB interface state information:
        IDB client admin up
        IDB client tx admin up
        IDB error disable not set
    0 Unicast MAC Addresses:
    0 Multicast MAC Addresses:
    Operational address: 001d.454d.8412
    Burnt-in address: 001d.454d.8412
    MAC state for beluga 0 port 0
    MAC state for barbur 0 and port 0
    0 HSRP/VRRP MAC addresses
    VLAN Ethertype: 0x8100
    QinQ Ethertype: 0x88a8
    MTP  Ethertype: 0x88e7
    4 VLAN UIDB entries
    VLAN1   VLAN2      Packet Type Flags      UIDB Result Flags
       0        0          VLAN                  1 VLAN
       0        0               ARPA             1 ARPA
       0        0                    SAP         1 SAP
       0        0                                1 SNAP
    PLIM 1 Port HundredGigE Internal Information:
    shmwin pointer: 0x581d4268
    shmwin id     : 0x3c
    shmwin initlization: complete
    shmwin mac stats pointer: 0x60106020
    shmwin mac stats version: 0x1
    shmwin ctx pointer: 0x6010e07c
    shmwin ctx version: 0x1
    HW initilization: completed
    Maximum CFP power class supported: 4
    Maximum CFP power consumption supported: 30000 mW
    802.3ba PCS
      Previous PCS Alarms:
        None
      Current PCS Status:
        PCS is able to support 100GBASE-R
        PCS is Block Locked
        PCS Rx Link Status is UP
        PCS Errored Block Counts: 25
        PCS BER (Sync Header Error) Counts: 1
    PCS detailed information:
      RX Service Interface Lane Sync Header Lock Status:
        Lane-0 : Locked           Lane-10 : Locked
        Lane-1 : Locked           Lane-11 : Locked
        Lane-2 : Locked           Lane-12 : Locked
        Lane-3 : Locked           Lane-13 : Locked
        Lane-4 : Locked           Lane-14 : Locked
        Lane-5 : Locked           Lane-15 : Locked
        Lane-6 : Locked           Lane-16 : Locked
        Lane-7 : Locked           Lane-17 : Locked
        Lane-8 : Locked           Lane-18 : Locked
        Lane-9 : Locked           Lane-19 : Locked
      RX Service Interface Lane Marker Lock Status:
        Lane-0 : Locked           Lane-10 : Locked
        Lane-1 : Locked           Lane-11 : Locked
        Lane-2 : Locked           Lane-12 : Locked
        Lane-3 : Locked           Lane-13 : Locked
        Lane-4 : Locked           Lane-14 : Locked
        Lane-5 : Locked           Lane-15 : Locked
        Lane-6 : Locked           Lane-16 : Locked
        Lane-7 : Locked           Lane-17 : Locked
        Lane-8 : Locked           Lane-18 : Locked
        Lane-9 : Locked           Lane-19 : Locked
      Mapping of Service Interface Lane and RX PCS Lane:
        Rx Service Interface Lane 0 = PCS Lane 13
        Rx Service Interface Lane 1 = PCS Lane 11
        Rx Service Interface Lane 2 = PCS Lane 14
        Rx Service Interface Lane 3 = PCS Lane 15
        Rx Service Interface Lane 4 = PCS Lane 17
        Rx Service Interface Lane 5 = PCS Lane 12
        Rx Service Interface Lane 6 = PCS Lane 10
        Rx Service Interface Lane 7 = PCS Lane 9
        Rx Service Interface Lane 8 = PCS Lane 16
        Rx Service Interface Lane 9 = PCS Lane 8
        Rx Service Interface Lane 10 = PCS Lane 7
        Rx Service Interface Lane 11 = PCS Lane 4
        Rx Service Interface Lane 12 = PCS Lane 3
        Rx Service Interface Lane 13 = PCS Lane 5
        Rx Service Interface Lane 14 = PCS Lane 6
        Rx Service Interface Lane 15 = PCS Lane 19
        Rx Service Interface Lane 16 = PCS Lane 2
        Rx Service Interface Lane 17 = PCS Lane 18
        Rx Service Interface Lane 18 = PCS Lane 0
        Rx Service Interface Lane 19 = PCS Lane 1
      PCS Lane BIP Error Counters:
        Lane-0 : 2071             Lane-10 : 0
        Lane-1 : 1415             Lane-11 : 0
        Lane-2 : 1530             Lane-12 : 0
        Lane-3 : 0                Lane-13 : 0
        Lane-4 : 0                Lane-14 : 0
        Lane-5 : 0                Lane-15 : 0
        Lane-6 : 0                Lane-16 : 0
        Lane-7 : 0                Lane-17 : 0
        Lane-8 : 0                Lane-18 : 1815
        Lane-9 : 0                Lane-19 : 1603
      Total PCS Lane BIP Error Count : 8434
      Total PCS Lane Sync Header Error Count  : 520
      Total PCS Lane Bad 64/66 Code Count     : 9180
    Serdes section:
    ===============
    None of 10 RX serial inputs detects loss of signal.
    All of 10 Tx clock multiplication units are locked.
    All of 10 Rx clock/data recovery units are locked.
    None of 10 TX FIFO has underflow/overflow condition.
    None of 10 RX FIFO has underflow/overflow condition.
    CFP section:
    ==============
    CFP General Information:
      Module Identifier:         CFP
      Ethernet Application Code: 100GBASE-LR4
      Module State:              Ready
      Power Class:               3
      Maximum Power Consumption: 23000 mW
    CFP Vendor Information:
      Vendor Name:         CISCO-FINISAR
      Vendor PN:           FTLC1181RDNS-C2
      Vendor SN:           FIN1636000W
      Vendor OUI:          0x0-0x90-0x65
      Lot Code:            00
      DATE CODE(YYYY/MM/DD): 2012/09/05
      CFP MSA Hardware Version:   1.4
      CFP MSA MDIO Version:       1.4
      Vendor Hardware Version:    1.4
      Vendor Firmware Version:    1.5
    CFP UDI Information:
      UDI Compliant: Yes
      Cisco PID: CFP-100G-LR4
      Cisco VID: V01
    CFP Cisco Information:
      Vendor Name: CISCO-FINISAR
      Cisco PN   : 10-2549-01    Rev A0
      Cisco SN   : FIN1636000W
    CFP Detail Information:
      Number of lanes supported:
        Number of network lanes: 4
        Number of host lanes   : 10
      Time required by module:
        Maximum high-power-up time  :   4 s
        Maximum high-power-down time:   1 s
        Maximum tx-turn-on time     :   1 s
        Maximum tx-turn-off time    : 150 ms
      Module general control:
        Soft reset asserted     : No
        Soft low power asserted : No
        Soft tx disable asserted: No
        Soft program control 3 asserted: No
        Soft program control 2 asserted: No
        Soft program control 1 asserted: No
        Soft global alarm test asserted: No
        Tx disable pin asserted: No
        Low power pin asserted : No
        Program control 3 pin asserted: Yes
        Program control 2 pin asserted: Yes
        Program control 1 pin asserted: Yes
      Module Analog A/D value:
        Power supply voltage : 3.2549 V
        Temperature          : 33.2496 degC
      Network lane A/D value:
        Lane 0 Tx power: 1.1091 mW (  0.4 dBm)
        Lane 1 Tx power: 1.1127 mW (  0.5 dBm)
        Lane 2 Tx power: 1.0976 mW (  0.4 dBm)
        Lane 3 Tx power: 1.1271 mW (  0.5 dBm)
        Lane 0 Rx power: 0.0438 mW (-13.6 dBm)
        Lane 1 Rx power: 0.1116 mW ( -9.5 dBm)
        Lane 2 Rx power: 0.1022 mW ( -9.9 dBm)
        Lane 3 Rx power: 0.0915 mW (-10.4 dBm)
        Total Tx power : 4.4465 mW (  6.5 dBm)
        Total Rx power : 0.3491 mW ( -4.6 dBm)
    No XGXS present
    PCS 802.3ba Registers:
    ========================
    Control 1 = 0x0010
    Status 1 = 0x0004
    Dev ID 0 = 0x0000 Dev ID 1 = 0x0000
    Speed Ability = 0x0008
    Devices 1 = 0x0004 Devices 2 = 0x0000
    Control 2 = 0x0005
    Status 2 = 0x0020
    PKG ID 0 = 0x0000 PKG ID 1 = 0x0000
    Base R Status 1 = 0x1001
    Base R Status 2 = 0x8117
    BER high order counter = 0x0000
    Errored blocks high order counter = 0x8000
    Base R test pattern control = 0x0080
    Base R test pattern error counter = 0x0000
    Multi-lane BASE-R alignment status 1 = 0x10ff
    Multi-lane BASE-R alignment status 2 = 0x0fff
    Multi-lane BASE-R alignment status 3 = 0x00ff
    Multi-lane BASE-R alignment status 4 = 0x0fff
    BIP error counter lane 0 = 0x0002
    BIP error counter lane 1 = 0x0002
    BIP error counter lane 2 = 0x0004
    BIP error counter lane 3 = 0x0000
    BIP error counter lane 4 = 0x0000
    BIP error counter lane 5 = 0x0000
    BIP error counter lane 6 = 0x0000
    BIP error counter lane 7 = 0x0000
    BIP error counter lane 8 = 0x0000
    BIP error counter lane 9 = 0x0000
    BIP error counter lane 10 = 0x0000
    BIP error counter lane 11 = 0x0000
    BIP error counter lane 12 = 0x0000
    BIP error counter lane 13 = 0x0000
    BIP error counter lane 14 = 0x0000
    BIP error counter lane 15 = 0x0000
    BIP error counter lane 16 = 0x0000
    BIP error counter lane 17 = 0x0000
    BIP error counter lane 18 = 0x0007
    BIP error counter lane 19 = 0x0005
    Lane mapping register 0 = 0x000d
    Lane mapping register 1 = 0x000b
    Lane mapping register 2 = 0x000e
    Lane mapping register 3 = 0x000f
    Lane mapping register 4 = 0x0011
    Lane mapping register 5 = 0x000c
    Lane mapping register 6 = 0x000a
    Lane mapping register 7 = 0x0009
    Lane mapping register 8 = 0x0010
    Lane mapping register 9 = 0x0008
    Lane mapping register 10 = 0x0007
    Lane mapping register 11 = 0x0004
    Lane mapping register 12 = 0x0003
    Lane mapping register 13 = 0x0005
    Lane mapping register 14 = 0x0006
    Lane mapping register 15 = 0x0013
    Lane mapping register 16 = 0x0002
    Lane mapping register 17 = 0x0012
    Lane mapping register 18 = 0x0000
    Lane mapping register 19 = 0x0001
    Serdes registers:
    ==================
    Chip id register: 0x8154
    Chip revision id register: 0x4
    Digital control 1 register register:
      serdes0:0x017a, serdes1:0x017a, serdes2:0x017a, serdes3:0x017a, serdes4:0x017a
      serdes5:0x017a, serdes6:0x017a, serdes7:0x017a, serdes8:0x017a, serdes9:0x017a
    Digital control 2 register register:
      serdes0:0x0305, serdes1:0x0305, serdes2:0x0305, serdes3:0x0305, serdes4:0x0305
      serdes5:0x0305, serdes6:0x0305, serdes7:0x0305, serdes8:0x0305, serdes9:0x0305
    Digital control 3 register register:
      serdes0:0x0d0f, serdes1:0x0d0f, serdes2:0x0d0f, serdes3:0x0d0f, serdes4:0x0d0f
      serdes5:0x0d0f, serdes6:0x0d0f, serdes7:0x0d0f, serdes8:0x0d0f, serdes9:0x0d0f
    Digital control 5 register register:
      serdes0:0x6de0, serdes1:0x6de0, serdes2:0x6de0, serdes3:0x6de0, serdes4:0x6de0
      serdes5:0x6de0, serdes6:0x6de0, serdes7:0x6de0, serdes8:0x6de0, serdes9:0x6de0
    Digital status 0 register register:
      serdes0:0x303b, serdes1:0x303b, serdes2:0x303b, serdes3:0x303b, serdes4:0x303b
      serdes5:0x303b, serdes6:0x303b, serdes7:0x303b, serdes8:0x303b, serdes9:0x303b
    Line PRBS control register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    Line PRBS status register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    System PRBS control register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    System PRBS status register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    PRBS status 2 register register:
      serdes0:0x8008, serdes1:0x8008, serdes2:0x8008, serdes3:0x8008, serdes4:0x8008
      serdes5:0x8008, serdes6:0x8008, serdes7:0x8008, serdes8:0x8008, serdes9:0x8008
    TX control 1 register register:
      serdes0:0x1884, serdes1:0x1884, serdes2:0x1884, serdes3:0x1884, serdes4:0x1884
      serdes5:0x1884, serdes6:0x1884, serdes7:0x1884, serdes8:0x1884, serdes9:0x1884
    TX control 2 register register:
      serdes0:0x00a0, serdes1:0x00a0, serdes2:0x00a0, serdes3:0x00a0, serdes4:0x00a0
      serdes5:0x00a0, serdes6:0x00a0, serdes7:0x00a0, serdes8:0x00a0, serdes9:0x00a0
    TX control 4 register register:
      serdes0:0x3012, serdes1:0x2812, serdes2:0x3012, serdes3:0x3012, serdes4:0x2c12
      serdes5:0x2812, serdes6:0x2c12, serdes7:0x2c12, serdes8:0x2c12, serdes9:0x2812
    TX control 7 register register:
      serdes0:0x1077, serdes1:0x1077, serdes2:0x1077, serdes3:0x1077, serdes4:0x1077
      serdes5:0x1077, serdes6:0x1077, serdes7:0x1077, serdes8:0x1077, serdes9:0x1077
    TX control 8 register register:
      serdes0:0xb800, serdes1:0xb800, serdes2:0xb800, serdes3:0xb800, serdes4:0xb800
      serdes5:0xb800, serdes6:0xb800, serdes7:0xb800, serdes8:0xb800, serdes9:0xb800
    TX LVDS contrl 1 register register:
      serdes0:0x6050, serdes1:0x6050, serdes2:0x6050, serdes3:0x6050, serdes4:0x6050
      serdes5:0x6050, serdes6:0x6050, serdes7:0x6050, serdes8:0x6050, serdes9:0x6050
    TX LVDS contrl 2 register register:
      serdes0:0x3ba1, serdes1:0x3ba9, serdes2:0x3ba9, serdes3:0x3ba1, serdes4:0x3ba1
      serdes5:0x3ba9, serdes6:0x3ba9, serdes7:0x3ba9, serdes8:0x3ba9, serdes9:0x3ba9
    TX LVDS contrl 3 register register:
      serdes0:0x3ba1, serdes1:0x3ba9, serdes2:0x3ba9, serdes3:0x3ba1, serdes4:0x3ba1
      serdes5:0x3ba9, serdes6:0x3ba9, serdes7:0x3ba9, serdes8:0x3ba9, serdes9:0x3ba9
    RX control 2 register register:
      serdes0:0x222c, serdes1:0x2224, serdes2:0x222c, serdes3:0x222c, serdes4:0x222c
      serdes5:0x2228, serdes6:0x2228, serdes7:0x2228, serdes8:0x2228, serdes9:0x2228
    RX control 3 register register:
      serdes0:0x1611, serdes1:0x1611, serdes2:0x1611, serdes3:0x1611, serdes4:0x1611
      serdes5:0x1611, serdes6:0x1611, serdes7:0x1611, serdes8:0x1611, serdes9:0x1611
    RX control 4 register register:
      serdes0:0x40c9, serdes1:0x50c9, serdes2:0x50c9, serdes3:0x40c9, serdes4:0x40c9
      serdes5:0x50c9, serdes6:0x50c9, serdes7:0x50c9, serdes8:0x50c9, serdes9:0x50c9
    RX control 6 register register:
      serdes0:0x081a, serdes1:0x081a, serdes2:0x081a, serdes3:0x081a, serdes4:0x081a
      serdes5:0x081a, serdes6:0x081a, serdes7:0x081a, serdes8:0x081a, serdes9:0x081a
    RX control 7 register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    RX control 8 register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    RX control 9 register register:
      serdes0:0x0000, serdes1:0x0000, serdes2:0x0000, serdes3:0x0000, serdes4:0x0000
      serdes5:0x0000, serdes6:0x0000, serdes7:0x0000, serdes8:0x0000, serdes9:0x0000
    RX LVDS contrl 1 register register:
      serdes0:0x0bfa, serdes1:0x0bba, serdes2:0x0bba, serdes3:0x0bba, serdes4:0x0bba
      serdes5:0x0bba, serdes6:0x0bba, serdes7:0x0bba, serdes8:0x0bba, serdes9:0x0bba
    CFP Registers:
    ================
    NVR 1 Registers:
    (Reg 0x8000=0x0e) (Reg 0x8001=0x95) (Reg 0x8002=0x01) (Reg 0x8003=0x01)
    (Reg 0x8004=0x00) (Reg 0x8005=0x00) (Reg 0x8006=0x00) (Reg 0x8007=0x00)
    (Reg 0x8008=0x08) (Reg 0x8009=0x4a) (Reg 0x800a=0x11) (Reg 0x800b=0x81)
    (Reg 0x800c=0x34) (Reg 0x800d=0x0a) (Reg 0x800e=0x00) (Reg 0x800f=0x00)
    (Reg 0x8010=0x01) (Reg 0x8011=0x04) (Reg 0x8012=0xca) (Reg 0x8013=0x45)
    (Reg 0x8014=0xcc) (Reg 0x8015=0xb8) (Reg 0x8016=0x08) (Reg 0x8017=0x34)
    (Reg 0x8018=0x21) (Reg 0x8019=0x44) (Reg 0x801a=0x40) (Reg 0x801b=0x70)
    (Reg 0x801c=0x1c) (Reg 0x801d=0x73) (Reg 0x801e=0x64) (Reg 0x801f=0x46)
    (Reg 0x8020=0x00) (Reg 0x8021=0x43) (Reg 0x8022=0x49) (Reg 0x8023=0x53)
    (Reg 0x8024=0x43) (Reg 0x8025=0x4f) (Reg 0x8026=0x2d) (Reg 0x8027=0x46)
    (Reg 0x8028=0x49) (Reg 0x8029=0x4e) (Reg 0x802a=0x49) (Reg 0x802b=0x53)
    (Reg 0x802c=0x41) (Reg 0x802d=0x52) (Reg 0x802e=0x20) (Reg 0x802f=0x20)
    (Reg 0x8030=0x20) (Reg 0x8031=0x00) (Reg 0x8032=0x90) (Reg 0x8033=0x65)
    (Reg 0x8034=0x46) (Reg 0x8035=0x54) (Reg 0x8036=0x4c) (Reg 0x8037=0x43)
    (Reg 0x8038=0x31) (Reg 0x8039=0x31) (Reg 0x803a=0x38) (Reg 0x803b=0x31)
    (Reg 0x803c=0x52) (Reg 0x803d=0x44) (Reg 0x803e=0x4e) (Reg 0x803f=0x53)
    (Reg 0x8040=0x2d) (Reg 0x8041=0x43) (Reg 0x8042=0x32) (Reg 0x8043=0x20)
    (Reg 0x8044=0x46) (Reg 0x8045=0x49) (Reg 0x8046=0x4e) (Reg 0x8047=0x31)
    (Reg 0x8048=0x36) (Reg 0x8049=0x33) (Reg 0x804a=0x36) (Reg 0x804b=0x30)
    (Reg 0x804c=0x30) (Reg 0x804d=0x30) (Reg 0x804e=0x57) (Reg 0x804f=0x20)
    (Reg 0x8050=0x20) (Reg 0x8051=0x20) (Reg 0x8052=0x20) (Reg 0x8053=0x20)
    (Reg 0x8054=0x32) (Reg 0x8055=0x30) (Reg 0x8056=0x31) (Reg 0x8057=0x32)
    (Reg 0x8058=0x30) (Reg 0x8059=0x39) (Reg 0x805a=0x30) (Reg 0x805b=0x35)
    (Reg 0x805c=0x30) (Reg 0x805d=0x30) (Reg 0x805e=0x49) (Reg 0x805f=0x50)
    (Reg 0x8060=0x55) (Reg 0x8061=0x49) (Reg 0x8062=0x42) (Reg 0x8063=0x48)
    (Reg 0x8064=0x43) (Reg 0x8065=0x52) (Reg 0x8066=0x41) (Reg 0x8067=0x41)
    (Reg 0x8068=0x0e) (Reg 0x8069=0x0e) (Reg 0x806a=0x01) (Reg 0x806b=0x04)
    (Reg 0x806c=0x01) (Reg 0x806d=0x05) (Reg 0x806e=0x0c) (Reg 0x806f=0x03)
    (Reg 0x8070=0x0f) (Reg 0x8071=0x68) (Reg 0x8072=0x04) (Reg 0x8073=0x01)
    (Reg 0x8074=0x01) (Reg 0x8075=0x00) (Reg 0x8076=0x96) (Reg 0x8077=0x01)
    (Reg 0x8078=0x07) (Reg 0x8079=0x01) (Reg 0x807a=0xf1) (Reg 0x807b=0x00)
    (Reg 0x807c=0x00) (Reg 0x807d=0x00) (Reg 0x807e=0x00) (Reg 0x807f=0x17)
    NVR 2 Registers:
    (Reg 0x8080=0x4a) (Reg 0x8081=0x00) (Reg 0x8082=0x46) (Reg 0x8083=0x00)
    (Reg 0x8084=0x00) (Reg 0x8085=0x00) (Reg 0x8086=0xfc) (Reg 0x8087=0x00)
    (Reg 0x8088=0x8f) (Reg 0x8089=0x2a) (Reg 0x808a=0x87) (Reg 0x808b=0x5a)
    (Reg 0x808c=0x7a) (Reg 0x808d=0x76) (Reg 0x808e=0x72) (Reg 0x808f=0xa6)
    (Reg 0x8090=0x00) (Reg 0x8091=0x00) (Reg 0x8092=0x00) (Reg 0x8093=0x00)
    (Reg 0x8094=0x00) (Reg 0x8095=0x00) (Reg 0x8096=0x00) (Reg 0x8097=0x00)
    (Reg 0x8098=0x00) (Reg 0x8099=0x00) (Reg 0x809a=0x00) (Reg 0x809b=0x00)
    (Reg 0x809c=0x00) (Reg 0x809d=0x00) (Reg 0x809e=0x00) (Reg 0x809f=0x00)
    (Reg 0x80a0=0x00) (Reg 0x80a1=0x00) (Reg 0x80a2=0x00) (Reg 0x80a3=0x00)
    (Reg 0x80a4=0x00) (Reg 0x80a5=0x00) (Reg 0x80a6=0x00) (Reg 0x80a7=0x00)
    (Reg 0x80a8=0xea) (Reg 0x80a9=0x60) (Reg 0x80aa=0xe0) (Reg 0x80ab=0x9c)
    (Reg 0x80ac=0x44) (Reg 0x80ad=0x5c) (Reg 0x80ae=0x3a) (Reg 0x80af=0x98)
    (Reg 0x80b0=0xdb) (Reg 0x80b1=0xaa) (Reg 0x80b2=0x6e) (Reg 0x80b3=0x18)
    (Reg 0x80b4=0x0e) (Reg 0x80b5=0x83) (Reg 0x80b6=0x05) (Reg 0x80b7=0xc7)
    (Reg 0x80b8=0x39) (Reg 0x80b9=0x00) (Reg 0x80ba=0x37) (Reg 0x80bb=0x00)
    (Reg 0x80bc=0x1b) (Reg 0x80bd=0x00) (Reg 0x80be=0x19) (Reg 0x80bf=0x00)
    (Reg 0x80c0=0xdb) (Reg 0x80c1=0xaa) (Reg 0x80c2=0x6e) (Reg 0x80c3=0x18)
    (Reg 0x80c4=0x03) (Reg 0x80c5=0x67) (Reg 0x80c6=0x01) (Reg 0x80c7=0x5b)
    (Reg 0x80c8=0x00) (Reg 0x80c9=0x00) (Reg 0x80ca=0x00) (Reg 0x80cb=0x00)
    (Reg 0x80cc=0x00) (Reg 0x80cd=0x00) (Reg 0x80ce=0x00) (Reg 0x80cf=0x00)
    (Reg 0x80d0=0x00) (Reg 0x80d1=0x00) (Reg 0x80d2=0x00) (Reg 0x80d3=0x00)
    (Reg 0x80d4=0x00) (Reg 0x80d5=0x00) (Reg 0x80d6=0x00) (Reg 0x80d7=0x00)
    (Reg 0x80d8=0x00) (Reg 0x80d9=0x00) (Reg 0x80da=0x00) (Reg 0x80db=0x00)
    (Reg 0x80dc=0x00) (Reg 0x80dd=0x00) (Reg 0x80de=0x00) (Reg 0x80df=0x00)
    (Reg 0x80e0=0x00) (Reg 0x80e1=0x00) (Reg 0x80e2=0x00) (Reg 0x80e3=0x00)
    (Reg 0x80e4=0x00) (Reg 0x80e5=0x00) (Reg 0x80e6=0x00) (Reg 0x80e7=0x00)
    (Reg 0x80e8=0x00) (Reg 0x80e9=0x00) (Reg 0x80ea=0x00) (Reg 0x80eb=0x00)
    (Reg 0x80ec=0x00) (Reg 0x80ed=0x00) (Reg 0x80ee=0x00) (Reg 0x80ef=0x00)
    (Reg 0x80f0=0x00) (Reg 0x80f1=0x00) (Reg 0x80f2=0x00) (Reg 0x80f3=0x00)
    (Reg 0x80f4=0x00) (Reg 0x80f5=0x00) (Reg 0x80f6=0x00) (Reg 0x80f7=0x00)
    (Reg 0x80f8=0x00) (Reg 0x80f9=0x00) (Reg 0x80fa=0x00) (Reg 0x80fb=0x00)
    (Reg 0x80fc=0x00) (Reg 0x80fd=0x00) (Reg 0x80fe=0x00) (Reg 0x80ff=0x43)
    NVR 3 Registers:
    (Reg 0x8100=0x00) (Reg 0x8101=0x00) (Reg 0x8102=0x00) (Reg 0x8103=0x00)
    (Reg 0x8104=0x00) (Reg 0x8105=0x00) (Reg 0x8106=0x00) (Reg 0x8107=0x00)
    (Reg 0x8108=0x00) (Reg 0x8109=0x00) (Reg 0x810a=0x00) (Reg 0x810b=0x00)
    (Reg 0x810c=0x00) (Reg 0x810d=0x00) (Reg 0x810e=0x00) (Reg 0x810f=0x00)
    (Reg 0x8110=0x00) (Reg 0x8111=0x00) (Reg 0x8112=0x00) (Reg 0x8113=0x00)
    (Reg 0x8114=0x00) (Reg 0x8115=0x00) (Reg 0x8116=0x00) (Reg 0x8117=0x00)
    (Reg 0x8118=0x00) (Reg 0x8119=0x00) (Reg 0x811a=0x00) (Reg 0x811b=0x00)
    (Reg 0x811c=0x00) (Reg 0x811d=0x00) (Reg 0x811e=0x00) (Reg 0x811f=0x00)
    (Reg 0x8120=0x00) (Reg 0x8121=0x00) (Reg 0x8122=0x00) (Reg 0x8123=0x00)
    (Reg 0x8124=0x00) (Reg 0x8125=0x00) (Reg 0x8126=0x00) (Reg 0x8127=0x00)
    (Reg 0x8128=0x00) (Reg 0x8129=0x00) (Reg 0x812a=0x00) (Reg 0x812b=0x00)
    (Reg 0x812c=0x00) (Reg 0x812d=0x00) (Reg 0x812e=0x00) (Reg 0x812f=0x00)
    (Reg 0x8130=0x00) (Reg 0x8131=0x00) (Reg 0x8132=0x00) (Reg 0x8133=0x00)
    (Reg 0x8134=0x00) (Reg 0x8135=0x00) (Reg 0x8136=0x00) (Reg 0x8137=0x00)
    (Reg 0x8138=0x00) (Reg 0x8139=0x00) (Reg 0x813a=0x00) (Reg 0x813b=0x00)
    (Reg 0x813c=0x00) (Reg 0x813d=0x00) (Reg 0x813e=0x00) (Reg 0x813f=0x00)
    (Reg 0x8140=0x00) (Reg 0x8141=0x00) (Reg 0x8142=0x00) (Reg 0x8143=0x00)
    (Reg 0x8144=0x00) (Reg 0x8145=0x00) (Reg 0x8146=0x00) (Reg 0x8147=0x00)
    (Reg 0x8148=0x00) (Reg 0x8149=0x00) (Reg 0x814a=0x00) (Reg 0x814b=0x00)
    (Reg 0x814c=0x00) (Reg 0x814d=0x00) (Reg 0x814e=0x00) (Reg 0x814f=0x00)
    (Reg 0x8150=0x00) (Reg 0x8151=0x00) (Reg 0x8152=0x00) (Reg 0x8153=0x00)
    (Reg 0x8154=0x00) (Reg 0x8155=0x00) (Reg 0x8156=0x00) (Reg 0x8157=0x00)
    (Reg 0x8158=0x00) (Reg 0x8159=0x00) (Reg 0x815a=0x00) (Reg 0x815b=0x00)
    (Reg 0x815c=0x00) (Reg 0x815d=0x00) (Reg 0x815e=0x00) (Reg 0x815f=0x00)
    (Reg 0x8160=0x00) (Reg 0x8161=0x00) (Reg 0x8162=0x00) (Reg 0x8163=0x00)
    (Reg 0x8164=0x00) (Reg 0x8165=0x00) (Reg 0x8166=0x00) (Reg 0x8167=0x00)
    (Reg 0x8168=0x00) (Reg 0x8169=0x00) (Reg 0x816a=0x00) (Reg 0x816b=0x00)
    (Reg 0x816c=0x00) (Reg 0x816d=0x00) (Reg 0x816e=0x00) (Reg 0x816f=0x00)
    (Reg 0x8170=0x00) (Reg 0x8171=0x00) (Reg 0x8172=0x00) (Reg 0x8173=0x00)
    (Reg 0x8174=0x00) (Reg 0x8175=0x00) (Reg 0x8176=0x00) (Reg 0x8177=0x00)
    (Reg 0x8178=0x00) (Reg 0x8179=0x00) (Reg 0x817a=0x00) (Reg 0x817b=0x00)
    (Reg 0x817c=0x00) (Reg 0x817d=0x00) (Reg 0x817e=0x00) (Reg 0x817f=0x00)
    NVR 4 Registers:
    (Reg 0x8180=0x00)
    Vendor NVR1 Registers
    (Reg 0x8400=0x00) (Reg 0x8401=0x00) (Reg 0x8402=0x00) (Reg 0x8403=0x00)
    (Reg 0x8404=0x00) (Reg 0x8405=0x00) (Reg 0x8406=0x00) (Reg 0x8407=0x00)
    (Reg 0x8408=0x00) (Reg 0x8409=0x00) (Reg 0x840a=0x00) (Reg 0x840b=0x00)
    (Reg 0x840c=0x00) (Reg 0x840d=0x00) (Reg 0x840e=0x00) (Reg 0x840f=0x00)
    (Reg 0x8410=0x43) (Reg 0x8411=0x49) (Reg 0x8412=0x53) (Reg 0x8413=0x43)
    (Reg 0x8414=0x4f) (Reg 0x8415=0x2d) (Reg 0x8416=0x46) (Reg 0x8417=0x49)
    (Reg 0x8418=0x4e) (Reg 0x8419=0x49) (Reg 0x841a=0x53) (Reg 0x841b=0x41)
    (Reg 0x841c=0x52) (Reg 0x841d=0x20) (Reg 0x841e=0x20) (Reg 0x841f=0x20)
    (Reg 0x8420=0x43) (Reg 0x8421=0x46) (Reg 0x8422=0x50) (Reg 0x8423=0x2d)
    (Reg 0x8424=0x31) (Reg 0x8425=0x30) (Reg 0x8426=0x30) (Reg 0x8427=0x47)
    (Reg 0x8428=0x2d) (Reg 0x8429=0x4c) (Reg 0x842a=0x52) (Reg 0x842b=0x34)
    (Reg 0x842c=0x20) (Reg 0x842d=0x20) (Reg 0x842e=0x20) (Reg 0x842f=0x20)
    (Reg 0x8430=0x56) (Reg 0x8431=0x30) (Reg 0x8432=0x31) (Reg 0x8433=0x20)
    (Reg 0x8434=0x07) (Reg 0x8435=0x46) (Reg 0x8436=0x49) (Reg 0x8437=0x4e)
    (Reg 0x8438=0x31) (Reg 0x8439=0x36) (Reg 0x843a=0x33) (Reg 0x843b=0x36)
    (Reg 0x843c=0x30) (Reg 0x843d=0x30) (Reg 0x843e=0x30) (Reg 0x843f=0x57)
    (Reg 0x8440=0x31) (Reg 0x8441=0x30) (Reg 0x8442=0x2d) (Reg 0x8443=0x32)
    (Reg 0x8444=0x35) (Reg 0x8445=0x34) (Reg 0x8446=0x39) (Reg 0x8447=0x2d)
    (Reg 0x8448=0x30) (Reg 0x8449=0x31) (Reg 0x844a=0x20) (Reg 0x844b=0x20)
    (Reg 0x844c=0x41) (Reg 0x844d=0x30) (Reg 0x844e=0x20) (Reg 0x844f=0x20)
    (Reg 0x8450=0x00) (Reg 0x8451=0x00) (Reg 0x8452=0x00) (Reg 0x8453=0x00)
    (Reg 0x8454=0x00) (Reg 0x8455=0x00) (Reg 0x8456=0x00) (Reg 0x8457=0x00)
    (Reg 0x8458=0x00) (Reg 0x8459=0x00) (Reg 0x845a=0x00) (Reg 0x845b=0x00)
    (Reg 0x845c=0x00) (Reg 0x845d=0x00) (Reg 0x845e=0x00) (Reg 0x845f=0x00)
    (Reg 0x8460=0x00) (Reg 0x8461=0x00) (Reg 0x8462=0x00) (Reg 0x8463=0x00)
    (Reg 0x8464=0x00) (Reg 0x8465=0x00) (Reg 0x8466=0x00) (Reg 0x8467=0x00)
    (Reg 0x8468=0x00) (Reg 0x8469=0x00) (Reg 0x846a=0x00) (Reg 0x846b=0x00)
    (Reg 0x846c=0x00) (Reg 0x846d=0x00) (Reg 0x846e=0x00) (Reg 0x846f=0x00)
    (Reg 0x8470=0x00) (Reg 0x8471=0x00) (Reg 0x8472=0x00) (Reg 0x8473=0x00)
    (Reg 0x8474=0x00) (Reg 0x8475=0x00) (Reg 0x8476=0x00) (Reg 0x8477=0x00)
    (Reg 0x8478=0x00) (Reg 0x8479=0x00) (Reg 0x847a=0x00) (Reg 0x847b=0x00)
    (Reg 0x847c=0x00) (Reg 0x847d=0x00) (Reg 0x847e=0x00) (Reg 0x847f=0xba)
    VR 1 Registers:
    (Reg 0xa000=0x0000) (Reg 0xa001=0x0000) (Reg 0xa002=0x0000) (Reg 0xa003=0x0000)
    (Reg 0xa004=0x0000) (Reg 0xa005=0x0000) (Reg 0xa006=0x0000) (Reg 0xa007=0x0001)
    (Reg 0xa008=0x0003) (Reg 0xa009=0x0002) (Reg 0xa00a=0x0001) (Reg 0xa00b=0x0000)
    (Reg 0xa00c=0x0000) (Reg 0xa00d=0x0000) (Reg 0xa00e=0x0000) (Reg 0xa00f=0x0000)
    (Reg 0xa010=0x000e) (Reg 0xa011=0x0200) (Reg 0xa012=0x0000) (Reg 0xa013=0x0000)
    (Reg 0xa014=0x0000) (Reg 0xa015=0x0000) (Reg 0xa016=0x0020) (Reg 0xa017=0x0000)
    (Reg 0xa018=0x0000) (Reg 0xa019=0x0000) (Reg 0xa01a=0x0000) (Reg 0xa01b=0x0000)
    (Reg 0xa01c=0x0000) (Reg 0xa01d=0x0002) (Reg 0xa01e=0x0000) (Reg 0xa01f=0x0000)
    (Reg 0xa020=0x0000) (Reg 0xa021=0x0000) (Reg 0xa022=0x0000) (Reg 0xa023=0x0000)
    (Reg 0xa024=0x0000) (Reg 0xa025=0x0000) (Reg 0xa026=0x0000) (Reg 0xa027=0x0000)
    (Reg 0xa028=0x0040) (Reg 0xa029=0x8370) (Reg 0xa02a=0x0000) (Reg 0xa02b=0x0990)
    (Reg 0xa02c=0x0000) (Reg 0xa02d=0x0000) (Reg 0xa02e=0x0000) (Reg 0xa02f=0x2116)
    (Reg 0xa030=0x8019) (Reg 0xa031=0x0000) (Reg 0xa032=0x0000) (Reg 0xa033=0x0000)
    (Reg 0xa034=0x0000) (Reg 0xa035=0x0000) (Reg 0xa036=0x0000) (Reg 0xa037=0x0000)
    (Reg 0xa038=0x0000) (Reg 0xa039=0x0000) (Reg 0xa03a=0x0000)
    NETWORK LANE VR 1 Registers:
    (Reg 0xa200=0x0002) (Reg 0xa201=0x0000) (Reg 0xa202=0x0000) (Reg 0xa203=0x0000)
    (Reg 0xa204=0x0000) (Reg 0xa205=0x0000) (Reg 0xa206=0x0000) (Reg 0xa207=0x0000)
    (Reg 0xa208=0x0000) (Reg 0xa209=0x0000) (Reg 0xa20a=0x0000) (Reg 0xa20b=0x0000)
    (Reg 0xa20c=0x0000) (Reg 0xa20d=0x0000) (Reg 0xa20e=0x0000) (Reg 0xa20f=0x0000)
    (Reg 0xa210=0x0000) (Reg 0xa211=0x0000) (Reg 0xa212=0x0000) (Reg 0xa213=0x0000)
    (Reg 0xa214=0x0000) (Reg 0xa215=0x0000) (Reg 0xa216=0x0000) (Reg 0xa217=0x0000)
    (Reg 0xa218=0x0000) (Reg 0xa219=0x0000) (Reg 0xa21a=0x0000) (Reg 0xa21b=0x0000)
    (Reg 0xa21c=0x0000) (Reg 0xa21d=0x0000) (Reg 0xa21e=0x0000) (Reg 0xa21f=0x0000)
    (Reg 0xa220=0x0000) (Reg 0xa221=0x0000) (Reg 0xa222=0x0002) (Reg 0xa223=0x0002)
    (Reg 0xa224=0x0000) (Reg 0xa225=0x0000) (Reg 0xa226=0x0000) (Reg 0xa227=0x0000)
    (Reg 0xa228=0x0000) (Reg 0xa229=0x0000) (Reg 0xa22a=0x0000) (Reg 0xa22b=0x0000)
    (Reg 0xa22c=0x0000) (Reg 0xa22d=0x0000) (Reg 0xa22e=0x0000) (Reg 0xa22f=0x0000)
    (Reg 0xa230=0x0000) (Reg 0xa231=0x0000) (Reg 0xa232=0x0000) (Reg 0xa233=0x0000)
    (Reg 0xa234=0x0000) (Reg 0xa235=0x0000) (Reg 0xa236=0x0000) (Reg 0xa237=0x0000)
    (Reg 0xa238=0x0000) (Reg 0xa239=0x0000) (Reg 0xa23a=0x0000) (Reg 0xa23b=0x0000)
    (Reg 0xa23c=0x0000) (Reg 0xa23d=0x0000) (Reg 0xa23e=0x0000) (Reg 0xa23f=0x0000)
    (Reg 0xa240=0x9999) (Reg 0xa241=0x9999) (Reg 0xa242=0x9999) (Reg 0xa243=0x9999)
    (Reg 0xa244=0x0000) (Reg 0xa245=0x0000) (Reg 0xa246=0x0000) (Reg 0xa247=0x0000)
    (Reg 0xa248=0x0000) (Reg 0xa249=0x0000) (Reg 0xa24a=0x0000) (Reg 0xa24b=0x0000)
    (Reg 0xa24c=0x0000) (Reg 0xa24d=0x0000) (Reg 0xa24e=0x0000) (Reg 0xa24f=0x0000)
    (Reg 0xa250=0x805c) (Reg 0xa251=0x805c) (Reg 0xa252=0x805c) (Reg 0xa253=0x805c)
    (Reg 0xa254=0x0000) (Reg 0xa255=0x0000) (Reg 0xa256=0x0000) (Reg 0xa257=0x0000)
    (Reg 0xa258=0x0000) (Reg 0xa259=0x0000) (Reg 0xa25a=0x0000) (Reg 0xa25b=0x0000)
    (Reg 0xa25c=0x0000) (Reg 0xa25d=0x0000) (Reg 0xa25e=0x0000) (Reg 0xa25f=0x0000)
    (Reg 0xa260=0x0000)
    NETWORK LANE VR 2 Registers:
    (Reg 0xa280=0x0000) (Reg 0xa281=0x0000) (Reg 0xa282=0x0000) (Reg 0xa283=0x0000)
    (Reg 0xa284=0x0000) (Reg 0xa285=0x0000) (Reg 0xa286=0x0000) (Reg 0xa287=0x0000)
    (Reg 0xa288=0x0000) (Reg 0xa289=0x0000) (Reg 0xa28a=0x0000) (Reg 0xa28b=0x0000)
    (Reg 0xa28c=0x0000) (Reg 0xa28d=0x0000) (Reg 0xa28e=0x0000) (Reg 0xa28f=0x0000)
    (Reg 0xa290=0x0000) (Reg 0xa291=0x0000) (Reg 0xa292=0x0000) (Reg 0xa293=0x0000)
    (Reg 0xa294=0x0000) (Reg 0xa295=0x0000) (Reg 0xa296=0x0000) (Reg 0xa297=0x0000)
    (Reg 0xa298=0x0000) (Reg 0xa299=0x0000) (Reg 0xa29a=0x0000) (Reg 0xa29b=0x0000)
    (Reg 0xa29c=0x0000) (Reg 0xa29d=0x0000) (Reg 0xa29e=0x0000) (Reg 0xa29f=0x0000)
    (Reg 0xa2a0=0x7eee) (Reg 0xa2a1=0xabe7) (Reg 0xa2a2=0x7f6e) (Reg 0xa2a3=0x85ad)
    (Reg 0xa2a4=0x0000) (Reg 0xa2a5=0x0000) (Reg 0xa2a6=0x0000) (Reg 0xa2a7=0x0000)
    (Reg 0xa2a8=0x0000) (Reg 0xa2a9=0x0000) (Reg 0xa2aa=0x0000) (Reg 0xa2ab=0x0000)
    (Reg 0xa2ac=0x0000) (Reg 0xa2ad=0x0000) (Reg 0xa2ae=0x0000) (Reg 0xa2af=0x0000)
    (Reg 0xa2b0=0x2b53) (Reg 0xa2b1=0x2b77) (Reg 0xa2b2=0x2bab) (Reg 0xa2b3=0x2c07)
    (Reg 0xa2b4=0x0000) (Reg 0xa2b5=0x0000) (Reg 0xa2b6=0x0000) (Reg 0xa2b7=0x0000)
    (Reg 0xa2b8=0x0000) (Reg 0xa2b9=0x0000) (Reg 0xa2ba=0x0000) (Reg 0xa2bb=0x0000)
    (Reg 0xa2bc=0x0000) (Reg 0xa2bd=0x0000) (Reg 0xa2be=0x0000) (Reg 0xa2bf=0x0000)
    (Reg 0xa2c0=0x3321) (Reg 0xa2c1=0x2d65) (Reg 0xa2c2=0x2f8b) (Reg 0xa2c3=0x2fd1)
    (Reg 0xa2c4=0x0000) (Reg 0xa2c5=0x0000) (Reg 0xa2c6=0x0000) (Reg 0xa2c7=0x0000)
    (Reg 0xa2c8=0x0000) (Reg 0xa2c9=0x0000) (Reg 0xa2ca=0x0000) (Reg 0xa2cb=0x0000)
    (Reg 0xa2cc=0x0000) (Reg 0xa2cd=0x0000) (Reg 0xa2ce=0x0000) (Reg 0xa2cf=0x0000)
    (Reg 0xa2d0=0x01b6) (Reg 0xa2d1=0x0431) (Reg 0xa2d2=0x040d) (Reg 0xa2d3=0x0393)
    (Reg 0xa2d4=0x0000) (Reg 0xa2d5=0x0000) (Reg 0xa2d6=0x0000) (Reg 0xa2d7=0x0000)
    (Reg 0xa2d8=0x0000) (Reg 0xa2d9=0x0000) (Reg 0xa2da=0x0000) (Reg 0xa2db=0x0000)
    (Reg 0xa2dc=0x0000) (Reg 0xa2dd=0x0000) (Reg 0xa2de=0x0000) (Reg 0xa2df=0x0000)
    (Reg 0xa2e0=0x0000)
    HOST LANE VR 1 Registers:
    (Reg 0xa400=0x0000) (Reg 0xa401=0x0000) (Reg 0xa402=0x0000) (Reg 0xa403=0x0000)
    (Reg 0xa404=0x0000) (Reg 0xa405=0x0000) (Reg 0xa406=0x0000) (Reg 0xa407=0x0000)
    (Reg 0xa408=0x0000) (Reg 0xa409=0x0000) (Reg 0xa40a=0x0000) (Reg 0xa40b=0x0000)
    (Reg 0xa40c=0x0000) (Reg 0xa40d=0x0000) (Reg 0xa40e=0x0000) (Reg 0xa40f=0x0000)
    (Reg 0xa410=0x0000) (Reg 0xa411=0x0000) (Reg 0xa412=0x0000) (Reg 0xa413=0x0000)
    (Reg 0xa414=0x0000) (Reg 0xa415=0x0000) (Reg 0xa416=0x0000) (Reg 0xa417=0x0000)
    (Reg 0xa418=0x0000) (Reg 0xa419=0x0000) (Reg 0xa41a=0x0000) (Reg 0xa41b=0x0000)
    (Reg 0xa41c=0x0000) (Reg 0xa41d=0x0000) (Reg 0xa41e=0x0000) (Reg 0xa41f=0x0000)
    (Reg 0xa420=0x0003) (Reg 0xa421=0x0003) (Reg 0xa422=0x0003) (Reg 0xa423=0x0003)
    (Reg 0xa424=0x0003) (Reg 0xa425=0x0003) (Reg 0xa426=0x0003) (Reg 0xa427=0x0003)
    (Reg 0xa428=0x0003) (Reg 0xa429=0x0003) (Reg 0xa42a=0x0000) (Reg 0xa42b=0x0000)
    (Reg 0xa42c=0x0000) (Reg 0xa42d=0x0000) (Reg 0xa42e=0x0000) (Reg 0xa42f=0x0000)
    (Reg 0xa430=0x0000) (Reg 0xa431=0x0000) (Reg 0xa432=0x0000) (Reg 0xa433=0x0000)
    (Reg 0xa434=0x0000) (Reg 0xa435=0x0000) (Reg 0xa436=0x0000) (Reg 0xa437=0x0000)
    (Reg 0xa438=0x0000) (Reg 0xa439=0x0000) (Reg 0xa43a=0x0000) (Reg 0xa43b=0x0000)
    (Reg 0xa43c=0x0000) (Reg 0xa43d=0x0000) (Reg 0xa43e=0x0000) (Reg 0xa43f=0x0000)
    (Reg 0xa440=0x0007) (Reg 0xa441=0x0007) (Reg 0xa442=0x0007) (Reg 0xa443=0x0007)
    (Reg 0xa444=0x0007) (Reg 0xa445=0x0007) (Reg 0xa446=0x0007) (Reg 0xa447=0x0007)
    (Reg 0xa448=0x0007) (Reg 0xa449=0x0007) (Reg 0xa44a=0x0000) (Reg 0xa44b=0x0000)
    (Reg 0xa44c=0x0000) (Reg 0xa44d=0x0000) (Reg 0xa44e=0x0000) (Reg 0xa44f=0x0000)
    (Reg 0xa450=0x0000)
    Thanks in advance,
    Diego.

    I found an important issue:
    Lane 0 rx power is lower than minimum expected.
    http://www.cisco.com/en/US/partner/prod/collateral/modules/ps5455/data_sheet_c78-633027.html
    I guess that's the main problem, but anyway, I would like to know more about this type of transceiver and how to troubleshoot it.
    Thanks, Diego.

  • EDI interface with MM

    Hi Gurus,
    I want to have detailed information on EDI interfaces with MM. A detailed explanation will be highly appreciated.
    thanks,
    Kumar

    Hi
    EDI interface with MM can be anything that may be required as per the scenario needed. Any interface to SAP from legacy using EDI application. The most imagined interface can be Say there is a third party system in which Purchase orders or Req are entered by different Buyers and those need to be interfaced to SAP for creating the orders in SAP.
    Similarly another thing that can be imagined is Material movements posting from a third party warehouse system
    Please let me know if you have any specific question on this.
    Thanks

  • How to retrieve the list of interface in a project

    Does anyone know how can I retrieve the entire list of project interface ?
    Is there a way to retrieve it from the ODI repository?
    Thanks

    Hi kappenet ,
    Hi one more simple method / way to get the information about the Interfaces (with details) using GUI:-
    Go to designer - > project -> project folder -> Right Click -> print -> Interfaces
    You can view all the details of the interfaces in a PDf file
    you can try the same for KM, Packages, etc..
    Regards,
    Rathish

  • Display sender and receiver interfaces in CCMS

    Hello CCMS Specialists,
    I've a question regarding CCMS and SNMP TRAPS.
    In my case I'm sending the alerts to a Third Party application via SNMP TRAPS. In CCMS I don't get the information about a specific Interface and therefore I can't send it to a third party application.
    My question is: is it possibile or how to send the information from an interface (sender and receiver information) via CCMS to our Third Party application?
    For example, if there has been an Internal HTTP error. We don't get the details about the interface. Hoe could we display those information as well?
    Kind Regards,
    Kamran

    hi,
    And also check   spro -
    > financial accounting -
    > financial accounting global settings -
    > correspondence -
    > define correspondance  check the variant bcause all are standard variants so the one which we require need 2 make changes......... create our variant..
    if useful assign points....
    regards,
    santosh kumar

  • Interfaces available in ECC6.0

    Where can I get the consolidated informations regarding the Interfaces avaliable in ECC6.0 for BW, EP (Enterprise Portal) and Lotus Notes. These are supposed to be Plug-ins (Addons) till SAP 4.7E.
    Kamlesh

    I want to know what are the standard objects or interfaces available in ECC 6.0 that are used for communicating between the applications (BW, Enterprise Portal  and Lotus Notes).
    Not much different to before
    BW: RFC
    EP: JCo
    Notes: If you´re talking about using a SAPGUI plugin to see your SAP workplace: it´s unsupported as of ERP 6.0
    Markus

  • New validation - don't inform material number when creating

    Hello!!!
    I'd need to create a validation in order to avoid informing the field 'SAP Material number' when creating a new entry in MDM Data Manager for specific material types (material type is a lookup field which has two values, let's say 1 and 2).
    For material type 1, we need to inform, when creating the entry, the material type 1, supplier name and supplier reference, but not the SAP material number, as it comes informed through an interface from SAP R/3.
    For material type 2, we only need to inform the SAP material number.
    Could you guide me on how to do this validation?
    Thank you,
    Carlos Santamaría.

    Hello,
    The data flow is as follows:
    There are two scenarios, one for Goods:
    1. Add new record into the Data Manager.
    2. Inform field 'Material type' (lookup field) Goods.
    3. Inform field 'Supplier name' (lookup field).
    4. Inform field 'Supplier reference' (text field).
    5. Field 'SAP material number' must be left EMPTY when creating the new record. Once it's created, there is an interface from SAP R/3 which updates through ABAP API the records, informing the SAP material number and other fields informed in SAP R/3.
    The validation should avoid that the user informs the material number when creating the new record.
    Second scenario is for Finished Goods:
    1. Add new record into the Data Manager.
    2. Inform field 'material type' (lookup field) Finished goods.
    3. Inform field 'SAP material number' (text field).
    4. Optionally it is possible to inform Supplier name and Supplier reference, but it's not always inform.
    There is already a validation rule that force the user to inform 'Supplier name and supplier reference for Goods, and for Finished goods it's mandatory to inform the SAP material number.
    There is another field which is 'Unique key' which is a calculated field and it's composed by SAP material number + Supplier number + Supplier reference.
    Our problem is to avoid that the user informs the SAP material number only for Goods. If the user does it, the interface will not work as it is designed.
    Thanks for your feedback.

  • Dcs interface with sap pm

    Dear experts,
    can anyone explain me the basic steps and information  regarding dcs interface with sap .
    i want to do this sap implementation for the thermal power station.     i want to generate notifications and work orders when the parameteres of particular equipment crosses its range.
    how the important parameters from the dcs is linked with sap server.  how i can get the data from dcs and pass it to the sap system.
    can anyone give the helping hand.

    Hi,
    You can use XI as a connector instead of ALE to connect mySAP ERP to SAP Business One. The DI API is the connector for SAP Business One.
    The DI API or Data Interface API is part of Business One and the Business One SDK. B1i exists to easily connect mySAP and SAP Business One without typical coding that would be required simply by using XI to connect with SAP Business One and mySAP. B1i contains all of the connections, pre-defined content, message handling and error correction for common business scenarios to connect these to systems. Without B1i, you have to hand code everything. If you are not connecting with SAP Business One, then you may not have a need or requirement to use B1i. There are more detailed whitepapers here from the SAP Business One main page on SDN. You should have a look at those.
    You should have SAP Portal authorisation to access the following info. Go to sevicemarketplace -> smb -> SBO -> Install'n'Updates->Updates->Updates for SAP Business One->SAP Business One Releases prior to 2004->SBO-MYSAP INTEGRAT.TOOLKIT 1.5.
    You can find there an presentation how to Integrate SBO with mySAP via XI (https://websmp203.sap-ag.de/~sapidb/011000358700002285912003E.ppt)
    Thanks
    Swarup

Maybe you are looking for