OBIA 7.9.6.3 security integration with EBS R12.1.2

Hi Experts,
We are implementing OBI Apps 7.9.6.3 with EBS R12.1.2 as source.We need to integrate Active Directory with OBIEE and implement security of BI Apps with EBS R12.1.2. Need help on this.
How to map EBS Responsibilities into Application Role and Groups? Whether we need to create one Application Role and Group for each responsibility ? Then provide permissions in rpd for each of them? The user should have similar permission in BI as they have in EBS - like people can see only US Finance data in EBS should see only US Finance data in BI also.
Regards,
mvsst

You can go through obia security guide which explains step by step procedure with screenshot on how to implement ebs authentication and role based access.
here is the link.
http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/ebs_actions.htm
Regards,
RAM
Edited by: RAM CH on May 20, 2012 1:34 PM

Similar Messages

  • APEX integration with EBS R12.1.1 - no SSO

    I am trying to complete APEX integration with EBS R12.1.1 in simplest way. I have a non authenticated report page that I need to link to through a menu and function on one of the existing forms.
    Rod West document
    http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf
    offers the jsp approach which I like to implement however the jsp will not compile correctly and I am not sure why - I have already fond one error with the code as listed in the document:
    ojspCompile.pl compile -s 'LaunchApex.jsp ' retry ---> will not work
    ojspCompile.pl compile -s 'LaunchApex.jsp' retry --> will work
    compile will fail starting at this point of the code:
    PARALLEL COMPILATION: 1
    [10389] !!COMPILATION ERROR(0) LaunchApex.jsp:
    _LaunchApex.java:70: illegal start of type
    if (ctx==null) {
    ^
    has anyone tried this approach and got the jsp to compile with no errors or can you see what is it?
    thanks in advance.

    Hello Mini:
    thanks for the info and I have followed the steps as listed. I am not sure what line is the bad code you listed is on - here is the copy of the jsp I am working with and maybe you can point to a specfic line(s) that need to be changed from what to what.
    <%@ page contentType="text/html;charset=UTF-8" %><%--
    /* LaunchApex.jsp */
    --%><%@ page
    import="java.io.*"
    import="java.net.*"
    import="java.sql.*"
    import="javax.servlet.http.*"
    import="java.util.Enumeration"
    import="java.util.Properties"
    import="java.lang.Math"
    import="oracle.apps.fnd.common.VersionInfo"
    import="oracle.apps.fnd.functionSecurity.Function"
    import="oracle.apps.fnd.functionSecurity.RunFunction"
    import="oracle.apps.fnd.common.WebAppsContext"
    import="oracle.apps.fnd.common.AppsEnvironmentStore"
    import="oracle.apps.fnd.common.WebRequestUtil"
    import="oracle.apps.fnd.common.ResourceStore"
    import="oracle.apps.fnd.security.CSS"
    import="oracle.apps.fnd.common.Message"
    import="oracle.jdbc.OracleConnection"
    import="oracle.jdbc.OraclePreparedStatement"
    import="oracle.jdbc.OracleResultSet" %><%!
    // Session has to be validated first
    WebAppsContext ctx = WebRequestUtil.validateContext(request, response);
    if (ctx==null) {
    return; }
    String cookieName = ctx.getSessionCookieName();
    boolean validSession = ctx.validateSession(cookieName);
    WebRequestUtil.setClientEncoding(response, ctx);
    %>
    <html>
    <head>
    <title>Launch Apex</title>
    <!-- LaunchApex.jsp -->
    </head>
    <body>
    <%
         String p_application = request.getParameter("application");
         p_application = ( p_application==null ? "NONE" : p_application);
         String p_page = request.getParameter("page");
         p_page = ( p_page==null ? "1" : p_page);
         String p_item_names = request.getParameter("item_names");
         p_item_names = ( p_item_names==null ? "" : p_item_names);
         String p_item_values = request.getParameter("item_values");
         p_item_values = ( p_item_values==null ? "" : p_item_values);
         AppsEnvironmentStore m_env = (AppsEnvironmentStore) ctx.getEnvStore();
         try {
              String l_launcher = ctx.getProfileStore().getProfile("APEX_HTTP_SERVER");
              l_launcher = l_launcher + "/pls/apex/f?p=" + p_application + ":" + p_page;
              l_launcher = l_launcher + "::APPS:::" + p_item_names + ":" + p_item_values;
         if (ctx!=null) ctx.freeWebAppsContext();
         response.sendRedirect(l_launcher);
         } //try
         catch (Exception e) {
         out.println("Exception found : <pre>");
         e.printStackTrace(new PrintWriter(out));
         out.println("</pre>");
         } //catch
    %>
    </body>
    </html>
    *********

  • Apex Integration with EBS R12 - javax.servlet.ServletException

    Morning,
    We are in the process of upgrading from 11i to R12 and we have found that our method of launching Apex in 11i no longer works in R12. We are trying to follow the following instructions: http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf and have created a .jsp file and compiled as per the document. When we try to launch the function from apps though we get:
    An exception occured.
    URL=XXX/OA_HTML/XXFND_LaunchApex.jsp?transactionid=1236782452&language_code=US&CallFromForm='Y'&p_application=112&p_page=101&oas=DScF2XdCwRRnxFePUKHOnQ..
    javax.servlet.ServletException: oracle.classloader.util.AnnotatedClassNotFoundException:
           Missing class: _XXFND__LaunchApex
         Dependent class: oracle.jsp.runtimev2.JspPageInfo
                  Loader: oc4j:10.1.3
             Code-Source: XXX/apps/tech_st/10.1.3/j2ee/home/lib/ojsp.jar
           Configuration:  in META-INF/boot.xml in XXX/apps/tech_st/10.1.3/j2ee/home/oc4j.jar
    This load was initiated at oacore.web.html.jsp1603821464:0.0.0 using the loadClass() method.
    The missing class is not available from any code-source or loader in the system.I've XXX'ed out our domain. Has anyone else has this, or can anyone who has successfully integrated apex with EBS R12 let me know what they did?
    Thanks

    Hi,
    If the jsp compiled successfully then you may need to bounce your web server before the jsp can be used. See MOS Note 458338.1 for more details.
    Actually, now that Oracle have updated their FND Gateway for Apex integration there are only a few situations (such as if you want to pass parameters from the form function to Apex) where you need to use a custom jsp to launch Apex. In most cases you can use the Oracle supplied GWY.jsp to launch your Apex Page. To use this jsp you must apply the EBS R12 patch 12316083 (and patch 12726556 if you are launching from the forms navigator). How to use the GWY.jsp is described in "Extending Oracle E-Business Suite Release 12 using Oracle Application Express" white paper.
    Rod West

  • Discoverer integration with EBS R12 !!!

    Hello Sir,
    I need help to install/integrate Discoverer with R12.
    Actually, our clients are using Discoverer 4i in current EBS 11.5.10.2 in production. We have just upgraded EBS in TEST environment from 11.5.10.2 to R12.1.3.
    I had suggested client that Discoverer 4i is actually de-supported and they need to upgrade Discoverer version to minimum 10.1.2.3 or higher to integrate it with R12.1.3.
    Now, client also have requirement for Discoverer to be certified with MS Excel 2010 format. So I have suggested to upgrade Discoverer version to minimum 11.1.1.4.
    Latest certified Discoverer version is 11.1.1.7.0 as per note Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 (Doc ID 1074326.1)
    1) Can you please provide your opinion and any documentation which I can follow to install/integrate Discoverer with R12 ?
    2) Do I need to first install separate 10gAS for installing Discoverer 10.1.2.3 or Fusion middleware home for installing Discoverer 11g ? If yes, where can I find doc for this installation ?
    3) Since 10g support has ended July 2013, where can I get media for installing 10gAS ?
    4) Is there any additional licences required for using either Discoverer 10g or Discoverer 11g ?

    1) Can you please provide your opinion and any documentation which I can follow to install/integrate Discoverer with R12 ?
    In addition to the doc you have, please see:
    https://blogs.oracle.com/stevenChan/entry/discoverer_11_1_1_7
    How to Test Discoverer Integration with E-Business Suite 11i and Release 12? (Doc ID 1065257.1)
    Running Discoverer Reports From EBS R12 (Doc ID 1516784.1)
    R12: How to Create a Link to a Discoverer Workbook (Doc ID 471303.1)
    2) Do I need to first install separate 10gAS for installing Discoverer 10.1.2.3 or Fusion middleware home for installing Discoverer 11g ? If yes, where can I find doc for this installation ?
    Installation Recommendations - 11g Release 1 (11.1.1)
    Installer Screens - 11g Release 1 (11.1.1.7.0)
    3) Since 10g support has ended July 2013, where can I get media for installing 10gAS ?
    You can download WebLogic 10.3.6 from WebLogic Server 12c (12.1.1), WebLogic Server 11g (10.3.6) and Previous Releases
    4) Is there any additional licences required for using either Discoverer 10g or Discoverer 11g ?
    Please see Steven Chan's reply in this link -- https://blogs.oracle.com/stevenChan/entry/discoverer_11gr1_primer
    Thanks,
    Hussein

  • Apex 4.2 Integration with EBS R12.1.1

    Hi Guys,
    We followed the document "Oracle Applications Express The Fast Way to Extend the Oracle E-Business Suite By Rod West, Cabot Consulting [http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf]
    After doing all the steps, when we try to navigate from EBS application to Apex application by clicking on the EBS menu link it ends up with below error
    "404 Not Found
    Resource /OA_HTML/null/pls/apex/f not found on this server"
    My url showing like this [http://<hostname>:<Apex port>/OA_HTML/null/pls/apex/f?p=101:1::APPS::::]
    Can anyone can help me in this.
    Brgds,
    Max.

    Hi Rod,
    Me too, have the same problem. I have tried like you said that is i replaced the below line in LaunchApex.jsp file instead of the line
    response.sendRedirect(l_launcher);
    in the jsp file and also i have recompiled using the following command in the bin directory
    ojspCompile.pl compile -s 'LaunchApex.jsp' retry
    Now my current jsp file has the following contents
    <%@ page contentType="text/html;charset=UTF-8" %><%--
    /* LaunchApex.jsp */
    --%><%@ page
    import="java.io.*"
    import="java.net.*"
    import="java.sql.*"
    import="javax.servlet.http.*"
    import="java.util.Enumeration"
    import="java.util.Properties"
    import="java.lang.Math"
    import="oracle.apps.fnd.common.VersionInfo"
    import="oracle.apps.fnd.functionSecurity.Function"
    import="oracle.apps.fnd.functionSecurity.RunFunction"
    import="oracle.apps.fnd.common.WebAppsContext"
    import="oracle.apps.fnd.common.AppsEnvironmentStore"
    import="oracle.apps.fnd.common.WebRequestUtil"
    import="oracle.apps.fnd.common.ResourceStore"
    import="oracle.apps.fnd.security.CSS"
    import="oracle.apps.fnd.common.Message"
    import="oracle.jdbc.OracleConnection"
    import="oracle.jdbc.OraclePreparedStatement"
    import="oracle.jdbc.OracleResultSet" %>
    <%
    // Session has to be validated first
    WebAppsContext ctx = WebRequestUtil.validateContext(request, response);
    if (ctx==null) {
    return; }
    String cookieName = ctx.getSessionCookieName();
    boolean validSession = ctx.validateSession(cookieName);
    WebRequestUtil.setClientEncoding(response, ctx);
    %>
    <html>
    <head>
    <title>Launch Apex</title>
    <!-- LaunchApex.jsp -->
    </head>
    <body>
    <%
    String p_application = request.getParameter("application");
    p_application = ( p_application==null ? "NONE" : p_application);
    String p_page = request.getParameter("page");
    p_page = ( p_page==null ? "1" : p_page);
    String p_item_names = request.getParameter("item_names");
    p_item_names = ( p_item_names==null ? "" : p_item_names);
    String p_item_values = request.getParameter("item_values");
    p_item_values = ( p_item_values==null ? "" : p_item_values);
    AppsEnvironmentStore m_env = (AppsEnvironmentStore) ctx.getEnvStore();
    try {
    String l_launcher = ctx.getProfileStore().getProfile("OAE_LAUNCHER");
    l_launcher = l_launcher + "/pls/apex/f?p=" + p_application + ":" + p_page;
    l_launcher = l_launcher + "::APPS:::" + p_item_names + ":" + p_item_values;
    if (ctx!=null) ctx.freeWebAppsContext();
    out.println("Apex Launch URL : <a href=\"" + l_launcher + "\" target=\"_blank\">" + l_launcher + "</a><br/>");
    } //try
    catch (Exception e) {
    out.println("Exception found : <pre>");
    e.printStackTrace(new PrintWriter(out));
    out.println("</pre>");
    } //catch
    %>
    </body>
    </html>
    But then too the same error like
    404 Not Found
    Resource /OA_HTML/null/pls/apex/f not found on this server
    http://erptest03.4iapps.com:8006/OA_HTML/null/pls/apex/f?p=102:101::APPS::::I dont know where im missing.
    Brgds,
    Mini

  • OBIEE Installation doc's and integration with EBS 12.0.6.

    HI,
    I had installed OAS 10g with OSS and OID and integration with EBS R12.0.6.
    Now I want to install OBIEE(On Linux) and wants to iuntegrate with SSO.
    Please provide me the Master Doc for this and anyother private doc also if any.
    thx

    Hi,
    Check this might be helpful... http://gerardnico.com/wiki/dat/obiee/linux_installation
    http://onlineappsdba.com/index.php/2007/10/29/biee-installation-on-linux-business-intelligence-enterprise-edition/
    To integrate with EBS check these.....http://it.toolbox.com/blogs/eye-on-obi/oracle-bi-applications-obiee-security-integration-with-oracle-ebusiness-suite-17246
    http://obibb.wordpress.com/2010/07/30/integrating-oracle-ebs-and-oracle-bi-ee-part-i/
    Thanks,
    Srikanth

  • User authentication when OBIEE is integrated with EBS

    Hello guys
    I have a conceptual question about how OBIEE authentication is performed in an integrated environment with EBS? If the goal is to have users access to OBIEE based on their roles given in EBS, what kind of authentication is it needed for such implementation?
    Do I import users and group from EBS database or LDAP server (if its available)? what kind of session variable and ini block is created if I want to do data level secuirty based on user groups?
    Please give some basic idea and guidelines on topic
    Thank you very much

    hi,
    the final solution must face and fill your needs....
    Bi suite has 3 ways of making-having user-groups...
    1.manual
    2.ldap
    3.from external database
    If the goal is to have users access to OBIEE based on their roles given in EBS, what kind of authentication is it needed for such implementation?
    -->match the roles from EBS to your liked in OBIEE
    check and this,
    http://it.toolbox.com/blogs/eye-on-obi/oracle-bi-applications-obiee-security-integration-with-oracle-ebusiness-suite-17246
    hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • Do we have OBIEE integrated with EBS

    Hi Experts,
    Do we have OBIEE integrated with EBS or we have to do it manullly..do we have any docs.
    Please suggest..
    S

    Hi,
    Never i have done this but i can show you the path.
    [http://it.toolbox.com/blogs/eye-on-obi/oracle-bi-applications-obiee-security-integration-with-oracle-ebusiness-suite-17246]
    OBIEE Integration  with EBS 11.5.10 or R12 Apps
    By,
    Kranthi.

  • Oracle Applications Adapter - working with EBS R12 (inbound/outbound)

    Hi,
    Need to integrate Siebel CRM 8.1.1.5, Oracle EBS 12.0.4, and few other third party systems.
    Planning to use Fusion middleware to integrate, and also use Oracle Applications Adapter.
    Query -
    We would like to know how EBS can work with Oracle Applications Adapter, best practices regarding this.
    We've inbound, and outbound from EBS, for multiple modules.
    Thanks,
    Meera

    You already got an answer by "X A H E E R" in your other thread, so why posting duplicate threads? -- Re: Oracle Jdeveloper Integration with EBS R12.1.3
    You have also posted the same question in "JDeveloper and ADF" forum! -- Re: Integrate Jdeveloper with Oracle E-Bussiness Suite for reporting

  • EBS Security Integration with BI Publisher

    Hi All,
    I have few questions regarding integration of EBS Security with BIP. I went through the following document Oracle Fusion Middleware Administrator's Guide for Oracle Business Intelligence Publisher.
    and have following questions.
    -- Upon on logging on into BIP after integration with EBS should I assign the three roles of BI i.e. BI Administrator, BI Author and BI Conusmer to all EBS roles for catalog permission set up.
    Below is my requirement. EBS user logging into BIP
    a) Set of Users should have to build reports , publish on dashboard etc.
    b)Set of users need only view reports i.e. read only.
    c) One User should have Admin privileges.
    How do I associated above with EBS roles. Should I assign BI roles to EBS roles in EM and give catalog permissions? Any thoughts will be really appreciated.
    Thanks
    SYK

    have you got a response for this? We are having the same issue after following everything as well.

  • Integration of Oracle Apex with EBS R12.1.1

    Dear All,
    We are in process of integrating Oracle Apex 4.0.2 with EBS R12.1.1 with the help of http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf.
    After doing all the steps, the moment when we navigate from EBS application to Apex application by clicking on the EBS menu link it ends up with below error
    "404 Not Found
    Resource /OA_HTML/null/pls/apex/f not found on this server"
    After some analysis i found the below code in "LaunchApex.jsp" for getting the profile value (supposed to be 'http://myserver:port') from custom system profile "APEX_HTTP_SERVER" and prefixing to "/apex/f?p=applicationid:page::APPS:::" is not happening properly
    String l_launcher = ctx.getProfileStore().getProfile("APEX_HTTP_SERVER");
    l_launcher = l_launcher + "/apex/f?p=" + p_application + ":" + p_page;
    l_launcher = l_launcher + "::APPS:::" + p_item_names + ":" + p_item_values;
    as we found that the custom system profile "APEX_HTTP_SERVER" not exist in EBS system. But it works without any page error if we hard code the entire apex application URL in l_launcher variable, but this takes us to EBS login page instead of Apex application page.
    So i feel we can't bypass using profile value from "APEX_HTTP_SERVER" as it has some relation with EBS application session.
    So could anyone please help me how we could create custom system profile "APEX_HTTP_SERVER" or any other options to make the seamless integration of Oracle apex with EBS works without any second login page
    Thanks in advance
    Edited by: 805196 on Aug 25, 2011 12:23 AM

    Hi,
    Create a profile under Application Developer Responsibility as follow:
    Name OAE_LAUNCHER
    Application <whatever>
    User Profile Name Oracle Application Express Launcher
    Description Oracle Application Express Launcher
    2. Set above profile value under System Administrator Responsibility -> Profile -> System, and search for the ‘OAE_LAUNCHER’.
    Set the value at Site Level as:
    http://<hostname>:<Apex port>/pls/apex
    Then instead of hardcoding the URL in the jsp, just give the profile name OAE_LAUNCHER that you have just created in the jsp.
    Hope this helps you
    Brgds,
    Mini
    If this is helpful or correct, assign points promptly.

  • This content cannot be displayed in a frame after integrating Endeca with EBS R12.2

    Hi,
       I just integrated endeca with EBS R12.2 , after I ran option 6 (envSetup.sh) , bounced Studio Managed server , now I am not able to see data on eAM or Payable Dashboard.
    when I click on Payable Dashboard , I get "This content cannot be displayed in a frame "
    Did I miss any step ?
    Thanks
    sbt

    Version Details :
    EBS is on 12.2.4 version
    Package Used :
    Oracle E-Business Suite Extensions for Oracle Endeca, Release 12.2 V5
    V44749-01_1of2.zip and V44749-01_2of2.zip

  • OID Installation Questions pertaining to integration with EBS 11.5.10.2

    Our Environment is E-Business Suite 11.5.10.2 and we want to investigate/view OID/SSO in action. Ultimately, we'll attempt to use Microsoft Active Directory as the source (of truth). I had performed OID/SSO integration with EBS about 3 years ago and remember the "overall" scheme, but Oracle's documentation/downloads page has left me thoroughly confused, hence, I am asking those that have been through the process .... THANKS IN ADVANCE
    (1) Do I need to install the base AS 10g Infrastructure and Metadata Repository via 10.1.2.0.2 installation or can I go directly to installing OID 10.1.4.0.1 ??
    Here is what I believe the steps to be, PLEASE, correct me if I am wrong ...
    (1) Install 10.1.2.0.2 Application Server Infrastructure by selecting "Infrastructure and Metadata Repository"
    (2) Install 10.1.4.0.1 and select to upgrade an existing 10.1.2.0.2 installation. Once 10.1.4.0.1 has upgraded everything, including the database to 10.1.0.5, I assume that I can simply remove 10.1.2.0.2 through the Oracle Installer. Is this correct ??
    (3) Once upgrade to 10.1.4.0.1, I believe that I need to download a Metadata Upgrade Assistant patch, (mrua), and run mrua,sh to upgrade MR to 10.1.4.0.1 which will be apparent by querying app_registry view.
    (4) Upgrade 10.1.4.0.1 to 10.1.4.3
    The documentation is confusing and hard to find for me. Do these steps seem to accomplish the tasks or am I missing something ??
    THANKS IN ADVANCE

    I didn't do the install myself but we went straight to installing 10.1.4 Identity Manangement, although I believe that Infrastructure components which underly it are essentially the same as 10.1.2. As far as I know you can't use 10.1.3 because it lacks those infrastucture components.
    See MOS Doc 233436.1

  • Integrating Oracle Apex 4.0.2 with EBS R12.1.1

    We could successfully integrate Oracle Apex 4.0.2 with EBS R12.1.1 with the help of http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf.
    The document says to navigate from EBS to Oracle Apex without any second login screen (works great!!), but now how do we navigate back to EBS from Oracle Apex (in same session) without any login screen again as like below
    EBS User login --> EBS --> Oracle Apex --> EBS
    Please help to achieve this.

    Hi,
    Under the Authentication scheme of your application in the Logout URL Section, give the following
    wwv_flow_custom_auth_std.logout_then_go_to_url?p_args=&APP_ID.:http://xyz.ck.com:8010/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGEspecify your ebiz suite url instead of http://xyz.ck.com:8010 in the above link.
    so, that while pressing the Logout link in your apex, you wont be redirected to the ebiz login page again, and it will redirect to you ebiz menu home page back in the same session itself.
    This will work for sure.
    Good Luck!!!
    Change your User handle from "805196" to a meaningful word.
    Brgds,
    Mini
    If this answered your question, then award points and close the thread.

  • Installing Demantra 7.2 with EBS R12

    Hi All
    I am planning to install and integrate Demantra 7.2 with EBS R12. If any one has done it, please provide me the pointers to do this.
    Thanks

    In addition to the notes referenced by Hussein above, Note 470574.1 indicates following the 11.5.10.2/Demantra 7.1.1 documentation. A good note for that is below:
    EBS-Demantra Integration Installation Overview and Diagram
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=434991.1
    Just download the R12/Demantra 7.2 patches from 470574.1. Also make sure the Windows machine has the exact same version of the Oracle client as the R12 database. If the R12 database is still 10.2.0.2, then you have to have 10.2.0.2 client. Also ensure you install the utilities portion in order for the import executable to be there. The OAS 10.1.3 10.1.4 SSO steps are optional as the workflow components only work correctly on the Windows Tomcat Application Server.

Maybe you are looking for

  • HT204402 Renaming an event in iMovie and yellow warning triangles

    Im new to the world of apple and iMovie and have made the mistake of completing a project and then renaming my events to tidy things up. I've since been told that this was a stupid thing to do and my project cannot locate the footage from the event (

  • External Display and AC charger (together ) Causes 70% CPU usage :(

    Ok, here is what I have : - MacBook Pro 13" early 2011 - Mac OS X Lion 10.7.3 - External Display ( Samsung SyncMaster 2333) - MiniDisplay port to VGA adapter. Here is my problem : When I'm using my computer normally with AC charger plugged in everyth

  • HT5691 How long do I have to purchase applecare

    Buying a iPad for my daughter do I need to get the AppleCare now or can I get it after Christmas when she first registers it?

  • TCLSH - Cannot open file in bootflash

    Hello Guys - I am trying TCLSH for the first time. I want to perform a multiple file copy from TFTP. The device I am working on is a Nexus 7000. First step is to open a text file that contains the list of files I want to copy. This text file is in bo

  • MM Stock Related Table

    Hi tell me about some  stock related table . I specially want to know that after posting that is  after executing t code MI10 which database table get updated. I also want to know from where Tcode MB5B fetch the data