Error at STEP button

here is the code........but their is something wrong with the action event assosiated with STEP button.....the programs hangs whenever i press the step button however the same program is running in RUN mode ....please check what's wrong with the step part
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import javax.swing.filechooser.*;
import javax.swing.SwingUtilities.*;
import javax.swing.filechooser.FileFilter;
//import javax.swing.JEditorPane;
import java.net.URL;
public class tm extends JFrame implements ActionListener
    public JTextField[] programtext = new JTextField[30];
    public JTextField[] tapetext = new JTextField[30];
    public JTextField[] statetext = new JTextField[30];
    int increment = 1;
    int count =0;
    public static void main (String arg[]){
        tm m=new tm();
        m.setSize(1000,500);    
        m.show();
    JButton loadp, run, step,loadi,loads;
    public tm()
        Container c ;
        c = getContentPane();
        c.setLayout(new FlowLayout());
        loadi = new JButton("LOAD INPUT STRING");
        c.add(loadi);
        loadi.addActionListener(this);
        loadi.setBounds(200,25,100,50);
        loadp = new JButton("LOAD PROGRAM");
        c.add(loadp);
        loadp.addActionListener(this);
        loadp.setBounds(300,25,100,50);
        run = new JButton("RUN");
        c.add(run);
        run.addActionListener (this);
        run.setBounds(400,25,100,50);
        step = new JButton("STEP");
        c.add(step);
        step.addActionListener(this);
        step.setBounds(500,25,100,50);
        loads = new JButton("LOAD STATES");
        c.add(loads);
        loads.addActionListener(this);
        loads.setBounds(600,25,100,50);
        JPanel prog = new JPanel();
    prog.setLayout(new GridLayout(30,1));
    for(int i=0;i<programtext.length;i++)
    programtext= new JTextField(10);
prog.add(programtext[i]);
JPanel tape = new JPanel();
tape.setLayout(new GridLayout(30,1));
for(int i=0;i<tapetext.length;i++)
tapetext[i]= new JTextField(10);
tape.add(tapetext[i]);
JPanel state = new JPanel();
state.setLayout(new GridLayout(30,1));
for(int i=0;i<statetext.length;i++)
statetext[i]= new JTextField(10);
state.add(statetext[i]);
JPanel contentPane3 = new JPanel();
contentPane3.setBorder(BorderFactory.createEmptyBorder(50, 50, 50, 50));
contentPane3.setLayout(new BorderLayout());
contentPane3.add(state, BorderLayout.CENTER);
contentPane3.add(c, BorderLayout.NORTH);
contentPane3.add(prog, BorderLayout.WEST);
contentPane3.add(tape, BorderLayout.EAST);
setContentPane(contentPane3);
public void actionPerformed(ActionEvent e)
try{
if(e.getSource ()==loadp)
JFileChooser chooser=new JFileChooser();
int r= chooser.showOpenDialog(this);
if(r==JFileChooser.APPROVE_OPTION )
String name=chooser.getSelectedFile().getName();
File f=chooser.getSelectedFile();
FileInputStream filestream = new FileInputStream(f);
BufferedInputStream bufferstream = new BufferedInputStream(filestream);
DataInputStream datastream = new DataInputStream(bufferstream);
String record = null;
programtext[0].setText("");
try { 
int i = 0;
while(true)
record=datastream.readLine();
if(record == null){
break;
programtext[i].setText(record);
i++;
count = count + 1;
//System.out.println ("the no of lines of the program are"+ count);
catch (Exception p)
System.out.println(p);
else if(e.getSource()==loads)
JFileChooser chooser3=new JFileChooser();
int r3= chooser3.showOpenDialog(this);
if(r3==JFileChooser.APPROVE_OPTION)
String name=chooser3.getSelectedFile ().getName();
File f3=chooser3.getSelectedFile();
FileInputStream filestream3 = new FileInputStream(f3);
BufferedInputStream bufferstream3 = new BufferedInputStream(filestream3);
DataInputStream datastream3 = new DataInputStream(bufferstream3);
String record3 = null;
statetext[0].setText("");
try { 
int i = 0;
while (true)
record3=datastream3.readLine();
if(record3 == null){
break;
statetext[i].setText(record3);
i++;
catch (Exception p3)
System.out.println(p3);
else if(e.getSource()==loadi)
JFileChooser chooser2=new JFileChooser();
int r2= chooser2.showOpenDialog(this);
if(r2==JFileChooser.APPROVE_OPTION )
String name=chooser2.getSelectedFile().getName();
File f2=chooser2.getSelectedFile();
FileInputStream filestream2 = new FileInputStream(f2);
BufferedInputStream bufferstream2 = new BufferedInputStream(filestream2);
DataInputStream datastream2 = new DataInputStream(bufferstream2);
String record2 = null;
tapetext[0].setText("");
try { 
int i = 0;
while (true)
record2=datastream2.readLine();
if(record2 == null){
break;
tapetext[i].setText(record2);
i++;
catch (Exception p2)
System.out.println(p2);
else if(e.getSource ()==run)
String temp="";
String statetemp=" ";
String tapetemp=" ";
String x=" ";
String accept="#";
int l=0;
String pars[][] = new String[50][5];
     for(int m=0;m<count;m++){
temp = programtext[m].getText();
String str[]=temp.split(" ");
for(int k=0;k<str.length;k++){
pars[m][k] =str[k];
statetemp = statetext[0].getText();
tapetemp = tapetext[l].getText();
for(int tp = 0; tp<count; tp++){
while (pars[tp][0].equals(statetemp) && pars[tp][1].equals(tapetemp))
statetemp = pars[tp][2];
tapetemp = pars[tp][3];
x = statetemp;
statetext[0].setText(statetemp);
tapetext[tp].setText(tapetemp);
if(pars[tp][4]=="R")
l=l+1;
else{
l=l-1;
if(x.equals(accept)){
     break;
else if(e.getSource()==step)
while (increment>0) {
String temp="";
String statetemp=" ";
String tapetemp=" ";
String x=" ";
String accept="#";
int l=0;
String pars[][] = new String[50][5];
     for(int m=0;m<count;m++){
temp = programtext[m].getText();
String str[]=temp.split(" ");
for(int k=0;k<str.length;k++){
pars[m][k] =str[k];
statetemp = statetext[0].getText();
tapetemp = tapetext[l].getText();
for(int tp = 0; tp<count; tp++){
while (pars[tp][0].equals(statetemp) && pars[tp][1].equals(tapetemp))
statetemp = pars[tp][2];
tapetemp = pars[tp][3];
x = statetemp;
statetext[0].setText(statetemp);
tapetext[tp].setText(tapetemp);
if(pars[tp][4]=="R")
l=l+1;
else{
l=l-1;
if(x.equals(accept)){
     break;
increment++;
catch(Exception t)
System.out.println(t);

the step part starts from
   else if(e.getSource()==step)
        {i think their is something wrong with increment variable

Similar Messages

  • Error at Step 9 of 32 while Installing CE7.11 Trail Version.

    Hi All,
    i am getting the following error while installing CE 7.1 SP1 Downloaded from sdn.. download area...
    I am using Windows 64 Bit.. I also tried with Windows 7 64bit OS..AStill the same....
    Running msiexec failed with return code 1603: undefined
    Commandline was msiexec.exe /norestart /L sapmmcX86u.log /i sapmmcX86u.msi /qn
    If you want the installer to retry, choose Yes. If you want the installer to abort the installation, choose No.
    I reinstalled the OS again but still the same error.. Windows Installer is up and running in Services....
    Hence I found one thread where to install MMC Snapshot then Install CE 7.1... I am able to pass through Step 4 of 32 installation... But got an error at step 9 of 32 Data base server Installtion error:
    An error occurred while processing option SAP NetWeaver CE Developer Edition > Install SAP NetWeaver CE Developer Edition( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDB...>install _ .log.). You can now:
    Choose Retry to repeat the current step.
    Choose View Log to get more information about the error.
    Stop the option and continue with it later.
    Log files are written to C:\Program Files (x86)/sapinst_instdir/CE71_DEV_ADA/INSTALL
    Log is as below:
    Installation of MaxDB
    starting installation Fr, Feb 19, 2010 at 22:55:11
    operating system: Windows AMD64 NT 6.1
    callers working directory: C:/Program Files (x86)/sapinst_instdir/CE71_DEV_ADA/INSTALL
    installer directory: D:/Softwares/CE711SP1_SDN-Preview/CompEnv/MAXDB_WINDOWS_I386
    archive directory: D:/Softwares/CE711SP1_SDN-Preview/CompEnv/MAXDB_WINDOWS_I386
    software in package Fastload API is not runnable on your system
    FILE MAGIC: MS Windows 32-bit i386 executable dll
    YOUR SYSTEM: architecture = AMD64
    YOUR SYSTEM: subversion =
    YOUR SYSTEM: system = Windows
    YOUR SYSTEM: version = NT 6.1
    installation exited abnormally at Fr, Feb 19, 2010 at 22:55:11
    Any Solution for this?
    Thanks
    Rajeev

    Hi Russ,
    I did not resolve that problem
    Regards.
    hari

  • Error at step Load data- ODI 11g

    Hi,
    I'm trying to extract flat file to RDBMS Oracle Table, but when i run my interface after mapping, i get an error at step 3 : load Data
    the error is as follow: 1438 : 22003 : java.sql.BatchUpdateException: ORA-01438: value larger than specified precision allowed for this column
    1438 : 22003 : java.sql.SQLDataException: ORA-01438: value larger than specified precision allowed for this column
    java.sql.BatchUpdateException: ORA-01438: value larger than specified precision allowed for this column
    the code to execute for this step is :
    select     ReportID     C29_REPORTID,
         SubReportID     C16_SUBREPORTID,
         TimeStamp     C26_TIMESTAMP,
         LocalTimeStamp     C14_LOCALTIMESTAMP,
         VoucherID     C1_VOUCHERID,
         Msisdn     C28_MSISDN,
         SNE     C5_SNE,
         ThirdPartyMsisdn     C4_THIRDPARTYMSISDN,
         State     C3_STATE,
         CreationDate     C19_CREATIONDATE,
         ActivationDate     C24_ACTIVATIONDATE,
         LastUpdate     C2_LASTUPDATE,
         LockedDate     C25_LOCKEDDATE,
         ExpiryDate     C8_EXPIRYDATE,
         UnitValue     C20_UNITVALUE,
         ProviderID     C13_PROVIDERID,
         VoucherCategoryID     C6_VOUCHERCATEGORYID,
         VoucherScenarioID     C7_VOUCHERSCENARIOID,
         FaceAmount     C18_FACEAMOUNT,
         ScenarioNumber     C15_SCENARIONUMBER,
         DeliveryDate     C21_DELIVERYDATE,
         Credit     C11_CREDIT,
         ActiveDuration     C9_ACTIVEDURATION,
         GraceDuration     C17_GRACEDURATION,
         RechargeMode     C22_RECHARGEMODE,
         RechargeType     C12_RECHARGETYPE,
         VoucherType     C10_VOUCHERTYPE,
         TariffPlan     C23_TARIFFPLAN,
         PackageID     C27_PACKAGEID
    from      TABLE
    /*$$SNPS_START_KEYSNP$CRDWG_TABLESNP$CRTABLE_NAME=SRC_VoMSSNP$CRLOAD_FILE=C:\Documents and Settings\Otmane\Desktop\ODI_sources/AR_100_1001_07-11-2010-03-51.txtSNP$CRFILE_FORMAT=DSNP$CRFILE_SEP_FIELD=0x007cSNP$CRFILE_SEP_LINE=0x000ASNP$CRFILE_FIRST_ROW=0SNP$CRFILE_ENC_FIELD=SNP$CRFILE_DEC_SEP=SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ReportIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=1SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=SubReportIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=2SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=TimeStampSNP$CRTYPE_NAME=STRINGSNP$CRORDER=3SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=LocalTimeStampSNP$CRTYPE_NAME=STRINGSNP$CRORDER=4SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=VoucherIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=5SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=MsisdnSNP$CRTYPE_NAME=STRINGSNP$CRORDER=6SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=SNESNP$CRTYPE_NAME=STRINGSNP$CRORDER=7SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ThirdPartyMsisdnSNP$CRTYPE_NAME=STRINGSNP$CRORDER=8SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=StateSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=9SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=CreationDateSNP$CRTYPE_NAME=STRINGSNP$CRORDER=10SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ActivationDateSNP$CRTYPE_NAME=STRINGSNP$CRORDER=11SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=LastUpdateSNP$CRTYPE_NAME=STRINGSNP$CRORDER=12SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=LockedDateSNP$CRTYPE_NAME=STRINGSNP$CRORDER=13SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ExpiryDateSNP$CRTYPE_NAME=STRINGSNP$CRORDER=14SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=UnitValueSNP$CRTYPE_NAME=STRINGSNP$CRORDER=15SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ProviderIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=16SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=VoucherCategoryIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=17SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=VoucherScenarioIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=18SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=FaceAmountSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=19SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ScenarioNumberSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=20SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=DeliveryDateSNP$CRTYPE_NAME=STRINGSNP$CRORDER=21SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=CreditSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=22SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=ActiveDurationSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=23SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=GraceDurationSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=24SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=RechargeModeSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=25SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=RechargeTypeSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=26SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=VoucherTypeSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=27SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=TariffPlanSNP$CRTYPE_NAME=STRINGSNP$CRORDER=28SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=PackageIDSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=29SNP$CRLENGTH=50SNP$CRPRECISION=12SNP$CRACTION_ON_ERROR=0SNP$CR$$SNPS_END_KEY*/
    I verified all my numeric types and all of them are 12 with no scale .
    thanks for your help :)

    DDL of Oracle table :
    CREATE TABLE TABLE1
    REPORTID NUMBER(12,0),
    SUBREPORTID NUMBER(12,0),
    TIMESTAMP DATE,
    LOCALTIMESTAMP DATE,
    VOUCHERID NUMBER(12,0),
    MSISDN VARCHAR2(4000),
    SNE VARCHAR2(4000),
    THIRDPARTYMSISDN VARCHAR2(4000),
    STATE NUMBER(12,0),
    CREATIONDATE DATE,
    ACTIVATIONDATE DATE,
    LASTUPDATE DATE,
    LOCKEDDATE DATE,
    EXPIRYDATE DATE,
    UNITVALUE VARCHAR2(4000),
    PROVIDERID NUMBER(12,0),
    VOUCHERCATEGORYID NUMBER(12,0),
    VOUCHERSCENARIOID NUMBER(12,0),
    FACEAMOUNT NUMBER(12,0),
    SCENARIONUMBER(12,0) NUMBER(12,0),
    DELIVERYDATE DATE,
    CREDIT NUMBER(12,0),
    ACTIVEDURATION NUMBER(12,0),
    GRACEDURATION NUMBER(12,0),
    RECHARGEMODE NUMBER(12,0),
    RECHARGETYPE NUMBER(12,0),
    VOUCHERTYPE NUMBER(12,0),
    TARIFFPLAN VARCHAR2(4000),
    PACKAGEID NUMBER(12,0)
    And all the numbers from the source file are numerics of 12.

  • JMS Adapter: Unable to parse the scema error in step 7

    Hi
    I get unable to parse the schema error in step 7 of JMS Adapter partner link definition (in Type Chooser window). I am using RosettaNet 3b2 Schema converted from DTD by Tibco tools.
    Any help greatly appreciated.

    forwarded to the JMS adapter team. It would be nice if you could provide more context around the input you provided in the first 6 step (could you please post the schema or if there are a set of them, zip them up, rename the file .zap and email to collaxa_support_us at oracle.com). Thank you. -Edwin

  • Extends read only vo get error in step 4

    when i extend read-only vo, for example add a attribute , it will get error in step 4,
    the error :each row in the query result columns must be mapped to a unique query attribute in the Mapped entity columns.
    for example :the orgi vo is oracle.apps.irc.offers.server.OfferTemplateDetailsVO and the sql is "Select distinct XTM.Template_id,
    XTM.APPLICATION_SHORT_NAME,
    XTM.TEMPLATE_CODE,
    XTM.TEMPLATE_TYPE_CODE,
    XTM.DS_APP_SHORT_NAME DS_App_Short_Name,
    XTM.DATA_SOURCE_CODE,
    XTM.DEFAULT_TERRITORY default_locale,
    XTM.TEMPLATE_NAME,
    fnd_profile.value('IRC_DEF_OFFER_LETTER_TYPE') default_offer_letter_type
    from xdo_templates_vl XTM
    where XTM.Template_id = :1
    and i extends vo is CUXOfferTemplateDetailsVO and the sql is "Select distinct XTM.Template_id,
    XTM.APPLICATION_SHORT_NAME,
    XTM.TEMPLATE_CODE,
    XTM.TEMPLATE_TYPE_CODE,
    XTM.DS_APP_SHORT_NAME DS_App_Short_Name,
    XTM.DATA_SOURCE_CODE,
    XTM.DEFAULT_TERRITORY default_locale,
    XTM.TEMPLATE_NAME,
    XTM.START_DATE,
    fnd_profile.value('IRC_DEF_OFFER_LETTER_TYPE') default_offer_letter_type
    from xdo_templates_vl XTM
    where XTM.Template_id = :1
    my ebs is r12.1.1
    please help me .thanks.

    Ming,
    Try to append the new attribute to the end of the existing Attribute list.
    Regards,
    Gyan

  • Error ERR-1018 Error clearing step cache

    The full error message was:
    ORA00001: unique constraint (FLOWS_030000.WWV_FLOW_COLLECTIONS_UK) violated ORA-00060: deadlock detected while waiting for resource
    Error ERR-1018 Error clearing step cache
    We can't reproduce it (so it would appear to be intermittent and very rare), but it may be significant that it occurred in an unauthenticated application.
    Does anyone have any idea about what circumstances would cause this error to occur?
    Many thanks for your help.
    John.

    Can't believe that the thread immediately preceding this one when I posted it (the relevant thread is called 'intermittent collection violations') more-or-less answers this question... (and that I didn't find it when searching).
    Edited by: John Vaughan on Nov 12, 2008 1:14 PM

  • In ob28 step buttone is in deactive state

    Dear All,
    Can any one help me by telling the reason for the Step button in 0b28 screen is in deactive state.
    Beacuse I am not able to create validation.
    Help ....
    B.S.Rao

    Hi,
    In GGB0 first you have to choose component. (Like financial accounting or asset accounting...etc)
    after selecting the component and select the call up point. ( ex for FA: header/line item/complete dco level)
    Then under this call up points, first you must need to create  a validation rule.
    Then under this validation rule only you can create as many as steps.
    This will clears you doubt.
    Thanks,
    Srinu

  • DBUA is throwing below error in step 1

    Hi,
    I am trying to upgrade 9.2.0.7 to 10.2.0.
    DBUA is throwing below error in step 1:
    There is an error in creating the following process: C:\oracle\ora92\bin\sqlplus -s/nolog
    The error is: createprocess:C:\oracle\ora92\bin\sqlplus -s/nolog
    error:193
    I can login as sysdba ,using C:\oracle\ora92\bin\sqlplu for both 9i as well as 10g home
    i did set oracle_home to C:\oracle\ora92, using command prompt.
    Please suggest what needs to be done. Thanks
    Ron

    What you have written does not compute.
    How many Oracle homes do you have?
    If more than 1 ... explain how you can log into 9i and 10g using a single home?
    Please explain in detail what document you are following (post a link) and what steps you have taken based on the document.
    And why are you upgrading to software that will begin desupport in four weeks? If you are going to put in the effort why not at least get a system that will be fully supported when you are done?

  • Installation Of ECC error in step create temp licence:

    We are in process of installation of ECC 6.0 on our server with OS: RHEL5 and DB:MaxDB
    We are getting an error in step Create Temp Licence. The error reads as follow.
    INFO 2008-02-21 04:56:12
    Execute step createTempLicense of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_Postload|ind|ind|ind|ind|10|0|NW_Postload_ADA|ind|ind|ind|ind|1|0.
    INFO 2008-02-21 04:56:12
    Working directory changed to /tmp/sapinst_exe.8005.1203531194.
    ERROR 2008-02-21 04:56:12
    FRY-00001  Cannot load library iamodapp.so: iamodapp.so: cannot open shared object file: No such file or directory.
    INFO 2008-02-21 04:56:12
    Working directory changed to /sapinstd11n.
    ERROR 2008-02-21 04:56:12
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2008-02-21 04:56:12
    FCO-00011  The step createTempLicense with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_Postload|ind|ind|ind|ind|10|0|NW_Postload_ADA|ind|ind|ind|ind|1|0|createTempLicense was executed with status ERROR .
    Please suggest.

    Hi,
    the installation process aborts in "Create sap license" with error message "library iamodora missing", some libraries needed are missing to work around this, either after it aborts or event before staritng the installation unpack the libraries into the installation directory using:
    SAPCAR -xvf /<sapinst-CD>/SAPINST/UNIX/LINUX_32/SAPPROD.SAR
    1. Copy the installation media dvd to a directory on a files system
    2. change directories into the sub-directory which contains the executable (sapinst)
    3. run the command sapinst -extract
    4. It will unpack the missing libraries into the same directory where you executed the command..
    5. copied these libraries to lib folder
    6. Stop and restart the installation
    regards,
    kaushal

  • Error on Export Button

    Hello All
    Error on Export Button:
    When i click the export button, I get the following error:
    InvalidObjNameException: JBO-25005: Object name  for type View Object is invalid
    Can any help telling what the error is about.
    Regards

    Hi,
    When you add the exportButton, under Bc4j what is the View Instance you added,
    Did you typed the name or selected from the list.
    Is the view is same as the data displayed in the page/table.
    With regards,
    Kali.
    OSSI.

  • 2 Errors on Step 3

    Hi @ all,
    I want to install "Solution Manager 4.0 SR1" and I got two errors on step 3:
    <i>ERROR 2007-08-16 08:19:01
    CJS-30005  Cannot change SAPDrive for system SOL from F: to C:: share saploc exists.
    ERROR 2007-08-16 08:19:01
    FCO-00011  The step createFirstSystemDirectories with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_System|ind|ind|ind|ind|5|0|createFirstSystemDirectories was executed with status ERROR .</i>
    what does it mean?
    Thanks!
    Steve
    Message was edited by:
    BB

    This means that you have already a shared drive in your system saploc which are generated during installation, did you install Solution manager before? You have to remove or clean up the preious installation
    Regards
    Subhaash

  • I get run time error in step Set Report in reportgen_xml sequence

    I get run time error in step "Set Report" in reportgen_xml.seq. The error code is "Out of memory".
    I don't know what to do.
    I use BatchModel, I have 6 batch loops. The problem appears on the 3d loop. I have NI 3.5.
    Help me!!!!!!
    I send attachment (screen of error).
    Attachments:
    problem.jpg ‏106 KB

    Hi Terry, it happened again :-(
    Actually I see that the problem appeares in the same subsequence of my sequence. In that  subsequence I have approximately 25 numeric steps, 6 of them are on skip now.
    The problem appeares suddenly after many batch loops.  I have the message "Error, Parameter new value: Out of memory. [Error code -17000, out of memory].
    After that on next loop I see it runs and writes reports for others subsequences and steps, but on the "problem subsequence" again I get message "Out of memory"...
    At the one of the problem loops I saw other message "An error occured calling 'Process One Result' in ITSO FlyReportGen of TestStand on-the-Fly-Report-Generator. Out of memory. Source: TSOTFRG  [Error Code: -17000, Out of memory].
    I use "Discard Results or Disable Results " enable option in the ModelOptions. But without success. Is this a problem of TestStand or may be is this the special problem of my subsequence or any step in that subsequence?

  • Error executing step 'CORR_GET_CORR_KEY' ?

    Hi,
      Could anybody please help me to solve the issue, we are getting this on SAP ME15.0 with MII 15.0 and the ERP is ERP6Ehp6.
    the complete message of log is
    "[CorrelationWorkflow] Error executing step 'CORR_GET_CORR_KEY' : com.sap.me.integration.frame.workflow.PluginException: java.lang.ClassNotFoundException: com.sap.me.integration.GetYieldWithComponentsKeyHandler"
    Thanks,
    Chandrababu

    Hi Alex,
    We are able to send Production Order from ECC to ME and were able to send scrap from ME to ECC.
    Thanks,
    Chandrababu

  • How to enable Previous Step Button in First  Substep of FPM Road Map

    Hello All,
    I have created three MainSteps M1 M2 M3.
    In Main Step M2 having Substeps Say S1 S2 S3 S4.
    In M2 of S1 Previous Button by default it is disabled. Means user can't go back from First Substep(S1) to Main Step2 (M2).
    Please let me know how to enable  "Previous Step"  Button in First  Substep (S1) of FPM Road Map in M2.
    Thanks in Advance.
    Br
    -CW

    Hello BS,
    Thanks for your suggestions.
    Yes we can do with custom button.
    Is there anyway to enable standard  Previous Step Button in First  Substep instead of creating cutom button.
    Please guide me if any other options.
    BR
    -CW

  • Error at step 42/45 while install Solution Manager 4.0

    Hi SAP guru,
    I'm install Solution Manager 4.0 on Windows 2003 R2 with Oracle10g
    and JSDK 1_4_2_16, while facing step 42/45 (Configure System Landscape Directory). Its shown error below.
    ERROR 2008-01-17 16:02:04
    CJS-30059  Java EE Engine configuration error.<br>DIAGNOSIS: Error when configuring J2EE Engine. See output of logfile java.log: 'JSE'.
    ERROR 2008-01-17 16:02:04
    FCO-00011  The step configSLDMainLocalMapSecRolesToUsers with step key |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Configuration|ind|ind|ind|ind|5|0|NW_Usage_Types_Configuration_AS|ind|ind|ind|ind|0|0|NW_CONFIG_SLD|ind|ind|ind|ind|0|0|configSLDMainLocalMapSecRolesToUsers was executed with status ERROR .
    Any solution for this problem?
    PS. I was ran sapinst.exr SAPINST_SKIP_ERROR=true on step 39 (Install Software Units) after set SDM mode = integrated.
    Thanks in advance

    Hi Snehal,
    The log I paste above was too many days ago. Thus, I'm get a new one from Log Browser for you.
    ERROR 2008-01-21 19:05:35
    CJS-30059  Java EE Engine configuration error.<br>DIAGNOSIS: Error when configuring J2EE Engine. See output of logfile java.log: 'JSE'.
    ERROR 2008-01-21 19:05:35
    FCO-00011  The step configSLDMainLocalMapSecRolesToUsers with step key |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Configuration|ind|ind|ind|ind|5|0|NW_Usage_Types_Configuration_AS|ind|ind|ind|ind|0|0|NW_CONFIG_SLD|ind|ind|ind|ind|0|0|configSLDMainLocalMapSecRolesToUsers was executed with status ERROR .
    and this from sapinst_dev.log as your requested.
    INFO       2008-01-21 19:05:35
               CJSlibModule::writeInfo_impl()
    Execution of the command "C:\j2sdk1.4.2_16\bin\java.exe -classpath E:/usr/sap/SOL/DVEBMGS01/j2ee/cluster/server0/apps/sap.com/tclmctcutilbasic_ear/servlet_jsp/ctc/root/WEB-INF/classes/ com.sap.ctc.util.ConfigMainExt XXXXXX ahosapso:50100 J2EE_ADMIN XXXXXX" finished with return code 0. Output:
    TYPE=A<BR>STATE=401<BR>INFO_SHORT=Error connecting to http://ahosapso:50100/ctc/ConfigServlet?param=com.sap.ctc.util.SecurityRoleConfig;MAP_SECURITYROLE_TO_USER;ROLE=DataSupplierLD,USER=SLDDSUSER,COMPONENT=sap.com/com.sap.lcr*sld,HOST=ahosapso,P4PORT=50104,J2EE_ADMIN=J2EE_ADMIN,J2EE_PASSWORD=des19(66|31|151|231|117|153|233|51|218|54|). The provided user data might be incorrect or user might be locked.<BR>CONFIGURATION=
    TRACE      [iaxxejsexp.cpp:188]
               EJS_Installer::writeTraceToLogBook()
    NWException thrown: nw.configError:
    Java EE Engine configuration error.<br>DIAGNOSIS: Error when configuring J2EE Engine. See output of logfile java.log: 'JSE'.
    ERROR      2008-01-21 19:05:35
               CJSlibModule::writeError_impl()
    CJS-30059  Java EE Engine configuration error.<br>DIAGNOSIS: Error when configuring J2EE Engine. See output of logfile java.log: 'JSE'.
    TRACE      [iaxxejsbas.hpp:460]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2008-01-21 19:05:35
    FCO-00011  The step configSLDMainLocalMapSecRolesToUsers with step key |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Configuration|ind|ind|ind|ind|5|0|NW_Usage_Types_Configuration_AS|ind|ind|ind|ind|0|0|NW_CONFIG_SLD|ind|ind|ind|ind|0|0|configSLDMainLocalMapSecRolesToUsers was executed with status ERROR .
    TRACE     
    <html><head></head><body><p>An error occurred while processing service <b>SAP Solution Manager 4.0 Support Release 1 > SAP Systems > Oracle > Central System > Central System Installation</b>. You may now</p><ul> <li>press <I>Retry</I> to repeat the current step.</li> <li>press the <I>View Log</I> button to get more information about the error.</li> <li>stop the task and continue with it later.</li></ul><p>Log files are written to <b>C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS</b>.</p></body></html>
    TRACE      [iaxxgenimp.cpp:1093]
               showDialog()
    waiting for an answer from gui
    Edited by: jitpanu sriudomwat on Jan 24, 2008 3:47 AM

Maybe you are looking for