Configuration Element

Dear all,
In transaction SOLAR02, I was trying to setup configuration folder. My understanding is that we set this area in order to generate IMG project for satellite system (my satellite system is ECC 6).
I chose Configuration Element ERP 6.0, and then when I confirm the next dialog window informs the following statement with some products except ECC :
"Products are used for which there is no logical component in the system landscape. Specify for which of these products the logical component is to be put in the system landscape".
My question is, since my satellite system is set to product ECC 6, and there is no ECC 6 listed in the dialog window, is this mean that the configuration elemente of  ECC 6 product is by default added to the configuration folder, and the products listed are the optional one that i can included as additional configuration to ECC 6 ?
Also, If someone has an experience in setting the remote IMG Project (so that we can do the SPRO / config in satellite system trough Solman system), the guide in detail steps will be so helpful. Thanks....
Regards,

Hi,
These are steps to be done in Solman.
1. Create a Logical Component in for ECC in TCode SMSY
2. Open the project whih you want to replicate in ECC.
3. Add the Logical Component in System Landscape Tab --> Systems Tab
4. Click on IMG Projects
5. Choose the role as Development System
6. Choose the row of the Logical System to which you want to replicate the project
7. Click on the "Create IMG Project".
This will create the remote project in ECC Development.
Regards,
Rajesh Kumar

