Language selector works fine but just for one language

Hi, I've got this language selector working for english language, it is just a combo box and a text label, you select the language in the combo box and it shows the label translated to that language, it works for english, but now I'm trying to make it work for Spanish. This is done in the commented part of the text but when I try to compile that part I get the error in this line:
Locale localizacion2 = Locale.ES;
as if Locale.ES does not exist.
I listed all the Locales and there it is an ES locale, and i did the same for both languages, can't find what's wrong...
I defined the Datos_en_US.properties file containing just this line:
TextLabel = Hellooooooooo
and it works fine
and I also defined the Datos_es_ES for the spanish translation.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
public class Selector extends javax.swing.JFrame
private ResourceBundle resources;
private javax.swing.JLabel jEtSaludo;
private javax.swing.JButton jBtSaludo;
private javax.swing.JComboBox langList;
private javax.swing.JButton jbtAceptar;
private javax.swing.JLabel jlbGradosC;
  public Selector()      // constructor
  { //loadResources();
    setSize(300, 200);      // tama�o del formulario
    setTitle("Language Selector"); // t�tulo del formulario
    initComponents();       // iniciar controles o componentes
    private void initComponents()//GEN-BEGIN:initComponents
   getContentPane().setLayout(null);
      addWindowListener(new java.awt.event.WindowAdapter()
          public void windowClosing(java.awt.event.WindowEvent evt)
          exitForm(evt);
      jlbGradosC = new javax.swing.JLabel();
      jlbGradosC.setText("TestLabel");
      getContentPane().add(jlbGradosC);
      jlbGradosC.setBounds(12,28,116,16);
      String[] langStrings = { "Espa�ol", "French", "Dutch", "Chinese", "Ingles" };
   langList = new JComboBox(langStrings);
   langList.setSelectedIndex(4);
   getContentPane().add(langList);
     langList.setBounds(42,90,204,30);
     jbtAceptar= new javax.swing.JButton();
     jbtAceptar.setText("Aceptar");
     getContentPane().add(jbtAceptar);
     jbtAceptar.setBounds(195,20,85,26);
   jbtAceptar.addActionListener(new java.awt.event.ActionListener()
      public void actionPerformed(java.awt.event.ActionEvent evt)
        jbtAceptarActionPerformed(evt);
  }//GEN-END:initComponents
private void jbtAceptarActionPerformed(java.awt.event.ActionEvent evt)
  Object nombre;
  nombre = langList.getSelectedItem();
        System.out.println("Language--> " + nombre);
        if(nombre.equals("Ingles")){
            Locale localizacion = Locale.US;  //en ingl�s
            ResourceBundle mensajes = ResourceBundle.getBundle("Datos",localizacion);     
            jlbGradosC.setText(mensajes.getString("TestLabel"));
//else if(nombre.equals("Espa�ol")){
          //  Locale localizacion2 = Locale.ES; 
  //          ResourceBundle mensajes2 = ResourceBundle.getBundle("Datos",localizacion2);     
    //        jlbGradosC.setText(mensajes2.getString("TestLabel"));
  /** Exit the Application */
  private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm
    System.exit (0);
  }//GEN-LAST:event_exitForm
  public static void main (String args[])
    new Selector().setVisible(true);
}But when I list all the available Locales using this class, I get the list below where it is es_ES
import java.util.*;
import java.text.*;
public class Available {
    static public void main(String[] args) {
     Locale list[] = DateFormat.getAvailableLocales();
     for (Locale aLocale : list) {
         System.out.println( aLocale.toString() +" "+  aLocale.getDisplayName());
}zgsdfg
ar �rabe
ar_AE �rabe (Emiratos �rabes Unidos)
ar_BH �rabe (Bahr�in)
ar_DZ �rabe (Argelia)
ar_EG �rabe (Egipto)
ar_IQ �rabe (Iraq)
ar_JO �rabe (Jordania)
ar_KW �rabe (Kuwait)
ar_LB �rabe (L�bano)
ar_LY �rabe (Libia)
ar_MA �rabe (Marruecos)
ar_OM �rabe (Om�n)
ar_QA �rabe (Qatar)
ar_SA �rabe (Arabia Saudita)
ar_SD �rabe (Sud�n)
ar_SY �rabe (Siria)
ar_TN �rabe (T�nez)
ar_YE �rabe (Yemen)
hi_IN hind� (India)
iw hebreo
iw_IL hebreo (Israel)
ja japon�s
ja_JP japon�s (Jap�n)
ko coreano
ko_KR coreano (Corea del Sur)
th tailand�s
th_TH tailand�s (Tailandia)
th_TH_TH tailand�s (Tailandia,TH)
vi vietnamita
vi_VN vietnamita (Vietnam)
zh chino
zh_CN chino (China)
zh_HK chino (Hong Kong)
zh_TW chino (Taiw�n)
be bielorruso
be_BY bielorruso (Bielorrusia)
bg b�lgaro
bg_BG b�lgaro (Bulgaria)
ca catal�n
ca_ES catal�n (Espa�a)
cs checo
cs_CZ checo (Chequia)
da dan�s
da_DK dan�s (Dinamarca)
de alem�n
de_AT alem�n (Austria)
de_CH alem�n (Suiza)
de_DE alem�n (Alemania)
de_LU alem�n (Luxemburgo)
el griego
el_GR griego (Grecia)
en_AU ingl�s (Australia)
en_CA ingl�s (Canad�)
en_GB ingl�s (Reino Unido)
en_IE ingl�s (Irlanda)
en_IN ingl�s (India)
en_NZ ingl�s (Nueva Zelanda)
en_ZA ingl�s (Sud�frica)
es espa�ol
es_AR espa�ol (Argentina)
es_BO espa�ol (Bolivia)
es_CL espa�ol (Chile)
es_CO espa�ol (Colombia)
es_CR espa�ol (Costa Rica)
es_DO espa�ol (Rep�blica Dominicana)
es_EC espa�ol (Ecuador)
es_ES espa�ol (Espa�a)
es_GT espa�ol (Guatemala)
es_HN espa�ol (Honduras)
es_MX espa�ol (M�xico)
es_NI espa�ol (Nicaragua)
es_PA espa�ol (Panam�)
es_PE espa�ol (Per�)
es_PR espa�ol (Puerto Rico)
es_PY espa�ol (Paraguay)
es_SV espa�ol (El Salvador)
es_UY espa�ol (Uruguay)
es_VE espa�ol (Venezuela)
et estonio
et_EE estonio (Estonia)
fi fin�s
fi_FI fin�s (Finlandia)
fr franc�s
fr_BE franc�s (B�lgica)
fr_CA franc�s (Canad�)
fr_CH franc�s (Suiza)
fr_FR franc�s (Francia)
fr_LU franc�s (Luxemburgo)
hr croata
hr_HR croata (Croacia)
hu h�ngaro
hu_HU h�ngaro (Hungr�a)
is island�s
is_IS island�s (Islandia)
it italiano
it_CH italiano (Suiza)
it_IT italiano (Italia)
lt lituano
lt_LT lituano (Lituania)
lv let�n
lv_LV let�n (Letonia)
mk macedonio
mk_MK macedonio (Macedonia)
nl Neerland�s
nl_BE Neerland�s (B�lgica)
nl_NL Neerland�s (Holanda)
no noruego
no_NO noruego (Noruega)
no_NO_NY noruego (Noruega,Nynorsk)
pl polaco
pl_PL polaco (Polonia)
pt portugu�s
pt_BR portugu�s (Brasil)
pt_PT portugu�s (Portugal)
ro rumano
ro_RO rumano (Rumania)
ru ruso
ru_RU ruso (Rusia)
sk eslovaco
sk_SK eslovaco (Eslovaquia)
sl eslovenio
sl_SI eslovenio (Eslovenia)
sq alban�s
sq_AL alban�s (Albania)
sr serbio
sr_BA serbio (Bosnia y Hercegovina)
sr_CS serbio (Serbia y Montenegro)
sv sueco
sv_SE sueco (Suecia)
tr turco
tr_TR turco (Turqu�a)
uk ucranio
uk_UA ucranio (Ucrania)
en_US ingl�s (Estados Unidos)
en ingl�s

Thanks anyway.
This is a very stupid question and maybe for another post, but I couldn't try the class you posted here
http://forum.java.sun.com/thread.jspa?threadID=5203492
because I couldn't compile it because I downloaded the library and got the folder in for example here:
C:\Documents and Settings\Mis documentos\softsmithy-v20070520\softsmithy-v20070520\src\org\softsmithy\lib
From there I added them one by one to my own folder (the one where I have my Java projets and where I downloaded the class you posted) and then I started recompiling each class I was asked for when started compiling the class you posted, but there are so many classes in the library, each one needed to compile the other and I don't know how to compile all at once or include the whole library as a package..
Message was edited by:
drholiday

Similar Messages

  • I have purchased new iphone 3gs, its usb cable and charger not working.When I plugged in usb cable to my laptop it says"usb power hub exceeded". When I use another cable I have, it works fine.But the original one not working.Any help?

    I have purchased new iphone 3gs, its usb cable and charger not working.When I plugged in usb cable to my laptop it says"usb power hub exceeded". When I use another cable I have, it works fine.But the original one not working.Any help?

    Are you connecting your iPhone directly to your PC or to a USB hub?

  • When I upgraded my Mac Pro HDs I lost the capcity for 2 monitors.  One monitor works fine but the second one is not "seen" by the Mac Pro.  Help?

    My MacPro is a dual quad core 2.8 intell processor system with 6 gig of RAM and 4 HDs.  I recently upgraded the HDs from 500 gig each to 2 TB each.  I did that by copying each existing hard drive to a new hard drive and then inserting the new hard drive where the copied drive had been.  I followed all of the instructions for the OX system that came after copying and replacing the drive with the OX on it.  Unfortunately now I can no longer use the 2 monitors that I used to use on the system.  One monitor works fine, the second on is not found by the OX system and simply won't respond or receive a signal from the computer.  Any ideas?

    Have you tried a NVRAM / PRAM reset?
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • Home sharing working fine - but not for paid itunes content on some devices

    My setup is a simple apple home sharing network.
    I have a mac mini running OS X 10.6.8 and itunes 11.0.3(42) it hosts a lot of music, DVD's that have been re-encoded and paid for content from itunes.
    The mac mini is conntected to the network over a very good gigbit lan and has 4 apple TV3 (latest gen) hanging off the network, and multiple PC/Mac/ipod/ipad devices hanging off the network.
    All these devices connect using home sharing and work very well (I can use all 4 apple TV devices at once streaming 1080p media with no lag / delay problems)
    There is one exception to this, my PC and Mac.
    I have a Macbook pro running OX 10.6.8 and itunes 11.0.3(42) and a PC running Windows 7 64bit with Itunes 11.0.3(42). Both are also connected via gigabit lan, both run of SSD's so have excellent local disk performance, both have over 6 GB of ram at least.
    If I open itunes and connect to the itunes home media server and play music, tv shows films all is well, ranging anything from a DVD rip to a HD bluray rip. as soon as I try to play a HD movie or TV show downloaded from itunes there is a problem. I get approx 30 seconds into the content and then it just stops as if I'd hit pause and never actually starts playing.
    At first I thought this was buffering problems/flooding on my lan, so I isolated this, even though my network monitor shows lots of capacity on the lan, I removed all devices apart from the mac mini serving the home media and either the PC or the Mac, I hit the same problem.
    To diagnose this further I opened a network monitor application on the PC, the playback mac and the media server mac mini and tried to open a file in itunes.
    on the client and the server the network spikes straight away, and uses 100 network for around 5 seconds (if I do this with other devices such as apple TV's plugged into the network too the overall usage is lower, it basically uses as much as is availble, so %100 utilization isn't a problem) and then the network traffic just stops on both devices. The same is true of the disk activity, I see a raise is disk I/O on the home media mac mini for 4 - 5 seconds and then a lesser spike on the local playback machine both stop after 4 - 5 seconds in sync with the network stopping.
    Both machines remain on the network fine, but the transmission of the media between itunes server and client just stops. I then open another file, a bluray rip, some music etc, and it plays works fine, return back to the paid for itunes content, it fails at exactly the same spot.
    This happens on any itunes paid for HD movie or TV shows, so it's not just one file, it's approx any of the 200 itunes downloaded HD files I have on this machine.
    I can play the files fine with apple TV's, I've tried watching 4 different apple downloaded itunes HD films at once on 4 apple TV's it works fine, it's only if I open the file via itunes with the PC or Mac.
    All are linked with the same home sharing account so it's not / shouldn't be a DRM style issue.
    Why is this happening on the more powerful PC/Mac computers, but not on the lesser apple TV, ipad, iphone devices ?

    going to try to bump this to get some traction / suggestions on it

  • Lyrics not appearing - but just for one song

    I've got the lyrics to most of my songs on iTunes, and they work fine.
    Last week, like millions of my music-loving brethren, I downloaded the new Radiohead album. I added lyrics to each of the songs in iTunes, using lyrics from a fan site, and all of them transferred over well to the iPod - except one.
    One song has a blank page, save for the song title (it's "Faust Arp", if you're curious), where the lyrics should be - i.e., when you press the centre button three times. All the other songs' lyrics are showing up on the iPod, as well as songs from other albums. Thing is, there are lyrics in the song on iTunes - you can see them right there when you right-click to get Info and press the Lyrics tab. They're just not making it to the iPod for this one song.
    What's the deal? I've tried erasing them then syncing then pasting them back and syncing, but no dice.

    > Thanks for your reply. Yes I have tried re-publishing
    > to both ITS instances.
    >
    How do you handle the ITS sign-on? I mean do you get your users to sign-on using their own user IDs when the service is called or do you use a "dummy ITS" user that is hard-coded in the service parameter, which will then automatically sign each user on with this specific set of authorisations. What I am trying to say here is that the service parameters might be inconsistent on both ITS instances and it would be worthwhile getting someone to check if service files on both systems (on file level) are the same. Again, a re-publish could sort this out.
    Kind regards,
    Michael

  • My daughter dropped and shattered the screen on her ipod, seems to be working fine but it is one large spider web of glass.  How do we get this repaired?

    My daughter dropped her ipod touch, shattered the screen, it is still in place, but spiderweb, ipod works fine still.  How/Where  do we get the screen repaired, cost, time frame?

    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead, they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    ATTN: Beginning July 2013 Apple Stores are now equipped to do screen repairs/replacements in-house on iPhone 5 and 5C. In some cases while you wait. According to Apple this is the beginning of equipping Apple Stores with the resources needed to do most repairs for iPhones, iPads, and iPod Touches that would not require major replacements. Later in the year the services may be extended as Apple Stores become equipped and staffed with the proper repair expertise. So, if you need a screen repaired or a broken screen replaced or have your stuck Home button fixed, call your local Apple Store to see if they are now doing these in-house.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    You will find respective repair costs in the appropriate link:
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task:
    1. iResq or Google for others.
    2. Buy and replace screen yourself: iFixit

  • HT202157 I just downloaded 5.2 and both my Apple TV shows and movies won't come up. Hulu and Netflix works fine, but when I go to select a purchased move or show through the apple menu, spiral comes up for about 10 seconds and then brings me back to the m

    I just downloaded 5.2 and both my Apple TV shows and movies won't come up. Hulu and Netflix works fine, but when I go to select a purchased move or show through the apple menu, spiral comes up for about 10 seconds and then brings me back to the main page

    StagLemoore wrote:
    Thank you everyone for your suggestions and help.  Ended up logging out of my apple ID account.  Of note, when I did I did a quick test and checked out both the movies and tv show options, and it all worked perfectly.  I then logged back in, and now all my purchased and rentals are available which makes sense.  I guess with the update there was some weird bit of trons that required one to log out then back in.  Probably doing a rest in between may not hurt for some.  Thanks again for all the assistance. Cheers.
    It looks like there is a Apple doc for this problem here -> Apple TV: Unable to access Movies, TV Shows, or other iTunes features after updating

  • I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

    I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

    I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

  • I have been using my apple tv to access netflix for several months.  It suddenly stopped working.  When I try to go to netflix from the menu, it says "accessing netflix" but never does.  I can access you tube just fine, but just can't get to netflix.

    I have been using my apple tv to access netflix for several months.  It suddenly stopped working.  When I try to go to netflix from the menu, it says "accessing netflix" but never does.  I can access you tube just fine, but just can't get to netflix.  Any ideas.  I have unplugged everything and waited but nothing helped. 

    Update software. If that doesn't work try resetting.  Mine started working after the update.

  • I am having issues today with my Adobe Lightroom 5.6 today that was working fine yesterday except for te files from one of my cameras showed up on import but wouldn't download, today I'm getting the message "Lightroom cannot start because it cannot create

    I am having issues today with my Adobe Lightroom 5.6 today that was working fine yesterday except for te files from one of my cameras showed up on import but wouldn't download, today I'm getting the message "Lightroom cannot start because it cannot create files in the temporary file location  /var/folders/jv/2bct456j0yg4ys681fxk9zq00000gn/T " don't know what has happended in 24 hrs except I did check my permissions on my main directory to ensure that I had extended permissions to all the folders contained within my main drive on my IMac running OSX 10.10

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • I have an epson xp600 and a mac book pro. Wireless printing is OK if I'm lucky for one time only then a 'failed to connect' message so I have to delete and re add the printer to get it working again (but just once!) then the same occurs. Why?

    I have an epson xp600 and a mac book pro. Wireless printing is OK if I'm lucky for one time only then a 'failed to connect' message so I have to delete and re add the printer to get it working again (but just once!) then the same occurs. Why?

    I am not certain this will fix your problem but I suggest you assign the printer a static IP address.
    Using the printer's front panel, select Menu > Network > WLAN > TCP/IP > Boot method, and change it to "static". Provide a static IP address that is on your LAN's subnet.
    For example, if you are using an AirPort Extreme, you might give it an IP address of 10.0.1.100. If you are using a Netgear or Linksys router that defaults to issuing 192.168.x.x addresses, you might give it an address of 192.168.1.100. That way, the printer will always "reside at the same address" on your network. If your router has the ability, you should reserve that address so that the router does not attempt to assign it to another DHCP device.
    Then, go to System Preferences > Print & Scan, and delete your existing printer with the "–" (minus) button. Add it again, using the "+" (plus) button. In the window that appears, select the IP pane, and from the Protocol menu select "Line Printer Daemon (LPD)". In the Address field type the IP address you gave your printer.
    If all goes well the "Pring Using" field will detect the printer at that address and automatically select the appropriate driver. You will see something similar to the following screenshot ("name" can be whatever you decide, and "location" is optional):
    Click Add, then you can close System Preferences.
    There are other possible reasons your printer is "not responding" which could include wireless interference from competing wireless networks, but try this "static IP" method first. It should mitigate the problem.

  • My movies are giving a URL not found on server error message, last week they worked fine. After deleting one of them, I don't get any retries for a free download. How do I contact the seller to complain?

    My movies are giving a URL not found on server error message, last week they worked fine. After deleting one of them, I don't get any retries for a free download. How do I contact the seller to complain? Obviously the one of the other movies first..

    Stan -
    Thanks again for the simple but valuable tip.
    I'm just going to repeat the relevant sections from my previous post with the screenshots this time:
    Below you'll see a snip of how my current folder structure appears. It's identical to yours, except there are no button files in the General Folder. Since you were kind enough to include a file name, I did a search on that specific one and it's nowhere to be found on my hard drive. Hmmm....
    I've seen others remark on how... "challenging".... Adobe's instructions can be sometime. I'll admit to having the same feeling when I was trying to download and install all the content files and the 7-zip stuff. Is the answer somehow that I screwed up that?  Note the 7-zip folder right above the Adobe folder. Here's a screen shot of that expanded folder contents:
    Does that look like you think it should? Have I not installed or extracted something correctly?
    Finally, the only other thing I can think of to give you as much info as you might need is to include a screenshot of where the "Functional Content" stuff got saved. Adobe's instructions about this (if I recall correctly) were that it did NOT have to be installed anywhere specific, but you then had to go into Encore (& Premiere) and through preferences point to this stuff, which I believe I did. But I don't see any button type files in these anyway.
    Other thoughts or advice?
    Thanks!

  • Few days back I installed Autocad 2014 in my macbook pro 15" early 2012.For few days it worked fine but since last two days I'm getting graphical lag in my mac. Finger gestures and dock movement all seems to be lagging badly.Please help.I'm using maverick

    Few days back I installed Autocad 2014 in my macbook pro 15" early 2012.For few days it worked fine but since last two days I'm getting graphical lag in my mac. Finger gestures and dock movement all seems to be lagging badly.Please help.I'm using mavericks

    We regularly use Cocktail by Maintain software. You run the whole gamut of options but the important one is in System - Databases - Rebuild launch services. Also in Files - Caches - then clear the lot.
    This is just houskeeping really but there are so many 'links' in A/cad it needs 'cleaning'

  • How can I create a start up disk for a old intel core duo running 10.5.8.. Computer works fine, but can't find install disk.

    How can I create a start up disk for a old intel core duo running 10.5.8.. Computer works fine, but can't find install disk. Want to use internal disk drive or USD flash drive.

    Try calling 1-800-676-2775.  Give the serial number and thy *may* still burn you new install disks designed just for the hrdware in your system (for a fee, something like $160 per disk).  *May* is only because they may not burn disks for Leopard anymore.
    If they do not burn them for you, you can buy Leopard disks off Amazon or eBay for about $200.
    Have you considered Snow Leopard?.  Those disks only cost $19 (single user) or $29 (5-user license) through Apple by calling 1-800-MY-APPLE.

  • Suddenly, I am unable to add photos to my project in Imovie 11. I have an IMac Snow Leopard 10.6.8 and have made several movies where this worked fine but for some reason, it has quit. Everything seems to be working fine except that?

    I'm an oldtimer and have had this Mac for less than 2 yrs and have LOTS to learn - but I've climbed the curve a little.  !'ve made several movies and published to YouTube and burned to disc using IDVD with reasonably good results. Each time I have added stills to my movies it has worked fine - but tonight, I'm suddenly unable to add them. I click "Photos" -     select my photo - left click the photo and drag into the project while holding the click. Have the green "+" and the green highlight and even get the green vertical bar in the project but when I release the click, the photo simply disappears!  One "clue" here may be this:  I was able to add one still to this project and the only diff between it and the other still thumbnails now is that there is a "green check mark" on the thumbnail of the one successfully added.  Any suggestions?  (I do have the "advanced tools" option selected in IMovie Preferences.)
    Thank you so much for any help at all.
    Sam

    Hi
    My first thoughts are
    • iMovie ill behaving - Trash the iMovie pref file - use to set things right
    • in reg. to Photos - Did You change iPhoto Photo Library - Then iMovie get's lost as it peeks into iPhoto on start up to see where photos are stored. Set iPhoto back to first Photo Library (when iMovie is not running) then start iMovie.
    Yours Bengt W

Maybe you are looking for

  • Partition Tables - issue

    I have lots of partitioned tables in my schema , the requirement is to identify the current partition of the table. Let me explain this with an eg. Lets say I have a table T , with 24 partitions .. starting for Jan -04 to Dec-05. Now , my current par

  • Error during  Billing Enhancement

    Hi Experts, I am trying to get the Service Organisation Field in Search query of Billing due list,in WEB Ui and also the same thing i need to add in the billing due list header. I got a document mentioned as BILLIGN ENHANCEMENT COOKBOOK, as of tht i

  • How to become a java guru?

    i have a question , i am a novice into java. I really want to master that language so i need some feedback from more experienced users. I started it off with a book called:" java sotfware solutions written by John and Lewis William Loftus" i think it

  • Deficit of PU IR quantity 0.001 AU

    I will do a reversal of service PO from SRM at the back end but i received the following message Deficit of PU IR quantity 0.001 AU the reversal was done at the R3, all of the invoice has been reversed and has the total amount of 0.00 please advice w

  • Pop-up list manager displaying "return value" instead of "display value"

    Hello, I'm using a list manager based on pop-up LOV. When I click on an item on the pop-up window, the window is closed and the return value is displayed in the page list. I would like to have (as expected) the display value otherwise a user who acce