BW  -  CFM Implementation

Hello All,
I am implementing BW for CFM , but found many of the reports are not availabe through std. business content .
I am sure that the one who has implemented it must have created custom data objects for the same during implementation.
Please forward the documentation for Std CFM business content and custom created objects.
Thank you for your time and effort.
Regards
Nimesh

Hi,
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/174b9990-0201-0010-2abe-86a515869fbe
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4930fe9e-0501-0010-4998-e5de1456183c
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7e3f9990-0201-0010-9a97-e971112aa2b2
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b27b019f-0501-0010-97b3-9a86dcab255a
HR pre configured scenarios here.
http://help.sap.com/bp_biv170/
HR extraction  
Hope this helps.
Thanks,
JituK

Similar Messages

  • Want to implement CFM in BI 7

    Hi Experts,
    I want to implement CFM Module in BI 7.
    Can anyone tell me what standard reports are provided by SAP and i need some document where i can find what all sub modules are to be implemented under CFM.
    Thanks in adv.
    Bhavna.

    Hi,
    Pls go to Tcode; RSA5 and search for corporate Finance Management or Finance Management
    and check
    http://help.sap.com/saphelp_nw70/helpdata/en/d0/bb533d6dd60610e10000000a114084/frameset.htm
    + check table roosource
    SAP-R/3 SAP Application Components
    0ID SAP International Development
    IS SAP Industries
    0NDI SAP Components
    0ADD_SAP_SYSTEMS Other SAP Systems
    ROOT Application Component Hierarchy Insurance: Claims Management
    0RT_FASH Retail Fashion
    FS_ROOT Appl. Comp.: Financial Services Hierarchy
    FS Financial Services
    SEM_BA SEM Banking
    CMS Collateral Management System
    FS-IO Master Data
    CML Core Banking Mortgage Loans
    CFM Corporate Finance Management
    CFM_AN CFM: Analyzer
    CFM_TM CFM: Transaction Manager
    Regds,
    Shashank

  • How can I implement a datagrid like this

    I would like to implement a datagid as the attached picture. This datagrid will have some money columns and I would like to summary of money at the last row. Just only the last row.
    Thank you very much

    refer
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postI d=11471
    http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Advanced_DataGrid
    http://www.onflex.org/ted/2007/06/flex-3-wednesday-components-and-sdk.php

  • Upgrade CFM and CML from 4.7 to ECC 6.0 Version

    Dear all,
    We have to Upgrade our customer installation since 4.7 to ECC 6.0.
    Nowadays they use CFM and CML in 4.7. We wanted to know if the Upgrade of this functionalitty could be consider just as a Technical Upgrade or we need to implement new functionalities in the new version 6.0.
    If the last option happend, wich are the steps that we should done?? This is to estimate the effort to Upgrade both functionalities.
    Thanks in advance
    Regards
    Sandra

    Hi,
    There is many functional configuration also required in addition to technical upgrade.
    You can refer to Notes 830077,805406 for migration guide.
    Refer to below links as well
    http://help.sap.com/saphelp_47x200/helpdata/en/ed/cf813ec8d3fe3ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/ed/cf813ec8d3fe3ee10000000a114084/frameset.htm
    Thanks
    Amit Goyal

  • How to implement this jquery in coldfusion

    . i will give u my code would u please help me in  that if possible thanks. i bolded all the places where i need  to place this search and where to get the changed output .
    here is my form page test.cfm:   
    <cflayout type="tab" name="courses" tabheight="135"  style="background-color:##DBEAF5" align="justify" >
    <cfoutput query="qryAvailableCourses"  group="course_type_id">
    <cflayoutarea title="#course_type_desc##course_type_id#"  name="#course_type_desc#" style="background-color:##ffffff;  width:600px;padding-left: 5px; padding-top: 5px;padding-right:  5px;padding-bottom: 5px;" >
    <cfset selectedCourses = "">
    <cfif structKeyExists(attributes, 'course_id')>
    <cfset selectedCourses = attributes['course_id']>
    </cfif>
    <div style="clear:right;">
    <span class="actionButtons1" style="width:575px; margin:0;  padding:0;">
    <input type="button" name="checkall" onmouseover="hover(this);"  value="Check All" onclick="checkAll(document.getElementById('selectForm'),  'results#course_type_id#');" />
    <input type="button" name="Un_CheckAll"  onmouseover="hover(this);" value="Uncheck All"  onClick="UnCheckAll(document.getElementById('selectForm'),  'results#course_type_id#');">
    </span>
    </div>
    here i need to add search  filed:
    Search: <input id="search" type="text"  />
    <div id="userlist"> <div style="height:135px; overflow:auto; float:left;">
    <cfoutput >
    <span class="row#Int(currentrow mod 2)#" style="float:left;  width:575px; margin:0; padding:0;" >
    <cfset checked = "" />
    <cfif listcontains(selectedCourses,course_id)>
    <cfset checked = 'checked="true"' />
    </cfif>
    <input type="checkbox" name="course_id" id="#course_id#"  value="#course_id#" class="results#course_type_id#" #checked#/>
    <label for="#course_id#">
    <span style="padding-left:5px;"> </span>
    #course_desc# (#course_id#)
    </label>
    </span>
    <!---<div style="clear:both; line-height:0px; margin:0px  !important; padding: 0px;"> </div> --->
    </cfoutput>
    </div>
    </div>
    </cflayoutarea>
    </cfoutput>
    </cflayout>
    <script type="text/javascript">
    $('#search').bind('keyup',updateQuery);
    function updateQuery(){
    $('#userlist').load('qryAvailableCourses.cfm?search='+ $('#search').val() );
    $(document).ready(function(){
    $('#userlist').load('qryAvailableCourses.cfm');
    </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    in the above form  thats how i need to add this search box, because my application will have tabs ,  now i will give my query page :
    <cfquery name="qryAvailableCourses" dbtype="query">
    SELECT
    course_id
    ,course_desc
    ,course_type_id
    ,course_type_desc
    FROM
    qryAvailableCourses
    Where
    dsp_host_reporting = 'A'
    <cfif len(search)>
    AND course_desc LIKE <cfqueryparam cfsqltype="cf_sql_varchar" value="%#search#%"/>
    </cfif>
    ORDER BY
    <cfif structkeyexists(attributes, "orderby")>
    #attributes.orderby#
    <cfelse>
    course_type_id desc
    , course_desc
    </cfif>
      </cfquery>
    Above this is my query page. i  need to implement that jquery script here so that i need to search in each tab .  thanks for ur time.
    Thanks,

    It is a confusing concept to say that you need to impliment Jquery in ColdFusion.  ColdFusion runs on the server, Jquery runs on the client.  All ColdFusion is going to do is return the Jquery syntax back to the client along with the HTML.
    What you seem to be struggling with is the use of the <cflayout type="tab"...>.
    This is just and easy and quick way to have ColdFusion to create the HTML, CSS and Javascript code to send to the broswer to make an interface that looks like a series of tabs.  Under the hood those tabs are just simple div blocks in the HTML that is returned by ColdFusion.
    What you need to do is to use some handy tool, like the Firebug plugin for the Firefox browser, to explore the DOM structure of the page that is actually returned to the browser, see what the id's of these divs that make up your tabs are and the provide those details to your Jquery syntax.

  • FI - MDM scope and implementation!

    Hi all,
    Is SAP MDM supports FI- GL accounts??? is there any standard BP for that?
    I know that as of now there is no Repository for FI in MDM!
    If anyone have any documentation on FI scope in MDM and how the implementation can go ....please do send me to : [email protected]
    Thanks & Regards,
    Pooja

    hi,
    MDM is emerging in 2008, you will have good scope as an XI consultant.
    you will find lot of documentation in help.sap.com, it is the bible for MDM.
    follow the links for further information:
    SAP Master Data Management (SAP MDM) - EIM - SAP Developer Network(This web-site gives introduction to MDM, Master Data Operations, Master Data Integration,Master Data Quality )
    http://help.sap.com/saphelp_mdm550/helpdata/en/43/D7AED5058201B4E10000000A11466F/frameset.htm
    /people/nitzan.levi/blog/2005/06/20/the-story-of-mdm55
    /people/sap.user72/blog/2005/06/14/worlds-fastest-and-shortest-introduction-to-netweaver-mdm-55
    /people/ravikumar.allampallam/blog/2005/09/06/mdm-client-content-manager--different-modes
    http://www.sapnetweavermagazine.com/archive/Volume_03_(2007)/Issue_02_(Spring)/v3i2a12.cfm?session=
    http://www.sap.com/platform/netweaver/pdf/BWP_SB_Data_Unification.pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9018dc62-23a8-2910-b7ae-9023670c3a53
    MDM on help.sap.com
    http://help.sap.com/saphelp_mdm550/helpdata/en/43/D7AED5058201B4E10000000A11466F/frameset.htm
    SAP mdm how to guides:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/5024a59a-4276-2910-7580-f52eb789194b [original link is broken]
    MDM elearning:
    https://admin.sdn.sap.com/irj/sdn/mdm-elearning
    Difference Between Central SLD & Local SLD
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/bf0f8d87-0d01-0010-aa8b-f2c46a70557b [original link is broken] ( with screenshots)
    1)https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60559952-ff62-2910-49a5-b4fb8e94f167
    2 ) http://help.sap.com/saphelp_nw04/helpdata/en/0a/5f723bc34bf17ee10000000a114084/content.htm
    3)http://help.sap.com/saphelp_mdm550/helpdata/en/43/D7AED5058201B4E10000000A11466F/frameset.htm
    http://www.google.de/search?hl=en&q=SAPMDMlive+implementation&btnG=Search .
    hope this may help you,
    Regards,
    Srinivas

  • Standard Queries for CFM module

    Hello Experts,
    I m implementing the CFM module standard objects. Now i want to know what standard queries are available for CFM.
    In business content i can find standard queries for only Analyser.No queries for Transaction Manager are available.
    can anyone help me know if some standard queries are available for CFM in Transaction Manager.
    thanks in adv.
    Bhavna.

    Attached; sample bridge, routed and one arm mode configs as well as config quickstart for ace 4710
    http://preview.cisco.com/en/US/products/ps7027/products_installation_and_configuration_guides_list.html')">http://preview.cisco.com/en/US/products/ps7027/products_installation_and_configuration_guides_list.html

  • Application Variables in application.cfm and asp

    If anyone could provide some insight into using application
    variables declared in application.cfm, but retrieved in asp code,
    it would be appreciated.
    GOAL: Retrieve values into an asp page from application
    variables in application.cfm.
    PROCESS: Defined the variables in application.cfm. On an asp
    page, defined the application variable in Window -> Bindings.
    The application variables defined in the source code show up.
    Attempt to retrieve the application variable in the asp page by
    using the command: var_destination = Application("var_name")
    It seems like whatever I try, the variable is empty. After
    looking around on the web, I also saw that the equivalent to
    application.cfm in asp is global.asa. I also tried setting up this
    file, along with the variables, did the binding, and used the same
    commands, and also was not able to retrieve any application
    variables.
    What am I missing?

    What am I missing?
    That ColdFusion and ASP.NET are different applications and do
    not share
    the same memory addresses So they are going to each have
    their one
    "application" variables.
    Blue Dragon has implemented CFML as an ASP.NET language so
    that one
    could write ColdFusion that runs on the ASP.NET framework and
    would then
    use the same memory locations with their server.
    Otherwise you are going to have to write your own sharing
    tool. Some
    code that can read the desired variables from one code base
    and pass it
    to the other code base through forms, web services or some
    other manner.

  • Need information about SAP EM Configuration and Implementation

    Hi,
    I am new to SAP EM.I need to do Configuration for EM and Procurement visibility process.
    Please provide some information on configuration of EM with examples.
    Thanks,
    Prasuna.

    Hi
    There is wealth of information available on the [Service Marketplace |https://websmp107.sap-ag.de/scm]on the standard visibility scenarios which will probably get you started. Procurement visibility scenario is one of the them and have documentations.
    There are couple of points which are worth knowing that SAP Event Management
    - requires configuration in both application system (ECC) and SAP EM system (SCM)
    - good understanding of the function module (extractors) for sending and posting events
    - well thought supply chain events (design) business would like to monitor and manage
    - reactions to both expected and unexpected events (follow-up activities)
    The other resource available are [SAP PRESS technical book |http://www.sap-press.com/products/Implementing-and-Configuring-SAP-Event-Management.html] and [published case studies |http://www.scmexpertonline.com/article.cfm?session=&id=4804] on the SAP EM Procurement visibility scenario.
    Cheers
    Sandeep Pradhan

  • How To implement a cfc connection

    I am a newbie trying to figure out how to implement a remote connection to my coldfusion server via referencing my cfc file WITHOUT identifying my coldfusion server root folder. 
    Within my organization, I just reference a coldfuison file (*.cfm) in the browser and everything just works without me having to reference a coldfuison server path.
    Every time I try using the Flex 4.5 wizard to create a data or service connection, I am always prompted for a root folder or url name for my coldfusion server. 
    How can I setup a connection (a CFC one) without having to specify my Coldfusion server root folder.  Is there a wizard or must I write some remote access code in Flex??
    Can someone point me to a book, an example of how to write  a remote access code which will allow me to reference a CFC file so I can attach it to a data control.
    Thank You.

    Take a look at JNDI
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html

  • XML and Class Implementation?

    Hey everyone,
    I'm new to this forum and pretty new to AS.
    I've created a fairly simple navigation bar.
    SWF Sample
    What I'd really like to do make this entirely dynamic by
    loading the images, tab names and hyperlink via XML (or an array).
    That way, I could use the same SWF and edit it via XML. I
    understand AS pretty well, but haven't wrapped my head around
    implementing XML and extending classes and such.
    Any help or direction would be greatly appreciated. If you'd
    like the FLA, just let me know.
    Cheers,
    Michael

    Michael,
    > I understand AS pretty well, but haven't wrapped my
    > head around implementing XML and extending classes
    > and such.
    XML can get complicated, because it deals with external
    files, but on
    the other hand, the XML class, which defines your the XML
    object you'll
    need, is like any other class in the ActionScript 2.0
    Language Reference.
    The XML class entry is your one-stop shop for all the
    functionality of that
    object, including its properties (characteristics), methods
    (things it can
    do), and events (things it can react to).
    Here's a free tutorial on XML in Flash, from Community MX.
    http://www.communitymx.com/abstract.cfm?cid=E399FF13E4DD1CB3
    This was written before AS2 strong typing was in fashion. By
    that, I
    mean the post colon suffix you'll see after variable
    declarations (var
    myNum:Number = 5, rather than var myNum = 5). But even so,
    it's a good
    article and should give you a head start.
    As for writing and extending classes, I'll recommend Joey
    Lott's
    three-part ActionScript 2.0 Primer.
    http://www.person13.com/articles
    Between the two of those, you've got a bit of reading ahead
    of you, but
    it's well worth it. :)
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • BADI/Exit help for FI-CFM

    Hello Everyone,
    How r u guys? I need some help in BADI/User Exit. I am working on FI - CFM. There is a transaction with TCode- TS01 (Create Securities) / TS04 (settle securities).
    I need a BADI/Exit which gets activated when the user clicks on the save button. I tried to locate them but couldnt find anything suitable. I emailed sap and they told me that there is a BADI - FTR_CUSTOMER_EXTENT which I
    could use to solve my problem. I did try that and wrote a code in that badi;s EVT_TRANSACTION_SAVE_CHECK method.
    But unfortunately when i clicked on save button the badi didnt run. I am in a fix as to what do I do ? The system I am working on is a bit old its SAP R3 4.7C. In that I created a Z badi implementation and embeded the original
    badi definition and wrote code and activated everything.
    Either the badi I am using (which sap guys told) isnt correct or something. Can anyone guide me as to whats the next step.
    Thanks,
    JG

    Hi,
               To add a new custom tab in TM_XX transactions you have to follow these steps:
    1. (SE80) Create a dynpro as SUBSCREEN, with the structure (fields, tablecontrols...) you want in the new tab, located in a modul-pool.
    Example: Program: ZCFM001
    Dynpro: 1010
    2. (SE18) Create your custom implementation of BADI FTR_CUSTOMER_EXTENT. This will create a Z class where you can program the new tab management.
    Example: Implementation: ZAMPLIACIOTM001
    Class: ZCL_IM_AMPLIACIOTM001
    3. (SE24) Implement method EVT_APPLICATION_START of your new class. This method is called when the transaction is going to be painted, and manages (among other things) which tabs need to be shown. In general terms, you will have to assign your dynpro to a function code.
    This BADI offers you 2 custom function codes, and so, the ability to add two custom tabs. These function codes are OPEN_TRTM_CUST_01 and OPEN_TRTM_CUST_02.
    To add your dynpro to a function code, you have to identify this relationship in the internal table (parameter) PC_TAB_BADI_TABS. This is the table that contains the custom tabs to be added.
    To do this, you have to add the following piece of code:
    DATA: LS_BADI_TABS TYPE FTROP_BADI_SUBSCREEN.
    4.1. Modify the tab structure.
    LS_BADI_TABS-REPID = ZCFM001. "Report
    LS_BADI_TABS-TEXT_TAB = 'New Tab'. "Text (max. 30 CHAR) to display
    LS_BADI_TABS-DYNNR = '1010'. "Subscreen
    4.2. Add the new tab.
    MODIFY PC_TAB_BADI_TABS
    FROM LS_BADI_TABS
    TRANSPORTING REPID DYNNR TEXT_TAB
    WHERE FCODE = 'OPEN_TRTM_CUST_01'.
    And that's it! Now you will be able to see you new tab in these transactions.
    I hope this helps you.
    <b>Reward points</b>
    Regards

  • Parent child window functionality using CFM

    In .cfm page I am trying to implement the following
    functionality
    I got a parent window contains a button.
    On button click a child window should get open.
    This child Window should get embed in that parent window
    (like MDI application)
    1)i.e While minimizing the parent window this child window
    should also get minimized
    2)While closing the parent window this child window should
    also get closed
    3) We should also be able to close the child window alone.
    4) If you double click on the title bar of the child window
    it should get maximized
    5) Again double click on the title bar of the child window it
    should get minimized.
    I tried with <embed> tag but it seems its for audio ,
    flash kind files.
    If we can use <embed> tag means whats should be the
    value of the "Type" attribute.
    waiting for your valuable information

    Window handlers and controls are generally a function of the
    browser and not really manipulatable using ColdFusion, as it runs
    on server-side only, not client-side. JavaScript would be more the
    thing to play with in this regard, although I don't think there is
    an "onClose" event handler.
    HOWEVER!
    All browsers have a security feature that prevents pop-up
    child windows from "hijacking" their parents window behaviors,
    including resizing, moving, changing the toolbars, closing, etc.
    This security feature cannot be bypassed, and is an integral
    hard-coded aspect of all modern browsers. I suspect that what you
    are looking to do may be impossible due to this one fact, unless
    someone knows a bypass.

  • What is the use  implemention of work flow

    Hi guis,
      can u plz tell me what is the uses, u implement a workflow, and also please give the one scenrio on purchase order or invoice or anything, one scenrio explain me.

    Workflow is a tool for automating the business process so that the process itself flows smoothly, without bottlenecks and without dead ends. Critical parts of the process can be streamlined with deadline monitoring and contingency options. Participants are informed of milestones in the process. The process definition itself is powerful enough to allow business re-engineering with re-training and to eliminate the impact of workforce changes on the basic business process.
    SAP Business Workflow is the R/3 tool for handling the process automation within R/3 or between R/3 systems and other systems involved in the business process. It is flexible enough to handle ad hoc processes such as the circulation of an electronic document. It is robust enough to handle mission critical process in the production system such as the creation of a material master.
    The different R/3 applications supply standard workflows for the commonly occurring processes. Once these workflow templates are activated, they are ready for immediate use. A complete set of workflow tools, including the workflow editor and workflow generation wizard, are provided to enhance these standard workflows or create new workflows. These tools are complemented with transactions for monitoring, tracking and the statistical analysis of the processes.
    Because the business process often does not step at the R/3 boundary, various interfaces and third party tools are available for extending the process across systems.
    Workflow is the technique for automating business processes. It is particularly beneficial
    u2022 when different people are involved in different parts of the process
    u2022 when a process only occurs sporadically and the users need to be reminded of what they need to do
    u2022 when the duration of the process is critical and deadlines have to be met
    u2022 when the process definition is likely to change on the fly and retraining users is not possible.
    By automating the process, you free the users from having to know what to do when. Work items are sent to the participants notifying them of what they have to do, and a single click on the notification calls the correct transaction and navigates to the relevant screen.
    When the workflow runs it creates work items which are like e-mails, but
    u2022 they have the advantage that they contain the intelligence needed to execute the relevant task with the correct data when the operational user executes them,
    u2022 they provide their own functionality so that the operational user has access to everything that is useful to improve the flow of the process,
    u2022 they disappear on their own when they have been executed by someone else or made obsolete.
    These work items can be received in the R/3 business workplace, MS Outlook (or any other MAPI compatible client), Lotus Notes, or work item notifications can be distributed by e-mail.
    SAP Business Workflow:
    u2022 accelerates the workflow across applications, functional areas, organizational units, and time periods,
    u2022 supplements the integrated management of processes in the SAP System with individually tailored options for automating and actively controlling business and communication processes,
    u2022 combines integrated organizational management with flexible assignment of tasks and responsibilities to locations, positions, jobs, groups, or individuals,
    u2022 actively supports a quick implementation of workflow technologies through predefined workflow templates, Workflow Wizards and flexible adjustment options,
    u2022 integrates every employee in the value chain by providing a versatile integrated inbox ("universal inbox") at their work centers that can be configured individually,
    u2022 provides a Workflow Information System that is the foundation for process change management and continuous business engineering,
    u2022 was designed to be a change-management tool,
    u2022 simplifies continuous business engineering and process change management with user-friendly tools for defining and dynamically changing workflow tasks
    u2022 conforms to the workflow standards of the Workflow Management Coalition (WfMC)
    u2022 interfaces to other mail clients such as Lotus Notes and MS Outlook
    Check these links.
    http://www.sapgenie.com/workflow/index.htm
    Link workflow business objects to your collaboration tasks!!
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    Hope this resolves your query.
    raj

  • Ethernet CFM in Cisco7600

    Hi
    I try monitoring accessport both Router use the Ethernet CFM .
    Please teach me. How to configure Ethernet CFM this topology
    C7600 IOS is 12.2(33)SRE2
    [SW1]---(vlan10)g1/2[R1]g1/1----(dot1qtrunk)----g1/1[R2]g1/2(vlan10)----[SW2]
    MEP:Both Router g1/2
    MIP:Both Router g1/1
    When R1g1/2 not responding passage of 10 seconds
    then R2 detected R1g1/2 is linkdown by Ethernet CFM Continuity Check messages.
    I  want to achieve implementation Ethetnet CFM in C7600.
    Regards.                                        

    Have you opened a TAC case for it ?
    Can you share output of:
    show module 1

Maybe you are looking for

  • Af:panelHeader appearance like in af:panelBox

    Is it possible to let the header of an af:panelHeader appeare like the header of an af:panelBox component? This means that the upper corners should look rounded and the header line should have a colored ramp. I found out, if af:panelHeader components

  • Errors in Support Assistant - 5.5.1.0 Build 1828479

    Running 5.5.1.0 Build 1828479 When I click on the monitor tab to see the proactive support uploads status, all I see are errors.  When you hover the mouse over the status it says: cannot establish connection to vmware hosted services, please check th

  • Overview of parameters?

    Where can I find an overview of the parameters possible to retrieve through request.getParameter()? I want to get info like the IP-adress of the viewer, what page they just can from and so on. Is this possible with getParameter, or do I need to do so

  • Can you go on the internet for free??

    Hello - I have a iMac G3 350 Mhz that I want to give to my mother, who lives on a limited budget. My question is (and it's probably a lame question, but): Using OS 9.2.2 and Netscape (which has free email), is it possible to plug in the phone line fo

  • PKI Design / Migration - Questions

    Hello, Our organization currently uses a single-tier enterprise root CA for issuing certificates; We are growing and I would like redo this design in accordance with MS Best practice.   I just have a few questions: My original thought was to add an e