Similar Messages

  • The type '*', provided as the Service attribute value in the ServiceHost directive, or provided in the configuration element * could not be found

    I have a provider hosted app in sharepoint which works locally without problem. I followed this tutorial to publish it to azure
    http://blogs.technet.com/b/sharepointdevelopersupport/archive/2013/09/05/how-to-deploy-a-provider-hosted-app-as-an-azure-site.aspx
    However after publishing the webservice doesnt work I get this exception:
    [InvalidOperationException: The type 'x.IntranetWeb.Services.AppEventReceiver', provided as the Service attribute value in the ServiceHost directive, or provided in the configuration element system.serviceModel/serviceHostingEnvironment/serviceActivations could not be found.]
    System.ServiceModel.Activation.ServiceHostFactory.CreateServiceHost(String constructorString, Uri[] baseAddresses) +62739
    System.ServiceModel.HostingManager.CreateService(String normalizedVirtualPath, EventTraceActivity eventTraceActivity) +1429
    System.ServiceModel.HostingManager.ActivateService(ServiceActivationInfo serviceActivationInfo, EventTraceActivity eventTraceActivity) +52
    System.ServiceModel.HostingManager.EnsureServiceAvailable(String normalizedVirtualPath, EventTraceActivity eventTraceActivity) +598
    [ServiceActivationException: The service '/Services/AppEventReceiver.svc' cannot be activated due to an exception during compilation. The exception message is: The type 'x.IntranetWeb.Services.AppEventReceiver', provided as the Service attribute value in the ServiceHost directive, or provided in the configuration element system.serviceModel/serviceHostingEnvironment/serviceActivations could not be found..]
    System.Runtime.AsyncResult.End(IAsyncResult result) +486572
    System.ServiceModel.Activation.HostedHttpRequestAsyncResult.End(IAsyncResult result) +174
    System.ServiceModel.Activation.ServiceHttpModule.EndProcessRequest(IAsyncResult ar) +345998
    System.Web.AsyncEventExecutionStep.OnAsyncEventCompletion(IAsyncResult ar) +9683593
    My web.config which I didnt touch.
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    For more information on how to configure your ASP.NET application, please visit
    http://go.microsoft.com/fwlink/?LinkId=301880
    -->
    <configuration>
    <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="ClientId" value="xx-04e7-4caf-854a-89c20577d7da" />
    <add key="ClientSecret" value="ljguTvxHR+xx+Pl1IMg1Hjt5rsQ=" />
    </appSettings>
    <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <customErrors mode="Off"/>
    </system.web>
    <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
    <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
    <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-5.2.0.0" newVersion="5.2.0.0" />
    </dependentAssembly>
    </assemblyBinding>
    </runtime>
    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <!--Used by app for SharePoint-->
    <binding name="secureBinding">
    <security mode="Transport" />
    </binding>
    </basicHttpBinding>
    </bindings>
    <protocolMapping>
    <add binding="basicHttpBinding" scheme="https" bindingConfiguration="secureBinding" />
    </protocolMapping>
    </system.serviceModel>
    <system.webServer>
    <handlers>
    <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
    <remove name="OPTIONSVerbHandler" />
    <remove name="TRACEVerbHandler" />
    <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
    </system.webServer>
    </configuration>
    and a piece of the code of the remote event receiver
    <%@ ServiceHost Language="C#" Debug="true" Service="x.IntranetWeb.Services.AppEventReceiver" CodeBehind="AppEventReceiver.svc.cs" %>
    namespace x.IntranetWeb.Services
    public class AppEventReceiver : IRemoteEventService
    Follow me on Twitter
    levalencia Blog

    Hi,
    The issue here is the mapping of the interface to the service in question, and usually points to a possible mistype or rename of something within your service architecture.
    You need to make sure your namespace and service name here match your service name itself.
    For detailed information, you could refer to:
    https://haddicus.wordpress.com/2011/06/06/service-attribute-value-not-found-wcf-services/
    http://stackoverflow.com/questions/9557221/the-type-restservice-weddingservice-provided-as-the-service-attribute-value-i
    Regards

  • Coherence::net::messaging::ConnectionException: could not establish a connection to one of the following addresses: {10.242.152.242/10.242.152.242:8088}; make sure the "remote-addresses" configuration element contains an address and port of a running TcpA

    Hi
    I have installed coheI have installed coherence server "fmw_12.1.3.0.0_coherence_Disk1_1of1.zip" along with Examples on windows machine and C++ client coherence-cpp-12.1.3.0.0b51709-windows-x86-vs2012.zip on the same machine.
    I have built the "contacts" C++ Example successfully and while I execute this "contacts" using run I am facing TcpAcceptor error.
    On my coherence server the TcpAcceptor is listening on port 8088, so I have modified the extend-cache-config.xml file with values "ip address of my windows machine" and port as "8088".
    All the time I am getting below error,
    coherence::net::messaging::ConnectionException: could not establish a connection to one of the following addresses: {10.242.152.242/10.242.152.242:8088}; make sure the "remote-addresses" configuration element contains an address and port of a running TcpAcceptor
        at class coherence::lang::TypedHandle<class coherence::component::net::extend::PofConnection> __thiscall coherence::component::util::TcpInitiator::openConne
    ction(void)(TcpInitiator.cpp:307)
        at coherence::component::util::TcpInitiator::openConnection
        at coherence::component::util::Initiator::ensureConnection
        at coherence::component::net::extend::RemoteCacheService::openChannel
        at coherence::component::net::extend::RemoteService::doStart
        at coherence::component::net::extend::RemoteService::start
        at coherence::component::util::SafeService::startService
        at coherence::component::util::SafeService::restartService
        at coherence::component::util::SafeService::ensureRunningServiceInternal
        at coherence::component::util::SafeService::start
        at coherence::net::DefaultConfigurableCacheFactory::configureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureRemoteCache
        at coherence::net::DefaultConfigurableCacheFactory::configureCache
        at coherence::net::DefaultConfigurableCacheFactory::ensureCache
        at coherence::net::CacheFactory::getCache
        at unsigned __int64 coherence::lang::class_spec<class coherence::lang::Managed<class ContactId>,class coherence::lang::extends<class coherence::lang::Object,class coherence::lang::Void<class coherence::lang::Object> >,class coherence::lang::implements<void,void,void,void,void,void,void,void,void,void,void,void,void,void,void,void> >::sizeOf(bool)
        at _onexit
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at BaseThreadInitThunk
        at RtlInitializeExceptionChain
        at RtlInitializeExceptionChain
        on thread "main"
    Caused by: coherence::net::messaging::ConnectionException: coherence::component::util::TcpInitiator::TcpConnection@029EAD78{Id=NULL, Open=1, LocalAddress=NULL,
    RemoteAddress=10.242.152.242/10.242.152.242:8088}: socket disconnect
        at class coherence::lang::TypedHandle<class coherence::net::messaging::Response> __thiscall coherence::component::net::extend::AbstractPofRequest::Status::g
    etResponse(void)(AbstractPofRequest.cpp:203)
        at coherence::component::net::extend::AbstractPofRequest::Status::getResponse
        at coherence::component::net::extend::AbstractPofRequest::Status::waitForResponse
        at coherence::component::util::Initiator::openConnection
        at coherence::component::net::extend::PofConnection::open
        at coherence::component::util::TcpInitiator::openConnection
        at coherence::component::util::Initiator::ensureConnection
        at coherence::component::net::extend::RemoteCacheService::openChannel
        at coherence::component::net::extend::RemoteService::doStart
        at coherence::component::net::extend::RemoteService::start
        at coherence::component::util::SafeService::startService
        at coherence::component::util::SafeService::restartService
        at coherence::component::util::SafeService::ensureRunningServiceInternal
        at coherence::component::util::SafeService::start
        at coherence::net::DefaultConfigurableCacheFactory::configureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureService
        at coherence::net::DefaultConfigurableCacheFactory::ensureRemoteCache
        at coherence::net::DefaultConfigurableCacheFactory::configureCache
        at coherence::net::DefaultConfigurableCacheFactory::ensureCache
        at coherence::net::CacheFactory::getCache
        at unsigned __int64 coherence::lang::class_spec<class coherence::lang::Managed<class ContactId>,class coherence::lang::extends<class coherence::lang::Object
    ,class coherence::lang::Void<class coherence::lang::Object> >,class coherence::lang::implements<void,void,void,void,void,void,void,void,void,void,void,void,void
    ,void,void,void> >::sizeOf(bool)
        at _onexit
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at class coherence::util::Hashtable * coherence::lang::factory<class coherence::util::Hashtable>::create(void)
        at BaseThreadInitThunk
        at RtlInitializeExceptionChain
        at RtlInitializeExceptionChain
        on thread "main"
    Caused by: coherence::io::IOException: socket disconnect
        at unsigned int __thiscall coherence::net::Socket::readInternal(unsigned char *,unsigned int)(Socket.cpp:333)
        at coherence::net::Socket::readInternal
        at coherence::net::Socket::SocketInput::read
        at coherence::io::BufferedInputStream::fillBuffer
        at coherence::io::BufferedInputStream::read
        at coherence::component::util::TcpInitiator::readMessageLength
        at coherence::component::util::TcpInitiator::TcpConnection::TcpReader::onNotify
        at coherence::component::util::Daemon::run
        at coherence::lang::Thread::run
        on thread "ExtendTcpCacheService:coherence::component::util::TcpInitiator:coherence::component::util::TcpInitiator::TcpConnection::TcpReader"

    We are facing same issue.    Could you please provide us any working .Net sample code for the version 12.1.2.0.
    <ssl>
                  <protocol>Tls</protocol>
                  <local-certificates>
                    <certificate>
                      <url>c:\Cert\</url>
                      <password>password</password>
                      <flags>DefaultKeySet</flags>
                    </certificate>
                  </local-certificates>
                </ssl>
    thanks
    Bala

  • [svn:bz-trunk] 20970: Add or enhance include functionality for the following configuration elements :

    Revision: 20970
    Revision: 20970
    Author:   [email protected]
    Date:     2011-03-25 14:26:37 -0700 (Fri, 25 Mar 2011)
    Log Message:
    Add or enhance include functionality for the following configuration elements:
    - Adapters
    - Channel definitions
    - Security Constraints
    - Destinations
    - Services
    The following elements are now allowed and can specify either the "file-path" attribute or the "directory-path" attribute.
    The "directory-path" attribute references a directory of XML files (names ending in .xml) that will be treated as a sequence of include files.
    Added unit tests for all the above.
    Fixed a bug in the unit test code that was terminating the verification early.
    Add the confirmation of the security constraints at the top level.
    Updated the example config file with usage examples.
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/config/ClientConfigurationParser.java
        blazeds/trunk/modules/common/src/flex/messaging/config/ConfigurationConstants.java
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/modules/core/src/flex/messaging/config/SecuritySettings.java
        blazeds/trunk/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
        blazeds/trunk/modules/core/test/src/flex/messaging/config/ConfigurationConfirmation.java
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1c.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_destination_include .xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1f_service_include.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/Confirm1c.java
    Added Paths:
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_adapter_include.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_channel_include.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1e_constraint_include. xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1i.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/1j.xml
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/Confirm1i.java
        blazeds/trunk/modules/core/test/src/flex/messaging/config/services/Confirm1j.java

    SDN is the place to discuss technical problems..
    Please avoid such weird post.
    G@urav.

  • [svn:bz-trunk] 8823: Updated the sample messaging-config. xml with the new disallow-wildcard-subtopics configuration element.

    Revision: 8823
    Author:   [email protected]
    Date:     2009-07-27 09:12:08 -0700 (Mon, 27 Jul 2009)
    Log Message:
    Updated the sample messaging-config.xml with the new disallow-wildcard-subtopics configuration element.
    Modified Paths:
        blazeds/trunk/resources/config/messaging-config.xml

    Hi,
    could you let us know what version of OEPE you were running prior to the upgrade along with the Eclipse version ? Also was the previous installation a full OEPE install or was it installed via the update site ?
    thanks
    Raj

  • Resource Configuration Files  - LSX-00320: missing required elements in al

    Hi,
    I have completed the following steps to configure resource:
    1. Create Directory ELEVENG_XML.
    2. Create Folder
    DECLARE
    res BOOLEAN;
    BEGIN
    res:=DBMS_XDB.createFolder('/cm/');
    END;
    3. Create Resource for a file app_rc.xml'.
    DECLARE
    XMLdoc XMLType;
    BEGIN
    XMLdoc:=(XMLTYPE(bfilename('ELEVENG_XML','app_rc.xml'),NLS_CHARSET_ID('AL32UTF8')));
    IF(DBMS_XDB.CREATERESOURCE('/cm/app_rc.xml', XMLdoc))
    THEN
    DBMS_OUTPUT.PUT_LINE('Resource is created');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Cannot create resource');
    END IF;
    COMMIT;
    END;
    Error is :
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00320: missing required elements in <all>
    ORA-06512: at "XDB.DBMS_XDB", line 192
    ORA-06512: at line 5
    My xml file app_rc.xml is
    <ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd
    http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
    <defaultChildConfig>
    <configuration>
    <pre-condition>
    <existsNode>
    <XPath>/Resource[ContentType="xml"]</XPath>
    </existsNode>
    </pre-condition>
    <path>/cm/app_rc.xml</path>
    <!--<resolvedpath/>-->
    <!--<oid/>-->
    </configuration>
    </defaultChildConfig>
    </ResConfig>
    As per the the schema only XPATH is needed for <existsNode>, but still throws the error LSX-00320: missing required elements in <all>.
    How can we solve this? Is there any error in the ResConfig xml file?
    Regards
    Raji

    Validate your app_rc.xml file against the XMLSchema XDBResConfig.xsd
    Your xml file is missing
      <!-- resource configuration element  -->
      <complexType name = "ResConfig">
        <all>
          <element name="defaultChildConfig" type="rescfg:defaultConfig" minOccurs="0"  maxOccurs="1"/>
          <element name="defaultChildACL" type="rescfg:defaultACL" minOccurs="0" maxOccurs="1"/>
          <element name="event-listeners" type = "rescfg:event-listeners" minOccurs="0" maxOccurs="1"/>
          <element name="XLinkConfig" type="rescfg:xlink-config" minOccurs="0" maxOccurs="1"/>
          <element name="XIncludeConfig" type="rescfg:xinclude-config" minOccurs="0" maxOccurs="1"/>
          <element name="SectionConfig" type="rescfg:section-config" minOccurs="0" maxOccurs="1"/>
          <element name="ContentFormat" type="rescfg:content-format" minOccurs="0" maxOccurs="1"/>
          <!-- application data -->
          <element name="applicationData" minOccurs="0" maxOccurs="1" >
             <complexType>
               <sequence>
                 <any namespace="##other" maxOccurs="unbounded" processContents="lax"/>
               </sequence>
             </complexType>
         </element>
        </all>The important XML Schemata can be found in the last sections in the Oracle XMLDB Developers Guide for your version of the database
    Edited by: Marco Gralike on Jan 6, 2009 10:35 PM

  • Is adobe photoshop elements 13 compatible with windows 8 and aol? I keep getting an error message

    I cannot attach photos to email them

    Hi,
    Could you please tell the error message you are getting.
    Since email workflow is newly introduced in E13, it would be good if you go through these articles once:
    https://helpx.adobe.com/elements-organizer/using/share-files-via-email.html
    https://helpx.adobe.com/content/help/en/elements-organizer/kb/email-configuration-elements -organizer.html
    Thanks,
    Anwesha

  • JMS - How to configure incremental redelivery intervals for an MDB

    Hi all,
    I noticed that when message delivery in an MDB fails, the time to the next delivery attempt for the message increases with every failed delivery. The intervals are 5, 10, 20, 40 and 60 seconds. After this the interval stays at 60 seconds.
    Now I was trying to find out how to change this behavior, but did not find the appropriate configuration elements in the console or the documentation. What I found are the options to configure "Default Redelivery Delay" in the ConnectionFactory which is set to 0 and in the Queue "Redelivery Delay Override" which is set to -1.
    Both of these settings do not explain the incremental delay. Can anyone tell me how to configure this? Is that part of the MDB deployment descriptors?
    Thanks,
    Chris

    Hi Tom,
    thanks again for your answer :-) I am sorry, i forgot to mention in my initial post, that i had a look at those parameters. But according to the documentation the default values for both are 60 seconds. In my MDB i did not set any of those, so it should not start at 5 seconds like it does but at 60 seconds. Additionally this suspension, I if understood correctly, should only kick in if the JMS resource (I figure this is the queue in this case) is unavailable, which is not the case in my scenario. And as a third the suspension described there is not growing exponentially as I experienced.
    Sorry if I am just thick here, but the documentation just does not look like what I am looking for. Are there any misunderstandings on my side?
    Thanks, Chris

  • Cannot import scanned images in Elements 11

    After upgrading to Elements 11 from Elements 8, I find I cannot configure Elements 11 to recognize my scanners. My only choice is "Frame From Video". I have no problem with Elements 8 which I can still use. The scanners appear in the Apple system preferences and are available. What am I missing?

    In PSE 11 you must install the TWAIN driver. Go to Applications>Adobe Photoshop Elements 11>Support Files>Optional Plugins and move the ImportModules folder to Applications>Adobe Photoshop Elements 11>Support Files> Plugins, then restart your computer.

  • Using Lightroom as an External editor for Elements

    I just got copies of lightroom 5 and Elements 12.  I've been using Elements for years and really love the organizer. While I know that Lightroom should have the ability to convert an Elements organizer as of version 5.4, I find the Elements organizer far better for tagging, facial recongition and usage. I like having Lightroom as an editor for the first round of simple edits.  I figured out how to configure Elements to call Lightroom to edit a picture directly.  (Edit-> Preferences->Editing)  WIth that setting, I can now use lightroom on my photos.  I find the problem is when I finish in Lightroom the pictures do not get automatically imported back directly into Elements.  Is there a way to configure this?

    Agreeing with 99jon, and adding that in my opinion, the only logical use of the two programs is to use the Lightroom Library Module (not the PSE Organizer) as the tool for organizing your photos, and the Lightroom Develop module as your primary editor, and the PHotoshop Elements Editor as the supplemental editor for the situation where you need more power editing than Lightroom provides.
    Why? Because Lightroom is designed  so that it can relatively seemlessly send photos to PSE for extra editing and receive the edited photo back from PSE.
    There is no relatively seemless way to have the PSE Organizer send photos to Lightroom and receive the edited photo in return. You will do a lot of extra work to make this work. I am also very skeptical about this statement, I don't think it opens your photos in the Lightroom Develop Module, but I admit I haven't tried it: "I figured out how to configure Elements to call Lightroom to edit a picture directly.  (Edit-> Preferences->Editing)  WIth that setting, I can now use lightroom on my photos."

  • Key Configuration differences between SAP and ORACLE Financials

    Hello,
    After spending good 7 years in SAP related projects recently I started working in ORACLE Applications. I used to be an ORACLE programmer years back. To my surprise the same <b><u>ORACLE Forms</u></b> are still very much the heart of the ORACLE UI.
    Then I thought what will be the key differences between ORACLE and SAP in terms of configuration elements. While I know a bunch of configuraion items in SAP , I am not sure about the same in ORACLE world. I am not even sure some of the configuration items that are available in SAP exists in ORACLE.
    Does anyone know both sides of the coin ? The terminology and design ?
    SAP has
    Client,Company code, Business area, Functional Area, GL, Posting Key, Document Type.
    I am trying to get the details of the equivalents of these in ORACLE.
    Does anyone know it ?
    For e.g , when you post to <b>AP</b> or <b>AR</b> in <b>SAP</b> , <b>GL</b> is updated  automatically. In <b>ORACLE</b> you post to a <b>AP Book</b> or <b>AR Book</b> then Run a batch to move them to <b><u>GL Book</u></b>.
    ORACLE uses SQLLoader to load data . You can write a PL SQL and update the tables directly, which is not the case in SAP. For dataloads and conversions, SAP uses BDC's ( though XI can be used but its slow).For ORACLE its the good old SQL and PlSQL combo.
    What are the equivalents of the configuration elements in ORACLE world ?
    Also what are the major differences between these two in terms of designing a financial system.
    Does any one know ?

    Genie,
    I agree that a case is made on how well these two ERPs solve the day to day tasks before a company chooses one of these two. But my question is aimed at finance to begin with. You are going to need a general ledger for any company or government regardless of ERP. And how well you can drive the ledger to map your business is the key here.
    The way ledger is built is around a business area ,company or country and is very tighly designed in SAP. I would like to know if there is any equivalent of the configuration items in ORACLE. I am more interested in terminology of ORACLE.
    For example ,
    <u><b><u><b>SAP ====> ORACLE</b></u>
    <u><b>GL ==> Book In ORACLE</b></u>
    <b><u>Document Number ===> Invoice Number</u></b>
    <b><u>Posting Period in SAP ==> Posting period In ORACLE</b></u></u></b>
    Most of the terms are finance terms , so they are common ( eg. an account number is an account number in ORACLE and SAP ) between two systems. I am interested in any specific thing that is available in ORACLE but not in SAP and  vice verse.
    thanks for the link you have provided.
    Its very useful.

  • HT6160 Can Guided Access be enabled at the policy file in configurator 1.5

    Can Gudied Access be a configurable element at the MDM level using the Apple Configurator 1.5 at the policy config file level and applied to mulitple devices via APN?

    The settings seems to be correct...As you were able to ping the ip 192.168.1.2,it should open the setup page..Try to disable the firewall,ant-virus and other security software if any and then,try...Also try to adjust the browser settings on the computer... Open an IE, click Tools >> Internet Options, then delete all files, cookies, history, forms...Goto "Connections", make sure Never Dial a Connection is checked, click on LAN Settings and make sure all the options are unchecked...Once you are done click on O.k...Close the IE and re-open it...Now try..
    It should work now...If not then,you have to reset the router and need to reconfigure it again..

  • Configuration specifications

    I am confused as to where particular configuration properties are held, how they're supposed to be edited, and when they're used.
    I'm trying to arrange for my (JClient) application to choose between my development database and a run-time one. My project is called "CC" by the way.
    DESIGN TIME.
    I can configure two connections in my project, but I don't see which file keeps these specifications.
    I can see \src\CC.jpx specifies which connection to use at design-time.
    I can see \src\package\bc\bc.xml which specifies all the BusinesComponents in my package.
    I can see \src\CC.cpx which identifies the BusinessComponents available to my JClient.
    For each ApplicationModule, I can see an .xml which specifies the views etc in the module.
    If I modify the "Configurations..." of an ApplicationModule, it seems these properties are stored in \src\package\bc\common\bc4j.xcfg and this file is re-built whenever I change any ApplicationModule configuration (bc4j.xcfg holds the info for all ApplicationModules).
    I don't see where bc4j.xfcg is built from. Are the configuration properties held elsewhere and then used when bc4f.xcfg is re-built, or is bcfj.xcfg the real repository of this information.
    If I open bc4j.xcfg, it's protected and I can't edit it directly (though global search/replace does work).
    My bc4j.xcfg also contains two <ConnectionDefinition> entries. How do I edit these?
    What is using these <ConnectionDefinition>s? Are they referenced by the <JDBCName> tabs? Each <AppModuleConfig> has a <DBconnection> - is this used in preference to the relevant entries in the <ConnectionDefinition> ?
    RUN TIME.
    When I create an ApplicationModule at runtime, some of these properties are used. I'm interested in particular in the JDBC URL, username and password.
    I can create a ConnectionStrategy (subclass of DefaultConnectionStrategy) and specify it's use for a particular ApplicationModule and then modify the URL before calling super.connect().
    I can create an EnvInfoProvider and provide a different username and password.
    But I must set this ConnectionStrategy for each and every ApplicationModule.
    Is there not an easier way to configure which connection to use? eg a property somewhere?
    I would have thought it a common requirement to specify the JDBC URL/username and password at a deployed site.
    I don't want a dynamic connection, just configurable on a per-site basis, but I don't see how to do this "out of the box".
    Tony.

    Hi,
    I have provided a brief description of each of the files mentioned in your response below:
    1. CC.jpx -- BC4J project definition. The connection defined in here is used by the BC4J design time (DT) only.
    2. bc.xml -- BC4J package definition. A package definition. Used by the DT and the BC4J runtime (RT).
    3. CC.cpx -- BC4J application definition. An application definition. Used by the DT and the RT. The RT currently uses the application definition to de-reference a BC4J configuration.
    4. bc\common\bc4j.xcfg -- BC4J configuration definition. A file exists for every BC4J package. A configuration element exists in this file for every ApplicationModule defined in that package. Used by the RT only (though it is obviously editable at DT). The configuration elements contained in this file may reference one ConnectionDefinition, via the JDBCName element. The contained ConnectionDefinition(s) are editable via the IDE connection manager (Navigator | Connections | Database).
    I don't see where bc4j.xfcg is built from. Are the configuration properties held elsewhere and then used when bc4f.xcfg is re->built, or is bcfj.xcfg the real repository of this information..
    bc4j.xcfg is the persistent store for the configuration properties. Though, as you may have noticed, the configuration panels do display a lot more than what is stored in the xcfg panel. This is because the UI is also driven by BC4J's RT property metadata and defaults. Further, the UI also handles things like dereferencing the JDBCName.
    My bc4j.xcfg also contains two <ConnectionDefinition> entries. How do I edit these?.
    Use the IDE connection manager.
    What is using these <ConnectionDefinition>s? Are they referenced by the <JDBCName> tabs?.
    Yes.
    Each <AppModuleConfig> has a <DBconnection> - is this used in preference to the relevant entries in the ><ConnectionDefinition> ?.
    Hmmmmm....I just created a default ApplicationModule and did not see a DBConnection element in the bc4j.xcfg file. Are you referring to the properties panel. As mentioned above, the Configuration UI does do some work to resolve some properties (like DBConnection). These properties are resolved with the ConnectionManager via the JDBCName.
    RUN TIME.
    When I create an ApplicationModule at runtime, some of these properties are used. I'm interested in particular in the JDBC
    URL, username and password.
    I can create a ConnectionStrategy (subclass of DefaultConnectionStrategy) and specify it's use for a particular >ApplicationModule and then modify the URL before calling super.connect().
    I can create an EnvInfoProvider and provide a different username and password.
    But I must set this ConnectionStrategy for each and every ApplicationModule..
    Simpler approach may be to specify the ConnectionStrategy globally by using a System property (VM parameter).
    Is there not an easier way to configure which connection to use? eg a property somewhere?
    I would have thought it a common requirement to specify the JDBC URL/username and password at a deployed site.
    I don't want a dynamic connection, just configurable on a per-site basis, but I don't see how to do this "out of the box"..
    Not currently. There have been a number of requests for a simple way to dynamically or even statically edit a configuration post deployment. We do have some tools that we are working on to support statically editing a deployed configuration (integrated with OEM) but they are not quite ready.
    One other solution that may be worthwhile exploring would be to use a JNDI deployed JDBC datasource (this of course assumes that you are deploying to an ApplicationServer or are binding the DataSource yourself). With this approach you could edit the datasource configuration without changing the BC4J configuration. You can modify your ApplicationModule configuration to use a JNDI deployed JDBC datasource by editing the configuration and selecting Application Module | Connection Type | JDBC DataSource. With this approach, every ApplicationModule configuration could refer to the same JNDI name but the JDBC datasources bound to those names at each site would be different.
    Hope this helps,
    JR

  • How do I get Elements 10 to operate from C: but store data on D:?

    My new computer is equipped with an SSD for programs and a 1TB disk for data. How do I configure Elements so it can run from the SSD (C:) but store my picture data on the D: drive?

    A common solution to both problems is: Backup your catalog and resotre it. For deails refer: http://help.adobe.com/en_US/elementsorganizer/using/WS3d021fd412237a2f14afb0171392eec10c6- 7ffe.html
    Note that while restoring, select 'new location' check box with 'Restore Original folder location'. For new location, click on 'browse' button next to it and here specify the folder/drive where you want your newer media to go (which is D:\ drive in case of StephenRDB and K: drive in Barbara1818's case.)
    ~Andromeda

  • Coherence *Extend-TCP configuration not working

    Hi,
         I was trying to setup the Coherence *Extend-TCP configuration on my solaris box.
         To start with, i'm trying to start a Cache server instance by using the cluster-side configuration XML (given at URL below)
         http://wiki.tangosol.com/display/COH32UG/Configuring+and+Using+Coherence*Extend
         But while starting its throwing me the below error. The Coherence version that i'm using is 3.2/353. Please advise.
         Exception in thread "main" java.lang.IllegalArgumentException: The "Proxy" element is missing a required acceptor configuration element
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.ProxyService.configure(ProxyService.CDB:30)
         at com.tangosol.coherence.component.util.SafeService.startService(SafeService.CDB:5)
         at com.tangosol.coherence.component.util.SafeService.getRunningService(SafeService.CDB:26)
         at com.tangosol.coherence.component.util.SafeService.ensureRunningService(SafeService.CDB:1)
         at com.tangosol.coherence.component.util.SafeService.start(SafeService.CDB:9)
         at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:775)
         at com.tangosol.net.DefaultCacheServer.start(DefaultCacheServer.java:138)
         at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:60)
         regards
         Mike

    Sorry,
         I noticed that the above error occurs for version 3.1.1 (& not for 3.2) as previously
         specified in previous message (above). My apologies.
         As a follow-up, i've now installed 3.2 jars on my environment & i noticed that the
         above error doesnt occur for this version. The cache server seems to be coming
         up fine now (with the appropriate TCP/IP configuration tag in the xml).
         But when i try to run my client application (which attempts to connect to this
         remote cache server), it throws an InvocationTargetException error (full exception
         below).
         The error indicates that i'm missing some elements in the XML configuration.
         Exception
         (Wrapped) java.lang.reflect.InvocationTargetException
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at com.tangosol.net.extend.AdapterFactory.ensureCacheServiceAdapter(AdapterFactory.java:69)
              at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:729)
              at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:650)
              at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:831)
              at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:284)
              at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:622)
              at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:600)
              at com.tangosol.examples.explore.SimpleCacheClient.main(SimpleCacheClient.java:25)
         Caused by: java.lang.IllegalArgumentException: Missing required initiator child configuration element: <extend-cache-scheme tier='front'>
         <scheme-name>extend-direct</scheme-name>
         <service-name>ExtendTcpCacheService</service-name>
         <initiator-config tier='front'>
         <tcp-initiator>
         <remote-addresses>
         <socket-address>
         <address>gpblnx1d.nam.nsroot.net</address>
         <port>32000</port>
         </socket-address>
         </remote-addresses>
         <connect-timeout>10s</connect-timeout>
         <request-timeout>5s</request-timeout>
         </tcp-initiator>
         </initiator-config>
         </extend-cache-scheme>
              at com.tangosol.coherence.extend.component.comm.Adapter.getInitiatorElement(Adapter.CDB:13)
              at com.tangosol.coherence.extend.component.comm.adapter.CacheServiceStub.configure(CacheServiceStub.CDB:5)
              at com.tangosol.coherence.extend.component.application.library.generic.CoherenceExtend.createCacheServiceStub(CoherenceExtend.CDB:4)
              at com.tangosol.coherence.extend.component.application.library.generic.CoherenceExtend.ensureCacheServiceStub(CoherenceExtend.CDB:15)

Maybe you are looking for

  • Excise Invoice List-Pending for ARE document creation

    Dear All, Is there any standard Tcode for getting the list of excise invoice which are pending for ARE documents creation or with the status of ARE documents. Thanks & Regards, Antima

  • Create "Object" Type based on columns of a table

    Hi Experts is it possible to create an Object Type based on columns of a table? for example the syntax for creation of type is CREATE OR REPLACE TYPE temp_t AS OBJECT (ID number, code number) can we create a type that is based on columns of an existi

  • Desperate Help needed in using LabVIEW

    Hi, I'm a beginner in using LabView programming. Can anybody help with implementing Labview 6 and Keithley 2400 SourceMeter for data aquisition? I've wired up the hardware and have problem coming up with the software.. Any idea how to get started?

  • How to get ADDM between 10 minutes interval?

    Hi all, 11.2.0.1 I want to trace an problematic program using ADDM. I will run it for 10 minutes and capture the stats within this 10min-window. How do I do it please... Thanks

  • Bex query  error problem

    Hi Friends, 1) when i am executing the query it is showing below error. Please give me solution how to slove below problem:- Error no sid found for value 'TB' of Characteristic 0UNIT error error while reading the data; Navigation is possible. 2) Vari