Drawing pictures over others

I'm trying to create a small applet. I'm getting an image from a intranet, it's a map of barcelona's street. User must be able to move a scroll bar, do zoom, print images, etc, but at the same time I need to paint over this image some other pictures, these images will get the same funcionality taht the first one, zoom, scroll, etc.
I'm trying to use JAI, swing and awt objects but I don't get a result, I can do zoom or scroll to a planar image but I can't paint nothing over the image.
I've been trying with ImageDisplay component but it can't show images gif, I need to read gif images, and the scroll is not working properly with that object.
Do you have some suggestions?
Can I do with bufferedImages?
Thanks

I'll send you the applet class:
package net.visualapplet;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Font;
import javax.swing.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.Hashtable;
import java.util.Properties;
import java.util.Vector;
import javax.media.jai.JAI;
import javax.media.jai.PlanarImage;
import javax.media.jai.RenderedOp;
import javax.swing.ImageIcon;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLayeredPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JLabel;
import javax.swing.JProgressBar;
import java.awt.GridLayout;
import net.visualapplet.listeners.GestionarEventsBoto;
import net.visualapplet.listeners.GestionarEventsCampText;
//Imprimir
import net.visualapplet.print.Print;
public class VisualApplet extends JApplet {
protected String posX, posY;
protected String resX, resY;
protected String escala;
protected ItinerariPanel panelImage;
protected java.util.Vector vecSources;
//Objecte Progress Bar amb texte
public JProgressBar progressBar = new JProgressBar();
public JLabel progressBarLabel = new JLabel("Cargando Imagen: ");
protected final int MY_MINIMUM=0;
protected final int MY_MAXIMUM=1000;
protected int i=10;
     * Propietats que determinen els valors de la sessi� a passar al Servlet
     * Depenen del Servidor d'Aplicacions seran uns noms o altres
private Properties sessionProperties;
     * Url de connexio al Servlet
     * Aquesta url vindra per parametre dins PARAM de Applet
//private String urlConnexio;
public String DNSServidor;
     * Tipus de Servidor al que ens connectem
private String serverType;
     //Sets y Gets
     public void setPosX(String posX){
          this.posX = posX;
     public String getPosX(){
          return posX;
     //RESX
     public void setPosY(String posY){
          this.posY = posY;
     public String getPosY(){
          return posY;
     //RESX
     public void setResX(String resX){
          this.resX = resX;
     public String getResX (){
          return resX;
     //RESY
     public void setResY(String resY){
          this.resY = resY;
     public String getResY(){
          return resY;
     //ESCALA
     public void setEscala (String escala){
          this.escala = escala;
     public String getEscala (){
          return escala;
     //ImagePanel
     public void setPanelImage(ItinerariPanel panel){
          this.panelImage=panel;
     public ItinerariPanel getPanelImage(){
               return panelImage;
     //Source
     public void setSources(java.util.Vector sources){
          this.vecSources = sources;          
     public java.util.Vector getSources(){
          return vecSources;          
public void init() {
Container objContainer = super.getContentPane();
objContainer.setBackground( Color.white );
Vector sources = new Vector();
setSources(sources);
     //Inicializamos valores
     //posX="29820502";
     setPosX("29820502");
     //posY="84574955";
     setPosY("84574955");
     //resX="800";
     setResX("800");
     //resY="600";
     setResY("600");
     //escala="5000";          
     setEscala("5000");     
     //Progress Bar lo ponemos a invisible     
     progressBar.setMinimum(MY_MINIMUM);
     progressBar.setMaximum(MY_MAXIMUM);     
     progressBar.setVisible(false);
     progressBarLabel.setVisible(false);     
protected String getImageUrl(String posX, String posY, String resX, String resY, String escala) throws Exception {
          Hashtable params = new Hashtable();
          //Convertimos valores a Double
          //Double DposX = new Double(posX);
          //Double DposY = new Double(posY);
          //java.lang.Double DresX = new Double(resX);
          //java.lang.Double DresY = new Double(resY);
          //java.lang.Double Descala = new Double(escala);
          params.put("");
          params.put("","");
          params.put("","");
          params.put("",posX);
          params.put("",posY);
          params.put("VN_ANTIALIASED","0");
          params.put("VN_BMPX",resX);
          params.put("VN_BMPY",resY);
          params.put("VN_ESCALA",escala);
          //posX="29820502";
          //posY="84574955";
          RequestManager manager = new RequestManager();
          return manager.getImageUrl("http://www.bcn.es/cgi-guia/bcnet",params);
public void start() {
try {
          JLayeredPane layers = getLayeredPane();
          JPanel cTop      = new JPanel();
          JPanel cBottom = new JPanel();
          JPanel cLeft     = new JPanel();
          JPanel cRightBoto = new JPanel();
          JPanel cCenter     = new JPanel();
          JPanel cRightText     = new JPanel();          
          JPanel cRightPanel     = new JPanel();
          JPanel cBottomBar     = new JPanel();
          JPanel cBottomPanel     = new JPanel();
          //Inicializamos valores
          //posX="29820502";
          //posY="84574955";
          //resX="800";
          //resY="600";
          //escala="5000";          
          //JPanel cComponents     = new JPanel();
          Container cComponents = getContentPane();
     String urlImage = getImageUrl(getPosX(),getPosY(),getResX(),getResY(),getEscala());
     //ImagePanel panel = new ImagePanel(urlImage);          
          RenderedOp rendered = JAI.create("url", new java.net.URL(urlImage));
          PlanarImage image = rendered.createInstance();
          java.util.Vector sources = getSources();
          //IMprimimos la imagen
          //Print imgPrintable = new Print();
          sources.addElement(image);
          //A�adimos la imagen que ira por encima
          sources.addElement(image2);
          setSources(sources);
     // A�adimos botones      
     ImageIcon leftButtonIcon = new ImageIcon("left.gif");
          ImageIcon rightButtonIcon = new ImageIcon("right.gif");
          ImageIcon upButtonIcon = new ImageIcon("up.gif");
          ImageIcon downButtonIcon = new ImageIcon("down.gif");
     JButton bLeft           = new JButton("Izq",leftButtonIcon);
          JButton bRight           = new JButton("Der",rightButtonIcon);
          JButton bUp               = new JButton("Arr",upButtonIcon);
          JButton bDown          = new JButton("Abj",downButtonIcon);
          JButton bBuscar          = new JButton("Buscar");
          JButton bImprimir      = new JButton("Imprimir");     
          Font font=new Font("SansSerif", Font.BOLD, 14);                    
          Color color = new Color(0,255,0);
          Graphics g = getGraphics();
          g.setColor(color);
          //A�adimos campos de texto y sus Etiquetas          
          JLabel labelPosX = new JLabel("Coordenada X");
          JLabel labelPosY = new JLabel("Coordenada Y");
          JLabel labelEscala = new JLabel("Escala");
          JLabel labelBlank = new JLabel(" ");
          labelPosX.setFont(font);          
          labelPosY.setFont(font);
          labelEscala.setFont(font);
          JTextField textPosX = new JTextField(10);                    
          JTextField textPosY = new JTextField(10);
          JTextField textEscala = new JTextField(10);
          //INicializamos con los valores de PosX y PosY
          textPosX.setText(getPosX());
          textPosY.setText(getPosY());
          textEscala.setText(getEscala());
          textPosX.setName("textPosX");
          textPosY.setName("textPosY");
          textEscala.setName("escala");
          textPosX.addActionListener(new GestionarEventsCampText(this));
          textPosY.addActionListener(new GestionarEventsCampText(this));
          textEscala.addActionListener(new GestionarEventsCampText(this));
          //ImageIcon imageIconCamion = new ImageIcon("up.gif");
          //JLabel imageLabel= new JLabel(imageIconCamion);
          //CanvasPanel miCanvas = new CanvasPanel();
     //JAIScalePanel panel = new JAIScalePanel(sources);
          ItinerariPanel panel = new ItinerariPanel(sources);                    
          setPanelImage(panel);
//JTabbedPane tabbed = new JTabbedPane();          
          //A�adimos Escuchador de Eventos
          bLeft.addActionListener(new GestionarEventsBoto(this));
          bRight.addActionListener(new GestionarEventsBoto(this));
          bUp.addActionListener(new GestionarEventsBoto(this));
          bDown.addActionListener(new GestionarEventsBoto(this));
          bBuscar.addActionListener(new GestionarEventsBoto(this));
          bImprimir.addActionListener(new GestionarEventsBoto(this));
          // A�adimos elementos en su panel          
          cLeft.add(bLeft,BorderLayout.CENTER);
          cRightBoto.add(bRight,BorderLayout.CENTER);
          cTop.add(bUp,BorderLayout.CENTER);
          cBottom.add(bDown,BorderLayout.CENTER);               
          cBottomBar.add(progressBarLabel);     
          cBottomBar.add(progressBar);
          cCenter.add(panel,BorderLayout.CENTER);
//          cCenter.add(miCanvas,BorderLayout.CENTER);
          //A�adimos Textfields y Labels al contenedor derecho          
          //Cambiamos su layout a tipo grid
          cRightText.setLayout(new GridLayout(13,1));     
          cRightText.add(labelPosX);
          cRightText.add(textPosX);
          cRightText.add(labelPosY);
          cRightText.add(textPosY);
          cRightText.add(labelEscala);
          cRightText.add(textEscala);     
          cRightText.add(labelBlank);
          cRightText.add(bBuscar);
          cRightText.add(bImprimir);
//tabbed.addTab("General",panel);
//Cremamos el container de 2 columans para meter
//el contenedor con el boton derecha y los txtBox
          cRightPanel.setLayout(new GridLayout(1,2));
          cRightPanel.add(cRightBoto);
          cRightPanel.add(cRightText);
          //A�adimos 2 Paneles abajo
          cBottomPanel.setLayout(new GridLayout(2,1));
          cBottomPanel.add(cBottom);
          cBottomPanel.add(cBottomBar);
//A�adimos componentes al contenedor principal
cComponents.add(cLeft,BorderLayout.WEST);
          cComponents.add(cTop,BorderLayout.NORTH);
          cComponents.add(cRightPanel,BorderLayout.EAST);          
          cComponents.add(cBottomPanel,BorderLayout.SOUTH);
          cComponents.add(panel,BorderLayout.CENTER);               
          //tabbed.addTab("General",cComponents);               
          //getContentPane().add(tabbed);
          //getContentPane().add(cComponents);
          setSize(new Dimension(800,600));
} catch (Exception exc) {
     System.err.println("Excepcion:" + exc.getMessage());
public void paint(Graphics g) {
     //System.out.println();
super.paint(g);
public static void main( String args [] ) {
JFrame app = new JFrame( "Swing JApplet (Application or Applet)" );
app.setSize( 800, 600); //set Frame: width, height
app.addWindowListener( //Register an anonymous class as a listener.
new WindowAdapter() {
public void windowClosing( WindowEvent e )
System.exit( 0 );
VisualApplet applet = new VisualApplet();
applet.init(); applet.start();
app.getContentPane().add( applet, BorderLayout.CENTER ); //add applet to center of frame.
app.setVisible( true );
} //main()
//We have remove some confidential information that is not important, I'll sen you itinerariPanel, this class send a PlanarImage to JAIScalePanel in that place teh planarImage is put into scrollPanel and at the same time into jslider panel.
We need to insert images over that image doesn't matter if we need to change from planarimage to bufferedimage.
Itinerari Panel Class:
package net.visualapplet;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.geom.Ellipse2D;
import java.awt.image.BufferedImage;
//Nuevos del dia 20 Mayo
import javax.media.jai.PlanarImage;
import java.awt.image.RenderedImage;
import javax.media.jai.JAI;
//Fin imports nuevos
import javax.media.jai.RenderedImageAdapter;
import net.visualapplet.gui.JAIScalePanPanel;
* @author Xavier Escudero
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
public class ItinerariPanel extends JAIScalePanPanel {
     private java.util.Vector sourceImages;
     public ItinerariPanel(java.util.Vector sourceImages) {
          super(sourceImages);
          this.sourceImages = sourceImages;
     /* (non-Javadoc)
     * @see javax.swing.JComponent#paintComponent(java.awt.Graphics)
     protected void paintComponent(Graphics g) {
          super.paintComponent(g);
          RenderedImageAdapter ria = new RenderedImageAdapter(getSource(0));
          BufferedImage bi = ria.getAsBufferedImage();
          Graphics2D g2 = bi.createGraphics();          
          // Asumimos que "x, y, diam" son variables de instancia
          Ellipse2D circulo =
               new Ellipse2D.Double(10,10,100,100);          
          g2.draw(circulo);
          PlanarImage imatge = (PlanarImage)sourceImages.elementAt(1);
          RenderedImageAdapter ria2 = new RenderedImageAdapter(imatge);
          BufferedImage bi2 = ria.getAsBufferedImage();
          //System.out.println("Imagen buffered "+bi2);
          //RenderedImage imr2 = JAI.create("file",imatge);          
          //g2.drawImage(bi2,20,20,this);
          //g.drawImage(bi2,0,0,this);                    
I know that may be these code is quite confuse. I'm sorry, we need to read a picture and get the chance to put some images over the firs one, do scroll, zoom, tootips, etc.

Similar Messages

  • When I tried to update my iPhone 5s to iOS 8.1, I was forced to choose to restore or back up.  Back up wasn't working so I had no choice but to restore.  I lost pictures over the last two years.  Cloud and iTunes backup are not working for me.  Help!

    How can I retrieve photos when it says my cloud and iTunes backups are empty or not backed up?
    When I tried to update my iPhone 5s to iOS 8.1, I was forced to choose to restore or back up.  Back up wasn't working so I had no choice but to restore.  I lost pictures over the last two years.  When I tried my cloud, there was nothing.  I would get notifications that my cloud was full, but I thought there would at least be some photos in there.  When I tried to restore a back up, it said the last time was two years ago.  I thought when you're on wifi, it automatically backs up.  I've charged my iPhone into my Macbook a bunch of times, so something should have backed up.  Is there any hope for my photos?

    Sorry no backup - no pictures.
    Yes phone will automatically backup to icloud when on wifi and phone is charge, but your phone storage was full so it stop backing up.
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    iCloud: iCloud storage and backup overview
    When your phone was connected to your computer, you should've seen an autoplay which would've allowed you to import your pics to your computer as you would a digital camera Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support

  • My iPhone 4S has stopped receiving iMessages, cannot send/load any pictures over whatsapp, cannot join the wifi in my house anymore. What has happened to my iPhone i haven't made any changes?

    My iPhone 4S has stopped receiving/sending iMessages, cannot send/load any pictures over whatsapp and cannot join the wifi in my house anymore.
    Essentially all the things I use my phone for have now stopped working. I constantly have 3G connected (even though i dont want to use it, i want to connect to the wifi in my house) but still when I try to download/ send a picture over whatsapp it comes up with an error message saying the server is unverified, or something equally ridiculous.
    I deleted the app so i could reinstall it (as if that would help), but the app store is started saying "unable to connect", despite 3G, so that bright idea died out pretty sharpish.
    Whenever i try to turn on iMessage, it asks for my Apple ID password, which I know I've typed in correctly because I reset the **** thing about 4 times due to it apparently being "incorrect". Even so, it repeatedly asks for the password over and over as soon as I've entered it, saying it was "unable to connect" before a final "incorrect password" message pops up just to add an extra smack of annoyance.
    I haven't changed a single setting on my iPhone whatsoever. It just suddenly started spiralling into what is now £28/month-worth of pure frustration.
    I don't even have any music or photos on it as I had to free up 3.5GB of space on the **** thing to allow it to update, naively thinking that would solve the problem, but alas it did not.
    I have seen a few questions posted like this one, usually just one of the problems I have, but I seem to have rounded up the whole bunch (lucky me). None of the previously posted questions have received any replies.
    Can some please help me! Honestly, if i see another "unable to..." or "unverified source" pop up again I'll probably smash the thing against the side of my house.
    Cheers.

    On your iPad, go to [Settings > General > Reset > Reset Network Settings] Once that is done, re-connect your iPad to your wifi network.

  • I transferred pictures over from my computer to my iPhone 5 and now i cannot delete them on the phone and cannot work out how to delete them from my phone by the computer?

    I trasferred pictures over from my computer to my iPhone 5 and now i cannot delete these pictures from my phone, and i cannot work out how to delete them from my phone by the computer as the pictures do not show up in my files on the computer, how can i remove them i have over 400 pictures that need removing?

    If you have a Mac with iPhoto, plug the iPhone in and open iPhoto. Choose to import the photos. Once they have been imported, there should be an option to "Remove Imported Photos from Device". Choose this.

  • Picture over Object in Header wouldn't show up in Acrobat Pro 9.0

    I created a MS Word (2010) document that has a header and footer. The header has a blue rectangular shape object with a logo (picture) over it. Every time I convert it to PDF the blue shape shows up but somehow the picture over it is not showing. Is there anything that I should change in my Adobe Acrobat settings? Thanks.

    While you can use the Adobe PDF printer (e.g.,  a File > Print) do not expect PDFMaker to function with Office 2010.
    This is discussed at Adobe's Acrobat FAQ web page ( http://www.adobe.com/products/acrobat/faq/ ).
    With that said, even before Office 2010, a common 'oops' when having two images/graphics (a background color is a graphical attribute) is the user selection of which is sent to the back versus which is to the front.
    It may be worth a check of the Word file's header. Sounds like you want the logo in front of the background color.
    Be well...

  • How can servlet return the output as html content with drawing picture?

    Does anybody know how can a servlet return the output as html content with drawing picture?
    The drawing picture is drawn at runtime by the servlet.

    Thanks, BalusC.
    But I am not sure if I understand your reply fully.
    From my understanding, you are telling me to first generate a html from a servlet with the image <IMG> tag pointing to a servlet which will be responsible to generate an image?
    For example, <IMG SRC="http://myserver/servlet/testservlet">
    Could you confirm this?

  • I backed up by phone and now icloud is not showing my pictures over 1400 of them help

    I backed my phone up and now icloud is not showing my pictures over 1400 of them. help?

    Why do you believe this is true?
    If you had PhotoStream turned on and your photos were syncing to it, PhotoStream holds the last 30 days worth of photos (up to 1000 photos maximum) in the cloud and they should sync back to the phone. Any photos taken more than 30 days ago and any photos greater than the 1000 photo capacity of PhotoStream, will have already been purged from the cloud and are no longer available for download.
    IF you had photostream turned on, it stands to reason that you probably also had iCloud backups turned on, in which case you should be able to wipe the phone (settings>General>Resets>Erase all content and Settings) and restore it from your most recent iCloud backup.

  • JMF - How to draw Circles over Video (JMF / Java2D / Swing)

    Hi there!
    I want to draw polygons over a playing video-panel, but they keep vanishing behind the video... Is there a way to bring them on top of the video canvas? The application which I'm going to develop should indicate ROIs on a playing video... This thread was inspiring, but didn't help at all...
    http://forum.java.sun.com/thread.jspa?forumID=28&threadID=612055

    Hi there!
    I want to draw polygons over a playing video-panel, but they keep vanishing behind the video... Is there a way to bring them on top of the video canvas? The application which I'm going to develop should indicate ROIs on a playing video... This thread was inspiring, but didn't help at all...
    http://forum.java.sun.com/thread.jspa?forumID=28&threadID=612055

  • Iphoto is downloading pictures over & over again

    iphoto is re-downloading 5 pictures over & over again - Even if I send them to the trash, they come right back with my next downloaded pic - could this be a trojan horse or virus?  Any suggestions welcome.

    I download pictures from my friends & family from their Facebook Albums onto my iMac (desktop). I have Mountain Lion, but still running iphoto 09 - I'm going to upgrade to iphoto 11, but wanted to fix the problem first.

  • Can I print one panorama picture over 2 or 3 pages?

    Hi!
    I have created a panorama picture from 4 pictures, using PhotoShop CS5 and imported it into Aperture as my photo archive application.
    Now, I wonder if I can print this picture over several pages, A4 or A3, and stitch them manually together, as I want to have it big on my wall.
    If I cannot use Aperture, do anyone have any other suggestions?

    Thanks Graham!
    I want to do it myself, since i am very well equipped with several printer options.
    I did try Panorama Maker 5, just downloaded a trial. It worked fine, except for the color fading, the picture lost it´s sparkelig colors. It prints the picture on two sheets of paper, making it possible to keep the panorama size. But the colors were dull.
    And I do not know if I want to pay $79,9 just for the printing option. I read somewhere that it should be possible with PhotoShop as well, but I don´t know how...

  • Transferring pictures over from camera

    How would I transfer my pictures over from my Canon 30D w/out using iPhoto? I connected my camera to my macbook w. the USB cable, but I'm at a lost on what to do after that.

    Well if you want you can still use iPhoto to organize your photos. Then at anytime you want to edit a photo, just drag it from iPhoto to your Photoshop icon in the dock. (if its there.) That will cause PS to open with your photo and you can edit from there. iPhoto can be a very useful image organizer.
    iPhoto will first create a file for the imported image. Then once you have made a change to that image, it will make a back up of that file. So at any time from today or 10 years from now, you can revert back to the original file in iPhoto.
    Maybe another thing to look at is the camera itself. See if there is a mass storage mode or something. Maybe that can get the computer to see it. Also launch Disk Utility with the camera connected. See if the computer can see it in there.
    Remember if you have trouble finding stuff on your computer. Just look in the upper right hand corner and use the blue search button. As you type it will find anything on your computer.
    -Burn

  • Draw image over Swing to mask.

    I have a window and I've overridden it make it draw all of it's components and then draw images over them (on a back buffer and then flip so the swing shouldn't ever be seen).
    It works perfectly and the swing components (JButtons and the like) catch the clicks when I click on the images masking them. The problem is when I click them for a very brief moment I see the Swing component come through. How is Swing doing this? Since I blt in a specific order and then flip. Somehow it is using the Graphics for the window directly - I overrode invalidate in a few ways but that just broke the components altogether.
    Anyone masked Swing components with images using a BufferStrategy? I would love some advice.

    AbstractButton (which JButton extends) calls JComponent.paintImmediately upon a click, so I don't think you can stop it without overriding AbstractButton and JButton (not recommended).
    Either override the paint method for your components to look like your overlaid image or remove your Swing components and test the mouse click location in the MouseListener.
    --Jon

  • Blue Tooth pictures from other phone.

    My freind blue tooth some picture over to my phone and I would like to use one of the pictures as a screen saver but my phone is saying the file is to large so how can I reduce the size of the file to fit my phone which is a 5230.
    Solved!
    Go to Solution.

    Open image>options>use>set as wallpaper.
    If still getting error, Open Gallery>highlight image(Single tap)>options>edit. (and crop it to fit screen,or simply use Resize option in "effects")
    Previous Phones: 6600, 7610, 6230, 6230i, 1100, 1112, N70, N73, N95, N95 8GB, 5800XM, 5230, C5, iPhone 3GS, SE Xperia X10, N900, N8, SE Xperia Arc
    Current Phones: Nokia N9, iPhone 4

  • IPhone 3g, broken connector, never synced with iTunes- Can I retrieve pictures over wifi? How?

    One of my users broke his iPhone 3g (Yes, it's THAT old!). All of his mission-critical data was synced to Exchange, but how do I retrieve the pictures off of it? Can I use wifi? the connector is broken, and his battery is at 6%. No data service. The Home button doesn't work either. It seems like there should be a way if I use the wireless to transfer over a LAN, but options are limited. I don't have comparable hardware to make swaps with. I opened the phone up to see if there was a visible problem (Something broken or bent) that might be able to fix for recovery, but nothing. Let me know. Thanks!

    If you have wi-fi then email the pictures.

  • I made a photo collage and when I sent it in a PDF it only duplicates one picture over and over

    I made a photo collage and when I sent it in a PDF it only duplicates one picture over and over. I have Mac OS X 10.8.4.  Pages 09, version 4.3

    They apparently did not have Location Service activated when they took the photo.  If it is turned off, the photo is not tagged with the info.

Maybe you are looking for

  • Need explanation about a Clearing Document

    Hi, in Tcode FBL3N i found this : Doc N° 1 : -3000 USD  --> clearing doc : Doc N° 3 Doc N° 2 : 2000 USD   --> clearing doc : Doc N° 3 Doc N° 3 : 1000 USD   --> clearing doc : Doc N° 3 Balance :        0 this clearing was made with Tcode F-03 i dont u

  • Process rule and provisioning workflow problem

    Hi, we have designed a workflow to provision groups from a database resource to ldap and AD resources. We use the process rule in the activesync process. These groups creation works without problem now, but the update/creation of users from database

  • During writing for archiving object FI_MKKDOC, file is not getting created

    Hi Experts, I am new to archiving concept & have one archiving object FI_MKKDOC which i have to complete as soon as possible. In this i have done all the basic settings & when i am excuting the transaction after putting production variant & schedulin

  • Best upgrade path for ECC 6.0

    Hello, We've been stuck on the base ECC 6.0 release for quite a while.  There hasn't been management support for the time/resources necessary to implement and test any upgrades.  We also have a lot of local modifications to SAP supplied programs that

  • Logic Express Remorse?

    I am new to all of this digital recording. Just got my acoustic intruments all ready to plug in and play live. Now, since I am so new to digital recording, I was wondering if ANY of you wish that you had gotten Logic Pro rather than Express. Will I r