PO shouldnt print

i developed PO zsmartform with standard program(after copying to zprogram) attached to it.in ME22N----->GO TO HEADER--
>RELEASE STRATEGY
if release indicator(ekko-frgke) is 1(which implies PO RELEASED) then only PO should get printed when i click on PRINT PREVIEW.
if  release indicator(ekko-frgke) not equal to 1 then PO should not be  printed even if  i click on PRINT PREVIEW.please suggest how to put the logic and where to keep the logic  in standard program.i came across thes function module
CALL FUNCTION 'ME_READ_PO_FOR_PRINTING'. will it work if i keep the logic above it like
if   ekko-frgke  =  1.
CALL FUNCTION 'ME_READ_PO_FOR_PRINTING'
endif.
please help.

ideally you shoukd not change the STD SAP Code..
check if you can get any Exit for this purpose...
if there is no Exit or BADI.. then in the calling report...
search where the smartform is getting called...
jst before that if...
if ekko-frgke = 1.
*then only call the printing function module...
endif.

Similar Messages

  • Adobe 9.5.5 cannot print in windows 7

    I can open the PDF attachments in Windows 7 but I cannot print them. The error message says no documents sent.  I can print anything else with no problem so the printer is connected to the computer just fine.

    It does sound like a driver issue, but if youve tried the latest driver then theres a couple of other things to try.
    I've checked the hp support site and on the drivers page there is also a hp print diagnostics tool under the apps section for your printer. I tried running this and it has quite a few things it checks (connection, spooler, driver etc) and gives a few tips on how to resolve the issue if it finds any.
    Not sure if this will get you any further forward as some of these tools arent always the best at resolving issues.
    The other thing I would try after that would be to change the driver manually to another different HP printer.
    This would only be to test the driver, and you can revert back after.
    To do this, go into your devices and printers page, right click on your printer, choose printer properties, then go to advanced in the next page that appears.
    Here you will see the current driver that your printer is useing with an option for a new driver.
    If you select new driver then you'll get the add driver wizard, and on the next page you will have a list of manufacturers and printers to choose from, go to HP and choose something like HP business inkjet 1000, go to next, then finish. then try to print (it may all come out garbled if it prints, and print endless pages) if it does this then turn off your printer, remove the paper and it shouldnt print anything else after you turn it back on.
    You will also want to use the previous steps to revert back to the driver that it should be after testing it like this.
    You can also use this to re-install the driver manually.
    And when you updated the driver, did you delete the previous printer that wasnt working, or let it update over the top? as it may have carried over whatever was causing your issue.

  • Cannot Print in Windows 7 but i can scan??

    I have a newer model macbook. Windows 7 installed via bootcamp. (before boot camp became compatible with windows 7). Any how I have an HP Envy printer,scanner,copier and it will scan just fine, but when i go to print something it gets hung up in the que and shows to be errored. it never prints anything. It sees the printer just fine. Everything looks great and functions properly except the printing.
    The printer works flawlessly on the mac os, so i know it's not the printer.
    I have just installed the latest drivers and still no luck.
    Any suggestions.

    It does sound like a driver issue, but if youve tried the latest driver then theres a couple of other things to try.
    I've checked the hp support site and on the drivers page there is also a hp print diagnostics tool under the apps section for your printer. I tried running this and it has quite a few things it checks (connection, spooler, driver etc) and gives a few tips on how to resolve the issue if it finds any.
    Not sure if this will get you any further forward as some of these tools arent always the best at resolving issues.
    The other thing I would try after that would be to change the driver manually to another different HP printer.
    This would only be to test the driver, and you can revert back after.
    To do this, go into your devices and printers page, right click on your printer, choose printer properties, then go to advanced in the next page that appears.
    Here you will see the current driver that your printer is useing with an option for a new driver.
    If you select new driver then you'll get the add driver wizard, and on the next page you will have a list of manufacturers and printers to choose from, go to HP and choose something like HP business inkjet 1000, go to next, then finish. then try to print (it may all come out garbled if it prints, and print endless pages) if it does this then turn off your printer, remove the paper and it shouldnt print anything else after you turn it back on.
    You will also want to use the previous steps to revert back to the driver that it should be after testing it like this.
    You can also use this to re-install the driver manually.
    And when you updated the driver, did you delete the previous printer that wasnt working, or let it update over the top? as it may have carried over whatever was causing your issue.

  • Question on checking a string for letters. help!

    im doing a method to check if a string given by the user contains something other then a alphabet. what i did was use the Character isLetter method and simply did a charAt(count) of the string given, problem is when i was testing my method i realize that if i spaced out the string such as "abc de" it would print out my error message for that method but it shouldnt print the error msg since it contains only letters. any suggestions on how to use the isLetter() and have it accept whitespace? the method works if i just did abcde but not abc de. thanks in advance

    Try using
    if (Character.isWhitespace(c) || Character.isLetter(c)){
    // it is good
    else {
    // no good
    }where c is your character. So this way you allow both white space and letter.

  • Print a report to a specific printer from Forms

    I have a form from where i want to print a report to a specific printer (not the default printer). Is there any way to do this from Forms 9i. Im using the Orarrp but it pops up the printer dialog and shows the default printer. Is there any way to harcod the printer name. the printer is on the network..

    If i go to my control pannel and see the list of printers i take the printer name from there. should i put the path of the printer? i kno the port of the printer .it come like ip_192.1.11.1_p1 ..how do i define the printer name? if i dnt give the printer name shouldnt if fire to the default printer ..my code is as follows
    declare
    REPID REPORT_OBJECT;
    V_REP VARCHAR2(100);
    REP_STATUS VARCHAR2(20);
    BEGIN
    REPID := FIND_REPORT_OBJECT('CUS_PRINT');
    SET_REPORT_OBJECT_PROPERTY(REPID,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(REPID,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(REPID,REPORT_DESTYPE,PRINTER);
         SET_REPORT_OBJECT_PROPERTY(REPID,REPORT_SERVER,'test');
    SET_REPORT_OBJECT_PROPERTY(REPID,REPORT_OTHER,'P_CUSREF='||:CTRL01.CUSREF||' PARAMFORM=NO');
         MESSAGE('SET REPORT PROP');
    V_REP := RUN_REPORT_OBJECT(REPID);
    REP_STATUS := REPORT_OBJECT_STATUS(V_REP);
    MESSAGE('RAN REPORT');
    WHILE REP_STATUS IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
         REP_STATUS := REPORT_OBJECT_STATUS(V_REP);
    END LOOP;
         IF REP_STATUS = 'FINISHED' THEN
              IF NVL('TEST',' ') <> ' ' THEN
              GEN_ALERT('NULL_ALERT','TEST');
              END IF;
              ELSE
         GEN_ALERT('NULL_ALERT','Error when running report');
         END IF;
    END;
    what should the desformat of the report should be..when im trying to run this it gives me 'no data found' error...why???

  • Printing problem using HP Laser 3015 with OS 10.4.11 on MacBook

    Pauses when printing a set of PDF files on my HP Laser 3015. It takes forever to print a set of documents. This is not working for my business where sometimes I have anywhere from 60 to over 100 pages to print out 2 sets! Last week I printed out the first set that took a long time and copied the second set. Printer worked fine with the old reader. I would like to have that back!! But can't find it in my application folder. Can someone tell me how to get an old reader if there is not a solution to this printing problem.
    I reviewed all the settings on the print box and can't find the problem. I've read what to do in Adobe's help but it didn't tell me anything I already was doing. Does anyone have a solution to my problem? I sure would appreciate it.
    Diana

    I have had printing problem too many days ago.
    As far as I am concerned you may try the following: -
    - Verify your acrobat reader is up to date.
    - Verify your printer drivers if missing any.
    - Verify there shouldnt be any paper jam in the printer.
    - Verify your printer is connected properly.
    Verify that you have ink colors
    - In the printer.
    [spam link deleted by host]
    If these didnt help than it may be your printer problem, you may fix it show it to any hardware shop.

  • Unable to print 2 sided copy from mac and from hp printer

    Im unable to make 2 sided copies on the flat bed and from printing from my macbook. First I tried printing on flatbed of hp printer I selected 1-2 sided copy I put down 1st page to copy then an error message "Job canceled the selected paper or tray cannot be used for copying on both sides of page:Job canceled". Then I tried printing from my mac on printer settings I selected 2 sided printer and still the pages printed one by one (not 2-sided copies). I dont know what else I can try maybe theres something Im missing it shouldnt be this difficult to print the 2sided option. 

    Hi wbclemen,
    Follow the steps in the document below, and let me know what you find out?
    Troubleshooting Print Quality Issues
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • Color Laserjet Pro M277dw making weird noises when printing

    Hello Everyone, At my office we bought the Color Laserjet Pro M277dw printer last week, and since then everytime we print, the printer makes really weird noises. We checked inside but everything inside looks to be okay . Here you have the link with an audio I recorded with the sound it makes. Thank you very much and it would be great if you guys could help us to find a solution! Best, Lorena 

    Grinding can only mean physical damage to the printer.  You need to isolate the sound and replace the part to resolve the problem. The good news is that this is a new printer and will be covered by the warranty.  Contact HP directly and have them run you through the options.  It shouldnt cost you anything, but you do need to contact them directly.

  • Epson SX445W printer won't work since upgrading to mountain lion

    I upgraded both my iMac and my Macbook to mountain Lion and ever since doing so the less than 6 months old Epson SX445W printer I have, which is supposed to be compatible with Mountain Lion won't print wirelessly anymore.
    I've hunted high and low for new drivers, tried removing and re-installing the printer, switched off gatekeeper, all to no avail, the only way I can get it to work is to print via USB. 
    The Printer network settings show it is correctly linked to the wireless network.
    I've tried adding the printer via IP, when I put the printers IP in, the imac detects the printer and asks me if I wish to use the Epson Stylus SX440 (which I select as it is this driver I previously used before mountain lion) and it the tries to install, tries to download new software and then fails, with the error message
    'Can't install the software fo the Epson Stylus SX440 because it is not currently available form the Software Update Server.'
    I am at a loss as to how to progress, I'm starting to feel the upgrade from Lion to Mountain Lion was pointless, I must admit I was perfectly happy with Lion anyway as it always worked flawlessly for me.
    Any help would be appreciated.
    Craig

    Hi Mende1
    When I do that no printer appears unfortunately, only Adobe PDF 8.0
    SInce posting this I did try removing and adding again, I have managed to get it to print by using the IP again to add and entering the ip address and then instead of using the default SX440 driver off my machine I selected from the list on the dropdown and chose Series 440, this successfully added the printer, and it just printed a test page, however I'm a little worried that this won't persist as soon as the printer is switched off and a new IP address is assigned by the DHCP server, and I shouldnt need to have to keep re-adding it, any other ideas are most welcome

  • Deskjet 3520e all in one printer network problems

    Hi All.
    I have a brain teaser for the technical types out there hoping someone can shed some light on a weird sort of problem.
    History: All has been fine with my g6 Pavillion latop 64bit W8 and 3520e all in one printer and working as always very well.
    Oct 16th 2014 My broadband service went down and after many communictions with ISP eventualy received (Nov 4th) and installed a new "super hub modem".
    OK so far, Managed to connect laptop via wireless router and connect to internet etc., however . . . I cannot get my printer to network as before, I can use it via USB port but if I try to network it, The Cyan ink cartridge reports as being broken or damaged even though 3/4 full and will not allow printing, but when connect via USB port the Cyan ink cartridge registers normal and will print as expected.
    Has anyone else come across this problem?
    If I go down the route of uninstalling and reinstallin the Printer software is there a set order in which to do so?
    In the list of programs these four are shown. . 
    HP Deskjet 3520 series Basic Device Software
    HP Deskjet 3520 series Help
    HP Deskjet 3520 series Product Improvement Study
    HP Deskjet 3520 series Setup Guide.
    I would like very much to get back to network printing if at all possible.
    The router IP address is 192.168.1.3
    The printer IP address is 192.168.0.1
    I have been led to believe that as the addresses are so close this shouldnt be the cause.
    I must add that in the past I have had occasional printer software problems which I was unable to resolve without help from the technical centre and I would prefer not to restart the installation if at all possible.
    Your comments would be appreciated.
    Thanks in advance.
    Un1corn.

    Hi @Un1corn 
    What exactly happens when you try to convert from USB to Wireless and configure the printer to the Virgin Media Super Hub? Do you get an error message of some sort?
    Maybe there is a firewall on the Super Hub. Do you have the model number for this device? I can look up some information to see what could be casing the issue.
    In the meantime, running the Print and Scan Doctor might help. The HP Print and Scan Doctor is a free utility (tool) that helps to quickly resolve common printing, scanning and connectivity issues including but not limited to:
    Connectivity:
    USB: Verifies that the USB connection from your computer to the HP product is working correctly.
    Network: Verifies that the network connection between your computer and your network is working correctly.
    Device Status Test: Checks for device errors such as out of paper, paper jams, carriage stalls, and paper feed issues, and then provides instructions for fixing the error.
    Driver Check: Checks for missing or corrupt driver files.
    Device Manager: Checks for problems in Device Manager that would prevent printing.
    Device Online: Checks if the product has been paused or set to offline, and then sets the status back to online if necessary.
    Print Queue: Checks for and clears pending print jobs in the print queue (a log of print jobs waiting to print).
    Port Match: Checks the port settings for the HP product.
    Device Conflicts: Checks for conflicts with other drivers, such as other printer brands.
    Ink Issues: Checks the cartridges and ink levels for issues that affect print quality.
    Print Settings: Checks and adjusts the print quality settings.
    Test Print: Prints a test page for print quality evaluation, and provides options for cleaning and aligning the printhead if necessary.
    Scan Tests: Checks the scan mechanism, drivers, and registry entries.
    Source:Try the HP Print and Scan Doctor for Windows
    Click here to download and run the Print and Scan Doctor> www.hp.com/go/tools
    If that does not resolve the issue, post back and let me know if there are any symbols other than green check marks and what they are next to of course. The wrench is not always easy to spot as the wrench and the check mart are in the green circle.
    If you see only green check marks (), the tool did not find any problems.
    If you see green wrenches (), the utility identified an issue and corrected it automatically.
    If you see yellow exclamation points (), the test failed and required user action, but the step was skipped.
    If you see a red X (), follow the on-screen instructions to resolve the issue.
    I look forward to hearing back from you.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Help with recursive function to print number patterns

    I'm sorry for having to ask for homework help - I'm badly stuck on this! Can someone give me a kick in the right direction with this?
    need a recursive function with a single positive int parameter n. the function should write (2^n - 1) integers and should be in the following pattern...
    n = 1, Output: 1
    n = 2, Output: 1 2 1
    n = 3, Output: 1 2 1 3 1 2 1
    n = 4, Output: 1 2 1 3 1 2 1 4 1 2 1 3 1 2 1
    n = 5, Output: 1 2 1 3 1 2 1 4 1 2 1 3 1 2 1 5 1 2 1 3 1 2 1 4 1 2 1 3 1 2 1
    function should valid for all positive integer values of n
    This was tagged as a 'short' problem...so it shouldnt take too much code...I am hung on on the following:
    *Do I keep track of the numbers printed, if so how?  I only have a single parameter to call with so I am confused as to how I could get an entire pattern without keeping track of the history
    *I had initially thought it would be necessary to cut it in half and do the 2nd half backwards (ie: for n=3, I would take care of the 1 2 1 - then 3 - then 1 2 1...but even then it seems like I could cut 1 2 1 in half the same way and therefor I should be able to do ALL of it in single parts...
    Can someone veer me in the right direction here? I'm really lost with this.

    This was tagged as a 'short' problem...so it shouldnt
    take too much code...Yeah, the method body could be done in a few lines.
    I am hung on on the following:
    *Do I keep track of the numbers printed, if so how?Not explicitly. Use the call stack. That is, use the fact that when you're recursing, the previous values of numbers are preserved in the previous method invocation.
    I only have a single parameter to call with so I am
    confused as to how I could get an entire pattern
    without keeping track of the historyYou don't have to store anything across method invocations.
    I had initially thought it would be necessary to cut
    it in half and do the 2nd half backwards (ie: for
    n=3, I would take care of the 1 2 1 - then 3 - then 1
    2 1...but even then it seems like I could cut 1 2 1
    in half the same way and therefor I should be able to
    do ALL of it in single parts...No, it's MUCH simpler than that. It's easier than yo uthink.
    Can someone veer me in the right direction here? I'm
    really lost with this.Try this simpler version of the problem:
    Write a recursive method that creates this output:
    n = 1: 1
    n = 2: 1 2
    n = 3: 1 2 3
    And try this simpler version:
    n = 1: 1
    n = 2: 2 1
    n = 3: 3 2 1

  • Pleaz Help me.Printing - Columns gets splitted when I use Print Mode Normal

    Hi,
    I have got a problem with printing the JTable.I am using Printmode Normal.The Table has got 30 columns.When I print them the last column in each page gets splitted.How do I stop this.I dont want to split the column.If the column doesnt have enough space it should move to the new page.It shouldnt split the colum.
    Any Ideas how to do it?
    Thanks in advance.
    HP

    Thanks for your reply.
    Sorry I made a mistake. When I scale the JTable the columns gets splitted.I dont scale the table the columns are fitted correctly to the sheet. If I print the table without scaling the table font becomes bigger.(The Table font is not same as the one displaying on the screen.).So I have to scale the Table.
    Is there any solution to scale the table without splitting the columns.(or printing the JTable in the same size of that displayed on the screen).
    and the code is
                  @Override
         protected void printComponent(Graphics g) {
            setShowGrid(false);
            Graphics2D  g2 = (Graphics2D) g;
            g2.scale(0.5, 0.5);
            g= (Graphics)g2;
            super.printComponent(g);
            setShowGrid(true);
    private void printButtonActionPerformed() {
    ExcelTable excelTable1= new ExcelTable();     
                  excelTable1=excelTable;
                  excelTable1.setTableHeader(null);
                  MessageFormat headerFormat = new MessageFormat("Page {0}");
                MessageFormat footerFormat = new MessageFormat("- {0} -");
                try {
                        excelTable1.print(JTable.PrintMode.NORMAL, headerFormat, footerFormat);
          } catch (PrinterException e) {
                        e.printStackTrace();
                   }Thanks
    HP

  • Print dialog (Proof) Simulate Black Ink

    I got an Epson 4880 to do some tests for proofing.Its not serious proofing or anything like contract-proof,its just to serve as guideline for some customers but I think Im missing something.
    I plan to get a spectrophotometer some time soon but for now I have set up and run some tests with Epson Standart Proofing Paper still using the canned profiles,but something is puzzling me.
    On printer dialog I choose Proof (Using FOGRA39 since Epson claims this paper is optimized for this profile white point)
    Photoshop Manages Colors and them the corresponding (canned) profile Pro4880 Standard Proofing_PK.
    Proof Setup I use a saved custom (FOGRA39 - BPC on - Simulate Black Ink - Relative Colorimetric)
    Whats puzzling me is:
    Why on earth the blacks are printed deeper whenever I choose Simulate Black Ink?
    Shouldnt it be the other way around?
    In soft proof there is a visible difference between Simulate Black Ink on or off,and that difference doesnt translate on paper.Both prints are almost identical with the one with Simulate Black Ink "On" having slightly deeper blacks.
    Could  it lbe because of the Printer+paper profile having a lower black density than FOGRA39?
    BTW: Simulate Paper Color and Simulate Black Ink dont show any difference in preview window on the left of Print dialog box (with Match Print Colors checked)
    Ty in advance for any help or clarification.
    Miguel

    Miguel Curto wrote:
    I dont think you can go around the driver unless you're using a RIP.Ive found out that ColorBurst has an evaluation/trial version with some limited funcionality but it has the relevant paper/printer profile.It will do...I'll post a follow-up on saturday.Ty
    Miguel,
    I really think you can get around the RIP purchase, if you're just doing randoms. My guess is you are, if you were trying to print from Photoshop.
    I think the problem with printing from PS is the craziness of it. PS is doing two conversions on output, using the Epson driver. No wonder it gets fouled up.
    I will be honest with you, I don't do any printing (post script) from Adobe page layout anymore, and certainly not from Photoshop. All PDF. Post script is cumbersome and troublesome, and you can't see what you've got unless you distill it.
    Just bypass this post script nonsense altogether. Try the following test - start with a good Adobe RGB image.  Convert to Japan newspaper with normal settings. Then convert this to your Epson RGB, the three different ways you mention. Make sure the finished images are untagged Device RGB, flat, 300 PPI, 8 bit.
    Once you have the three, you can try a few different options, using the Epson bonjour in your print center. Then
    1. You can just drag the tiffs onto the printer in the print center (but they probably won't gang)
    2. You can try printing them from Preview (again no gang). Preview should produce a dumb clean PS with no conversion. If this option produces reliable output, you can set up a hot folder, and use Automator to print your randoms if you want. There may be a way to set up the Bonjour printer to gang images and save paper.
    3. Slap your RGB tiffs onto a black InDesign page. Output a PDF, no conversion, no profiles included. Drop the PDF onto your printer in the print center (orientation and page size will be a factor). This is a crude way of ganging to save paper
    Your Epson should produce three very different images, and render the different proof scenarios properly. Please try it, you might save money.
    If it's just images you want to print, flat tiffs really should work. You don't need a RIP, they are already ripped. However I will say if you are needing to proof page layout with vector elements, there probably isn't a good workaround, you need a RIP. But then, you wouldn't be printing from Photoshop, either.
    If it works, it's just a matter of setting up the desired conversions in a batch workflow. Source RGB requires two conversions. If the images are already FOGRA39, then it's just a matter of the one conversion to Epson RGB, with desired settings, flat, 300 PPI, 8 bit, untagged.

  • Printer help: i have a scanning problem

    i want to scan something on to my computer but i dont have a color cartridge and it wont let me do anything with out shouldnt i beable to scan even tho i dont have a printer cartridge? i have a pscc 1600 series and an ibook g4. thanks.

    Hi dee digi
    That is somewhat presumptuous of the HP-PSC 1600 to prevent you from doing a colour scan because the colour ink cartridge is empty.
    This is of course a HP problem not an Apple problem so the solution lies with them.
    However are you aware of an updated HP driver being available from HP as there is some problem dealing with the printer cartridge and they recommend installing it.
    HP PSC 1600 and 2350 Series - Print Cartridge Stops Working with an Error; and Preventing Cartridge Errors Whether this fixes your problem I don't know, but they say it is required. If you still have no luck, then either replace the cartridge as it wants or call HP and see what they have to say.
    regards roam

  • Inconsistent EPS printing

    I have an EPS file from a clip art collection that I placed into AppleWorks and I noticed that it was printing out jaggy (almost like a bitmap). I open the file in illustrator to verify that it was vector (although it's pretty obvious it is when magnified in AppleWorks.)
    To verify it wasn't a printer driver problem, I printed other pieces of clip art that have worked fine in the past and they printed smoothly with no problem.
    A possible related issue is a piece of clip art in another AppleWorks file. I absent-mindedly ungrouped the picture and when I tried to drag it, a small sliver of the picture dragged over! I dragged around on the picture and I noticed that the whole picture was sliced into sections (almost like a web graphic). When I printed the ungrouped EPS, it printed jaggy. When I closed and re-opened the document without ungrouping the EPS file it printed fine.
    So I tried “ungrouping” the original EPS file that I was having jaggy printing from, and the picture flips (mirrors)! But whether flipped or not, it still prints jaggy.

    personally i dont have this problem - i use an app print and share which lets me print from the ipad or iphone
    and obviously print direct from imac
    also if youu bought an airprint printer there shouldnt be a problem, i take it you have compared settings on all devices as well?

Maybe you are looking for

  • New iMac on the way, how to save itunes LIB from XP HD w/o resync iPod

    I have 2 iPods, my PC had massive brain ****, saved the hard drive, stuffed it in an external enclosure, waiting... for an iMac to land on my door step... using another pc to try and keep iPod's charged, and Itunes wants to erase and re-sync the devi

  • Blocking vendor for PO creation if Accounting view is not maintained.

    Hi ALl, Is it possible to restrict RFQ or PO creation against vendor if accounting view is not maintained by account dept. I dont want to block it in MK06 or XK06 or in source list. Is there any user exit for this? Pls guide. Regards. Edited by: saps

  • Question about making pdfs from Illustrator files

    Hi, can someone tell me how to solve the following problem? I am preparing pdfs that will be loaded onto a website. At the moment, I make pdfs of each Illustrator file (corresponding to each page of the document). Our current IT guy then processes th

  • Downloading PDF DOC file in ADF

    Hi All, I am using Jdev 11.1.1.2.0 My requirment is to Displaying the BLOB file like DOC and PDF in ADF UI. User can able to download it. I know there is already few post like this. I have gone through But is there any better way to display way to di

  • ADOBE Connect Web Service Transaction ID

    Hi All, Hope I can make my question clear, but here goes. We are integrating an LMS into ADOBE Connect , so far so good. Managed to write all our intergration classes and all is working great. My question is as follows, If we launch a URL (SCO Conten