Planning Datasource creation?

Just finished installing and configuring Planning 11.1.1.3 and when we go to the login page for Planning, it says that the data source is unavailable when we try to login.
When we configured Planning it never asked us for a data source tablespace, so I don't believe we've configured it yet. I thought the data source creation happened during the Configuration?
TIA

If you are using EPMA then log into workspace and go into EPMA Application Library.
In the Application Library, select Tools, then select Manage Planning Data Source.
To create a data source, select File, then New, then Data Source.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Error with quantity field:Datasource Creation Using Function Module method

    Problem with DATASOURCE Creation using Function Module method :
    I have created a datasource ZSTANDARD_COST_PRICE using Function Module method . The datasource creation is successfull when I remove the quantity field from the Z table . If I dont remove the quantity field from my Z table it gives an error as "Units Field WAERS for field STPRS of datasource ZSTANDARD_COST_PRICE is hidden". I am not able to remove this error . Please someone guide.
    Let me know if my explanation is not clear enough.
    Thanks in advance,
    Neha.
    Z table definition is as below :
    MATNR MATNR CHAR 18 0 Material Number
    BWKEY BWKEY CHAR 4 0 Valuation area
    LFGJA LFGJA NUMC 4 0 Fiscal Year of Current Period
    STPRS STPRS CURR 11 2 Standard Price   " Here the currency field is WAERS and table T001
    PEINH PEINH DEC 5 0 Price Unit
    VJSTP VJSTP CURR 11 2 Standard price in previous year
    VJPEI VJPEI DEC 5 0 Price unit of previous year.
    Edited by: Neha Rathi on Jan 30, 2009 3:03 PM

    Hi,
    You should add it as one of the main fields as you have added other fields and not as the currency fields...that is..it should be part of the data source and you should be able to see it in RSO2...
    Also if added as i said then it will come as new field in the data source...you can either let it be there...or hide it..
    also if you want to populate it then you will have to write the code for this fields as well.
    Thanks
    Ajeet

  • Planned order creation IDOC

    Hi Experts,
    i've a requirement where i need to develop a custom IDOC for Planned order creation. is there any standard IDOC for Planned order creation and if it is there then provide me the complete details like IDOC name, message type name, posting and selection program names etc.
    if i need to create a custom idoc then wht is the procedure for it.
    Regards
    Faisal

    Hi Abdul,
    You can use the below details for achieving the below requirement:-
    Message Type :- LOIPLO
    Basic Type      :- LOIPLO01
    You need not create any custom IDOC type as we are having a standard IDOC type available within SAP, but you need to write a custom function module to read the data from the IDOC segments and then call the below BAPI to post the Planned Order.
    Check the input parameters of BAPI and gothrough the documentation of the Basic Type in WE60 transactions, whether all the necessary input parameters of the BAPI are covered in the standard IDOC type, if not then we need to customize the standard basic type to meet the requirements.
    Bapi which needs to be used is BAPI_PLANNEDORDER_CREATE.
    I think all these inputs will solve your purpose.
    Thanks,
    Mahesh.

  • Planned order creation via MRP depends, If we change Delivery date in STO

    Hi,
    Planned order  creation via MRP depends, If we change Delivery date in Stock transfer Order.
    I created STO with delivery date as 31.1.2012 and when i checked MD04, i can see Planned order created on 27.2.2012 with the same above STO quantity .
    Now when i changed the delivery date as 30.1.2012 and runned MD03, and then checkd MD04, planned order disappeared.
    Why Planned order got created when STO delivery date was 31.1.2012 and when I changed the delivery date in PO, planned order disappeared.
    MRP profile details :
    Plnd delivery time   1
    GR processing time   1
    Planning time fence  38
    Tot. repl. lead time 38
    Can you please let me know why system is beaving in this manner?
    Regards
    Utsav

    Hi,
    Normally , MRP runs based upon the requirements.If your STO is created for a date , system checks through the availabiloty check wheather there exists any stock for that date to get deliverred in the supply plant .If there exists for that date the stock , planned order will not be created.If no stock available then a planned order will be created in MRP.
    cHECK the availability check parameters assigned to material master in supply plant.
    Regards,

  • Configuring Loadbalanced RDBMS (RAC) in Planning Datasources (11.1.1.2)

    Hi everyone, during the configurarion of every RDB in System 11.1.1.2, I'm able to use "loadbalanced" JDBC URL (by using "advanced options" in the Oracle Hyperion EPM Configurator) --- Thanks for that DataDirect Connect® for JDBC Drivers v3.7!!
    But when creating Planning datasources I have no option to enter custom JDBC URL in order to connect to the RAC (load balanced JDBC URL).
    Should I manually change the JDBC URL in the Planning System schema? (HSP_DATASOURCES table).
    It is a supported configuration???
    Thanks in advance.
    Best regards,
    JavierV

    Hi everyone,
    I have successfully configured my Planning Datasource with RAC capabilities, I have achieved that by changing the JDBC URL from the backend (by modifying the HSPSYS_DATASOURCE table in Planning System Catalog).
    FYI:
    Planning 11.1.1.2 comes by default with 2 JDBC libraries:*
    *$HYPERION_HOME/deployments/WebLogic9/servers/HyperionPlanning/webapps/HyperionPlanning/WEB-INF/lib/hyjdbc.jar*
    That ships the following classes:
    hyperion.jdbc.base.BaseDriver
    hyperion.jdbc.db2.DB2Driver
    hyperion.jdbc.informix.InformixDriver
    hyperion.jdbc.mysql.MySQLDriver
    hyperion.jdbc.oracle.OracleDriver
    hyperion.jdbc.sqlserver.SQLServerDriver
    hyperion.jdbc.sybase.SybaseDriver
    hyperion.jdbcspy.SpyDriver
    +$HYPERION_HOME/deployments/WebLogic9/servers/HyperionPlanning/webapps/HyperionPlanning/WEB-INF/lib/jdbc12.jar+
    That ships the following classes:
    oracle.jdbc.OracleDriver
    oracle.jdbc.driver.OracleDriver
    Both Oracle Drivers (Hyperion or Oracle) supports RAC configuration, but you have be careful about each driver’s JDBC connection syntax:
    JDBC sample URL for connecting to a RAC (Hyperion JDBC Driver):
    jdbc:hyperion:oracle://<servername>:1521;ServiceName=<sid>;LoadBalancing=true;AlternateServers=(<servername>:1521;ServiceName=<sid>)
    JDBC sample URL for connecting to a RAC (Oracle JDBC Driver):
    jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=on)(FAILOVER=on)(ADDRESS_LIST=(ADDRESS=(protocol=tcp)(host=<servername>)(port=1521))(ADDRESS=(protocol=tcp)(<servername>)(port=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=<sid>)))
    As an additional note, RDB_SERVER_URL field is VARCHAR2(255 Byte) so the JDBC URL must not exceed this limitation.
    Best regards everyone.

  • Automatic Planned order creation-Strategy 50

    Hi all,
    I am using strategy 50 and first two levels of the finished material are make to order. Whenever i create sales order a planned order is automatically created for the finished material but for the material one level below no planned order is create, although this material is also make-to-order (ind/Col indicator is empty). Please guide me how can i achieve automatic planned order creation for the materials which are one level below the finished material (Note: Assembly is also of make-to-order strategy)
    Best Regards,
    Shah

    HI ,
    You are using planning stg as 50 " Planning without final assembly ", and this stg you need assgin only TOP level code i.e salable code , and down level codes no need to maintain .
    Once you enter sales order in TOP level code system will generate planned order  and from next level onwards you need to run MRP manually / Scheduled  ( single level / multilevel).
    System will not generate MRP for two level automatically i.e TOP level and next level when you enter SO.
    I hope this will clear to you
    Thanks
    Sekhar

  • Prevent Planned orders creation in Sourcing Org

    Hi,
    We have a customer requirement as below:
    Supply Chain : Org1 <-- Org2 <--Org3
    Item Name: X
    Item X has demand in Org1 procured from Org 2 by Sourcing "Transfer From"
    Item X in Org2 has planned order demand which triggeres a Planned Order in Org2 and to be procured from Org 3 by sourcing type "Transfer From" and it will create a Planned Order in Org3 which has sourcing "Buy from" External supplier.
    Org1 : Sales Order -->Planned Order1 for Item X
    Org2: Planned Order Demand2 -->Planned Order2
    Org3: Planned ORder deamand3-->Planned Order3
    Planners are different for Org2 and Org3 wan to do releases indivudually on their own schedules.
    Planner in Org2 want to ensure Planned order3 in org3 not to be released earlier than ISO creation in Org2 for item X.
    How to prevent planned order creation in Org3 having transfer planned order from Org2 to org3 for ISO creation.
    Need your valuable inputs.
    Regards,
    Kumar Kancherla

    Hi Kumar
    If I understand your question, the requirement is not truely about Planned Order Creation but releasing a planned order in Org3 before ISO is recieved in Org2 from Org1?
    This is more of a business process issue than planning since plan will provide a replenishment suggestion when there is a requirement based on sourcing rule. I'm assuming that these 3 orgs are planned in single ASCP Plan.
    One way to enforce this business process is by using "Auto-Release within Time Fence". Since lead times for Item X will be longer in Org1 vs. Org2 and Org3, planned order in Org1 will be released first triggering Internal Req/ ISO between Org1 & Org2 first and then between Org2 & Org3. While this may be OK if you plan to implement all suggestions from ASCP without manual intervention, it may not be acceptable to some planners who may want to control the release process manually.
    You may try it out with a limited set of items initially before rolling it out for all item/ orgs.
    I re-iterate that this issue is more of a discipline that planners need to use their discretion and due diligence to collaborate with other planners to ensure that lower level supplies are released only after a firm demand is released from higher level.
    Please feel free to let me know of any further concerns in this respect.
    Thanks
    Navneet

  • Optmizer Planned Orders Creation

    Dear SAP Experts ,
    I am facing some problems with Planned Orders creation. I am executing discret optimization but it is creating planned order without taking into account minimum lot size.
    For i.e
    For one product with forecast 500 pc and minimum lot size 150 .
    Optmizer should create 4 orders with 150 pc taking into account minimum lot size but it is creating 3 orders with 150 and 1 order with 50 pc to fullfil demand .
    Some one can help me ?
    Nice Regards
    Mauricio Filho

    Hi,
    What is PPM/PDS max lot size? it seems due PPM max lot size you are getting these results.
    SNP Optimizer can't respect max lot size defined in product master.
    it can respect only min lot size and rounding value from product-location master for that
    in optimizer profile must be discrete and on discrete consraints tab define Mini PPM/PDS lot size and Integral PPMs/PDS horizon.
    If data view has weekly as well as month buckets, define 12 Months (don't define 52W) in discrete constraints tab if you want to respect these constraints for one year.
    Regards,
    Vipul

  • Datasource creation failing for planning

    Hi,
    for creating a planning application, I first need to create one data source. but when i tried to create data source from workspace, I am getting an error 'The Essbase Conneciton failed' when i gave my essbase server and login details. Essabse is up and running fine but still am getting this error. Ver is 11.1.1
    can anyone pls let me know when this issue can occur?
    Reg
    -KV

    Hi John
    Here one log being update when i tried to validate the data source after giving essbase login credentials
    file name $hyperionhome/deployments/Tomcat5/HyperionPlanning/logs/catalina.out
    com.hyperion.planning.olap.EssbaseException: The Essbase API version (%s) for this application is incompatible with this version of the Essbase API (%s). (1030019)
    at com.hyperion.planning.olap.HspEssbaseMainAPI.EssInit(Native Method)
    at com.hyperion.planning.olap.HspEssConnection.<init>(Unknown Source)
    at com.hyperion.planning.olap.HspEssbaseJniOlap.getConnection(Unknown Source)
    at com.hyperion.planning.HspJSHomeImpl.TestEssConnection(Unknown Source)
    at HspCreateDatasource.doCheckEssbaseConnection(Unknown Source)
    at HspCreateDatasource.doHandle(Unknown Source)
    at HspCreateDatasource.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at HspValidationFilter.doFilter(Unknown Source)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Unknown Source)
    please let me know your thought
    Reg
    KV

  • Billing Plan Datasource

    Hello Expert,
    Can you please tell me is there any standard Datasource for Billing Plan for service Contract.
    Your responce is Valuable.
    Thanks in Advance.
    Mahesh

    Dennis,
    Thanks for your answer.
    We decided to create a generic datasource with deltamechanism on creation date and change date. We created a DS with Function Module for this.
    However, when a Budget Billing Plan is deleted in IS-U it's deleted from table EABP.
    Thus this deletion never flows into BI, leaving the deleted BBP in BI.
    Any idea how to solve this?
    Kind regards, Harjan

  • Planned order creation with PDS valid on only order start date and not finish date

    Hi All,
    We have requirement to allow creation of planned order manually if production version is valid on order start date and not finish date.  This is because lead time of order is longer. I refered OSS notes 385602. I could find out solution for this is implementation of OSS note 694140 to change validity mode at activity level to consider start date of first produce activity  in validity interval. Problem is even If I create order in APO by implementiong this note planned order is not transfered to ECC and it gets stuck with error production version not valid.
    Is there any way in ECC to control this? Any config or customization?
    Regards,
    Santosh

    Nilesh,
    I think there is a simple procedural skip happening in your business process. You are right when a planned order is created after MRP it would default assign it to the first available production version. 2options available for us,
    1. First use transaction MF50 and do the line loading and assign the quantites to the production versions/Production lines, so that the actual capacity planning is getting completed. This way you can have planned orders with both the production versions and matching to your actual line capacity.
    2. Use Quota arrangement concept, to automatically split the Planned orders during MRP for a percentage based on individual production versions.
    Now when backflush is performed S225 table is updated and Planned order qty also gets reduced.
    Hope this helps....
    Regards,
    Prasobh

  • 11.1.2.1 Planning application creation problem

    Hi,
    I have a problem creating a planning application. I've tried both the AppWizard and from Workspace. I am able to create a datasource that succesfully validates and when I apply the settings for the Planning application and press Execute it just hangs.
    I checked the DB and in Essbase, it does not create any tables in the DB and no application in Essbase :-(
    What am I missing??
    My system:
    Win 2K8 x64 fully updated, EPM version 11.1.2.1 x64 (Foundation (Minus EPMA (obviously!) and Calc Manager), Essbase, Planning), 12 GB RAM, SQL 2K5 SP3 x64, Office 2K10. all in one box.
    I managed to replicate the error using a 32Bit OS an RDBMS.
    I also checked the logs and the only log that makes any sense to me is: ESSBASE_ODL.LOG
    It seems that theres a problem with getting application info from Essbase, but that is strange seem since the datasource was validated and the Essbase is up and running.
    [2011-07-07T21:28:09.149-19:28] [ESSBASE0] [AGENT-1164] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5192] Received login request from [fe80::a190:d3cf:ae3c:4748]
    [2011-07-07T21:28:09.156-19:28] [ESSBASE0] [AGENT-1187] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5192] Logging in user [Hypadmin@Native Directory] from [fe80::a190:d3cf:ae3c:4748]
    [2011-07-07T21:28:31.429-19:28] [ESSBASE0] [AGENT-1164] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5196] Received login request from [fe80::a190:d3cf:ae3c:4748]
    [2011-07-07T21:28:31.434-19:28] [ESSBASE0] [AGENT-1187] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5196] Logging in user [Hypadmin@Native Directory] from [fe80::a190:d3cf:ae3c:4748]
    [2011-07-07T21:28:31.436-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5200] Received client request: List Applications (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.437-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5204] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.437-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5204] RegEnumValue() Failed
    [2011-07-07T21:28:31.438-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5184] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.438-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5184] RegEnumValue() Failed
    [2011-07-07T21:28:31.439-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5192] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.439-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5192] RegEnumValue() Failed
    [2011-07-07T21:28:31.440-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5196] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.440-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5196] RegEnumValue() Failed
    [2011-07-07T21:28:31.441-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5200] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.442-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5200] RegEnumValue() Failed
    [2011-07-07T21:28:31.443-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5204] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.443-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5204] RegEnumValue() Failed
    [2011-07-07T21:28:31.444-19:28] [ESSBASE0] [AGENT-1001] [NOTIFICATION] [16][] [ecid:1310062676662,0] [tid:5184] Received client request: Get Application Info (from user [Hypadmin@Native Directory])
    [2011-07-07T21:28:31.444-19:28] [ESSBASE0] [NET-16] [ERROR] [16][] [ecid:1310062676662,0] [tid:5184] RegEnumValue() Failed
    I tried to reconfigure both Planning and APS and tried to redeploy the Workspace webserver.
    All with no luck.
    Any suggestions?? Thanks in advance.
    Sib
    Edited by: SibA on 2011-07-07 12:47

    Hi again
    I just restarted the service (again) and looking in the log shows two things:
    1) That there is a warning/Error with the JMX Connectivity
    From the log:
    <08-07-2011 11:13:28 CEST> <Warning> <JMX> <BEA-149510> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:null>.>
    BEA-149510: Warning: Unable to establish JMX Connectivity with the Adminstration Server adminServer at adminURL.
    Description: This managed server was unable to establish a JMX Connection with the administration server adminServer at the JMX Service URL adminURL.
    Cause: This may because the adminstration server is not currently available or may indicate a misconfiguration of the configuration of the adminstrative channels.
    Action: If the adminstration sever is currently running the adminstrator should consult the documentation on the configuration of the Administration channel.
    2) An error with the locale settings:
    Creating rebind thread to RMI
    java.util.MissingResourceException: Can't find bundle for base name HspCustomMsgs, locale da_DK
    java.util.MissingResourceException: Can't find bundle for base name HspImgs, locale da_DK
    java.util.MissingResourceException: Can't find bundle for base name HspCustomImgs, locale da_DK

  • Planned order creation problem

    Hello everybody,
    When I am creating a planned order manually in MD11, I receive the message "Planned order xxxxx will be created".
    Then I receive a popup window telling me "Express document 'Update was terminated' ".
    But, when I am having a look in MD04 to see the planned order, I can't see it.
    It was still okay yesterday morning, but since yesterday afternoon, no more planned orders can be created manually. Do you have an idea about what can be the reason of this?
    It's just like if the order creation was delayed... But for how long, and waiting for what???
    Thanks in advance for your help.
    Regards,
    Rudy

    Hi,
    There is something issue with ur data while saving..hence it is not saving and throwing the message. so that while upadting data in table  is not acccepting.
    GOTO SM14->click on ALL UPDATEREQUESTS push button->U will find the reocrds,select ur userid and double click on it,now u can see the module name,select it and double click on it,now u will get one small dialog box,there u can find the abap editor symbol ,click on it..it will take u to the program where it has taken place
    Please refer this thread,
    Update was terminated
    Regards,
    R.Brahmankar

  • JDBC Datasource creation via ANT doesn't expose the JNDI name

    I'm using the wlconfig ANT task to create a Datasource (& JDBC connectionpool) on the weblogic server. The datasource is created fine, and I can test it using the console.
    The problem is that the provided JNDI name isn't exposed in the JNDI tree. This seems to be related to the fact that the following element is generated in the config/jdbc/CP-PoolName-2164-jdbc.xml
    &lt;jdbc-data-source&gt;
    &lt;name&gt;PoolName&lt;/name&gt;
    &lt;internal-properties&gt;
    *&lt;property&gt;*
    *&lt;name&gt;LegacyType&lt;/name&gt;*
    *&lt;value&gt;1&lt;/value&gt;*
    *&lt;/property&gt;*
    When removing the LegacyType 1 property from the JDBC config xml, the JNDI name is exposed fine.
    I've used the instructions located at [http://edocs.bea.com/wls/docs100/programming/ant_tasks.html] where an example of a JDBCConnectionPool creation is provided.
    The 10.3 documentation doesn't include the example anymore, but I'm having the problem both on BEA Weblogic 10.0 and Oracle Weblogic 10.3
    &lt;wlconfig url="t3://localhost:7001" username="weblogic" password="weblogic"&gt;
    bq. &lt;query domain="base_domain" type="Server" name="AdminServer" property="adminserver"/&gt;
    bq. &lt;create type="JDBCConnectionPool" name="MediumSecureOnlineNode1Pool" property="customPool1"&gt;
    bq. bq. &lt;set attribute="CapacityIncrement" value="1"/&gt; \\ &lt;set attribute="DriverName" value="oracle.jdbc.OracleDriver"/&gt; \\ &lt;set attribute="InitialCapacity" value="1"/&gt; \\ &lt;set attribute="MaxCapacity" value="10"/&gt; \\ &lt;set attribute="Password" value="pass"/&gt; \\ &lt;set attribute="Properties" value="user=username"/&gt; \\ &lt;set attribute="RefreshMinutes" value="0"/&gt; \\ &lt;set attribute="ShrinkPeriodMinutes" value="15"/&gt; \\ &lt;set attribute="ShrinkingEnabled" value="true"/&gt; \\ &lt;set attribute="TestConnectionsOnCreate" value="true"/&gt; \\ &lt;set attribute="TestConnectionsOnRelease" value="true"/&gt; \\ &lt;set attribute="TestConnectionsOnReserve" value="true"/&gt; \\ &lt;set attribute="TestTableName" value="SQL SELECT 1 FROM DUAL"/&gt; \\ &lt;set attribute="URL" value="jdbc:oracle:thin:@localhost:1521"/&gt; \\ &lt;set attribute="Targets" value="${adminserver}"/&gt;
    &lt;/create&gt;
    As we would like to automate the process of configuring our weblogic instances using ANT, is there a way to create JDBC datasources that don't have the LegacyType 1 element included in the config ?

    Curious if you were ever able to find a resolution to this issue?
    I am facing the same thing now with our Ant scripts and WL10.3 connection pools/datasources.
    I would like to either specify a different LegacyType or suppress it altogether. Any help would be appreciated.
    Many thanks,
    Steve

  • Datasource Creation for Informatica Source system in NW2004s

    Hi,
    We are upgrading BW 3.5 to SAP NW2004s. In NW2004s Create datasource
    is new feature provided in BW 7.0.
    I tried to create this datasource for Flat file and worked fine. We
    are also using Informatica as source system (External System).
    Whenever I tried to create datasource for External system such as
    Informatica, it gives message
    "Datasource ZTEST(INFPCPD):Object Type RSDS not supported in BAPI
    Source System"
    Is it a bug? or Creation of datasource is not supported incase of
    Informatica or external system?
    Thanks
    Rupesh

    Hi Rupesh,
    The latest BI release in SAP NetWeaver 7.0 (2004s) includes a new type of DataSource for which staging BAPI has not yet been aligned.
    Third party ETL tool vendors can therefore only implement their load processes using the original type of DataSource from BW 3.x. This DataSource is still provided in the new release without any changes. Upgrading to NetWeaver 7.0 (2004s) BI (BI 7.0) does not therefore endanger existing implementations based on BW 3.x and NetWeaver 2004 (BW 3.5).
    It is also possible to migrate third party ETL implementations based on BW 3.x into the new data-flow concept of a NetWeaver 7.0 (2004s) BI environment using new DataSources, transformations (also new), and data transfer processes (DTP) (also new). This is possible because the system provides an emulated view for BW 3.x DataSources, which makes it possible to combine them with NetWeaver 7.0 (2004s) transformations and DTPs for regular batch load processing (this does not include direct access and real-time data acquisition (RDA)).
    This allows the benefits of the new data loading concept to be made available in such third party ETL-based loading scenarios.
    Regards,
    Anil

