Picking up a printer from a gui

Morning guys
I have an example below using a simple gui that has print function in it. The aim of the program is when the user clicks on the print button that they can call p the print and print waht ever is in the text area. I'm not sure if i'm in the right forum now so bear with me.
If any one has any ideas or knows how to fix it theres three errors in total
Help wold ge great thenking you
Ambrose
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.PrintJob;
public class print extends JPanel {
    private JButton jButton14;
    private JTextArea jTextArea1;
    public print() {
        //construct components
        jButton14 = new JButton ("print");
        jTextArea1 = new JTextArea (5, 5);
        //adjust size and set layout
        setPreferredSize (new Dimension (496, 371));
        setLayout (null);
        //add components
        add (jButton14);
        add (jTextArea1);
        //set component bounds (only needed by Absolute Positioning)
        jButton14.setBounds (210, 245, 100, 20);
        jTextArea1.setBounds (25, 55, 435, 160);
     public void jButton14_actionPerformed(ActionEvent e) {
printText(jTextArea1.getText());
// Draw individual lines from the text onto pages of a new print job
    private void printText(String text) {
        PrintJob p = getToolkit().getPrintJob(this, "Print Job", null); // This causes the print dialog box to pop up
        int pageLength = p.getPageDimension().height; // Find out page size
        StringTokenizer theText = // Prepare to break up the text into lines (one line = one token)
            new StringTokenizer(text, "\n", true); // Returns \n tokens too
        Graphics g = null;
        int lineInc = 0;
        int initialYForPage = 0; // y coord of top line on page
        int yMax = pageLength - 100; // y coord of bottom line, allowing for borders of 50 top and bottom
        int x = 0;                // Initial print position
        int y = initialYForPage;
        int pageNumber = 0;
        boolean newPage = true; // To force page layout initialization
        while (theText.hasMoreTokens()) {           // Scan the lines in theText
            if (newPage) { // Start of a page?
                g = nextPage(p); // Yes, set up new page
                lineInc = g.getFontMetrics().getHeight(); // The line height in pixels for the current font
               y = initialYForPage;
               pageNumber++;
                g.drawString("Page " + pageNumber, x, y);      // Page number at top
                y += 2 * lineInc;           // Space for a blank line
                newPage = false;
            String nextBit = theText.nextToken(); // Get next line or \n if it's an empty line
            if (nextBit.equals("\n")) // End of an empty line?
                nextBit = ""; // Yes, prepare to output an empty line
            else // No, we got a line
            if (theText.hasMoreTokens()) { // \n following?
          String discard = theText.nextToken(); // Yes, discard the \n following the line
            // System.out.println(nextBit);       // Just to check, during testing
            g.drawString(nextBit, x, y);      // Draw next line
            y += lineInc;     // and move down a bit (x doesn't change: always draw at left)
            if (y > yMax) {      // At end of page?
                g.dispose();           // Yes, print it
                newPage = true;      // Force page initialization if there's another page
        if (!newPage)
            g.dispose(); // Print last page, if not already done
        p.end(); // End of print job - phew!
    } // printText
    // Grab a new page for printing on
    private Graphics nextPage(PrintJob p) {
        Graphics g = p.getGraphics();
        g.translate(50, 50); // To move image away from top left of page
        g.setFont(new Font("SansSerif", Font.PLAIN, 10));
        return g;
    } // nextPage
    public static void main (String[] args) {
        JFrame frame = new JFrame ("print");
        frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add (new print());
        frame.pack();
        frame.setVisible (true);
}

The iPhone has never had the ability to do what you are trying to describe. You can select Call Forwarding, which will make all calls normally coming to the iPhone ring to another number of your choosing. But your iPhone does not ring at all when you are forwarding calls.
Same thing with Call Forwarding from your home phone. I have Qwest at home - when I have call forwarding active there, the phone rings once and then stops, just to remind you that you have forwarding active, but you can't pick up a call there - it immediately forwards to the number of your choice - like your mobile or whatever.
You need GrandCentral or Vonage simulring to ring a call at multiple places. Do a search, there have been discussions of these services on here before.

Similar Messages

  • Printing from SAP GUI for JAVA on linux

    Hi All,
    What are the settings to be made in SPAD for printing from sapgui for java on linux ?
    We are using SAP GUI for JAVA 700 .
    Regards,
    Vinod

    Hi,
    configure printer in SPAD  , no setting for JAVA GUI
    check note
    605467:SAPscript/Smart Forms: Print preview in SAP GUI for Java
    634158      SAPscript/Smart Forms: Print preview in SAP GUI for Java (2)
    1024624 SAPscript/Smart Forms: Print preview in SAP GUI for Java (3)       
    regards,
    kaushal
    regards,
    kaushal

  • Problem while printing from SAP GUI for HTML

    Hello,
    We are trying to print a delivery confirmation from the portal using SAP GUI for HTML. We have followed note 771683 to do this. However we are facing the following problems:
    1) The print action(PDF creation) is not triggered until the user performs some action
    2) the PDF that is created is corrupted(does not open)
    In order to correct this we tried to implement note 957292. However, the changes to the object FRONTEND_PRINTPOLL_FRONT_REQUEST.HTM mentioned in this note created problems. So we decided to do the changes to this object manually. But we see that the SAP note doesn't contain any information on changes that should be implemented for this object.
    Question:
    Is the note 957292 only way to solve the printing(PDF) problem? If not, how can we trigger the automatic creation of the PDF and remove the error from the PDF file?
    If yes, any idea what is causing the problem during the note implementation?
    We are on NW2004s - EP7.0 SP10
    ITS 7.0
    Thanks in advance.
    Regards,
    Reena

    Hi,
    configure printer in SPAD  , no setting for JAVA GUI
    check note
    605467:SAPscript/Smart Forms: Print preview in SAP GUI for Java
    634158      SAPscript/Smart Forms: Print preview in SAP GUI for Java (2)
    1024624 SAPscript/Smart Forms: Print preview in SAP GUI for Java (3)       
    regards,
    kaushal
    regards,
    kaushal

  • Printing from webdynpro

    Hi All,
    In my webdynpro I have 2 buttons PREVIEW and PRINT.
    With PREVIEW button click Iu2019m able to open my custom built adobe form in a separate window. Working fine and no issues here.
    With PRINT button click, I have to send the same form directly to the local printer. I have written the below code for button event.
    DATA: fm_name TYPE funcname,
          fp_outputparams TYPE sfpoutputparams,
          fp_docparams  TYPE  sfpdocparams,
          fp_formoutput TYPE fpformoutput.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        i_name     = 'YICS_RECEIPT'
      IMPORTING
        e_funcname = fm_name.
    fp_outputparams-device = 'PRINTER'.
    fp_outputparams-nodialog u2013 abap_true.
    fp_outputparams-preview = abap_false.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = fp_outputparams.
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        i_header           = ls_header
        it_item            = it_item
        i_cmode            = ls_cmode
        it_acc             = it_acc
      IMPORTING
        /1bcdwb/formoutput = fp_formoutput.
    CALL FUNCTION 'FP_JOB_CLOSE'.
    Once I click on the PRINT button, Iu2019m able to see an entry in spool list with status u2018COMPLu2019 in green color, but the output is not printed to the printer. When I double click on the status Im seeing the below spool information.
    Description          Value                              
    Status:               Compl.                               
    Last event:                                               
    Message:           Front end did not get print data after timeout
    Date:                 25.03.2010                           
    Time:                18:10:48                             
    Job status:          Waiting for spool server             
    Error class:         Problem                              
    Some more information:
    In SE38 I have created an executable program and executed the same above code, form has been printed to the printer. Same code is working fine through GUI, but not working with webdynpro button event.
    With basis help I have configured new output device ZLP01 with below parameters.
    Device Type: PDF1
    Device Class: Space (Standard Printer)
    Access Method: G (Front End Printing with Control Tech)
    Host Printer: __default
    Regards,
    Vijay.

    Hi Vijay,
    I'm not 100% sure - but I think your issue is that you are trying to print directly to the users local printer? And you are trying to use the standard SAP local printer setup to do that?
    That uses the GUI as a conduit to the PC - the print driver that pops up in the background when you print from the GUI...
    In Web Dynpro - you have no access to that conduit so no ability to directly print.
    Think about how any web pages you've visited allow you to print - they all give you a preview - it's up to you as a user to then get those previews to your print device.
    have a read of this reference - it may help understand the issue with "auto printing" from a browser
    [why printing from a browser is problematic|http://javascript.about.com/od/events/a/print.htm]
    Hope this helps,
    Cheers,
    Chris

  • Where does Word pick up colour preferences from when printing to a pdf?

    Hi there, I work in a studio with a dozen Macs. We do a lot of bid and tender work creating high volumes of pdf documents from Word.
    The issue is that even when using the same process to create a pdf from different machines (Command-P, then the pdf drop-down to 'save as pdf') the colours print differently depending on which machine the pdf was created on.
    Can you tell me where the machine picks up its preferences to create a pdf from Word so we can ensure each machine is the same?

    Print > Adobe PDF Printer would invoke the Preferences for the Adobe PDF printer
    From the Control Panel and/or Printers and Faxes, select the Properties for the Adobe PDF printer
    I surprised myself by selecting (right click) Printing Preferences first and then (right click) selecting Properties > Advanced > Preferences; I have different options enabled in the screen shot below.

  • 'Dunning Letter Print from Dunning Letter Generate'

    hi,
    How can i run the "Dunning Letter Print from Dunning Letter Generate" standard program without runing the spwaned program called 'Dunning Letter Generate'.I mean i want to run the 'Dunning Letter Print from Dunning Letter Generate'(execution method: report) independently.
    I need to pass the parameters to the 'Dunning Letter Print from Dunning Letter Generate' directly instead of passing to the spwaned program ''Dunning Letter Generate".
    Thanks
    Devender

    Hi Gareth,
    New parameters to be add are:
    Tier : <xxxx>
    Service Segment: <xxxxx>
    Account Manager: <xxxx>
    Location where I am picking these 3:
    navigation:select any AR responsibility
    customer->standard(query with any customer)->customer address
    we have enabled 'site use information' dff in customer address window, from this dff we are taking these 3 parameters.
    reason to add these 3 parameters:
    we cant treat all the customers same. so we need to send some smooth(no harsh) dunning letters to some of our most trusted customers. so how can we identify gud customers in the list.
    so we have enabled site use information dff. those customers who is have values for these 3 parameters. will be treated as v good and reguler customers for us. so for them we can send other dunning letters.
    note*: this is to identify the customers like reguler customers,non requler customers.
    bez in spwaned program we have parameters like 1.customer low 2.customer high. thats it .so it is very difficult to find out the nature of customer.
    pls advice me on this..to proceed further..
    Thanks
    Devender

  • Trouble printing from a MacBook to a network printer wirelessly

    I have a Samsung printer connected to a Windows 7 machine and am attempting to print from a MacBook. I try the usual AdvancedWindows+SMB-addressShare-name technique. When I go to print, the MB asks for My Username and password for the W7 box. Upon entering the information, I receive an NTSTATUS_CONNECTIONREFUSED message and no printing takes place.
    Curiously, a Mac mini (10.5.8 also) which is connected to the network by wire (the MB is connected wirelessly) prints just fine to the same printer using the same configuration.
    Does Anyone have any suggestions as to how to resolve this issue? Can Anyone point Me in the direction of documentation which could help?
    Thanks in advance.

    I figured out the answer using this excellent Web page: http://www.ifelix.co.uk/tech/3000.html.
    The problem was that when I used the "Wizard" on the PC to install the shared printer, it picked the Deskjet driver by default. But the iMac needs to get the printer data in Postscript, which its own driver then translates into Deskjet speak. So after creating the printer on the Thinkpad I had to go into its Properties and change to the Apple Color Laserwriter driver.
    G4 Cube   Mac OS X (10.3.9)  

  • I cannot print from my iPad using airport express. My printer is not AirPrint compatible but is connected to airport express thru USB port. My laptop can print with no problem thru the express unit. My lap top is no a mac.

    Good day, my iPad does not seem to pick up my printer. My printer is not AirPrint compatible but is connected to my airport express thru the USB port. My laptop which is windows type connects to the printer via airport express thru bonjour and this work well. My iPad does not pick up my printer thru the airport express. I have read about different software that you can download but this seems to be only if you are using a mac. I know my express is working fine as I can use airplay thru my iPad. Any ideas? I do not want to go to the expense of changing my printer, when there was no mention in the express details that your printer had to be AirPrint compatible or indeed wireless.

    See this article to learn how to print from an iPad to your USB printer when you have a PC.  The PC will need to be running when you want to print from the iPad.
    Print from your iPad with PrintCentral | How To - CNET

  • I can't print from iPad 2 to my AirPrint enabled printer

    Hi, I'd be grateful for some help on printing from Ipad 2. I have a compatible printer (HP - B210A) and my iPhone 4 picks it up and prints perfectly, as does my PC. However, I cannot get my iPad 2 to find the printer. As far as I can see the process for printing from iPhone 4 and iPad 2 are identical but only one works. Does anybody have any suggestions please?

    Np2-
    Your iPad 2 might be defective.  An Apple Store Genius should be able to check it for you, and will replace it on the spot if it doesn't work right.
    You might try resetting the network settings on the iPad.  See Settings - General - Reset - Reset Network Settings.
    Although far-fetched, is it possible your iPad is connected to a different WiFi base station than you think?  I've had that happen, and had to go to Settings - WiFi - (Click on the WiFi Network's blue arrow) - Forget This Network, and then select the correct network. This could easily happen if you and your neighbor both have the same WiFi name!
    Fred

  • How to print from linux to Mac printer using cups - password?

    I think that I have done the correct things to share my printer from my OS X 10.4 Mac mini (my MacBook is happy to print on the Mac mini printer), and my Ubuntu Linux computer seems to be ready to print using cups. Linux can see the printer on Mac mini, but when I try to send a print job the Mac refuses access. I assume the problem is that the Linux computer needs to send the Mac a password, but I don't know how to do that -- where in the sequence of information coming from the Linux computer the password should be, what format, how to get the Linux computer to send the info through lpadmin or the GUI. All that.
    Can anyone help? Preferably with step-by-step instructions for the complete idiot. I have seen FAQs on printing, but there is no information about passwords. And most are focussed on smb rather than cups.

    I use linux and print through the Mac - but I don't have the trouble you are describing.
    There are 2 places to enable print sharing on Mac - have you done both of those?
    What protocol are you using - the easiest for CUPS is IPP (port 631). I have an Ubuntu computer at home - describe exactly how you add the printer and I'll be able to follow through.

  • HP Officejet 4500 G510n-z Wireless connection prints from Windows Vista but not from Windows 7

    HP Officejet 4500 G510n-z printer appears to be connected to my Dell Notebook running Windows 7 on the HP Solution Center page but does not print.Documents just get stuck in the que. It was printing then it wasn't then it was then it wasn't. The printer works when I print from an older notebook running Vista. The last time this happened, I uninstalled and reinstalled HP software and that didn't seem to help. Then, for some inexplicable reason, printing started working. Now it has stopped working again.I can scan from the Windows 7 Notebook but no printing. I've tried all of the troubleshooting tools I could find without success. Thanks for trying to help.
    This question was solved.
    View Solution.

    Hello-
    It could be caused by a couple things :
    1. Firewall on PC or in router.
    2. wireless interference (ie microwave, cordless phone base @ 2.4 Ghz)
    3. distance from router
    4. corrupt print driver.
    Turn off any firewalls you have and move anything that can cause interference away from router.
    If none of the above resolves issue, I'll have you install another print driver.
    Click on start.
    Go to Devices and Printers.
    Click on Add a Printer.
    Add a Local printer. Create a new Port and choose "Standard TCP/IP port.
    Hit Next.
    Type in 192.168.1.12 in the Hostname or IP address box. (uncheck "Query the printer" box)
    Hit next.
    When the Printer List opens up, click on windows update. ( this will take a few mins)
    After the box shows up, Pick HP (not Hewlett Packard) on the Left and pick "Deskjet 990c" on the Right.
    Click next, set as default, and finish.
    Try to print using the Deskjet 990c.
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    Donald

  • Can't print from my IBM

    I've spent the last couple of days reviewing similar posts, and tried suggestions within with no success. Here's my problem:
    I have an older iMac running 10.3.9 wirelessly connected to the internet with an Airport Extreme I picked up about a year ago. Recently I decided to run my printer through the Airport. My Mac found the printer with no problem, and prints just fine.
    I also have an IBM ThinkPad, running Windows XP. I have no trouble, after initial setup headaches, getting the ThinkPad to find the network and get online, but I can't print from the ThinkPad.
    I used Bonjour to find the printer, an hp deskjet 940c, and the setup seemed to work. (I used the manufacturer's disk for the driver.) But everytime I try to print I get: "this document failed to print" error message. The ThinkPad is connected to the network and online.
    I also wish the ThinkPad could find the iMac. Is this wishful thinking?
    Any help would be greatly appreciated.

    Okay, 2 out of 3 ain't bad, but now I'm so close.
    I can print from the IBM thanks to ifelix.
    I can get files off the IBM onto my iMac, again after using ifelix's guide.
    I can't get the IBM to find the iMac.
    Here's where I'm stuck: stage 6 of his guide: http://tech.ifelix.net:80/3001.html
    I type in the address of this network place, which I confirmed in my iMac under "sharing" and then I'm prompted with a window titled "Connect to 10.0.1.3" It wants me to enter User name and password. I've tried both for the iMac and the Thinkpad and neither work. The window disappears and then quickly returns having added the prefix "10.0.1.3\" to the user name. I've tried using the iMac username and shortname. Nothing works, I can't get past that password / user name window to the "What do you want to name this place?" screen.
    Any suggestons?

  • Print from shell to HP wireless printer

    I've been having trouble printing to my HP wireless (P1102W) printer from either of my 2 Macs. As a developer I spend a lot of time in the shell (bash) and have been quite happy with the command-line tools available. One of things I would like to do is print from the shell - either interactively or from a shell script.
    The only ways I know how to do this involve using 'lp' or 'lpr' and I'm sure they work the way they are supposed to. Except apparently if you try to print to an HP printer like mine. It DOES print fine from any other applications.
    When I send a print job to the printer from my Macbook Air shell or the iMac shell, a window pops up on my iMac telling me to load paper in the manual feed tray and press 'Enter'. When I press 'Enter'  it prints the job. I'm trying to avoid this if possible.
    Example:
    grep '006.' music.trxt | lp
    Email to HP Support came back with this:
    "We are sorry to let you know that HP Printers are designed to print from Graphical User Interface applications. For example, the applications from which you can select File-> Print to open a print window for further options. So you are able to print from the other applications. Regarding printing from the shell, we do not have the required expertise since this directly deals with the MAC operating system. Hence, I would request you to contact the Apple support team for more information."
    Hence my posting here.
    Does anyone have any similar problems?
    Have you found a work-around?
    Is there a way to insert a form-feed or carriage-return on the command line as part of the print command? I've tried using the Ctrl-V - insert_a_command trick but no joy.
    I love my iMac but this is driving me crazy. Thanks for any suggestions / help.

    Good news and bad news:
    With this as one option for my printer
    ColorModel/Color Model: *RGB RGBW
    This command
    lpoptions -d HP_Deskjet_F4200_series -o ColorModel=RGBW
    does change the lpotion output to
    ColorModel/Color Model: RGB *RGBW
    Notice the asterisk switched from RGB to RGBW
    The bad news is if the option as reported by lpoption only has one setting it can;t be changed (at least I wasn;t able to). So in my case the  paperfeed is
    HPPaperSource/Source: *Tray1
    and no matter what I tried I could not switch it to anything else.
    So even if this is the source of your printers behavior there may not be anything you can do about it, at least from this point.
    It is odd that the printer would only have a manual feed option as reported by CUPS. The printer does work normally from the GUI, correct? And there are no switches/settings on the printer for this?
    Something else to try, as a test, is to connect the printer directly to the system and see if anything changes. I know with my printer hooked up through the Airport I cannot get to the ink levels and such or run any maintenance commands. I have to directly connect it to do that.
    Sorry I don;t have more, 
    regards

  • Someone tell me why is it so difficult to print from my Intel Mac Mini

    I'm so frusrated at this Intel Mac Mini of mine. I wish honest to God that I never bought this evil little machine.
    I have the following printers:
    HP Photosmart 7550
    HP Laserjet 1012
    Canon MP830
    I can't get anything to print! It so **** frustrating. I switched my wife from her WinXP to a Intel Mac Mini (10.4.6). She hates the Mac Mini because she can't print anything.
    Why is it so difficult? Please someone enlighten me.
    After months (not kidding) of searching on the web I was able to get the Photosmart 7550 to print using one of the gimp drivers, but I couldn't get it to change the paper type or quality. So that tells me I can't print any photos from my Mac. Need to use the WinXP box.
    Then I was able to get the 1012 printing by selecting "open using rosetta" for the Printer Setup Utility, and selecting the "HP LaserJet 4 series - Gimp-Print v5.0.0-beta2". So now I could at least print BW docs. Great the Mac Mini is not a total waste. Then I updated software, which include the Mac mini SMC Firmware Update. I don't know what did it, but now I can't print to the 1012 anymore. ARGHH!
    I tried deleting the Library/Printer/HP directory, Reseting the Printing System, Restarting the CUPs, Installing PDDs, Installing the gimp drivers. What the ****! Why do I need to do any of this? I thought the Mac was suppose to be so easy. With all those **** commercials talking about how the Mac can do anything a PC can do, you would think one of those things is being able to print.
    Those people making those commericals should try using the "Printer Setup Utility" program. That will change their tune. First you have to search for your printer, then pick the Printer Model, and then pick the specific model. And God forbid you click to fast, oops you've now picked a generic printer, needs to start all over again. There's no back button. You've already committed to the generic printer type. Now you have to open the Printer Setup Utility again and delete the generic printer and go search for your printer again. Lame.
    Don't get me started with the Canon MP 830. I thought, ok maybe its because the 1012 and 7550 are older printers. I'll go buy a new printer - they must have current drivers for that. Canon tells me that the MP 830 is only a single OS machine, meaning you can only connect it to a windows machine and only other windows machines can print from it, or connect it to a Mac, and only other Macs can use it - Again, Lame.
    Really I wanted to love the Mac OS. When I first got it, I was loving it. But what good is it if I can't print. I searched the web and it seems I'm not the only person having issues with printing.
    I hate this Intel Mac Mini with every fiber of my being. Ok, maybe my printing woes are only because it's a Intel chip, and the PPC macs are golden. But come on, if you can't print from a computer, what good is it?
    Please, someone help me. Otherwise, anybody want to buy a Intel dual core Mac Mini?
    mac mini duo core Mac OS X (10.4.6)

    You have two different issues: HP and Canon.
    I don't know if I believe the Canon people. Windows XP has lots of different print options. Try installing Bonjour on Windows and then setting up a networked, Color Apple Laserwriter PS printer using "http://macmini.local:631" (assuming macmini is the name of your Mac). I have done this before (though not on a Canon). I am sure Canon will only support a standard configuration and this is not quite standard. Give it a try. It doesn't sound like it can hurt anything in your current setup.
    For the HP, you might have to just wait for an updated driver from HP. HP has always had this problem. They are a huge printer company and I'm sure they get Apple hardware and OS versions before anybody else in the world. And yet, it seems as if they don't even begin working on their drivers until Apple officially releases a new OS. HP drivers are always the last to show up for a new OS and the first to break. If you get it working under MacOS 10.4.6, and then upgrade to 10.4.7, it is very likely that the HP drivers will stop working.
    Unlike some of the other big companies, HP seems to have made the transition from Classic MacOS to MacOS X seamlessly. Their printer driver software works just as well on MacOS X as it did under MacOS.

  • R/3 Spool printing  from portal, page breakup is not proper

    Hai All,
    We use Enterprise portal to access SAP R/3 4.6C server. From portal when a program is submitted in background by giving a receipent name. The spool content are sent to the person SAP inbox.
    In portal we have created SAP inbox as a iview and using that i can view the spool content. The problem is when i try to print the spool from portal the page breaks are not properly coming. Whereas when i print the same spool from  SAP gui the page breaks are properly coming.
    Please let me know how to resolve this problem and let me know why this problem is occuring only in portal.
    Thank & Regards,
    Basha.

    What exact EP version are you using?
    In addtion, please have a look at transaction SM04 in the R/3 system where you can monitor all connection to the system. verify that connection are closed\re-used as required.
    Regards,
    Aviad

Maybe you are looking for

  • PARALLEL WORK IN AN OPENED WORD DOCUMENT AND FORMS 9i

    Hello, Our customer want to have an enhanced integration of the Forms application and MS Word. Currently, he opens an existing Word-file from a Forms form, MS Word opens, he edits the Word file, closes it, and goes back to the Forms application. The

  • I can't activate my phone!

    I got a used phone from a friend, it's the HTC SMT5800. There's absolutely nothing wrong with the phone, it was new when they got it; why can't I activate it? When I called the *228 number, it goes through everything and then in the end it says my ph

  • SAP upgrade - questions for report painter and query

    Hi Experts, I have two quwstions of SAP upgrade. My requirement is: SAP upgrade from 4.6B to ECC 6.0 with non-unicode. 1.Does SAP upgrade influence the report painter? If influence, could you tell me what should I do for this case. 2. We have so many

  • AD FS Token issuance endpoints for Windows authentication fail to open

    Hi, I have had issue with AD FS and after turning tracing on, I realized that the AD FS endpoints to issue token based on windows authentication were all failing with an error like: A WS-Trust endpoint that was configured could not be opened.  Additi

  • Screen captures fuzzing once on Breeze server

    We are creating PPTs and then convert into Breeze to post on our Breeze server. The screen captures look good on the PPT even after it is pulblised. Once it is posted to the Breeze server and run the screen shots are almost unreadiable. Any suggestio