How to configure file server with portal using KM

Hi
i have some word documents,excel documents in my computer.i want to integrate these documents into portal using KM.how to do that?can anybody suggest the steps involved or tutorial to do this configuration.thanks for your help in advance
Prasad

Hi,
  It´s very simple to do that.
1.You must create repository. (I gave you this information).
2.Create portal users. (in portal or read from ldap)
3.Create KM navigation iview to point folders in your repository.
4.Create roles.
5.Assing roles to users.
  For you that is new in this tools, perhaps needs 3 or 4 days.
Patricio.

Similar Messages

  • How  to integrate File Server with Portal??

    Hi all,
    can any one tell me that how interegate the File Server With Portal Server??
    In my portal server under home tab i have sub tab (second level navigation) of File server.Whe i click this tab it throws an syntax error
    ie
    System Error
    An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
    Exception Class  :: class com.sapportals.wcm.repository.NotSupportedException
    Exception Message  :: Not Implemented
    thease are the steps that i have taken
    >created HTTP System..
    >created WebDAV Repository.
    >Created Cache.
    >Created KM WebDAV System.
    >Created Iview and in iview i have to specify the <b>Path to Initially Displayed Folder</b>
    i have specified the folder of file server that i want to display..
    but i get the same syntax error ..
    infact i dint get that folder in KM.
    But when i specify the folder that is present in KM its Work fine..
    Now the Scnerio According to me is that File server is not integrated properly
    if it would be integrated properly i would be able to see the folder of File server in  KM...
    am i correct ??
    please Guide me to integrated the File Server Properly??
    Points will be given for any help..
    Regards
    Vinit

    Hi Vinit,
    if you want some Windows File Server integrated into Portal, please do not use a WebDAV Repository, but use the File System Repository instead. Therefore you need to configure the according Repository Manager. Please refer to this documentation:
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm">Integrating Documents from a Windows System into KM</a>
    HTH,
    Carsten

  • Any Way to test Integration of File Server with Portal??

    Hi all,
    I want to integrate File Server with my Portal so that my Application and Data remains seperated.
    I have integrated File Server but i am not able to find the Folder of file server in KM.
    i have create KM Navigation Iview When i specify any folder that is available in KM it works fine but i can not see the folder of file server...
    <b>Is there any test with which i can check that weather my File Server is Integrated properly with my Portal or not?? </b>
    Any help will be highly Appretiated ...
    its very Urgent!!
    Thanks in Advance
    Vinit

    Hi,
    I think already file system repository created in the portal. plz check it
    Goto >System Admin>System Config>KM>Content management>Repositories manager>File system Repository. or create a new repository..
    You can use File System Repository so that you can integrate ur file server with portal. Refer this link
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/92322ab24e11d5993800508b6b8b11/frameset.htm
    Regards,
    Senthil K.

  • How to configure Content server with Oracle Portal

    I am working on oracle portal using JDeveloper 11.1.1.5.0. I need to configure Content server to work with UCM. Which content server version should i use and what basic steps required to configure it.
    OS environment is Windows XP SP3.
    Database server is Oracle 10gR2

    Hi
    "I need to configure Content server to work with UCM." - I am not clear on this .
    UCM is content server .
    Now if you are looking to have UCM contents rendered on Oracle Portal then you will need to use Content Portlet Suite .
    Hope this helps .
    Thanks
    Srinath

  • How to configure UDDI Server with in EDK with a 4.5WS?

    I'm trying to develop a crawler service using EDK5.0.1 with a 4.5ws portal.
    To do this job, I have to deploy and coufigure a UDDI Server which is a requirement for services in 4.5ws.
    After develping and deploying a crawler service, I created gadget server in the 4.5ws portal, and tried to add remote data source, but the popup window for datasource seems not to be able to find the crawler service and showed 'Empty Gadget Server'.
    I think I set up the uddi server with a wrong way, but I don't know what I have to do more to set a uddi server.
    Actually, after developing crawler service and sci service, I deployed these with DeployServlet which is a deploy toolkit offered by EDK.
    With this deploying result, I modified the uddi.xml file and put that file into c:\program files\Plumtree\ptedk\5.0\devkit\config\java\uddi folder.
    Is there any things to set for uddi server?
    Can anybody provide me any advise on this?
    Any help would be appricated.

    The UDDI is used with web services in 4.5x. This is best described as a phone book of URLS for any web services installed in that machine. Those URLS will then point to the individual web services.
    In 5.0 the UDDI server is not needed since it is replaced with the "Remote Server" and "Web Services" tabs. HOw to setup a UDDI with TOMCAT
    UDDI can be setup to run with TOMCAT and I believe this is the only one provided in the EDK installer in the ptedk\5.0\devkit\java directory
    Here's a little TOMCAT information. Web applications are deployed in a folder called "webapp". This case, we have a uddi server installed and it's in a folder called "uddi". So, our file structure for the UDDI server looks like: /webapp - tomcats web application folder /uddi - the uddi application /WEB-INF - standard WEB-INF directory stores java classes, jars and any descriptor files. server-config.wsdd - this is the web service descriptor file for this uddi server - provided by plumtree web.xml - this is the web.xml descriptor file for how the web services in this application will be loaded and run - provided by plumtree /lib - contains the jar files for the uddi server - provided by plumtree The server-config.wsdd file should be the only item that the user needs to modify. Within the file (XML based), there should be the following tag: <!--service for uddi server--> <service name="MessageService" provider="java:MSG" style="message"> <parameter name="allowedMethods" value="find_tModel find_business find_binding"/> <parameter name="className" value="com.plumtree.remote.uddi.UDDIServer"/> <!-- enter the base url for your services. The individual urls will be appended to this url--> <parameter name="baseUrl" value="http://rickc-loaner:81/ntcws/"/> <!-- Enter true if this is dotnet, leave at false if the service is java--> <parameter name="isDotNet" value="true"/> <!-- enter only the urls and names required for your service. For a java crawl, this would be crawler name, documentProviderRpc, containerProviderRpc, sciDataSourceRpc, sciCrawlRpc, and sciCardRpc if using remote card submission--> <!-- Enter the crawler name. This is the name that will show when expanding the remote server--> <parameter name="crawlerName" value="NT File CWS"/> <!-- Enter the auth name. This is the name that will show when expanding the remote server--> <parameter name="authName" value=""/> <!-- Enter the relative url to the rpc (Java) document provider soap endpoint --> <parameter name="documentProviderRpc" value="DocumentProviderSoapPort"/> <!-- Enter the relative url to the rpc (Java) container provider soap endpoint --> <parameter name="containerProviderRpc" value="ContainerProviderSoapPort"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the rpc (Java) sci data source soap endpoint --> <parameter name="sciDataSourceRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci crawl soap endpoint --> <parameter name="sciCrawlRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci card soap endpoint --> <parameter name="sciCardRpc" value=""/> <!-- note that relative auth only works in rpc for 4.5--> <!-- Enter the url to the auth provider soap endpoint --> <parameter name="authProvider" value=""/> <!-- Enter the relative url to the sync provider soap endpoint --> <parameter name="syncProvider" value=""/> <!-- Enter the relative url to the auth sci (rap) soap endpoint --> <parameter name="authSci" value=""/> <!-- Enter the relative url to the doclit (.NET) document provider soap endpoint --> <parameter name="documentProviderDoclit" value="documentprovidersoapbinding.asmx"/> <!-- Enter the relative url to the doclit (.NET) container provider soap endpoint --> <parameter name="containerProviderDoclit" value="containerprovidersoapbinding.asmx"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the doclit (.NET) sci data source soap endpoint --> <parameter name="sciDataSourceDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci crawl soap endpoint --> <parameter name="sciCrawlDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci card soap endpoint --> <parameter name="sciCardDoclit" value="xuiservice.asmx"/> </service> This tag contains the information that will be specific to the user's deployment of the web service (CWS or AWS).First off: <parameter name="baseUrl" value="http://machinename:81/ntcws/"/>
    This is the location of the web server that has the target web service installed. THIS CANNOT BE "localhost". This has to be a resolvable machine name or IP address. In 5.0 this is the Remote Web Service settings. Second, you need to set the type of web service. <!-- Enter true if this is dotnet, leave at false if the service is java--> <parameter name="isDotNet" value="true"/> If your app server hosting the web service is dotnet, you need to set this to "true". This is equivalent to the Document encoding setting in 5.0. .NET supports Document/Literal incoding instead of RPC for Java. Third, name your web services. This is the name that will display in the drop down list in 4.5WS when you decide to create a remote data source. <!-- Enter the crawler name. This is the name that will show when expanding the remote server--> <parameter name="crawlerName" value="NT File CWS"/> <!-- Enter the auth name. This is the name that will show when expanding the remote server--> <parameter name="authName" value=""/> This is the web service name property when you create a new web service in 5.0. Next are the configuration settings for your particular web service: <!-- Enter the relative url to the rpc (Java) document provider soap endpoint --> <parameter name="documentProviderRpc" value="DocumentProviderSoapPort"/> <!-- Enter the relative url to the rpc (Java) container provider soap endpoint --> <parameter name="containerProviderRpc" value="ContainerProviderSoapPort"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the rpc (Java) sci data source soap endpoint --> <parameter name="sciDataSourceRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci crawl soap endpoint --> <parameter name="sciCrawlRpc" value="SciSoapPort"/> <!-- Enter the relative url to the rpc (Java) sci card soap endpoint --> <parameter name="sciCardRpc" value=""/> <!-- note that relative auth only works in rpc for 4.5--> <!-- Enter the url to the auth provider soap endpoint --> <parameter name="authProvider" value=""/> <!-- Enter the relative url to the sync provider soap endpoint --> <parameter name="syncProvider" value=""/> <!-- Enter the relative url to the auth sci (rap) soap endpoint --> <parameter name="authSci" value=""/> <!-- Enter the relative url to the doclit (.NET) document provider soap endpoint --> <parameter name="documentProviderDoclit" value="documentprovidersoapbinding.asmx"/> <!-- Enter the relative url to the doclit (.NET) container provider soap endpoint --> <parameter name="containerProviderDoclit" value="containerprovidersoapbinding.asmx"/> <!--sci values: the url for datasource, crawl and card may be the same--> <!-- Enter the relative url to the doclit (.NET) sci data source soap endpoint --> <parameter name="sciDataSourceDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci crawl soap endpoint --> <parameter name="sciCrawlDoclit" value="xuiservice.asmx"/> <!-- Enter the relative url to the doclit (.NET) sci card soap endpoint --> <parameter name="sciCardDoclit" value="xuiservice.asmx"/> These are equivalent to setting the Document provider URL, Container Provider URL, Remote UI URL etc etc that are in 5.0 web services settings. Once you have installed the UDDI server, and started TOMCAT, you should be able to hit the services list at:http://machinewithuddi:8080/uddi/services This will become your Remote Gadget Server URL and you should be good to go!!

  • How to configure PHP Server with Flex

    Hello everyone,
    I am trying to create new flex application with PHP as server option.
    but on the Configure PHP server window it gives error as
    " You must enter a valid root URL."
    I am usingh xampp as php server, and i have changed the port no of apache to 90.
    so my web root is //localhost:90
    \xampp\htdocs\phpProject-debug
    Can anyone help me to configure the PHP server with Flash builder 4
    I am not using Zend server...

    Hello Rupesh,
    You need to specify full url like this "http://localhost:90/" and need to start server before validating.
    This check may be missed by you.
    Thanks,
    Vikram

  • Integrating existing file server with EP6SP9

    hello everyone
    we are implementing EP6 SP9 portal for our SBU and we need to integrate our existing file server with portal in which we can upload documents and download existing documents.
    do we need to use content management to access this file server using the file system repository manager or it can be done in some other way
    If theres an alternate way to do this, kindly explain what needs to be done.
    Kindly help
    Thanking you
    Anurag

    Anurag,
    yes, CM is the software to use for this. you could, in principle, go without CM and code the neccessary stuff on your own. But: The more funcionality you desire (think of: additional properties, search functionality, versioning ...), the more sense using CM makes. Plus you get all required user interfaces (like a repository browser) for free.
    Regards,
    Dominik

  • How to Configure Exchange server in EP6.0

    Hi
    How to configure mailing server in Portal
    With Regards
    Azhar

    Hi Azhar
    You can specify your mail server on the Portal.
    Go to System Administration -> System Configuration -> UM Configuration.
    You will find a field there to specify your mail Server.
    You may also have to specify this in the config tool of your WAS Server to enable email notification
    Take a look at <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/07/9bda3d5ed05610e10000000a114084/frameset.htm">this</a> .
    Hope that helps.
    Best Regards
    Priya

  • How to use my reports on report server with Portals

    Hi,
    I would like Portal to run my reports from the report server. I have have set up the report server in Portals using the Manage Components. Where do I go from there? Is there a way to just call those reports? and will I be able to use my configuration file (on report server)?
    Any assistance is appreciated. Thanks.
    ~Vannette

    Take a look at the Report Security Objects under the Admin tab.
    That has 4 or 5 portlets which helps u run the report from ur server.

  • How can I file share with another person if both of us are using Mac operating systems?  Do we need to use a third party file sharing system or does apple have this capability?

    How can I file share with another personif both of us are using Mac operating systems (one of us using a Mac laptop and the other using iMac).  Our intention is to have a working document that can be changed by both parties over time and both parties will have visibility to the others changes.

    Use SugarSync

  • When I access a windows files server with the mac I am adding .apple (hidden files). How can I prevent this.

    When I access a windows files server with the mac I am adding .apple (hidden files). How can I prevent this?

    Look for a program called BlueHarvest. I'm not sure if it still works with Mountain Lion.
    I believe your file server can be set up to handle the metadata files, but I suppose that would depend on the Server software and your IT staff.

  • How to configure OraMTS to allow WCF using MSDTC access  OracleDB  On unix?

    How to configure OraMTS to allow WCF using distributed transactions to access the ORACLE database On Linux/Unix ?
    Env:
    1. DB-tier node , ORACLE database (version: 11.2.0.1.0) on Redhat Linux server ;
    2. middle-tier node ,Both the client, the MS DTC and Oracle MTS run on the same computer , Win7 x64 OS , installed .Netframework 4.0, ODP.net (ODAC112030), and configure the component services in a distributed transaction;
    Has done the configuration:
    1. ORACLE database on a Linux server (version: 11.2.0.1.0) has execute oramtsadmin.sql script;
    2.ORACLE database on a Linux server (version: 11.2.0.1.0) has execute the following script, Creating an Access Control List (ACL);
    BEGIN
    -- Create the new ACL, naming it "OraMTSadmin.xml", with a description.
    -- This provides the OraMTS administrative user e.g. MTSADMIN user FOO
    -- the privilege to connect
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('OraMTSadmin.xml',
    'Allow usage to the UTL network packages',
    'ORAMTS', TRUE, 'connect');
    -- Now grant privilege to resolve DNS names to the OraMTS administrative user
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE('OraMTSadmin.xml' ,
    'ORAMTS', TRUE,'resolve');
    -- Specify which hosts this ACL applies to, in this case we are allowing
    -- access to all hosts. if one knew the list of all Windows middle-tier,
    -- these could be added one by one.
    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('OraMTSadmin.xml','*');
    END;
    3. ORACLE database on a Linux server has set JOB_QUEUE_PROCESSES = 1000;
    4. restart Oralce;
    5.Test code as follows :
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using JetSun.Infrastructure;
    using Microsoft.VisualStudio.TestTools.UnitTesting;
    using JetSun.Infrastructure.ServiceModel;
    using JetSun.DataModel.Cis;
    using JetSun.TestFramework;
    using System.IO;
    using System.Data.EntityClient;
    using System.Data.Objects;
    using ConsoleApplicationTest;
    using System.Transactions;
    namespace Core.Tests
    [TestClass]
    public class EfOracleTest
    public TestContext TestContext { get; set; }
    [TestMethod]
    public void GetEntities()
    //string cn = "DATA SOURCE=HIS30;DBA PRIVILEGE=SYSDBA;PASSWORD=jetsun;PERSIST SECURITY INFO=True;USER ID=SYS;enlist=true";
    string cn = "DATA SOURCE=HIS30;DBA PRIVILEGE=SYSDBA;PASSWORD=mtssys;PERSIST SECURITY INFO=True;USER ID=mtssys;enlist=true";
    DbsSetting s = new DbsSetting(Dbs.IP, DbsProvider.Oracle, cn);
    Runtime.SetDeploymentDir(TestContext.TestDeploymentDir);
    File.Copy("E:\\VSTS\\MedicalHealth\\bin\\Debug\\DataModel.Cis.Oracle.dll", Path.Combine(TestContext.TestDeploymentDir, "DataModel.Cis.Oracle.dll"));
    //File.Copy(@"E:\VSTS\MedicalHealth\DataModel\Oracle\DataModel.Cis\EdmDiagnose.csdl", Path.Combine(TestContext.TestDeploymentDir, "EdmDiagnose.csdl"));
    //File.Copy(@"E:\VSTS\MedicalHealth\DataModel\Oracle\DataModel.Cis\EdmDiagnose.ssdl", Path.Combine(TestContext.TestDeploymentDir, "EdmDiagnose.ssdl"));
    //File.Copy(@"E:\VSTS\MedicalHealth\DataModel\Oracle\DataModel.Cis\EdmDiagnose.msl", Path.Combine(TestContext.TestDeploymentDir, "EdmDiagnose.msl"));
    File.Copy(@"D:\vsts_test\ConsoleApplicationTest\ConsoleApplicationTest\bin\Debug\Model1.csdl", Path.Combine(TestContext.TestDeploymentDir, "Model1.csdl"));
    File.Copy(@"D:\vsts_test\ConsoleApplicationTest\ConsoleApplicationTest\bin\Debug\Model1.ssdl", Path.Combine(TestContext.TestDeploymentDir, "Model1.ssdl"));
    File.Copy(@"D:\vsts_test\ConsoleApplicationTest\ConsoleApplicationTest\bin\Debug\Model1.msl", Path.Combine(TestContext.TestDeploymentDir, "Model1.msl"));
    string connectionString = s.ToEdmConnectionString(typeof(EdmEncounter), false);
    //// Initialize the EntityConnectionStringBuilder.
    //EntityConnectionStringBuilder entityBuilder =
    // new EntityConnectionStringBuilder();
    ////Set the provider name.
    //entityBuilder.Provider = s.Provider.Provider;
    //// Set the provider-specific connection string.
    //entityBuilder.ProviderConnectionString = cn;
    //// Set the Metadata location.
    //entityBuilder.Metadata = string.Format(@"res://{0}/EdmDiagnose.csdl|res://{0}/EdmDiagnose.ssdl|res://{0}/EdmDiagnose.msl", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
    //entityBuilder.Metadata = string.Format(@".\Model1.csdl|.\Model1.ssdl|.\Model1.msl", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
    //connectionString = entityBuilder.ToString();
    ////using (Entities edm = new Entities(connectionString))
    //// foreach (var item in edm.ENCOUNTERs.Take(10))
    //// Console.WriteLine("{0}\t{1}", item.ENCOUNTERID, item.DISPLAYNAME);
    //entityBuilder.Metadata = string.Format(@"res://*/EdmDiagnose.csdl|.\EdmDiagnose.ssdl|.\EdmDiagnose.msl", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
    //entityBuilder.Metadata = string.Format(@"res://{0}/", "DataModel.Cis.Oracle, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null");
    connectionString = s.ToEdmConnectionString(typeof(EdmFeeInfo), false);
    try
    //using (TransactionScope tx = new TransactionScope())
    using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(0, 0, 30)))
    //using (var dbcn = s.Provider.CreateConnect(connectionString))
    using (EdmFeeInfo edm = new EdmFeeInfo(connectionString))
    //edm.Connection.CheckOpen();
    //using (edm.Connection.BeginTransaction())
    foreach (var item in edm.FeeInfos.Take(100))
    TestContext.WriteLine("{0}\t{1}", item.EncounterId, item.Amount);
    item.Amount = item.Amount * -1;
    edm.SaveChanges();
    // using (EdmFeeInfo edm2 = new EdmFeeInfo(connectionString))
    // edm2.Connection.CheckOpen();
    // edm2.Connection.EnlistTransaction(Transaction.Current);
    // foreach (var item in edm2.FeeInfos.Take(100))
    // item.Amount = item.Amount * -1;
    // edm2.SaveChanges();
    // throw new NotImplementedException();
    TestContext.WriteLine("-----------1---------------");
    using (EdmFeeInfo edm = new EdmFeeInfo(connectionString))
    foreach (var item in edm.FeeInfos.Take(100))
    TestContext.WriteLine("{0}\t{1}", item.EncounterId, item.Amount);
    throw new NotImplementedException();
    catch (Exception ex)
    TestContext.WriteLine((ex.InnerException ?? ex).Message);
    TestContext.WriteLine("-------------2-------------");
    using (EdmFeeInfo edm = new EdmFeeInfo(connectionString))
    foreach (var item in edm.FeeInfos.Take(100))
    TestContext.WriteLine("{0}\t{1}", item.EncounterId, item.Amount);
    6. the test results are as follows:
    4 125
    4 835.45
    4 3458
    4 2350
    4 200
    4 100
    4 300
    4 123
    4 234
    无法列入分布式事务处理 (Could not be included in the Distributed Transaction)
    -------------2-------------
    4 125
    4 835.45
    4 3458
    4 2350
    4 200
    4 100
    4 300
    4 123
    The main error message:无法列入分布式事务处理 (Could not be included in the Distributed Transaction) , not use distributed transaction everything is normal.
    My test environment MS DTC and Oracle MTS Recovery Service run on the same computer, but OracleMTSRecoveryService registry values under£º HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \ ORACLE \ OracleMTSRecoveryService ,not under HKEY_LOCAL_MACHINE \ SOFTWARE \ ORACLE,I do not know that there is no relationship.
    Is not configured incorrectly?Who can help me, thank you very much!

    Do you really have a requirement to push data from Oracle to Access rather than pulling data from Oracle to Access? It would be exceptionally unusual to push data from Oracle to Access.
    Pushing from Oracle to Access would means that you want some Oracle process running that is updating Access. But you said that your Access database was on your "local desktop" which implies that it is not running on a server where it is always available. So that means that the Oracle process is going to regularly encounter (and report) errors because the Access database is not available. In turn, that's going to mean that your push process is either going to cause the underlying transaction to fail or it's going to mean that the push process is going to have to implement a fair amount of code to queue data to be pushed at a later date (and track all those changes) which is no small task. None of that seems particularly pleasant.
    On the other hand, Access is designed to pull data from real relational databases like Oracle. That's the far more normal approach architecturally. It doesn't require an Oracle process, it doesn't generate errors on the Oracle database when the local desktop is down, etc.
    And, of course, I'm assuming that introducing Access is even architecturally reasonable. Most organizations would be extremely hesitant to allow data from an Oracle database to get moved into Access because that quickly means that they lose control of the data from a security standpoint, that there are now multiple copies of the data floating around when changes & corrections are made, etc. That causes all sorts of headaches normally above and beyond the headaches that pushing from Oracle to Access would create.
    Justin

  • Replace a 2003 (not R2) File Server with a 2012R2 files server and preferably keep the same machine name and IP when finished

    I am wanting to replace a 2003 (not R2) File Server with a 2012R2 file server and preferably keep the same machine name and IP when finished.  For the moment I just need some "high level" guidance, little details can be worked out once I know
    which direction I will go.  I was considering that DFS might be a way to help get through the process although when finished the 2012R2 Files server will be by itself with no other file server planned at this time.  DFS can stay installed for maybe
    future purposes but clearly I wouldn't need the DFS Replication with only one machine.
    Here's a few details of the environment....
    1.  DC's are 2012R2 but it is still 2003 DFL because the old 2003 DCs are still present.  But likely they will be gone and the DFL elevated before I start on the File Server project
    2. Nearly all machines in the facility have a shortcut on the "All Users" Desktop that points to the existing old File Server.  Editing or replacing that shortcut would be a major pain,...hence why I want to keep the same machine name at least,
    and maybe the same IP if not too much trouble.  This way the existing shortcut would continue to work with the new 2012R2 File Server.  The UNC path represented in that shortcut is also configured into one or more of our major business applications,
    futher emphasizing the need to keep the UNC path the same throughout the process.
    3. The facility runs 24/7/365 but is "light" on weekends.  The political environment is such that there is little to no tolerance for any down time at all.
    4. Would DFS (based from the 2012R2 machine) be a good tool to get where I need to go?
    Thanks for any suggestions.
    Phillip Windell

    Hi Sharon,
    I've done some more reading and have a few new ideas to run past you....
    Yes regular DFS wouldn't help and the Namespace would still be different than how it was with just the old server. However I was thinking DFS Replication could replace the purpose of RoboCopy and it would keep the two locations "in sync" until I was ready
    to flip over to the new server.  DFS Rep can exist independently of a DFS Namespace, so a Namespace is not even needed. It needs a minimum of 2003R2 for the "later & better" DFS Rep but I believe 2003 can do an "in place" upgrade to 2003R2, so I would upgrade
    the old server to 2003R2 first.  As long as the DFS Rep on 2012R2 and 2003R2 will properly interact I think that will work.
    Thanks for the reg info on the Shares.  I'm debating if editing that would reg file would really be much better than manually creating the Shares on the new server while the DFS Replication was doing its job.  I'll probably export that Key as a
    safety move whether I use it or not.
    Once the DFS Rep is fully in sync and the Shares are in place on the new server, I figure I would then:
    1. Remove the DFS Replication Object (optionally remove DFS Services completely)
    2. Rename the old File Server to something else and set it to DHCP
    3. Rename the new File Server to the name I want to use and give it the IP the old server had.
    How does that sound?
    Phillip Windell

  • Sending XML file from SAP to Windows Based file server with FTP function

    Hi Gurus,
    We are using SAP BW 3.0B version.
    I need to convert data in ODS to XML format and send this XML file to remote server which  is not a SAP application server, it is just a Window Based file server with FTP function..
    By writing some ABAP code I have converted ODS data into XML format (which gets saved in my local system)
    (Is that I need to put this file in Application Server to send it to the other servers? )
    Now the thing is how I can send this file to that Windows Based file server.
    plz suggest me.... what can be done......
    Thanks in Advance
    Madhusudhan
    Edited by: Madhusudhan Raju on Dec 3, 2009 4:25 AM

    I dont think the above code support windows OS. Because I always execute this script via UNIX.
    I think you can try this option, go to command prompt, goto the destination path where you have an XML file using cd....
    ftp (destination servername), specify the username and password.
    afterthat, use the command put and filename.
    check whether the file had reached destination successfully or not.
    For automation purpose, you can use the following script like
    ftp: -s: test.txt  (servername)
    In test.txt,
    UserName
    Password
    bin
    cd /files
    put file.xml
    bye
    Also, you can check in SM69, there will be some SAP external commands to automate the file transfer.
    Thanks
    Sat
    http://support.microsoft.com/?kbid=96269

  • How to configure http server in oracle 10g

    Hi
    I am configuring apex 3.2.1 on oracle 10g 10.2.0 I need help how to configure http server bec i did not find any Apache file or folder in 10g if it is then how .
    Arshad

    Hi
    I use to configure only this in $ORACLE_HOME/forms/server/forms.conf (and restart ias):
    AddType application/x-orarrp rrp_
    AddType application/x-orarrp-text rrpt
    AddType application/x-orarrp-ps rrpp
    AddType application/x-orarrp-pdf rrpa
    AddType application/x-orarrp-rtf rrpr
    AddType application/x-orarrp-html rrph

Maybe you are looking for

  • How to change the name of a pdf file in iBooks on ipad

    I have a number of appliance and tool manuals  as pdf files uploaded to my iPad. In order to identify them easier I would like to change the names of the files. I changed them in iTunes on my computer but they do not change on the iPad2 when I sync.

  • Velocity Displcement Calibration for Sound and Vibration Tool Kit

    Hello Guys, I have been working on sound and vibration tool kit recently. I'm taking input from sound port of PC by signal generator and taking single and double Integration for velocity and displacement resp. I want to check the correctness of the v

  • Can't import from iMovie HD

    I can't import my iMovieProject files from iMovie HD (the one that came pre-installed with tiger in '06) It creates a blank file in iMovie '08. Any ideas?

  • Report Data in Alternate Unit of Measure

    Hi We are working on Unit of measure Conversion for this we are following “How To….Report Data in Alternate Units of Measure” document. We did all the steps as mentioned in the document still this is not working. All results are showing zeros with sa

  • Match code result not copied in the transaction

    Hi there, I had a request to check the following problem : in transaction VF02 (billing doc change), when finding a document through custom match code using the reference field, double clicking on the document in the result box does not copy the docu