Hi can u pls help me

0ECCS_C01 is not available as standard data source in RSA5. Could anyone help me how to handle this?

Vamsi ,
I know your post is indicated as answered , but please give a meaningful title to your post as simon has indicated.
Hi, can you please help me sound more like a conversation rather than a request for help on a professional forum. And this is the same with some of your older posts too.
This is not from a condescending manner but to ask you to give some attention to your title the same way you would give attention to your post as well.
Warm regards,
Arun Varadarajan
Message was edited by: Arun Varadarajan

Similar Messages

  • Can someone pls help me with this code

    The method createScreen() creates the first screen wherein the user makes a selection if he wants all the data ,in a range or single data.The problem comes in when the user makes a selection of single.that then displays the singleScreen() method.Then the user has to input a key data like date or invoice no on the basis of which all the information for that set of data is selected.Now if the user inputs a wrong key that does not exist for the first time the program says invalid entry of data,after u click ok on the option pane it prompts him to enter the data again.But since then whenever the user inputs wrong data the program says wrong data but after displaying the singlescreen again does not wait for input from the user it again flashes the option pane with the invalid entry message.and this goes on doubling everytime the user inputs wrong data.the second wrong entry of data flashes the error message twice,the third wrong entry flashes the option pane message 4 times and so on.What actually happens is it does not wait at the singlescreen() for user to input data ,it straight goes into displaying the JOptionPane message for wrong data entry so we have to click the optiion pane twice,four times and so on.
    Can someone pls help me with this!!!!!!!!!
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import java.util.*;
    public class MainMenu extends JFrame implements ActionListener,ItemListener{
    //class     
         FileReaderDemo1 fd=new FileReaderDemo1();
         FileReaderDemo1 fr;
         Swing1Win sw;
    //primary
         int monthkey=1,counter=0;
         boolean flag=false,splitflag=false;
         String selection,monthselection,dateselection="01",yearselection="00",s,searchcriteria="By Date",datekey,smonthkey,invoiceno;
    //arrays
         String singlesearcharray[];
         String[] monthlist={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"};
         String[] datelist=new String[31];
         String[] yearlist=new String[100];
         String[] searchlist={"By Date","By Invoiceno"};
    //collection
         Hashtable allinvoicesdata=new Hashtable();
         Vector data=new Vector();
         Enumeration keydata;
    //components
         JButton next=new JButton("NEXT>>");
         JComboBox month,date,year,search;
         JLabel bydate,byinvno,trial;
         JTextField yeartext,invtext;
         JPanel panel1,panel2,panel3,panel4;
         JRadioButton single,range,all;
         ButtonGroup group;
         JButton select=new JButton("SELECT");
    //frame and layout declarations
         JFrame jf;
         Container con;
         GridBagLayout gridbag=new GridBagLayout();
         GridBagConstraints gc=new GridBagConstraints();
    //constructor
         MainMenu(){
              jf=new JFrame();
              con=getContentPane();
              con.setLayout(null);
              fr=new FileReaderDemo1();
              createScreen();
              setSize(500,250);
              setLocation(250,250);
              setVisible(true);
    //This is thefirst screen displayed
         public void createScreen(){
              group=new ButtonGroup();
              single=new JRadioButton("SINGLE");
              range=new JRadioButton("RANGE");
              all=new JRadioButton("ALL");
              search=new JComboBox(searchlist);
              group.add(single);
              group.add(range);
              group.add(all);
              single.setBounds(100,50,100,20);
              search.setBounds(200,50,100,20);
              range.setBounds(100,90,100,20);
              all.setBounds(100,130,100,20);
              select.setBounds(200,200,100,20);
              con.add(single);
              con.add(search);
              con.add(range);
              con.add(all);
              con.add(select);
              search.setEnabled(false);
              single.addItemListener(this);
              search.addActionListener(new MyActionListener());     
              range.addItemListener(this);
              all.addItemListener(this);
              select.addActionListener(this);
         public class MyActionListener implements ActionListener{
              public void actionPerformed(ActionEvent a){
                   JComboBox cb=(JComboBox)a.getSource();
                   if(a.getSource().equals(month))
                        monthkey=((cb.getSelectedIndex())+1);
                   if(a.getSource().equals(date)){
                        dateselection=(String)cb.getSelectedItem();
                   if(a.getSource().equals(year))
                        yearselection=(String)cb.getSelectedItem();
                   if(a.getSource().equals(search)){
                        searchcriteria=(String)cb.getSelectedItem();
         public void itemStateChanged(ItemEvent ie){
              if(ie.getItem()==single){
                   selection="single";     
                   search.setEnabled(true);
              else if (ie.getItem()==all){
                   selection="all";
                   search.setEnabled(false);
              else if (ie.getItem()==range){
                   search.setEnabled(false);
         public void actionPerformed(ActionEvent ae){          
              if(ae.getSource().equals(select))
                        if(selection.equals("single")){
                             singleScreen();
                        if(selection.equals("all"))
                             sw=new Swing1Win();
              if(ae.getSource().equals(next)){
                   if(monthkey<9)
                        smonthkey="0"+monthkey;
                   System.out.println(smonthkey+"/"+dateselection+"/"+yearselection+"it prints this");
                   allinvoicesdata=fr.read(searchcriteria);
                   if (searchcriteria.equals("By Date")){
                        System.out.println("it goes in this");
                        singleinvoice(smonthkey+"/"+dateselection+"/"+yearselection);
                   else if (searchcriteria.equals("By Invoiceno")){
                        invoiceno=invtext.getText();
                        singleinvoice(invoiceno);
                   if (flag == false){
                        System.out.println("flag is false");
                        singleScreen();
                   else{
                   System.out.println("its in here");
                   singlesearcharray=new String[data.size()];
                   data.copyInto(singlesearcharray);
                   sw=new Swing1Win(singlesearcharray);
         public void singleinvoice(String searchdata){
              keydata=allinvoicesdata.keys();
              while(keydata.hasMoreElements()){
                        s=(String)keydata.nextElement();
                        if(s.equals(searchdata)){
                             System.out.println(s);
                             flag=true;
                             break;
              if (flag==true){
                   System.out.println("vector found");
                   System.exit(0);
                   data= ((Vector)(allinvoicesdata.get(s)));
              else{
                   JOptionPane.showMessageDialog(jf,"Invalid entry of date : choose again");     
         public void singleScreen(){
              System.out.println("its at the start");
              con.removeAll();
              SwingUtilities.updateComponentTreeUI(con);
              con.setLayout(null);
              counter=0;
              panel2=new JPanel(gridbag);
              bydate=new JLabel("By Date : ");
              byinvno=new JLabel("By Invoice No : ");
              dateComboBox();
              invtext=new JTextField(6);
              gc.gridx=0;
              gc.gridy=0;
              gc.gridwidth=1;
              gridbag.setConstraints(month,gc);
              panel2.add(month);
              gc.gridx=1;
              gc.gridy=0;
              gridbag.setConstraints(date,gc);
              panel2.add(date);
              gc.gridx=2;
              gc.gridy=0;
              gc.gridwidth=1;
              gridbag.setConstraints(year,gc);
              panel2.add(year);
              bydate.setBounds(100,30,60,20);
              con.add(bydate);
              panel2.setBounds(170,30,200,30);
              con.add(panel2);
              byinvno.setBounds(100,70,100,20);
              invtext.setBounds(200,70,50,20);
              con.add(byinvno);
              con.add(invtext);
              next.setBounds(300,200,100,20);
              con.add(next);
              if (searchcriteria.equals("By Invoiceno")){
                   month.setEnabled(false);
                   date.setEnabled(false);
                   year.setEnabled(false);
              else if(searchcriteria.equals("By Date")){
                   byinvno.setEnabled(false);
                   invtext.setEnabled(false);
              monthkey=1;
              dateselection="01";
              yearselection="00";
              month.addActionListener(new MyActionListener());
              date.addActionListener(new MyActionListener());
              year.addActionListener(new MyActionListener());
              next.addActionListener(this);
              invtext.addKeyListener(new KeyAdapter(){
                   public void keyTyped(KeyEvent ke){
                        char c=ke.getKeyChar();
                        if ((c == KeyEvent.VK_BACK_SPACE) ||(c == KeyEvent.VK_DELETE)){
                             System.out.println(counter+"before");
                             counter--;               
                             System.out.println(counter+"after");
                        else
                             counter++;
                        if(counter>6){
                             System.out.println(counter);
                             counter--;
                             ke.consume();
                        else                    
                        if(!((Character.isDigit(c) || (c == KeyEvent.VK_BACK_SPACE) || (c == KeyEvent.VK_DELETE)))){
                             getToolkit().beep();
                             counter--;     
                             JOptionPane.showMessageDialog(null,"please enter numerical value");
                             ke.consume();
              System.out.println("its at the end");
         public void dateComboBox(){          
              for (int counter=0,day=01;day<=31;counter++,day++)
                   if(day<=9)
                        datelist[counter]="0"+String.valueOf(day);
                   else
                        datelist[counter]=String.valueOf(day);
              for(int counter=0,yr=00;yr<=99;yr++,counter++)
                   if(yr<=9)
                        yearlist[counter]="0"+String.valueOf(yr);
                   else
                        yearlist[counter]=String.valueOf(yr);
              month=new JComboBox(monthlist);
              date=new JComboBox(datelist);
              year=new JComboBox(yearlist);
         public static void main(String[] args){
              MainMenu mm=new MainMenu();
         public class WindowHandler extends WindowAdapter{
              public void windowClosing(WindowEvent we){
                   jf.dispose();
                   System.exit(0);
    }     

    Hi,
    I had a similar problem with a message dialog. Don't know if it is a bug, I was in a hurry and had no time to search the bug database... I found a solution by using keyPressed() and keyReleased() instead of keyTyped():
       private boolean pressed = false;
       public void keyPressed(KeyEvent e) {
          pressed = true;
       public void keyReleased(KeyEvent e) {
          if (!pressed) {
             e.consume();
             return;
          // Here you can test whatever key you want
       //...I don't know if it will help you, but it worked for me.
    Regards.

  • HT1152 hi can someone pls help

    hi can someone pls help
    my imac cannot read any discs and they keep ejecting
    thanku

    Intel-based Macs: Resetting the System Management Controller (SMC) - http://support.apple.com/kb/ht3964
    Apple Computers: Troubleshooting the slot-loading SuperDrive - http://support.apple.com/kb/HT2801

  • Can u pls help me

    i m a beginner to form .i have an issue.can u pls help me to solve it
    i m working in forms6i.
    I have created a grid in a data block emp which populates data from Employee table. Corresponding to each row in the grid there are check boxes which can be checked and unchecked.The pblm is that we shld not allow the user to check two check boxes at same time.if so then the buttons(ok,cancel) should be disabled.
    How to do it.(write the code) can u pls help me.

    Hi User
    You have to pst this in forms forum forum id=82
    comming to ur problem
    in the when- check- box-change trigger you place the code in such a way and validate the whole block by checking is there iny item already checked. if so then set_item_property of the buttonss as disabled.
    Thank you
    Sasi
    [email protected]

  • Can someone pls Help me: How to create a Fake target table(Dummy)  in DAC

    Hi There,
    Can someone pls Help me in creating a Fake target table(Dummy) in DAC?
    Thanks,
    Raghu

    Raghu
    You need to create a task so that you can hook sources and targets together.
    First, Design --> Tables tab --> New --> Below 'Edit' -->Table Type (Source) for your source tables.
    Design --> Tables tab --> New --> Below 'Edit' -->Check warehouse and Table Type (Fact or Fact Temporary) for your target tables.
    Points if helpful
    Kris

  • Hi! I have an iPhone 4s and when I FaceTime the sound is really low. When I phone call someone, its totally different and works better. I also have a MacBok Pro and the FaceTime sound works perfectly there as well. Can someone pls help me? Thanks :)

    Hi! I have an iPhone 4s and when I FaceTime the sound is really low. It´s really annoying. When I do phone calls it works, and on my MacBook Pro it works much better on FaceTime than on my phone. Can someone pls help to so solute this? Really need help! Thanks

    This sounds like something similar to https://discussions.apple.com/thread/3388112?start=105&tstart=0.
    Try turning down the speak volume (System Preferences->Sound->Output->Output Volume)  or the microphone gain (System Preferences->Sound->Input->Input Volume). Do this on both sides of the call.

  • Hi guys can someone pls help! im gg crazy...

    Hi guys can someone pls help! im gg crazy... im doing this java prograamming project and cant seem to work the Search function. My program compiles well and runs, but after i key in the details for "Add new customer" , and i attempt to search the customer name that i keyed in, the program does not return my input! My teacher says its something to do with assigning an array length or something but how do i code that.... Heres the code, pls try to help..
    import java.io.*;
    public class shop
    static String Name, Address,Gender,Country,Pdtname,Type,Dob,
    Hometel,Mobile,Purchase,ID,Cost,Quantity,Introdate;
    static int x;
    public static void main(String[] args) throws Exception
    char choice;
    do{
    System.out.println("MAIN MENU");
    System.out.println("(1). Add New Customer");
    System.out.println("(2). Search Customer");
    System.out.println("(6). Quit");
    System.out.print("Pls. enter a choice :");
    choice = Character.toUpperCase((char)System.in.read());
    System.in.read();
    System.in.read();
    switch(choice)
         case '1':Add();
         break;
         case '2':Search();
         break;
         case '6':Quit();
         break;
         default:System.out.println("- Sorry, You have entered an invalid option, please try again -");
    }while(choice != '6');
    public static void Add()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
    String Name, Dob, Hometel, Mobile, Country, Purchase;
    boolean valid;
    int x;
    valid=true;
         do
         System.out.print("Please enter Customer's Name:");
         Name=data.readLine();
         if (Name.equals(""))
         System.out.println("Name must not be empty");
         else
         for (x=0; x<Name.length();x++)
         if(!(Character.isLetter(Name.charAt(x))) && Name.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Name.equals(""));
         do{
         System.out.print("Please enter Customer's Address:");
         Address=data.readLine();
         if (Address.equals(""))
         System.out.println("Address must not be empty");
         }while (Address.equals(""));
         do{
         System.out.print("Please enter Customer's Gender (M/F):");
         Gender=data.readLine();
         if (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F"))
         System.out.println("Please input either M or F");
         else
         if (Gender.equals(""))
         System.out.println("Gender must not be empty");
         }while (!Gender.equalsIgnoreCase("M") && !Gender.equalsIgnoreCase("F") || Gender.equals(""));
         do
         System.out.print("Please enter Customer's Date of Birth (dd/mm/yyyy):");
         Dob=data.readLine();
         if (Dob.equals(""))
         System.out.println("Dob must not be empty");
         else
         for (x=0; x<Dob.length();x++)
         if(!(Character.isDigit(Dob.charAt(x))) && Dob.charAt(x) !='/')
         System.out.println("Please enter only numbers in dd/mm/yyyy format");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Dob.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Home):");
         Hometel=data.readLine();
         if (Hometel.equals(""))
         System.out.println("Home number must not be empty");
         else
         for (x=0; x<Hometel.length();x++)
         if(!(Character.isDigit(Hometel.charAt(x))) && Hometel.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Hometel.equals(""));
         do
         System.out.print("Please enter Customer's Contact no(Mobile):");
         Mobile=data.readLine();
         if (Mobile.equals(""))
         System.out.println("Mobile number must not be empty");
         else
         for (x=0; x<Mobile.length();x++)
         if(!(Character.isDigit(Mobile.charAt(x))) && Mobile.charAt(x) !=' ')
         System.out.println("Please enter numbers only [0-9] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Mobile.equals(""));
         do
         System.out.print("Please enter Customer's Country:");
         Country=data.readLine();
         if (Country.equals(""))
         System.out.println("Country must not be empty");
         else
         for (x=0; x<Country.length();x++)
         if(!(Character.isLetter(Country.charAt(x))) && Country.charAt(x) !=' ')
         System.out.println("Please enter letters only[A-Z] ");
         valid=false;
         break;
         else
         valid=true;
         }while (!valid || Country.equals(""));
    public static void Search()throws Exception
         BufferedReader data=new BufferedReader
         (new InputStreamReader(System.in));
         String target;
         boolean found;
         found=false;          //record not found
         System.out.print("Enter the name that you want to search:");
         target=data.readLine();
         if (target.equalsIgnoreCase(Name))
         System.out.println("The customer's name is "+Name);
         System.out.println("The customer's address is "+Address);
         System.out.println("The customer's gender is "+Gender);
         System.out.println("The customer's date of birth is "+Dob);
         System.out.println("The customer's home contact number is "+Hometel);
         System.out.println("The customer's mobile number is "+Mobile);
         System.out.println("The customer's Country is "+Country);
         System.out.println("Record found");
         found=true;               //record found
         if (found==false)
         System.out.println("Record not found");
         public static void Quit()
         System.out.println("Thank You For Using Database Application System Designed For Crystalodge Gift Shop");
    }

    Thank you for your interest in just plopping down your code and asking for someone to just fix it for you. We'll get right on it...

  • Can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    Java is no longer included in Mac OS X by default. If you want Java, you will have to install it.
    However, note that you should think twice before installing Java for such a trivial need as looking at stock market quotes. There are other ways to get that information that don't involve Java, and using Java in your web browser is a HUGE security risk right now. Java has been vulnerable to attack almost constantly for the last year, and has become a very popular, frequently used method for getting malware installed via "drive-by downloads." You really, truly don't want to be using it. See:
    Java is vulnerable… Again?!
    http://java-0day.com

  • I am not able to connect with another ipod via bluetooth can u pls help me

    i am not able to connect with another ipod via bluetooth can u pls help me

    Are yo trying to pair via an app that supports BT pairing?  If you are I would try:
    - Resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    -Resetting network settings on the iPod: Settings>General>Reset>Reset Network Settings

  • How to create Short Lived process?..can neone pls help...

    How to create Short Lived process?..can neone pls help...

    Hi,
    Login into workbench. Click on Help->Workbench start page.
    Lot of helps are there you can go through them. They will be helpful.
    But it seems you are new to livecycle, so it will difficult to start through help. Either you can take help of any of your team member who is expert in livecycle or some training you should attend.
    Thanks

  • HT1212 The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?

    The problem is that my iphone isnt connected/synced to iTunes and i've forgotten my password so iTunes isnt connected either so can someone pls help me?
    PLEASE HELP ME

    Hi Someonewashere,
    In the article you were coming from, there is actually a section regarding what to do if you have never synced to iTunes before:
    If you have never synced your device with iTunes, or you do not have access to a computer
    If you see one of following alerts, you need to erase the device:
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."
    "You haven't chosen to have [device] trust this computer"
    If you have Find My iPhone enabled, you can use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    Alternatively, place the device in recovery mode and restore it to erase the device:
    Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen.
    iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Regards,
    - Brenden

  • I can't get the scanner samsung SCK-4521F in spite of installing driver, can anyone pls help?

    i can't get the scanner samsung SCK-4521F in spite of installing driver, can anyone pls help?

    also see
    https://igppwiki.ucsd.edu/groups/publichelpwiki/wiki/a96db/Scanning_Within_Mac_O SX.html
    seems an awful long time for samsung not to have prodeced scanner software .

  • Why can i not open my iphoto library??can somebody pls help me resolve my this problem..

    its my 1st time to have a macbook pro..why cant i pen my iphoto library??can somebody pls help me on how to resolve this problem..asap

    Open iPhoto and all your photos will appear, if you are looking for the folder of iPhoto is on the sidebar of a finder window called "Pictures" and there's a file called "iPhoto Library", press control and click on the file and choose "show package contents" and look for the photos...

  • HT4623 I update my iPad mini retina with iOS 7.1 resulting in not being to down load NOR OPEN  PPT, WORD files using iWork, page, can anyone pls help?

    I update my iPad mini retina with iOS 7.1 resulting in not being to down load NOR OPEN  PPT, WORD files using iWork, page, can anyone pls help?

    You want to just use Dropbox until the dust settles.  To use it from iWork for iOS (assuming you have the Dropbox app installed on your device), open the document in Keynote (for example), tap the share icon (box with upward pointing arrow), choose Open in Another App, choose Keynote as your format, then choose Open in Dropbox and you will get an option to save it to your Dropbox account.  To open it from Dropbox in iWork for iOS, open the document in the Dropbox app, tap the share icon, tap Open in Keynote (for example).  It's a bit clunky, but works. 

  • HT1386 my phone is not turning on....i have tried lots of time...so can u pls help me..thanks

    hi
    my phone is not turning on....i have tried lots of time...so can u pls help me..thanks

    try a reset, hold down the home/power button until you see the apple logo and then release, then wait for the phone to boot back up.

  • I purchased an iPod touch few months back. And i am very upset with the volume output it produces. iPod being an music player, has poor volume quality then my iPhone 3gs. Can anyone pls help. How do i rectify it?

    i purchased an iPod touch few months back. And i am very upset with the volume output it produces. iPod being an music player, has poor volume quality then my iPhone 3gs. Can anyone pls help. How do i rectify it?

    Problem with both the speaker and earphones?
    Have you tried another pair of headphones?
    Yu can try the standard fixes to rule out a software problem:
    - Reset. nothing is lost.
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

Maybe you are looking for