2LIS_02_SCL as datasource 7.x instead of 3.x

Hi,
I'am working on a system where there is the 2LIS_02_SCL flow already activated. bnut i don't know what's happend but this flow is in version 7.x
As i remember BC dataflow are steal in 3.x. and the problem is that the flow created by the previous person doesn't manage the transformation correctly.
So i want to return to the BC flow. But the problem is that this datasource is in version 7;x and i don't know how to return to version 3.x.
I try to delete it and replicate again as datasource 3.x but the system does not ask me somethig.
Takes for your help
Regards
Cyril

Hi Leredd,
you can do using RSDS transaction to rever back the DS to 3.x
give the data source name and source systme>>in the menu click on datasource>>click on Restore 3.x datasource
I try to delete it and replicate again as datasource 3.x but the system does not ask me somethig.?
can you explain in detail if you got any error past it here
thanks
kishore

Similar Messages

  • How to use jndi datasource on Weblogic instead of adding a DB data source

    Hi All,
    version: 11.1.1.4
    I am trying to figure out how in my ADF applications I can use an existing jndi datasource out on our weblogic servers instead of having to bury the Database db source in my adf applications. Like SOA I would like to reference the DB directly during design so I can pull in entities and build view objects, but when I deploy I want it to reference the jndi datasource out on the weblogic server.
    Is this possible? If so I am not sure how to configure it like I would a DB adapter in SOA.
    As always appreciate the info.
    Thanks,
    S

    If you use ADF in the model layer (application modules) you can configure them to use JNDI Datasources. Just right click on the application module and select 'Configurations...'. In the next dialog you see all the configurations currently available (one named xxxxxlocal and one named xxxxxshared at least). Select the local and hit the edit button. This open the DB connect dialog where you can change the connection from JDBC URL to JDBC Datasource (JNDI). Save your work and when you now start the app it will use the JNDI name.
    Timo

  • Use DataSource of weblogic in a standalone Java file

    Hi,
    We have a requirement to run a java file at a scheduled time in a day using cron scheduler on our linux server.
    We need to fetch data from the database & perform some business logic in this standalone JAVA file.
    Our application has an EAR which is deployed on Weblogic 10.3 server & in our application, we are utilizing the datasource created in that domain using Hibernate.
    Now, can we create a standealone Java file & use exisitng datasource (without Hibernate) instead of legacy JDBC code to connect to DB.
    Also, do we need to keep this JAVA file a part of this EAR, WAR or can we put the class file in anylocation outside this EAR & then utilize datasource feature.
    Please help on the same in implementation.
    Thanks,
    Uttam

    Hi Ravi,
    I did create Datasource domain & put wlclient.jar in my application classpath (Add jar in Java Build path of application), but, when I ran application, its giving below error
    Exception in thread "Main Thread" java.lang.NoClassDefFoundError: weblogic/kernel/KernelStatus
         at weblogic.jndi.Environment.<clinit>(Environment.java:78)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:198)
         at TestDataSource.main(TestDataSource.java:37)
    Also, I'm putting code here as I there is no provision to attach the file here. Please let me know whats wrong here.
    Also, I've given the name of datasource as testDataSource through Admin console of the domain. Do we need to prefix the name with jdbc/ in the code or without that also it works?
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    public class TestDataSource {
         public static void main(String[] args)
              DataSource ds=null;
              Connection conn=null;
              Statement stmt=null;
              ResultSet rs=null;
              Context ctx=null;
              try
                   Hashtable ht = new Hashtable();
                   ht.put(Context.INITIAL_CONTEXT_FACTORY,
                   "weblogic.jndi.WLInitialContextFactory");
                   ht.put(Context.PROVIDER_URL,
                   "t3://172.19.244.180:7001");
                   System.out.println("HERE");
                   ctx=new InitialContext(ht);
                   ds=(DataSource)ctx.lookup("jdbc/testDataSource");
                   System.out.println("HERE AFER CONTEXT CREATION");
                   conn=ds.getConnection();
                   stmt=conn.createStatement();
                   rs=stmt.executeQuery("select distinct(circle) from AIRCEL_STORE_FINDER order by 1 ");
                   while (rs.next())
                        System.out.println("circle name "+rs.getString(1));
              }catch (Exception e) {
                   System.out.println("Error in Main "+e.toString());
                   e.printStackTrace();
              finally{
                   try{
                   if(rs!=null)
                        rs.close();
                   if(stmt!=null)
                        stmt.close();
                   if(conn!=null)
                        conn.close();
                   if(ds!=null)
                        ds=null;
                   if(ctx!=null)
                        ctx.close();
                   }catch (SQLException e) {
                        System.out.println("Error in SQLException Finally "+e.toString());
                   catch (NamingException e) {
                        System.out.println("Error in NamingException Finally "+e.toString());
    }

  • Block creation issue with new entity and datasource

    The below calculation script that will not create blocks. This is just one of the formula for one cost account. the formula repeats similarly for other cost accounts. When ran it won't create blocks so #missing data. I even tried switching the "AccountCenter" (account dimension dense) and use "DS" (datasource dimension sparse) instead but it runs a lot longer and causes delays in any other calc script that runs after that. I have tried lock and send from excel smart view for those blocks only and  it works the first time the script is run. But every time after the first time the script runs forever and never ends. i had tried set createmissingblock on but that just slowed down everything.
    FIX ("Jan":"Dec", @RELATIVE(Entity1, 0),  @RELATIVE(Entity2,0), "P_PRojects", @RELATIVE(Project1",0),"Actual", &CurrFcst, &CurrFcstVersion, FY15:fy21)
    "AccountCenter"
    @CALCMODE(BLOCK);
    IF (@ISMBR (@RELATIVE("ParentAccountCenter",0)) AND @ISMBR(@RELATIVE("ParentProject",0)) AND @ISMBR ("DS"))
    IF((@ISMBR(&FcstStartMo:"Dec") AND @ISMBR(&FcstYear1) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&FcstYear2:&FcstYear7) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&CurrMth) AND @ISMBR(&CurrYr) AND @ISMBR("Actual")))
    "AccountCenter"=1AccountPct->RetailFP&A*AccountCenterPct->RetailFP&A*AccountCenterAgregate Pct->"RetailFP&A"*("DS_ALL"->"P_Cost"->P_Projects-"DS_ALL"->"722020"->P_Projects-"DS_ALL"->"722200"->P_Projects-"DS_ALL"->"562040"->P_Projects);
    IF (@ISMBR(@RELATIVE("otherEntity",0)))
    @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) = @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) + @CURRMBR("Entity");
    ENDIF
    ENDIF
    ENDIF
    ENDFIX

    Account (dense)
    Period (dense)
    Data Source (sparse)
    Entity (Sparse)
    Project (Sparse)
    Scenario (Sparse)
    Version  (Sparse)
    Year (Sparse)
    EntityFunc Attribute
    Members
    Account (dense) - "AccountCenter"(level1),  "AccountCenter"(level0), 1AccountPct, AccountCenterPct, AccountCenterAgregate Pct, P_Cost", "722020", "722200", "562040"
    Data Source (sparse)- DS, DS_ALL
    Entity (Sparse)- Entity1, Entity2
    Project (Sparse)- RetailFP&A, P_Projects
    FIX ("Jan":"Dec", @RELATIVE(Entity1, 0),  @RELATIVE(Entity2,0), "P_PRojects", @RELATIVE(Project1",0),"Actual", &CurrFcst, &CurrFcstVersion, FY15:fy21)
    "AccountCenter"
    @CALCMODE(BLOCK);
    IF (@ISMBR (@RELATIVE("ParentAccountCenter",0)) AND @ISMBR(@RELATIVE("ParentProject",0)) AND @ISMBR ("DS"))
    IF((@ISMBR(&FcstStartMo:"Dec") AND @ISMBR(&FcstYear1) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&FcstYear2:&FcstYear7) AND @ISMBR(&CurrFcst)) OR (@ISMBR(&CurrMth) AND @ISMBR(&CurrYr) AND @ISMBR("Actual")))
    "AccountCenter"=1AccountPct->RetailFP&A*AccountCenterPct->RetailFP&A*AccountCenterAgregate Pct->"RetailFP&A"*("DS_ALL"->"P_Cost"->P_Projects-"DS_ALL"->"722020"->P_Projects-"DS_ALL"->"722200"->P_Projects-"DS_ALL"->"562040"->P_Projects);
    IF (@ISMBR(@RELATIVE("otherEntity",0)))
    @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) = @MEMBER(@SUBSTRING(@NAME(@CURRMBR("Entity")),11,24)) + @CURRMBR("Entity");
    ENDIF
    ENDIF
    ENDIF
    ENDFIX

  • How to create DataSource for BI Source System in RSA1?

    I have a BI Source System defined, however I can't figure out a way to create a new DataSource for it. I can create DataSource objects for all my other Source Systems, but I can't figure out how to do this for this BI system.
    I select my BI Source System, right-click, choose "Display DataSource tree". When I right-click from the DataSource tree, I expect to get "Create Application Component" and "Create DataSource" options, but instead I only see "Replicate Tree Metadata" and "Replicate DataSources" options.
    How can I create DataSource objects for my BI system?

    Hi,
    I guess you want to create a custom developed source in BI itself. For that you need to create the data source in RSO2 and inside you need to give the specific aplication component under which you want this DS to be in. Generate a data souce and then go to BI My self Source system and then replicate that particular appl component o view your data source.
    Hope this helps
    Regards,
    Srini

  • 2LIS_02_ITM vs 2LIS_02_SCL

    Hello
    I am wondering what are the benefits of using 2LIS_02_ITM if I have 2LIS_02_SCL activated already into my DSO.
    2LIS_02_SCL is more detailed extractor (at Schedule Line Level) where as 2LIS_02_ITM is at the item level.
    Would someone reason for using 2LIS_02_ITM along with 2LIS_02_SCL....
    Second question is, 2LIS_02_ITM does not seem to bring Goods Receipts and Invoice Receipts' Quantities and Amounts even for Process Keys 2s and 3s. Is this normal for 2LIS_02_ITM?
    Anxious to see some details/discussions around this...
    - Thanks for your comments

    Hi,
    You can see the claer SAP Help in the following urls...
    2LIS_02_ITM
    This DataSource provides information about the header date of a purchasing document, such as vendor, purchasing organization, and purchase order currency, as well as information about the item data, such as material, purchase order quantity, order unit, net price, and so on.
    See
    http://help.sap.com/saphelp_sm32/helpdata/en/58/f6383fdb800804e10000000a114084/frameset.htm
    2LIS_02_SCL
    This DataSource provides information about:
            The header data of a purchasing document, such as vendor, purchasing organization, order currency, and so on
            The item data such as material, purchase order quantity, order unit, net price, and so on
            The purchasing document delivery schedule lines, such as schedule line number, delivery date, schedule line quantity, value of schedule line quantity, and so on
    See:
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/bc383fe58d5900e10000000a114084/frameset.htm
    Thanks
    Reddy

  • 2LIS_02_SCL Transfer Rules are missing

    Good Morning everyone, I recently activated BI Content (7.05 SP4) in BW (7.02 SP8) for infocube 0PUR_C01, and I can not see the transfer rules for 2LIS_02_SCL, what can I do?

    Juan Orozco wrote:
    I did install BC for 2LIS_02_SCL Transfer Rule (ISMP) again with options "In data flow before and afterwards", I got the right flow of objects from 2LIS_02_SCL ECC datasource to 0PUR_C01 Infocube in BW installed, but the Transfer Rule 2LIS_02_SCL status is Modified(Saved), when I try to activate this Transfer Rule, the system send the message "There is no PSA for InfoSource 2LIS_02_SCL_DA and source system LOGSYS120", what can I do?
    Case A. RS_TRANSTRU_ACTIVATE_ALL
    Case B. Give the tech name of the CLNT120 & generate it. RSDS_DATASOURCE_ACTIVATE_ALL
    Case C. Replicate the datasource after adding/deleting fields in R/3. Right-click on this datasource and select 'replicate metadata' again. Activate using FM in Case A.
    Edited by: Arun Bala G on Feb 16, 2012 9:29 PM

  • DOCUMENT DATE FOR BACK DATA TO BE UPLOADED

    hello experts,
    I have a purchase cube with TD from last year.
    I have PO NUMBER as a characteristic AND 2LIS_02_SCL as datasource for Purchase.
    now i want the date on which PO is created and there is a DOCUMENT DATE available in the datasource.
    now i have added 0Doc_date as a characterstic to the cube but the date is coming in the report instead # is appearing in Doc date column.
    when i am checking the data in PSA the document date value is available correctly .
    Now please help to load the document data for the back data.
    how to do this so that the Transaction data should not get affected and i get the Document date for the previous PO numbers also.
    plz explain in details.
    will be very thankful

    Hi,
    Delete one Request of that data source from Cube
    and then Reconstruct it.
    check whether the data for document date is coming or not
    if it is coming then delete all the request and reconstruct.
    it will reflect after that.
    Edited by: obaid shaikh on Mar 17, 2011 1:47 PM

  • HELP - which driver should I use?

    Hi,
              We are developing an application using WebLogic 6.0 in conjunction with
              TOPLink 2.5.1 for object/relational mapping (manages the persistence
              layer). We would like to configure our application to use WebLogic's
              connection pools and I would have a few questions regarding the driver I
              should use.
              Here's a short description of our application:
              Our service layer is entirely composed of container managed stateless
              session beans. On the TOPLink side, the transactions are manipulated by
              a UnitOfWork object, which gives the control over the distributed
              transaction to an external transaction controller. Our WebLogic external
              transaction controller uses the UserTransaction interface to manipulate
              a transaction (begin/commit/rollback). So, within an EJB method
              execution we might have several units of work begin and 'commit'
              transactions, but the overall transaction is really committed only at
              the method exit, by the external transaction controller.
              This works, without using connection pools. The problem is, if we don't
              use connection pools for every SQL executed, a new connection is created
              and authenticated against the Oracle Server, which is terrible for
              performance. However, when I tried to configure a WebLogic connection
              pool, it doesn't work anymore (by using the non-XA OCI driver the
              connections from the pool were used, but never released back to the pool
              after the transaction was being committed).
              My questions are:
              1. Given that our transactions are manipulated through JETS, is it
              correct to use the JTS Oracle driver, which comes with the WL6.0
              installation?
              Driver Classname: weblogic.jdbc.jts.Driver
              URL: jdbc:weblogic:jts:myOracleInstance
              2. If we should use the JTS Oracle driver, should I specify the pool
              name in the Oracle URL?
              3. What is the difference between jdbc20 and jdbc? Is the first one
              deprecated?
              Thank you,
              Brenda.
              [att1.html]
              

    Hi Sriram,
              Thank you very much for your help.
              I used the datasource configuration as you suggested and it almost
              works. It is noticeable faster than before,
              but the problem now is that I am getting the following exception when
              loading the sixth object into the database.
              I do not understand why it is the sixth object, because I created the
              Oracle connection pool with a maximum of
              10 connections.
              Here's the exception I get:
              Creating user numbers: from 2461 to 2500
              Create User testuser2461
              Create User testuser2462
              Create User testuser2463
              Create User testuser2464
              Create User testuser2465
              Create User testuser2466
              Caught unexpected exception. Reason:
              weblogic.transaction.internal.AppSetRollbackOnlyException
              at
              weblogic.transaction.internal.TransactionImpl.setRollbackOnly(TransactionImpl.java:403)
              at
              weblogic.transaction.internal.TransactionManagerImpl.setRollbackOnly(TransactionManagerImpl.java:242)
              at
              weblogic.transaction.internal.TransactionManagerImpl.setRollbackOnly(TransactionManagerImpl.java:236)
              at
              TOPLink.Public.JTS.WebLogic.WebLogicJTSSynchronization.rollbackGlobalTransaction(WebLogicJTSSynchronization.java:140)
              at
              TOPLink.Public.JTS.AbstractSynchronizationListener.beforeCompletion(AbstractSynchronizationListener.java)
              at
              weblogic.transaction.internal.ServerSCInfo.callBeforeCompletions(ServerSCInfo.java:500)
              at
              weblogic.transaction.internal.ServerSCInfo.startPrePrepareAndChain(ServerSCInfo.java:70)
              at
              weblogic.transaction.internal.ServerTransactionImpl.localPrePrepareAndChain(ServerTransactionImpl.java:877)
              at
              weblogic.transaction.internal.ServerTransactionImpl.globalPrePrepare(ServerTransactionImpl.java:1203)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:158)
              at
              weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:203)
              at
              com.imoney.service.userManagement.UserServiceBeanEOImpl.createUser(UserServiceBeanEOImpl.java:478)
              at
              com.imoney.service.userManagement.UserServiceBeanEOImpl_WLSkel.invoke(UserServiceBeanEOImpl_WLSkel.java:114)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
              at
              weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:128)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
              at
              weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:103)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:17)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              --------------- nested within: ------------------
              weblogic.transaction.RollbackException: Unknown reason - with nested
              exception:
              [weblogic.transaction.internal.AppSetRollbackOnlyException]
              at
              weblogic.transaction.internal.TransactionImpl.throwRollbackException(TransactionImpl.java:1248)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:208)
              at
              weblogic.ejb20.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:203)
              at
              com.imoney.service.userManagement.UserServiceBeanEOImpl.createUser(UserServiceBeanEOImpl.java:478)
              at
              com.imoney.service.userManagement.UserServiceBeanEOImpl_WLSkel.invoke(UserServiceBeanEOImpl_WLSkel.java:114)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
              at
              weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:128)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
              at
              weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.java:103)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:17)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >> This works, without using connection pools. The problem is, if we
              >> don't use connection pools for every SQL executed, a new connection
              >> is created and authenticated against the Oracle Server, which is
              >> terrible for performance. However, when I tried to configure a
              >> WebLogic connection pool, it doesn't work anymore (by using the
              >> non-XA OCI driver the connections from the pool were used, but never
              >> released back to the pool after the transaction was being
              >> committed).
              >>
              >> My questions are:
              >>
              >> 1. Given that our transactions are manipulated through JETS, is it
              >> correct to use the JTS Oracle driver, which comes with the WL6.0
              >> installation?
              >> Driver Classname: weblogic.jdbc.jts.Driver
              >> URL: jdbc:weblogic:jts:myOracleInstance
              >>
              >
              > Don't use the weblogic.jdbc.jts.Driver. The java.sql.Driver interface
              > is getting deprecated in favor of the DataSource interface.
              > Instead, configure the pool and a datasource to "wrap" the pool, as
              > follows:
              > <JDBCConnectionPool
              > Name="testPool"
              > Targets="myserver,server1"
              > URL="jdbc:weblogic:oracle:foo" <!-- foo is the name of
              > your oracle db instance -->
              > DriverName="weblogic.jdbc.oci.Driver"
              > InitialCapacity="1"
              > MaxCapacity="10"
              > CapacityIncrement="1"
              > Properties="user=scott;password=tiger;server=foo"
              > />
              >
              > <JDBCDataSource
              > Name="poolDS" <!-- Name doesn't really matter,
              > except to the console -->
              > Targets="myserver,server1" <!-- Names of servers to which
              > this configuration applies -->
              > JNDIName="moneyDS" <!-- The JNDI path name to which
              > to bind this data source-->
              > PoolName="testPool" <!-- The pool of connections
              > that this datasource dips into-->
              > />
              >
              >
              > At run-time, instead of doing DriverManager.getConnection(), call
              > jndiContext.lookup("moneyDS") to get a DataSource object. Call
              > getConnection() on it.
              >
              > This is faster and much more thread-savvy than the DriverManager code.
              [att1.html]
              

  • URGENT ! Using Sun's J2EE RI Server with MS SQL Server 2000

    I'm using the J2EE Server that comes with the J2EE 1.3.1 package from Sun. I'm trying to load a datasource using the free MS SQL Server 2000 Driver for JDBC, but I'm always getting this error (I've run out of ideas so maybe someone in this forum can help):
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: java.rmi.RemoteException: nested exception is: javax.ejb.EJBException: Unable to connect to database. No suitable driver; nested exception is: javax.ejb.EJBException: Unable to connect to database. No suitable driver ...
    I'm using MS SQL Server 2000 Driver for JDBC, my classpath setting is:
    CLASSPATH=D:\j2sdk1.4.0_01\jre\lib\ext\mysql-connector-j-2.0.14;D:\MS-JDBC-Driver\lib\msbase.jar;D:\MS-JDBC-Driver\lib\mssqlserver.jar;D:\MS-JDBC-Driver\lib\msutil.jar;E:\Installers\Java Related\jdbc dirvers\JSQLConnect3_27\JSQLConnect.jar
    I have the same J2EE_CLASSPATH setting in my userconfig.bat file.
    I've loaded this driver class in deploytool:
    com.microsoft.jdbc.sqlserver.SQLServerDriver
    and my connection url is:
    jdbc:microsoft:sqlserver://localhost:1433;databasename=test
    What's weird is that I've also tested these settings with a simple Java Application and they worked fine, but when I try to use the same for the j2ee server from sun, I always get the annoying "no suitable driver" error.
    If anyone has ever come up with a solution that works, please help. You may post you reply here or better yet, email me at [email protected]
    Thanks a lot in advance !

    Hi,
    The error "no suitable driver" occurs when something goes wrong with the connection URL.so make sure that u are using the correct URL format (check if any of the info is case sensitive etc) or atleast try other URL alternatives (for MS jdbc driver).
    try these changes only through deployment tool->tools->server configuration->datasources->standard.(instead of editing resource.properties directly).
    last not the least - make sure that there is NO "rem" keyword before "set J2EE_CLASSPATH" in the userconfig.bat file :)
    HTH,
    - asharafkk

  • No authorization for variant ZPAK_D3FS09V87UVHYB1D72JT1RUSK

    Hi,
    I have trasnported the process chain from Dev to Quality . when I go to quality system & see the process chain is in grey color
    in my application component . when I try to check & activate it gives me the error:
    No authorization for variant ZPAK_D3FS09V87UVHYB1D72JT1RUSK from process type LOADING
    Then I have created onemore new inforpackage  & in RSPC I have opened my PC in edit mode & in process type I draged & dropped Load Process  & Post - Processing -> Execute infopackage  here I have selected the new infopackage name that I have created & coonected it to the start process & deleted the old infopackage connection.
    As I have done all this in the Quality sytem . Can this be done in this way or do I need to follow some other procedure .
    If the same issue comes in the procedure do I nned to follow the same procedure in Production as well? Pls let me know

    I decided to write to an answered thread because my case was different.
    I got the error together with error RSM894 An internal error occurred during the authorization check.
    The cause was that corresponding datasource was 3x instead of 7x in target system.
    After migrating of datasource the error was corrected.
    So it was not an authorization issue.
    Edited by: raaleksandr on Aug 15, 2011 9:33 AM

  • Dataload Yellow Status in DSO

    Hi All,
    We are having an issue with Infopackage request (QM Status) remains in Yellow status in the Target Admin of DSO but in fact it actually has failed (Red in Process Monitor). This happens when the Integrity Check is turned ON for infoobjects in the Transfer Rules and the records doesnu2019t exist in the master data. The Status should turn into Red instead of remaining in Yellow.
    Due to this, the triggered Process Chain will skip this request and shows Green status (zero records transferred to upper layer DSO). The user might think that the data is available for reporting because the Process Chain is in Green status.
    The reason why we are using an Infopackage/3.x Datasource/ Transfer Rules (instead of DTP/ Transformation) is because the source system is BODI. (BO Data Services)
    I tried changing some setting i.e. the Error Handling and Traffic Light setting of the Infopackage but it still wouldnu2019t work.
    My take is that the referential integrity checking in 3.5 Transfer Rule may have some bugs compared to 7.0 Transformation. I did a test using 7.0 Tansformation and DTP (from flat file source) and it works fine. But we canu2019t use this method because our source system is BODI. (3.x Datasource)
    Any help appreciated and thanks in advance.

    maybe it's bug, maybe not...but you can however mix 3.5 and bi7 within the same flow. you can load in 3.5 to a first layer dso (edwl) and then do a bi7 load to the next level. you can do the integrity check at this level.
    M.

  • Suggestions for video encryption?

    I have a requirement to encrypt a video:
    - the application generates a video file
    - the user is presented with a 'preview' of the video
    - after they agree to purchase the file is made 'available'.
    We have custom code to generate the video, so we can do whatever we want in terms of 'encryption', i.e. just bunging a few random-ish bytes at the start of the file would be sufficient, which could be stripped off when the user purchases it.
    The problem is obviously the preview - we are using a simple JMF Player, but of course it won't be able to handle the 'encrypted' file.
    I had originally thought that we could simply extend FileDataSource (or something like that) and get it to skip the leading bytes, but no joy - the MediaLocator/URL framework completely hides the underlying file stream.
    Any suggestions on how to proceed?
    Thanks in advance for any pointers.

    I had originally thought that we could simply extend FileDataSource (or something like that) and get it to skip the leading bytes, but no joy - the MediaLocator/URL framework completely hides the underlying file stream.Well, if the FileDataSource hides what you need, then write your own.
    A DataSource really only has to do 2 things (technically, this doesn't refer to the DataSource itself but instead the DataStreams inside the DataSource)... report the format of the data it delivers, and then deliver the data in the read function. You'll know the format your video is in, so you can hard-code that. And then you can handle delivering the data in the read function by manually handling the FileInputStream stuff.

  • 2LIS_02_SCL Datasource dataload issue

    Hi Sdns,
    i am using 2lis_02_scl datasource, i am seeing the strange behaviour of the datasource.
    I have filled the setuptables without any issues. then i am trying to load the data to the BI by using the Repair Full request infopackage. I found that some of the PO docuements are missing in BI. i have done the extraction for the same misssing PO's in RSA3 in R/3.
    In RSA3, i am able to the see the data for missing PO's but these PO's are not getting transferred to the BI firsttime.
    i again loaded the data to the BI without any selections in infopackage also,  i can able to get the data for some missing records but not all.
    for more information, this is happening in Quality systems.
    Please help me on this issue.
    Thanks in Advance
    karunakar
    Edited by: karunakark on Apr 5, 2011 3:14 PM

    Where are you checking the data in BW?
    Is it the PSA or the DSO?
    And, you said that you are able to see the Data in RSA3 for PO's which do not get loaded to BI.
    Please try to fetch such a PO using Repair Full -> Infopackage Selection -> Po Number.
    See if you are able to see the data in the PSA of 2LIS_02_SCL.

  • Problem during restore datasource (IFSF instead RSDS) :(

    We have refreshed the quality system.
    But during the restore of a Datasource, for an error we have chosed replicate as ISFS instead RSDS.
    So, i try to execute the TCODE RSDS, for convert the 3.x but the system ask me that with the convertion all the trasfert e structure rules will be delete.
    Any suggestions?
    tks

    It shouldn't really delete.
    May be ,you can try transporting from Development to Quality the Datasource.
    Thanks

Maybe you are looking for

  • No Image on External Monitor

    My external monitor has become very difficult to use with my PowerBook, but I don't know what I did to cause this. I am using a Samsung SyncMaster 910T as an external display via the Apple VGA - DVI adaptor with a 15-inch PB G4, and for years it has

  • Reciever communication channel error

    hi. here i am doing a file to bapi,file scenario. when i set sender  file CC as active. and at sender commnication it processed sucesfully but in the reciever file cc. its showing error like Communication channel is correctly configured and started A

  • New update and HP printer problems

    I recently installed some automatic updates for my computer, including the MacBook SMC Firmware update along with something else that was recommended (but I don't remember what it is). Immediately afterwards, I began having printer issues (ie, I coul

  • Communicating with objects running in different JVM's

    Hi All I have a program which is running in multiple JVM.Each Jvm is using some special object. Now i need to monitor the state of that special object using a GUI sort of tool.ie i need to build a gui for seeing those special objects in all the runni

  • Compatible with windows x64 yet??

    Or are we still hosed? Funny that they don't support the new line of chipsets. Wondering if itunes 7 is compatible with x64 os yet or not.