. Pls ignore testing 123

Testing.. Pls ignore
ORA-04068: existing state of packages has been
discarded
ORA-04061: existing state of package "PLLODS.LK" has
been invalidated
ORA-04065: not executed, altered or dropped package
"PLLODS.LK"
ORA-06508: PL/SQL: could not find program unit being
called
ORA-06512: at line 1
ORA-04061: existing state of package "PLLODS.LK" has
been invalidated

Testing again, pls ignore

Similar Messages

  • Need help with build.xml / junit - pls ignore my previous posting

    i'm trying to add unit tests for another class file in a larger package. the package is built with ant. relevant lines of the build.xml that pertain to unit tests are
            </target>
            <target name="test" depends="dist, build-tests">
                    <!-- the grouper project doesn't use the junit ant task that's fine with me -->
                    <java fork="yes"
              classname="junit.textui.TestRunner"
              taskname="junit"
              failonerror="true">
                    <arg value="organization.organizationSuite"/>
                    <classpath>
                            <pathelement path="${java.class.path}"/>
                            <pathelement path="../organization.jar"/>
                            <pathelement path="${buildir}" />
                    </classpath>
                    </java>
            </target>
            <target name="test-individual" depends="dist, build-tests">
                    <!-- the grouper project doesn't use the junit ant task that's fine with me -->
                    <java fork="yes"
              classname="junit.textui.TestRunner"
              taskname="junit"
              failonerror="true">
                    <arg value="organization.testFoo"/> <!-- ADJUST THIS FOR YOUR OWN TEST -->
                    <classpath>
                            <pathelement path="${java.class.path}"/>
                            <pathelement path="../organization.jar"/>
                            <pathelement path="${buildir}" />
                    </classpath>
                    </java>
                    <java fork="yes"
              classname="junit.textui.TestRunner"
              taskname="junit"
              failonerror="true">
                    <arg value="organization.oldTest"/> <!-- ADJUST THIS FOR YOUR OWN TEST -->
                    <classpath>
                            <pathelement path="${java.class.path}"/>
                            <pathelement path="../organization.jar"/>
                            <pathelement path="${buildir}" />
                    </classpath>
                    </java>i'm trying to add
      <arg value="organization.anotherTest"/> <!-- ADJUST THIS FOR YOUR OWN TEST -->
                    <classpath>
                            <pathelement path="${java.class.path}"/>
                            <pathelement path="../organization.jar"/>
                            <pathelement path="${buildir}" />
                    </classpath>
                    </java>right now i can
    right now i can
    java junit.textui.TestRunner organization.testSuite
    or to run a specific test
    java junit.textui.TestRunner organization.oldTest
    i added the above lines to my build.xml, added the .java file for the anotherTest class to the ${testdir} where oldTest and testSuite and other junit related classes live within the package directory structure, then ran 'ant' to make a new .jar file.
    now when i switch in the new .jar file, i get errors whenever i try to
    java junit.textui.TestRunner organization.oldTest
    i get 'no class oldTest' found
    can anyone point me in the right direction?

    My Ant build.xml doesn't look like yours. I usually do it like this, and it works fine:
        <target name="test" depends="compile" description="run all unit tests">
            <junit>
                <jvmarg value="-Xms32m" />
                <jvmarg value="-Xmx64m" />
                <classpath>
                    <path refid="project.class.path" />
                </classpath>
                <formatter type="xml" />
                <batchtest fork="yes" todir="${reports}">
                    <fileset dir="${output.classes}">
                        <include name="**/*TestCase.class" />
                    </fileset>
                    <fileset dir="${output.classes}">
                        <include name="**/*TestSuite.class" />
                    </fileset>
                </batchtest>
            </junit>
        </target>
        <target name="report" depends="test" description="create HTML report for JUnit test results">
            <junitreport todir="${reports}">
                <fileset dir="${reports}">
                    <include name="TEST-*.xml"/>
                </fileset>
                <report format="frames" todir="${reports}"/>
            </junitreport>
        </target>I don't understand why you're running individual tests like that. why not run them all?
    %

  • Need help using list item as filter[WRONG POST PLS IGNORE]

    SORRY WRONG POST...
    Edited by: cjtjaime on Oct 8, 2010 12:33 AM

    sir i tried the code and it says: FRM-41003: This function cannot be performed here.
    what im really want to do is that after retrieving the dates from a push button, (remember yesterday where you help me retrieving multiple data).... i have a list_item where it has the elements JAN,FEB,MAR,APR,MAY.
    and then after selecting different month from the list_item the values that ive retrieve will be filter according to the value in the list_item
    it looks something like this:
    stud_id = 1001
    time_in
    01-JAN-10
    02-JAN-10
    03-JAN-10
    01-FEB-10
    02-FEB-10
    03-FEB-10
    after selecting FEB from the list_item it will goes like this
    time_in
    01-FEB-10
    02-FEB-10
    03-FEB-10
    thanks..
    -charles

  • Testing in QAS or Development System

    Hi everybody,
    I have created my Testpackages and assigned the users to them. The testing is already working fine.
    Now I discovered that the STWB_WORK also exists in my development system but it does not show the testpackages.
    What do I have to do to be able to test directly from there? And if I do, does it automatically transfer all the testdata back to the solution manager?
    Thanks for helping
    Miriam

    Hi
    I think you are confused with old R/3 test workbench by checking in ur R/3 or ECC system workbench.
    pls ignore the same ...solman is to provide the centralised testing across the landscape whether it is for SAP or Non SAP products using ECATT/QTP or manual
    That is why now they dont have to login to individual system for testing they just login to solman execute from here itself whatever the scenario may be...
    I hope it is clarified
    Regards
    Prakhar
    Edited by: Prakhar Saxena on Nov 23, 2009 3:38 PM

  • PLS-00306:NET to call Oracle stored procedure,Use Array parameters

    Development Environment:Windows 2003 SP2+Oracle 10g
    . NET to call Oracle stored procedure, use an array of types of parameters
    Step1:(In the Oracle database define an array of types)
    CREATE OR REPLACE TYPE STRING_VARRAY AS VARRAY (1000) OF NVARCHAR2(255)
    OR
    CREATE OR REPLACE type string_array is table of nvarchar2(255)
    Step2:
    CREATE OR REPLACE PROCEDURE Test
    (i_test in string_varray,o_result out int)
    IS
    BEGIN
    o_result:=i_test.count;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    WHEN OTHERS
    THEN
    o_result:=0;
    END arraytest;
    Step3:
    ODP.NET(Oracle 10g)
    OracleConnection conn = new OracleConnection("User Id=test;Password=test;Data Source=test");
    OracleCommand cmd = new OracleCommand("Test", conn);
    cmd.CommandType = CommandType.StoredProcedure;
    string[] str = new string[2] { "11", "222" };
    cmd.ArrayBindCount=2;
    OracleParameter p1 = new OracleParameter("i_test", OracleDbType.NVarChar);
    p1.Direction = ParameterDirection.Input;
    p1.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    p1.Value = str;
    p1.ArrayBindSize=new int[2]{2,3};
    p1.ArrayBindStatus = new OracleParameterStatus[2]{
    OracleParameterStatus.Success,
    OracleParameterStatus.Success
    cmd.Parameters.Add(p1);
    OracleParameter p2 = new OracleParameter("o_result", OracleDbType.Int32);
    p2.Direction = ParameterDirection.Output;
    P2.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    p2.Value=0;
    cmd.Parameters.Add(p2);
    int i = 0;
    try
    conn.Open();
    cmd.ExecuteNonQuery();
    i =(int) p2.Value;
    catch (Exception ex)
    finally
    conn.Close();
    Error:
    Execution Failed:ORA-06550:Line 1,Column 7:
    PLS-00306:Test parameters when calling the number or types of errors
    ORA-06550:Line 1,Column 7:
    PL/SQL:Statement ignored

    Hi,
    See the answer in [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=909564&tstart=0]
    Hope it helps,
    Greg

  • Error while running Parameterized test

    Hi,
    I'm currently working on a really simple Parameterized TestCase. I'm using flexunit 4.0-rc1 and flexmojos 3.5.0.
    When I do 'mvn clean test' I get the following error:
    <testsuite errors="0" failures="1" name="com.finams.bnpflexlib.utils.StringUtilsTest" tests="1" time="0">
      <testcase name="initializationError" time="0">
        <failure message="Custom runner class org.flexunit.runners.Parameterized cannot be instantiated" type="com.finams.bnpflexlib.utils.StringUtilsTest">Error: Custom runner class org.flexunit.runners.Parameterized cannot be instantiated
         at org.flexunit.internals.runners::InitializationError()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\runners\InitializationError.as:50]
         at org.flexunit.internals.builders::MetaDataBuilder/createInitializationError()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:209]
         at org.flexunit.internals.builders::MetaDataBuilder/buildWithSecondSignature()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:179]
         at org.flexunit.internals.builders::MetaDataBuilder/buildRunner()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:146]
         at org.flexunit.internals.builders::MetaDataBuilder/runnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:115]
         at org.flexunit.runners.model::RunnerBuilderBase/safeRunnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:63]
         at org.flexunit.internals.builders::AllDefaultPossibilitiesBuilder/runnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\AllDefaultPossibilitiesBuilder.as:106]
         at org.flexunit.runners.model::RunnerBuilderBase/safeRunnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:63]
         at org.flexunit.runners.model::RunnerBuilderBase/localRunners()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:119]
         at org.flexunit.runners.model::RunnerBuilderBase/runners()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:87]
         at org.flexunit.runners::Suite()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\Suite.as:170]
         at org.flexunit.runner::Request$/classes()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runner\Request.as:201]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at org.flexunit.runner::FlexUnitCore/runClasses()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runner\FlexUnitCore.as:191]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at org.flexunit.runner::FlexUnitCore/run()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runner\FlexUnitCore.as:171]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at org.sonatype.flexmojos.unitestingsupport.flexunit4::FlexUnit4Listener/run()[/home/nexus/flexmojos/trunk/target/checkout/flexmojos-testing/flexmojos-unittest-flexunit4/src/main/flex/org/sonatype/flexmojos/unitestingsupport/flexunit4/FlexUnit4Listener.as:42]
         at org.sonatype.flexmojos.unitestingsupport::SocketReporter/runTests()[/home/nexus/flexmojos/trunk/target/checkout/flexmojos-testing/flexmojos-unittest-support/src/main/flex/org/sonatype/flexmojos/unitestingsupport/SocketReporter.as:243]
         at org.sonatype.flexmojos.unitestingsupport::TestApplication/runTests()[/home/nexus/flexmojos/trunk/target/checkout/flexmojos-testing/flexmojos-unittest-support/src/main/flex/org/sonatype/flexmojos/unitestingsupport/TestApplication.as:40]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9298]
         at mx.core::UIComponent/set initialized()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:1169]
         at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\LayoutManager.as:718]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8628]
         at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8568]</failure>
      </testcase>
    </testsuite>
    Here is my TestCase (StringUtils is a simple class with a single method that converts numbers to strings, I did it to manage the specific case of a NaN parameter):
    package com.finams.bnpflexlib.utils
         import org.flexunit.Assert;
         import org.flexunit.runners.Parameterized;
         import com.finams.bnpflexlib.utils.StringUtils;
         [RunWith("org.flexunit.runners.Parameterized")]
         public class StringUtilsTest
              [Datapoints]
              static public var referential:Array = [
                   {numeric: 0, alpha: '0'},
                   {numeric: 1500, alpha: '1500'},
                   {numeric: 42, alpha: '42'},
                   {numeric: 15.15, alpha: '15.15'},
                   {numeric: 999, alpha: '999'},
                   {numeric: 17.0123456789, alpha: '17.0123456789'},
                   {numeric: 123456789, alpha: '123456789'},
                   {numeric: 0.00000000001, alpha: '0.00000000001'},
                   {numeric: -1, alpha: '-1'},
                   {numeric: 0.00000000015, alpha: '0.00000000015'},
                   {numeric: -1.01, alpha: '-1.01'},
                   {numeric: 0.12345678912, alpha: '0.12345678912'},
                   {numeric: -123456789, alpha: '-123456789'},
                   {numeric: 0.0, alpha: '0.0'},
                   {numeric: -1.123456789, alpha: '-1.123456789'},
                   {numeric: -0.0, alpha: '-0.0'}
              public function StringUtilsTest() {}
              [Test(description="Ensure that a NaN number will produce an empty string.")]
              public function checkNbToStringWithNaNParameter():void
                   var result:String;
                   result = StringUtils.nbToString(NaN);
                   Assert.assertEquals(result, '');
              [Ignore]
              [Test(dataprovider="referential", description="Check conversion with a set of values")]
              public function checkNumbers(nb:Number, ref:String):void
                   var result:String;
                   result = StringUtils.nbToString(nb);
                   Assert.assertEquals('Conversion fault: expected ' + ref + ', got ' + nb.toString(),
                                  result,
                                  'ref');
    I wonder what's wrong...

    First, thanks for your answer.
    I saw in the wiki of flexunit.org that you declare a private property named foo of type Parameterized.
    I did it, but I still have the problem :
    <testsuite errors="0" failures="1" name="com.finams.bnpflexlib.utils.StringUtilsTest" tests="1" time="0">
      <testcase name="initializationError" time="0">
        <failure message="Custom runner class org.flexunit.runners.Parameterized cannot be instantiated" type="com.finams.bnpflexlib.utils.StringUtilsTest">Error: Custom runner class org.flexunit.runners.Parameterized cannot be instantiated
         at org.flexunit.internals.runners::InitializationError()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\runners\InitializationError.as:50]
         at org.flexunit.internals.builders::MetaDataBuilder/createInitializationError()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:209]
         at org.flexunit.internals.builders::MetaDataBuilder/buildWithSecondSignature()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:179]
         at org.flexunit.internals.builders::MetaDataBuilder/buildRunner()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:146]
         at org.flexunit.internals.builders::MetaDataBuilder/runnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\MetaDataBuilder.as:115]
         at org.flexunit.runners.model::RunnerBuilderBase/safeRunnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:63]
         at org.flexunit.internals.builders::AllDefaultPossibilitiesBuilder/runnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\internals\builders\AllDefaultPossibilitiesBuilder.as:106]
         at org.flexunit.runners.model::RunnerBuilderBase/safeRunnerForClass()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:63]
         at org.flexunit.runners.model::RunnerBuilderBase/localRunners()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:119]
         at org.flexunit.runners.model::RunnerBuilderBase/runners()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\model\RunnerBuilderBase.as:87]
         at org.flexunit.runners::Suite()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runners\Suite.as:170]
         at org.flexunit.runner::Request$/classes()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runner\Request.as:201]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at org.flexunit.runner::FlexUnitCore/runClasses()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runner\FlexUnitCore.as:191]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at org.flexunit.runner::FlexUnitCore/run()[C:\Users\dmoore\Documents\_Production\Flex Unit 4\GIT\FlexUnit4\src\org\flexunit\runner\FlexUnitCore.as:171]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at org.sonatype.flexmojos.unitestingsupport.flexunit4::FlexUnit4Listener/run()[/home/nexus/flexmojos/trunk/target/checkout/flexmojos-testing/flexmojos-unittest-flexunit4/src/main/flex/org/sonatype/flexmojos/unitestingsupport/flexunit4/FlexUnit4Listener.as:42]
         at org.sonatype.flexmojos.unitestingsupport::SocketReporter/runTests()[/home/nexus/flexmojos/trunk/target/checkout/flexmojos-testing/flexmojos-unittest-support/src/main/flex/org/sonatype/flexmojos/unitestingsupport/SocketReporter.as:243]
         at org.sonatype.flexmojos.unitestingsupport::TestApplication/runTests()[/home/nexus/flexmojos/trunk/target/checkout/flexmojos-testing/flexmojos-unittest-support/src/main/flex/org/sonatype/flexmojos/unitestingsupport/TestApplication.as:40]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9298]
         at mx.core::UIComponent/set initialized()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:1169]
         at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\LayoutManager.as:718]
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8628]
         at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8568]</failure>
      </testcase>
    </testsuite>
    Here is my updated TestCase:
    package com.finams.bnpflexlib.utils
         import org.flexunit.Assert;
         import org.flexunit.runners.Parameterized;
         import com.finams.bnpflexlib.utils.StringUtils;
         [RunWith("org.flexunit.runners.Parameterized")]
         public class StringUtilsTest
              private var foo:Parameterized;
              [Datapoints]
              static public var referential:Array = [
                   {numeric: 0,                     alpha: '0'},
                   {numeric: 1500,                alpha: '1500'},
                   {numeric: 42,                     alpha: '42'},
                   {numeric: 15.15,                alpha: '15.15'},
                   {numeric: 999,                     alpha: '999'},
                   {numeric: 17.0123456789,      alpha: '17.0123456789'},
                   {numeric: 123456789,           alpha: '123456789'},
                   {numeric: 0.00000000001,      alpha: '0.00000000001'},
                   {numeric: -1,                     alpha: '-1'},
                   {numeric: 0.00000000015,      alpha: '0.00000000015'},
                   {numeric: -1.01,                alpha: '-1.01'},
                   {numeric: 0.12345678912,      alpha: '0.12345678912'},
                   {numeric: -123456789,           alpha: '-123456789'},
                   {numeric: 0.0,                     alpha: '0.0'},
                   {numeric: -1.123456789,      alpha: '-1.123456789'},
                   {numeric: -0.0,                alpha: '-0.0'}/* ,
                   {numeric: , alpha: ''}, {numeric: , alpha: ''},
                   {numeric: , alpha: ''}, {numeric: , alpha: ''},
                   {numeric: , alpha: ''}, {numeric: , alpha: ''},
                   {numeric: , alpha: ''}, {numeric: , alpha: ''},
                   {numeric: , alpha: ''}, {numeric: , alpha: ''},
                   {numeric: , alpha: ''}, {numeric: , alpha: ''},
                   {numeric: , alpha: ''}, {numeric: , alpha: ''}, */
              public function StringUtilsTest() {}
              [Test(description="Ensure that a NaN number will produce an empty string.")]
              public function checkNbToStringWithNaNParameter():void
                   var result:String;
                   result = StringUtils.nbToString(NaN);
                   Assert.assertEquals(result, '');
              [Ignore]
              [Test(dataprovider="referential", description="Check conversion with a set of values")]
              public function checkNumbers(nb:Number, ref:String):void
                   var result:String;
                   result = StringUtils.nbToString(nb);
                   Assert.assertEquals('Conversion fault: expected ' + ref + ', got ' + nb.toString(),
                                            result,
                                            'ref');
    I'm not sure if I can use another version of flexunit since 4.0-rc1 seems to be a flexmojos restriction.

  • TEST IMPORT phase error?during importing the patches

    Dear All,
    i was importing the HR patches SAPKE60023,SAPKE60024,
    SAPKE60025,SAPKE60026.In between error display PHASE TEST IMPORT ?
    MESSAGE:
    Error occourred in TEST_IMPORT.
    All these 4 SP was in the queue.
    SAPKE60023:0004RC
    SAPKE60024:0004RC
    SAPKE60025:0008RC
    SAPKE60026:0004RC
    log files is attached.
    1 ETP199X######################################
    1 ETP152 TESTIMPORT
    1 ETP101 transport order     : "SAPKE60025"
    1 ETP102 system              : "MRP"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "372.04.29" "700"
    1 ETP198
    4 ETW000 R3trans.exe version 6.14 (release 700 - 14.04.08 - 10:31:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 23.05.2008 - 03:54:38
    4 ETW000 control file:
    sappro\sapmnt\trans\tmp\SAPKKE60025.MRP
    4 ETW000 > #pid 6080 on sappro (APServiceMRP)
    4 ETW000 > testimport
    4 ETW000 > file='
    sappro\sapmnt\trans\data\RE60025.SAP'
    4 ETW000 > buffersync=no
    4 ETW000 >
    4 ETW000 R3trans was called as follows: R3trans.exe -w
    sappro\sapmnt\trans\tmp\SAPPE60025.MRP -u 1
    sappro\sapmnt\trans\tmp\SAPKKE60025.MRP
    4 ETW000 active unconditional modes: 1
    4 ETW000 Connected to DBMS = ORACLE --- dbs_ora_tnsname = 'MRP' --- SYSTEM = 'MRP'.
    4 ETW690 COMMIT "0" "0"
    4 ETW000  trace at level 1 opened for a given file pointer
    4 ETW000
    4 ETW000 ================== STEP 1 =====================
    4 ETW000 date&time        : 23.05.2008 - 03:54:39
    4 ETW000 function         : TESTIMPORT
    4 ETW000 data file        :
    sappro\sapmnt\trans\data\RE60025.SAP
    4 ETW000 buffersync       : NO
    4 ETW000 clients          : as exported
    4 ETW000 l.s.m.           : VECTOR
    4 ETW000 commit           : 100000
    4 ETW000 table cache      : dynamic
    4 ETW000
    4 ETW000 Character set on this machine : 2 byte unicode little endian.
    4 ETW000 Character set on the data file: ASCII (ISO 8859-1).
    4 ETW000 Data file is compressed with algorithm 'L'.
    4 ETW000 Export was executed on 20.12.2007 at 14:39:25 by c7eadm     
    3 ETW709 "700 "
    4 ETW000   with R3trans version: 20.07.06 - 17:34:00
    4 ETW000 Source System = AMD/Intel x86_64 with Linux on DBMS = ADABAS D --- DBNAME = 'C7E' --- SYSTEM = 'C7E'.
    4 ETW000
    4 ETW000 language vector during export: 1234568ABCDEFGHIJKLMNOPQRSTUVWcd
    4 ETW000 lsm during export: ALL
    4 ETW000 texts in language i will be converted with codepage 1100
    4 ETW000 texts in language d will be converted with codepage 1401
    4 ETW000 texts in language c will be converted with codepage 1100
    4 ETW000 texts in language b will be converted with codepage 1100
    4 ETW000 texts in language a will be converted with codepage 1100
    4 ETW000 texts in language 8 will be converted with codepage 1500
    4 ETW000 texts in language 7 will be converted with codepage 1100
    4 ETW000 texts in language 6 will be converted with codepage 1401
    4 ETW000 texts in language 5 will be converted with codepage 1401
    4 ETW000 texts in language 4 will be converted with codepage 1401
    4 ETW000 texts in language 3 will be converted with codepage 8500
    4 ETW000 texts in language 2 will be converted with codepage 8600
    4 ETW000 texts in language 1 will be converted with codepage 8400
    4 ETW000 texts in language 0 will be converted with codepage 1500
    4 ETW000 texts in language W will be converted with codepage 1500
    4 ETW000 texts in language V will be converted with codepage 1100
    4 ETW000 texts in language U will be converted with codepage 1100
    4 ETW000 texts in language T will be converted with codepage 1610
    4 ETW000 texts in language S will be converted with codepage 1100
    4 ETW000 texts in language R will be converted with codepage 1500
    4 ETW000 texts in language Q will be converted with codepage 1401
    4 ETW000 texts in language P will be converted with codepage 1100
    4 ETW000 texts in language O will be converted with codepage 1100
    4 ETW000 texts in language N will be converted with codepage 1100
    4 ETW000 texts in language M will be converted with codepage 8300
    4 ETW000 texts in language L will be converted with codepage 1401
    4 ETW000 texts in language K will be converted with codepage 1100
    4 ETW000 texts in language J will be converted with codepage 8000
    4 ETW000 texts in language I will be converted with codepage 1100
    4 ETW000 texts in language H will be converted with codepage 1401
    4 ETW000 texts in language G will be converted with codepage 1700
    4 ETW000 texts in language F will be converted with codepage 1100
    4 ETW000 texts in language E will be converted with codepage 1100
    4 ETW000 texts in language D will be converted with codepage 1100
    4 ETW000 texts in language C will be converted with codepage 1401
    4 ETW000 texts in language B will be converted with codepage 1800
    4 ETW000 texts in language A will be converted with codepage 8700
    4 ETW000 trfunction = D (patch transport)
    3 ETW708 "000"
    4 ETW000 switching to selective language import
    4 ETW000 the following languages will be imported: DE
    4 ETW000 Used Commandfile SAPKE60025           (SAPUSER/1366)
    4 ETW000      ... ignoring such differences.
    4 ETW000   0 entries for E070 imported (SAPKE60025).
    4 ETW000      ... ignoring such differences.
    4 ETW000   0 entries for E071 imported (SAPKE60025          *).
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000 LANGSSFOHR_CMP_TCS lang R not imported.
    4 ETW000 E071-LOCKFLAGs 000002 - 000002 updated ('3', 1 entries).
    4 ETW690 COMMIT "128" "128"
    4 ETW000      ... ignoring such differences.
    4 ETW000      table STXFCONT: entry in DB is 32 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table REPOSRC: entry in DB is 176 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table REPOTEXT: entry in DB is 68 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOCLASS: entry in DB is 32 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOCLASSDF: entry in DB is 353 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOCLASSEX: entry in DB is 88 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOCOMPODF: entry in DB is 10548 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOCOMPOEX: entry in DB is 88 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOSUBCODF: entry in DB is 396 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SEOSUBCOEX: entry in DB is 116 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table EUDB: entry in DB is 128 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table FUPARAREF: entry in DB is 228 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    2EETW165 Function "HRCCE_EXT_EMP_ATTR_CE (HRCCE_BI_CE|02)" does not fit into the existing function group "(HRCCE_CALENDAR_FUNCTIONS|05)".
    2 ETW167 Please transport the whole function group.
    2EETW165 Function "HRCCE_GET_EMP_ATTR_CE (HRCCE_BI_CE|03)" does not fit into the existing function group "(HRCCE_CALENDAR_FUNCTIONS|04)".
    2 ETW167 Please transport the whole function group.
    2EETW165 Function "HRCCE_GET_PERSONID (HRCCE_BI_CE|04)" does not fit into the existing function group "(HRCCE_CALENDAR_FUNCTIONS|06)".
    2 ETW167 Please transport the whole function group.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SPROXDAT: entry in DB is 1036 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SPROXHDR: entry in DB is 1640 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SPROXLPT: entry in DB is 452 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table SOTR_HEAD: entry in DB is 185 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table CUS_ACTH: entry in DB is 65 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table CUS_ATRH: entry in DB is 61 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table ENHSPOTHEADER: entry in DB is 164 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table ENHSPOTCONTRACT: entry in DB is 160 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table STXL: entry in DB is 90 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table DSYS_PHCONT_CCD2: entry in DB is 76 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table DSYS_PHCONT_ECD2: entry in DB is 76 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table DSYS_PHCONT_ECI2: entry in DB is 76 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table ROOSFIELD: entry in DB is 124 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table VARID: entry in DB is 120 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table FPCONTEXT: entry in DB is 112 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table FPLAYOUT: entry in DB is 84 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table FPLAYOUTT: entry in DB is 64 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table TTREEP: entry in DB is 176 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table TTREE_APPL: entry in DB is 184 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T511: entry in DB is 87 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T512W: entry in DB is 184 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5G01: entry in DB is 25 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5G_NICLIM: entry in DB is 20 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5KTC: entry in DB is 25 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table LTDX: entry in DB is 144 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table OBJSL: entry in DB is 180 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T506D: entry in DB is 46 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T511K: entry in DB is 27 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T511P: entry in DB is 31 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    3WETW109 table "T52E_ARFC" does not exist in nametab.
    3WETW109 table "T52E_ARFCT" does not exist in nametab.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    3WETW109 table "T5BX2" does not exist in nametab.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5C2D: entry in DB is 44 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5G03: entry in DB is 17 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5G67: entry in DB is 19 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5GT2: entry in DB is 25 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5N1L: entry in DB is 32 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5N21: entry in DB is 31 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5N22: entry in DB is 24 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5N2O: entry in DB is 30 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T5S3N: entry in DB is 19 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T7IE3: entry in DB is 31 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T7IE4: entry in DB is 26 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      table T7KRTR: entry in DB is 5 bytes bigger than in file.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW000      ... ignoring such differences.
    4 ETW690 COMMIT "0" "128"
    4 ETW000 6801621 bytes read.
    4 ETW000 Transport overhead 27.5 %.
    4 ETW000 Data compressed to 9.2 %.
    4 ETW000 Duration: 3 sec (2267207 bytes/sec).
    3 ETW710 "0" "0"
    4 ETW000  [dev trc     ,00000]  Fri May 23 03:54:42 2008                         3256961  3.256961
    4 ETW000  [dev trc     ,00000]  Disconnecting from ALL connections:                   29  3.256990
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                   35  3.257025
    4 ETW000  [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=02283750,usrhp=022A9C88)
    4 ETW000                                                                             699  3.257724
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=02283750,srvhp=02294FC4)
    4 ETW000                                                                             854  3.258578
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     774  3.259352
    4 ETW000  [dev trc     ,00000]  Disconnected from connection 0                       139  3.259491
    4 ETW000  [dev trc     ,00000]  statistics db_con_commit (com_total=3, com_tx=2)
    4 ETW000                                                                              64  3.259555
    4 ETW000  [dev trc     ,00000]  statistics db_con_rollback (roll_total=0, roll_tx=0)
    4 ETW000                                                                              66  3.259621
    4 ETW000 Disconnected from database.
    4 ETW000 End of Transport (0008).
    4 ETW000 date&time: 23.05.2008 - 03:54:42
    4 ETW000 3 warnings occured.
    4 ETW000 3 errors occured.
    1 ETP152 TESTIMPORT
    1 ETP110 end date and time   : "20080523035442"
    1 ETP111 exit code           : "8"
    1 ETP199 ######################################
    plz its urgent.....give me suggestion hoe to resolve this issue.

    Hi aadil mudassir .This known problem. Befor you applay SP you need to read -->
    Note 822379 - Known problems with Support Packages in SAP NW 2004s AS ABAP
    In this note for your problem :Symptom: If the Support Packages SAPKE60024 and SAPKE60025 are imported together in a queue, the TEST_IMPORT step returns an error for Support Package SAPKE60025. The test import log of SAPKE60025 displays the following error message:
    Function HRCCE_EXT_EMP_ATTR_CE (HRCCE_BI_CE 02) does not fit into the existing function group ((HRCCE_CALENDAR_FUNCTIONS 05))
               This error message recurs for two other function modules of the function groups HRCCE_BI_CE and HRCCE_CALENDAR_FUNCTIONS.
               Solution: You can ignore this error by choosing 'Extras'-> 'Ignore test-import error'.  The error will not occur during the later import.
    Regards.

  • Cannot display value using ${testitem.test}

    This is my program. I'm been using bean to display value in JSP page but it cannot be done.
    here are the codes.
    main page (Testing.jsp)
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <html>
    <head>
    <link rel=stylesheet type="text/css" href="auction.css">
    <title>Enter Your Bid</title></head>
    <body>
    <table class="mainBox" width="400">
    <tr><td class="boxTitle" colspan="2">
    Wrox JSP Auction
    </td></tr>
    <tr><td colspan="2"> </td></tr>
    <tr><td>
    <form action="Testing2.jsp" method="get">
    <table>
    <tr>
    <td width="200">Item to bid on</td><td>
    <select name="item">
    <option>27 inch TV</option>
    <option>DVD Player</option>
    <option>Digital Camera</option>
    </select>
    <input type="hidden" name="action" value="bid"/>
    </td></tr>
    <tr>
    <td>Bid Price:</td>
    <td><input name="price" type="text" width="10"/>
    </td></tr>
    <tr><td colspan="2"> </td></tr>
    <tr><td colspan="2" align="center">
    <input type="submit" value="Bid now!"/>
    </td></tr>
    </table>
    </form>
    </td></tr></table>
    </body>
    </html>
    Second page (Testing2.jsp)
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <html>
    <head>
    <link rel=stylesheet type="text/css" href="auction.css">
    <title>Testing on Bid</title>
    </head>
    <body>
    <table class="mainBox" width="600">
    <tr><td class="boxTitle" >
    Testing 123
    </td></tr>
    <tr><td>
         <jsp:useBean id="testitem" class="com.jsp.newsys.testing.Testing2" scope="request" >
         <jsp:setProperty name="testitem" property="*" />
         </jsp:useBean>
         <jsp:forward page="Testing3.jsp"/>
    </td></tr>
    </table>
    </body>
    </html>
    page value in (Testing3.jsp)
    <html>
    <head>
    <link rel=stylesheet type="text/css" href="auction.css">
    <title>Show the Bid</title></head>
    <body>
    <table class="mainBox" width="600">
    <tr><td class="boxTitle" colspan="2">
    Your Auction Bid
    </td></tr>
    <td class="tableCell">
    ${testitem.test}</td>
    </table>
    </body>
    </html>
    here is the bean.
    package com.jsp.newsys.testing;
    public class Testing2 {
         private String test;
    public Testing2() {
    public void setTest(String test)
              this.test=test;
         public String getTest()
         return this.test;
    Please help to resolve this problem. Thanks.
    Message was edited by:
    wesleygch

    Now that the Flex 2.0 forums are all set up, it is time to
    start using them for 2.0 questions. So in the future, don't post
    2.0 questions here.
    In the meantime, getURL has been changed to navigateToURL().
    See the docs for details.
    Also, I think you are mixing Flex 1.5 and 2.0. 2.0 does not
    use a server, and you do not call mxml file directly. Instead you
    compile the swf with FlexBuilder or the command line compiler, and
    call the html wrapper.
    Tracy

  • Redraw order problems with paintComponent

    hi,
    i've got this test code below which is simply meant to overlay the scrolling transparent text "HELLO" a few times on top of a normal component
    my problem is that the image in the panel, is seemingly being redrawn after the text, when it should be drawn as part of the call to super.paintComponent(g)
    is having a thread calling repaint() every few milliseconds is the right way to be doing this in the first place??
    any help really appreciated,
    asjf
    ps. pls ignore the dodgy positioning of text, and calculations of widths etc :)
    import javax.swing.*;
    import java.awt.*;
    import java.net.URL;
    class AnimTest extends JPanel {
       Font myFont;
       Color myColor;
       int x=0;
       AnimTest(URL u){
          super(new BorderLayout(8,8));
          add(new JLabel("Demo text: ajsk sdjfkl dsjfks jd aisuda siu"), BorderLayout.CENTER);
          add(new JLabel(new ImageIcon(u)), BorderLayout.EAST);
          setOpaque(true);
          setBackground(Color.white);  
          myColor = new Color(255,0,0,128);
          myFont = new Font("Dialog",Font.BOLD,14);
          new Thread(new Runnable(){
             public void run() {
                try {
                   while(true) {
                      repaint();
                      Thread.sleep(25);
                      x++;
                }catch(InterruptedException e) {
                   e.printStackTrace();
          }).start();
       public void paintComponent(Graphics g) {
          super.paintComponent(g);
          g.setColor(myColor);
          g.setFont(myFont);
          int width = 3*(getWidth()/2);
          int mid = getHeight()/2 + 10; // sort out later
          for(int i=0; i<width; i+=width/5)
             g.drawString("HELLO",((x+i) % width)-(width/5),mid);
       public static void main(String [] arg) throws Exception {
          URL demo = new URL("http://java.sun.com/images/duke.gif");
          JFrame frame = new JFrame("AnimTest");
          frame.getContentPane().add(new AnimTest(demo));
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.pack();
          frame.show();
    }

    hi, thanks for the reply. I am not drawing the image myself, but am expecting it to be done as part of the redraw of my classes superclass
    public void paintComponent(Graphics g) {
       super.paintComponent(g);i was expecting the call to super.paintComponent(g) to draw the contents of the JPanel that I've added (which it does do). The strange this is that the image attached to the JPanel is drawn on top the string that I paint after super.paintComponent(g) has completed. Am not sure how this could possibly happen without some complicated postponing of .drawImage coming into play??
    thanks,
    asjf

  • Highlight  a row in classic report based on condition

    HI all Gurus
    Using Apex 4.1.1 oracle 11g linux oc4j
    I want to highlight a row where #column_value#='Y' to grey  keep others as normal report settings.
    I have a simple sql query
    SELECT PK_ID,
      FIRST_NAME,
      LAST_NAME,
      INITIAL_REG_DATE,
      MAIL_DATE,
      BEGIN_DATE,
      END_DATE,
      END_DATE-BEGIN_DATE as "#days",
      BEGIN_STATUS,
      END_STATUS, 
      COMMENTS,
      DELETE_FLAG,
    case when  DELETE_FLAG='Y' then 'GREY' else '#f0f0f0' end  DELETE_FLAG ,
    INITIAL_REG_DATE+(END_DATE-BEGIN_DATE) "New Reg end date"
    FROM SOR_TRACKING_DEL
    where pk2_id =:P216_Detail
    order by mail_Date desc
    I created a Dynamic action
    which will fir on on load , BIND on this classic report
    $("input[name=f29]").each(function(){ 
    var lThis=$(this); 
    if(lThis.is("Y")){ 
      lThis.parents("tr:eq(0)").children("td").css({"background-color":"GREY"}); 
    } else { 
      lThis.parents("tr:eq(0)").children("td").css({"background-color":"#f0f0f0"}); 
    But this is not changing color as expected..
    Kindly help me !
    Thanks

    Scott and Tom
    Thanks you guys for looking into this.
    Pls ignore my improper explanation and my inexperience with jquery.
    I read some blog and was trying to do same on classic report but all blogs I found so far referred either interactive report or tabular report none of them mentioned classic report.
    I guess using array for classic report wont be a good idea to start with. :/
    I am not sure if this is right syntax and logic to highlight the row
    $(function(){
    var DELETE_FLAG = $(this);
        if DELETE_FLAG.is("Y"))
      DELETE_FLAG.parents("tr").children("td").css({"background-color":"GREY"});
    I also created app here
    http://apex.oracle.com/pls/apex/f?p=35155
    workspace sors
    user tester/testing
    application 35155
    Thanks again.

  • How to catch invalid emails & How to send to multiple emails

    This is a long two-part question.
    Part One:
    I would like to catch invalid emails within the JavaMail code and send the valid emails. I am using the following code to do this. The problem I am running into is when there is a valid email, sometimes it will be caught within the code without being sent and it will show up as a validunsentemail. I have set sendpartial to true, so this shouldn't be happening. Also, is there a way to check if a domain name is in existence before sending the email?
    Part Two:
    For testing purposes, I would like to mix valid and invalid emails for TO, but I don't know how to send to more than one email using an array. I have looked at other posting on the forum of how to do this, but I keep getting errors when I try other's suggestions. Maybe somebody will be able to help with this problem if they see the code below.
    Thanks in advance for all your help!
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import javax.mail.event.*;
    import javax.activation.*;
    public class Practice
    public static void main (String[] args) {
    Transport trans = null;
    try {
    Properties props = System.getProperties();
    props.put("mail.smtp.host", "hostname");
    props.put("mail.smtp.sendpartial","true");
    Session mailConnection = Session.getDefaultInstance(props, null);
    Message msg = new MimeMessage(mailConnection);
    Address angela= new InternetAddress("[email protected]");
    InternetAddress[] address ={new InternetAddress("[email protected]")};
    msg.setRecipients(Message.RecipientType.TO, address);
    msg.setContent("This is a test. This is only a test. What's Next?", "text/plain");
    msg.setFrom(angela);
    msg.setSubject("Testing 123");
    msg.setSentDate(new Date());
    msg.saveChanges();
    trans = mailConnection.getTransport(address[0]);
    trans.connect();
    trans.send(msg, address);
    System.out.println("Mail was sent successfully.");
    try {Thread.sleep(5);}catch(InterruptedException e){}
    } catch (MessagingException mex){
    try {Thread.sleep(5);}catch(InterruptedException e){}
    mex.printStackTrace();
    System.out.println();
    Exception ex = mex;
    do{
    if (ex instanceof SendFailedException){
    SendFailedException sfex = (SendFailedException) ex;
    Address[] invalid = sfex.getInvalidAddresses();
    if (invalid != null){
    System.out.println(" ** Invalid Addresses");
    if (invalid != null) {
    for (int i=0; i< invalid.length; i++)
    System.out.println(" " + invalid);
    Address[] validUnsent = sfex.getValidUnsentAddresses();
    if (validUnsent != null){
    System.out.println(" ** ValidUnsent Addresses");
    if (validUnsent !=null){
    for (int i=0; i<validUnsent.length; i++)
    System.out.println(" "+validUnsent[i]);
    Address[] validSent = sfex.getValidSentAddresses();
    if (validSent != null){
    System.out.println(" **ValidSent Addresses");
    if (validSent != null){
    for (int i=0; i<validSent.length; i++)
    System.out.println(" "+validSent[i]);
    System.out.println();
    if (ex instanceof MessagingException)
    ex = ((MessagingException)ex).getNextException();
    else
    ex = null;
    } while (ex != null);
    } finally {
    try {
    trans.close();
    } catch (MessagingException mex){  /*  ignore */}

    I am working on exactly the same problem. What you need to do is use the destination mail server to send mails. For example: address
    [email protected] is an invalid user.
    Using normal way you wont be able to catch invalid mail box error.
    If you use mail server of jabcreative.com to send email then you will get an unknown user exception.
    To find mail server of jabcreative.com you will have to do MX LookUp on DNS entry
    Have a look at this URL
    http://www.cee.hw.ac.uk/courses/5nn2/3/12.htm

  • Error in moveDimension within a forEach for Swapping charts

    Hi All,
    I tried to implement what was done in the following blog (which is a great idea) but it works perfect if I don't change the layout of any of the chart, mainly the bigger chart.
    Blog: SAP Design Studio Tips and Tricks #1: Swapping charts into focus on-demand
    In my case, what I see in the bigger chart could change.
    For example, by default I see Sales by Region (Europe, America, Asia, etc), and the user can filter by a Region and see the Countries.
    So, When I change the bigger chart with other chart I loose the filter and the drill down done before.
    To solve this, I tried to "save" the drills made in rows and columns, before to do what it is done in the blog, but I don't know why the moveDimension is not working as I expected, what is more, when I execute the dashboard and run the event, it says there is an error in my script and the error is in the moveDimension.
    I want to share my code, just if you have the chance to test it, and see if it works.
    Thanks, Federico
    My Code:
    // Initializing variables
    var DS1_Name = DS_1.getInfo().queryTechnicalName;
    var DS2_Name = DS_2.getInfo().queryTechnicalName;
    var system = DS_1.getInfo().system;
    var chart = CHART_1.getChartType();
    // Saving the layout
    var DS1_COL_BEF = DS_2.getDimensions(Axis.COLUMNS);
    var DS1_ROW_BEF = DS_2.getDimensions(Axis.ROWS);
    var DS2_COL_BEF = DS_1.getDimensions(Axis.COLUMNS);
    var DS2_ROW_BEF = DS_1.getDimensions(Axis.ROWS);
    // Swapping charts
    DS_1.assignDataSource(system, DataSourceType.QUERY, DS2_Name);
    DS_2.assignDataSource(system, DataSourceType.QUERY, DS1_Name);
    CHART_1.setChartType(CHART_2.getChartType());
    CHART_2.setChartType(chart);
    // Taking the actual columns & rows
    var DS1_COL_AFT = DS_1.getDimensions(Axis.COLUMNS);
    var DS1_ROW_AFT = DS_1.getDimensions(Axis.ROWS);
    var DS2_COL_AFT = DS_2.getDimensions(Axis.COLUMNS);
    var DS2_ROW_AFT = DS_2.getDimensions(Axis.ROWS);
    // Removing dimensions
    DS1_COL_AFT.forEach(function(element, index) {
      DS_1.removeDimension(element);
    DS1_ROW_AFT.forEach(function(element, index) {
      DS_1.removeDimension(element);
    DS2_COL_AFT.forEach(function(element, index) {
      DS_2.removeDimension(element);
    DS2_ROW_AFT.forEach(function(element, index) {
      DS_2.removeDimension(element);
    // Adjusting the charts as they were
    DS1_COL_BEF.forEach(function(element, index) {
      DS_1.moveDimensionToColumns(element);
    DS1_ROW_BEF.forEach(function(element, index) {
      DS_1.moveDimensionToRows(element);
    DS2_COL_BEF.forEach(function(element, index) {
      DS_2.moveDimensionToColumns(element);
    DS2_ROW_BEF.forEach(function(element, index) {
      DS_2.moveDimensionToRows(element);

    Hi Federico Galban ,
    I tried a similar scenario like this for  a much simple case the moveDimension part works fine for me.
    I have a doubt in your script,
    // Adjusting the charts as they were
    DS1_COL_BEF.forEach(function(element, index) {
      DS_1.moveDimensionToColumns(element);
    DS1_ROW_BEF.forEach(function(element, index) {
      DS_1.moveDimensionToRows(element);
    DS2_COL_BEF.forEach(function(element, index) {
      DS_2.moveDimensionToColumns(element);
    DS2_ROW_BEF.forEach(function(element, index) {
      DS_2.moveDimensionToRows(element);
    Your goal is ultimately to swap the charts, so shouldnt this be done as follows
    // Adjusting the charts as they were
    DS1_COL_BEF.forEach(function(element, index) {
      DS_2.moveDimensionToColumns(element);
    DS1_ROW_BEF.forEach(function(element, index) {
      DS_2.moveDimensionToRows(element);
    DS2_COL_BEF.forEach(function(element, index) {
      DS_1.moveDimensionToColumns(element);
    DS2_ROW_BEF.forEach(function(element, index) {
      DS_1.moveDimensionToRows(element);
    Just asking to be clear, if wrong pls ignore
    Thanks
    Karthik Swaminathan.

  • Calling inline function in PL/SQL

    Hi,
    We have Oracle 8.1.7 on HP-UX. I am getting the error during execution of following code. Please help me what's the wrong.
    Thanks.
    set serveroutput on
    Declare
    t_number Number(4);
    Function test(p_text varchar2)
    Return integer
    IS
    Begin
    Return 2 ;
    End;
    Begin
    Select test('123') into t_number from dual;
    Dbms_output.put_line('number is :' || t_number) ;
    End;
    Select test('123') into t_number from
    ERROR at line 13:
    ORA-06550: line 13, column 9:
    PLS-00231: function 'TEST' may not be used in SQL
    ORA-06550: line 13, column 2:
    PL/SQL: SQL Statement ignored

    Attempting to select from the dual table causes Oracle to look for a sql function outside of the pl/sql block. Just assign the value to the variable without selecting from dual. Please see the example below.
    scott@ORA92> SET SERVEROUTPUT ON
    scott@ORA92> DECLARE
      2    t_number NUMBER(4);
      3    FUNCTION test
      4        (p_text   IN  VARCHAR2)
      5         RETURN       NUMBER
      6    IS
      7    BEGIN
      8        RETURN 2;
      9    END test;
    10  BEGIN
    11    t_number := test ('123');
    12    DBMS_OUTPUT.PUT_LINE ('number is :' || t_number) ;
    13  END;
    14  /
    number is :2
    PL/SQL procedure successfully completed.

  • . NET to call Oracle stored procedure, use an array of types of parameters

    . NET to call Oracle stored procedure, use an array of types of parameters
    Step1:(In the Oracle database define an array of types)
    CREATE OR REPLACE TYPE STRING_VARRAY AS VARRAY (1000) OF NVARCHAR2(255)
    Step2:
    CREATE OR REPLACE PROCEDURE Test
    (i_test in string_varray,o_result out int)
    IS
    BEGIN
    o_result:=i_test.count;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    WHEN OTHERS
    THEN
    o_result:=0;
    END arraytest;
    Step3:
    Use System.Data.OracleClient
    C# Code:
    OracleConnection conn = new OracleConnection("User Id=test;Password=test;Data Source=test");
    OracleCommand cmd = new OracleCommand("Test", conn);
    cmd.CommandType = CommandType.StoredProcedure;
    string[] str = new string[] { "11", "22" };
    OracleParameter p1 = new OracleParameter("i_test", OracleType.NVarChar);
    p1.Direction = ParameterDirection.Input;
    p1.Value = str;
    cmd.Parameters.Add(p1);
    OracleParameter p2 = new OracleParameter("o_result", OracleType.Int32);
    p2.Direction = ParameterDirection.Output;
    cmd.Parameters.Add(p2);
    int i = 0;
    try
    conn.Open();
    cmd.ExecuteNonQuery();
    i =(int) p2.Value;
    catch (Exception ex)
    finally
    conn.Close();
    Error:
    Execution Failed:ORA-06550:Line 1,Column 7:
    PLS-00306:Test parameters when calling the number or types of errors
    ORA-06550:Line 1,Column 7:
    PL/SQL:Statement ignored
    Edited by: user10133982 on Jun 4, 2009 7:13 AM

    . NET to call Oracle stored procedure, use an array of types of parameters
    The use of ODP.net(Oracle 10g), the error is still the same
    Step1:(In the Oracle database define an array of types)
    CREATE OR REPLACE TYPE STRING_VARRAY AS VARRAY (1000) OF NVARCHAR2(255)
    Step2:
    CREATE OR REPLACE PROCEDURE Test
    (i_test in string_varray,o_result out int)
    IS
    BEGIN
    o_result:=i_test.count;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    WHEN OTHERS
    THEN
    o_result:=0;
    END arraytest;
    Step3:
    ODP.NET(Oracle 10g)
    OracleConnection conn = new OracleConnection("User Id=test;Password=test;Data Source=test");
    OracleCommand cmd = new OracleCommand("Test", conn);
    cmd.CommandType = CommandType.StoredProcedure;
    string[] str = new string[2] { "11", "222" };
    cmd.ArrayBindCount=2;
    OracleParameter p1 = new OracleParameter("i_test", OracleDbType.NVarChar);
    p1.Direction = ParameterDirection.Input;
    p1.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    p1.Value = str;
    p1.ArrayBindSize=new int[2]{2,3};
    p1.ArrayBindStatus = new OracleParameterStatus[2]{
    OracleParameterStatus.Success,
    OracleParameterStatus.Success
    cmd.Parameters.Add(p1);
    OracleParameter p2 = new OracleParameter("o_result", OracleDbType.Int32);
    p2.Direction = ParameterDirection.Output;
    P2.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    p2.Value=0;
    cmd.Parameters.Add(p2);
    int i = 0;
    try
    conn.Open();
    cmd.ExecuteNonQuery();
    i =(int) p2.Value;
    catch (Exception ex)
    finally
    conn.Close();
    Error:
    Execution Failed:ORA-06550:Line 1,Column 7:
    PLS-00306:Test parameters when calling the number or types of errors
    ORA-06550:Line 1,Column 7:
    PL/SQL:Statement ignored
    Edited by: user10133982 on Jun 5, 2009 7:48 AM

  • Technical Abbreviations for System Status in stwb_2

    Hello Gurus,
    We have created a custom transaction with different user statuses.
    Not able to find, where & how these user statuses are aligned with system statuses.
    In service desk, we assign the user status. But when we look at the status report from test plan management screen(stwb_2), it displays the system status.
    Some issue with these system statuses that their actual textual representations are not displayed, and instead their technical abbreviations like E0009, E0010, E0011, E0012 are getting displayed.
    Can anybody throw some light in solving this issue? Your help will be greatly appreciated.
    Thanks & best regds,
    Alagammai.

    Hi Xavier,
    Pls ignore my last reply. I have checked in the wrong system. I was able to see the custom transaction created by me. I was also able to see the textual representations as below for the technical abbreviations in table TJ30 as below.
    E0009  Fixed
    E0010  Retest
    E0011  Re-Open
    E0012  Closed
    FYI, I am able to see the correct textual representations like "Fixed / Retest / Re-Open / Closed" in the crm_dno_monitor screen.
    The problem is only when I try to see the same service desk messages from the "Messages Tab" of stwb_work transaction. Hope now I am clear about where I am getting the issue.
    Again I am assuring you that the text equivalents are not missed out or blank anywhere. They are present in the table TJ30. Do you have any clue that can solve my issue?
    Thanks & Best regds,
    Alagammai.

Maybe you are looking for