Maybe you are looking for

  • Continuous frequency measurement~

    Dear sir,     How are you today?     I tried to program the "Measure Frequency.vi" in LabView 5.1 .  I've the simplified version from "LabView Measurements Manual" in page 10-26. Basically, we want to measure the frequency change within 20 ms (chirp)

  • Can CS3.0 software run on a Windows 8 64 system?

    I just bought a new computer -- it runs Windows 8 (64 bits). I would like to install my CS3.0 Design Premium software.  Will it run on this system?  Is there anything special that I need to know before installing it? A second question -- I also have

  • Cannot change desktop background...

    This is a problem that has been annoying me for about a month now... i set my desktop background as an iphoto image, and went to change it a few weeks later but it wouldn't let me! the small image of the desktop appears in system preferences, but the

  • PDF printing margins cut off

    Hi, every time I try to print a PDF directly from Safari 7.0.2, the edges get cut off. If I download the PDF and print it using Preview or Acrobat, everything is fine. Chrome can print perfectly, so it is not a browser thing. There are tons of thread

  • Cannot see Roles for my WebService

    I am trying to automate the following steps i do through WLS Console : a. In the Weblogic console's Home page, click on Deployments link form left, find "gateway-management-service" b. Expand, "gateway-management-service" and click on "GatewayManagem