Print Event Details (absorbed into convert to PDF)

Hi All,
i want to print events list into a PDF document please help me how to do that.It is very urgent.Please give me reply immediately.
Anybody have code please send me..
Thanks in advance.......

hi
good
go through this
TYPES: l_ty_tab_objbin TYPE solisti1 OCCURS 0.
data: l_otf TYPE STANDARD TABLE OF itcoo.
DATA: l_objbin TYPE l_ty_tab_objbin.
DATA: l_docs TYPE STANDARD TABLE OF docs.
data: i_line TYPE STANDARD TABLE OF tline.
CALL FUNCTION 'CONVERT_OTF_2_PDF'
EXPORTING
USE_OTF_MC_CMD = 'X'
ARCHIVE_INDEX =
IMPORTING
BIN_FILESIZE =
TABLES
otf = l_otf
doctab_archive = l_docs
lines = i_line
EXCEPTIONS
ERR_CONV_NOT_POSSIBLE = 1
ERR_OTF_MC_NOENDMARKER = 2
OTHERS = 3
thanks
mrutyun^

Similar Messages

  • Problems printing Microsoft Publisher 2010 into an Adobe PDF

    I have been trying unsuccessfully to print something that I made in Microsoft Publisher 2010 into an Adobe PDF. I have Adobe Acrobat 9 Pro and Microsoft Publisher 2010. When I first purchased both programs about 9 months ago I was able to print the Publisher. NOw I receive a message when I try and print saying 'Publisher cannot perform that operation'. When I look under Printer Preferences with Adobe PDF in Publisher, the top 3 fields are blank. I have tried to edit but it will not let me. I have gone to my printer section and opened Adobe PDF Printer device and it shows all of the settings as they should be. I am not sure if it is an issue with Adbe PDF or Microdoft Publisher. Any help is greatly appreciated.

    First I click Print and I choose Adobe PDF from the drop down menu. Then I click Printer Preferences and under the Adobe PDF Conversion Settings, the top two are Default Settings and Security Settings. They are blank. When I attempt to edit them to add in the settings that I want i.e.- PDF/X-1a:2001 it will not let me do anything and it will not print. I checked the default settings and preferences under Devices and Printers and it has the correct information.
    Abby Harding
    President
    hybris think tank publishing
    O-(623)341-8925
    F-(480)659-4938
    <http://www.hybristhinktank.com/> www.hybristhinktank.com

  • Printing event details

    Hi,
    I just started using iCal. There doesn't seem to be a way to print details of an event (such as notes, driving directions, times, etc). Am I overlooking something?
    Cheers.

    When you try to print, go to the "View" menu and choose "list"--that'll show all the information for each item. You can also choose how many days to print for, and which calendars to print. Unfortunately this doesn't look as fancy as printing a calendar for the week, but that's the only I've found to print out the extra information.
    If anywhere has another idea, I'd love to hear it, because I too would like to add some of the information to the Week View printout.

  • How to convert editable pdf into non-editable version for printing option only without setting up passwards?

    I am using IOS system with pdf preview functions. I try to convert editable pdf file into read only for others to print without access to edit the file.
    The only way I can do now is to convert to jpeg for each page and convert back to pdf then combine all pages together. It takes a lot of time in this case.
    Can anyone tell me how to do the conversion without setting up passwards for protection?
    Thank you very much!

    First of all, don't use all CAPS as it means shouting.
    Second, your question is completely off-topic for this forum which discusses Microsoft Office Outlook.
    Third, this is a peer-to-peer forum, don't count on anyone calling you. If you want dedicated support from Microsoft, contact Microsoft Support directly.
    Anyway, you can insert the picture in to OneNote and then have OneNote convert it into text. This usually isn't very accurate for scans though.
    A better solution would be to use a application which is dedicated to OCR. There are various out there. I suggest you try their demo versions to find out which works best with your handwriting.
    Robert Sparnaaij
    [MVP-Outlook]
    Outlook guides and more: HowTo-Outlook.com
    Outlook Quick Tips: MSOutlook.info

  • Printing and converting to pdf

    Hi,
    any ideas how should I do following tasks? I have a chart which I need to print or convert into pdf. Following code does the basics and now I need some advices.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.SwingUtilities;
    import javax.swing.JPopupMenu;
    import javax.swing.JMenuItem;
    public class MyChart extends Frame  {
         final Draw panel;
         public MyChart(){     
              addWindowListener(new WindowAdapter()     {     
                   public void windowClosing(WindowEvent ev)           
                   dispose();               
                   System.exit(0);
              setBounds(1,1,670,450);     
              panel = new Draw();     
              add(panel);          
              setVisible(true);
              MouseListener ml = new MouseAdapter() {
                public void mousePressed(MouseEvent e) {
                   if (SwingUtilities.isRightMouseButton(e)) {
                     Point p = e.getPoint();
                     System.out.println("Mouse pressed");
                }//mousePressed
                public void mouseReleased(MouseEvent e) {
                  if (SwingUtilities.isRightMouseButton(e)) {
                        Point p = e.getPoint();
                        MyPopupMenu jPopupMenu1 = new MyPopupMenu();
                        jPopupMenu1.show(panel, p.x, p.y);
                        System.out.println("Mouse released");
                }//mouseReleased
              };//mouseListener
              panel.addMouseListener(ml);
         public class Draw extends Panel{     
              int xt[] = {1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1};     
              int yv[] = {40,15,30,90,105,128,120,98,199,250,269,203,90,210,200,145};          
              int sx = 40;     
              int sy = 30;     
              public Draw(){     
                   super();     
                   setBackground(Color.pink);
              public void paint(Graphics g){      
                   g.setColor(Color.white);     
                   for (int i=0; i < 21; i++)     {          
                        g.setColor(Color.white);          
                        g.drawLine(i*30+sx,sy,i*30+sx,sy*10);          
                        g.setColor(Color.blue);          
                        g.drawString(""+i*30,i*sy+sy+2,30*10+30/2);     
                   for (int i=0; i < 10; i++)     {          
                        g.setColor(Color.lightGray);          
                        g.drawLine(sx,i*30+sy,20*30+sx,i*30+sy);          
                        g.setColor(Color.blue);          
                        g.drawString(""+i*30,10,i*sy+sy+2);     
                   g.setColor(Color.black);     
                   for (int i=0; i < xt.length-1; i++)     {          
                        if (xt[ i ] == 1)          
                             g.drawLine(i*30+sx,yv[ i ]+sy,(i+1)*30+sx,yv[ i+1 ]+sy);     
              public void update(Graphics g){     
                   paint(g);
         public class MyPopupMenu extends JPopupMenu {
              JMenuItem menuItem, menuItem2;
              public MyPopupMenu() {
                        menuItem = new JMenuItem("Print chart");
                        menuItem.addActionListener(new ActionListener() {
                          public void actionPerformed(ActionEvent e) {
                            System.out.println("Printing...");
                        menuItem2 = new JMenuItem("Convert to pdf");
                        menuItem2.addActionListener(new ActionListener() {
                          public void actionPerformed(ActionEvent e) {
                            System.out.println("Converting...");
                        add(menuItem);
                        add(menuItem2);
         public static void main(String[] args ) {     
              new MyChart();
    }

    I wrote a document a while back describing how to use JFreeChart and iText to generate charts in PDF format. You can download it from the JFreeChart project page on SourceForge:
    http://sourceforge.net/projects/jfreechart
    Look in the 'Files' section under 'Documentation' for a file called 'jfreechart2pdf-v2.pdf'. It should give you some pointers.
    Regards,
    Dave Gilbert
    JFreeChart Project Leader

  • Convert Pages into good quality PDF.

    Hi,
    I just made a poster in Pages. I converted the file to PDF by using the option: Share > Send by Mail > PDF.
    Had never done it before, and don't know much about it, but it turned out great. I sent it to a publisher for printing. But he couldn't use the PDF file because it did not have a good enough quality. The file size is about 500 kB when the Pages size is 3,7 MB.
    Is there a better way to get the pages file converted to PDF at the best quality?
    Please help
    Much appreciated.
    -Lillian-

    I sent it to a publisher for printing. But he couldn't use the PDF file because it did not have a good enough quality. The file size is about 500 kB when the Pages size is 3,7 MB
    Presumably the problem is that the poster includes one or more photographic images. A photographic image is a pattern of picture elements, technically termed pixels.
    The pattern of picture elements has a particular density, defined at a point in the process before the photographic image is imported into the pagination software, in this case Apple Pages.
    The density of a pattern of picture elements is measured by the number of picture elements across and the number of picture elements down in a square inch. The density is referred to as the resolution or DPI Dots Per Inch.
    A display is not able to draw higher densities and usually resolution of around 100 DPI; higher resolutions are downsampled automatically. Thus there is no benefit to adding resolution if the drawing target is displays only.
    A large format inkjet is able to draw at resolutions of around 1000 dots per inch and a prepress imagesetter is able to draw at still higher resolutions. If there is insufficient resolution, image detail is insufficient.
    Because of sophisticated algorithms for creating pixel clusters of sufficient size to print on a press, and separated into the four process colourants, it is a bit dicey to define the universally right resolution.
    Stochastic screening does not need as high resolution for visually satisfactory detail as some aproaches to screening, but in any case what the printer probably meant was that the image resolution should be increased.
    Try importing an image resolution of 300DPI for colour images. This should work well in most cases.
    /hh

  • How do i convert a pdf into a word file, i have tried doing save as?

    how do i convert a pdf into a word file, i have tried doing save as?

    Hi Jack,
    What version of Acrobat are you using?
    You might need to go to File> Save As Other> Microsoft Word or choose 'Adobe PDF printer' from the File menu.
    Is save as option not functioning correctly? Do you get any specific error?
    Please let me know.
    Regards,
    Anubha

  • Convert/join multiple file formats (doc, pdf, text) into 1 single PDF/A using web services

    We would like to purchase LiveCycle for the PDF Generator feature, but we want to know if it will meet our technical requirements.
    We would like to convert a PDF, an HTML, a DOCX, and some custom text into 1 single PDF/A. Basically: joining 3 different files types and some text into 1 very long PDF/A file. Can we do this type of join?
    Also, we would like to install LiveCycle on a central server and then call a web service or use an API where we can input the 3 different files and the text and as output we would get 1 PDF/A back. Obviously there might be intermediary steps, but in essence we need to be able to do this conversion from our custom code by calling some LiveCycle API.
    Thanks!

    You can use Assembler service with PDFGenerator. There is support for Web Service endpoints(SOAP). Please go through this for details : http://help.adobe.com/en_US/livecycle/11.0/Overview/lc_overview_ds.pdf
    Thanks,
    Wasil

  • How can I convert a PDF/A file into a PDF file with Acrobat Pro X?

    How can I convert a PDF/A file into a PDF file with Acrobat Pro X? I'd like to modifiy the file which I have only as a PDF/A.

    There's two answers if you want to modify the file:
    You can temporarily turn off PDF/A Mode in your preferences, so they don't open as read-only. The problem would be if you do something to the file that violated the PDF/A standard, so you should always run a Preflight check afterwards to make sure.
    If you want to remove the PDF/A header tag, use Preflight again - it's on the Print Production Panel in Acrobat X Pro (which may be hidden, use the options menu on the Tools Pane to show it). There's a profile called "Remove PDF/A information" - choose this and press Analyze and Fix. Nothing else about the file will be altered but when you save and reopen it all the editing tools will become active.

  • Convert Excel into Password Protected PDF Files

    Hello Aandi/Lenoard,
    I believe you are the Adobe Forums administrators so I thought you guys are the right people to approach.
    OTHERS ARE ALSO INVITED TO COMMENT ON THIS TOPIC.
    I have C# desktop app which generates Excel files and our goal is to convert these excel files one at a time into password protected PDF files. We use a 3rd party software currently, but I am challenging myself into saying that I can use Adobe Acrobat 9.0 SDK to achieve what is required .
    I have downloaded Acrobat 9.0 SDK and also have Adobe Professional 8.0(trail) in my development machine. Can you firstly tell me if this is possible and secondly what would be required on the client machines to run it?
    THanks,
    Andy

    "Encrypt with Password" is the policy name, not the policy id.
    Did you try enumerating the policy object to see how to set it up? I ran this from the console to get the policy details:
    var policy = security.chooseSecurityPolicy();
    for ( var i in policy )
    console.println(i + ": " + eval("policy." + i));
    That will pop up your list of policies. Choose "Encrypt with Password" and hit Apply, which returned the following:
    policyId: SP_STD_default
    name: Encrypt with Password
    description: This policy will allow you to set an open or modify password on a document.
    handler: Adobe.Standard
    target: document
    Of course, all you really need are the policyId, handler and target. Make sure you read and thoroughly understand the security requirements documented in the API reference for this method as well.

  • Just upgraded Tiger to Leopard.  Clarisworks not supported.   I can successfully convert CW4.0 doc's to AW6.0 doc's using MacLink Plus Deluxe but the problem is I than cannot print them or convert to PDF, either.

    Just upgraded Tiger to Leopard.  Clarisworks not supported.   I can successfully convert CW4.0 doc's to AW6.0 doc's using MacLink Plus Deluxe and then work on them but the problem is that I cannot print them.  Neither can I convert to PDF.

    If I was trying to get someone else to do my work,
    I wouldn't be posting this saying what I have said
    would I? I'm not unwilling to do the work myself.From what was stated in your OP, it seemed that you
    were.I'm sorry if it seemed that way. I don't want something for nothing. I've spent MANY hours, which I don't have, trying to work this out. I have hit a point where I don't think my expertise is going to solve the problem. That's why I've turned to some experts who might say something along the lines of, "Hey, I know what that is...you're compiling against... and on the Unix box, it's compiling against..." I was NOT looking for something like, "See the code below that fixes your problem."
    The only problem is that I don't have direct access
    to the sun unix machines I'm running the app on,
    so I can't run a profiler on it. Ah, okay. So the only knowledge you have of how it
    performs on those machines is from your instructor
    running it and then telling you how long it took?No. I can SSH into the servers and run the program from a command line. But I wouldn't be able to install any profiler programs.
    You could ask your prof to run it with -Xprof or
    -Xhprof or whatever. Or you could put in a bunch of
    timing statements to get a rough idea of which parts
    are making it take that extra 39 minute or whatever.is -Xprof a java command line option? If so, I will look into doing that. Maybe it's available on the machines at school. Thanks for that input.

  • Printing or Converting to PDF and outputting in current folder?

    Hi all,
    I've got a bunch of Word docs in a bunch of different folders and I'm looking for an easy way to convert them to PDF without much intervention.  I can go into my Adobe PDF printing preferences and specify each folder before I select all the Word docs and print them, but then I have to change the output folder each time.  I'm looking for a way to specify it to just output the PDF to the current folder by default and not bring up a dialog box to rename the file.
    Is there an easy way to do this?  I have docs separated into about 50-100 different folders.  I'd like to just point it to the root folder and click print or convert, but if I have to go into each folder individually, select all and print/convert then that would be more acceptable than the way we have to do it currently.
    Thanks for your time!

    BobLevine wrote:
    Won't do much good if it's a just an image saved as EPS. Of course if it's an Illy EPS that would be the best route.
    Bob
    Quite so, but transparency implied vector to me.

  • I want to convert webpages into an Adobe pdf (I have Adobe Acobat 9 installed). Also how do you add to Firefox Menu "Convert pdf"

    In Internet Explorer, I am able to install into the menu tool bar - Convert to pdf. Can I do the same with Firefox.
    Secondly, when I tried to print to "Adobe pdf", the page does not fully represent the webpage?

    See if Adobe has a PDF Toolbar extension for Firefox.
    Or, look into a PDF extension for Firefox, such as these extensions. <br />
    https://addons.mozilla.org/en-US/firefox/addon/14979/ <br />
    https://addons.mozilla.org/en-US/firefox/addon/5971/ <br />
    https://addons.mozilla.org/en-US/firefox/addon/220850/

  • When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the test and change the font, it does not change it properly?

    When I convert my pdf doc to word, the fonts go really weird and it also puts some text into boxes. when I try to select the text and change the font, it does not change it properly? This is making it impossible to amend.

    Hi Janedance1,
    If the PDF that you converted already has searchable text, please try disabling OCR as described in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel. (If the PDF was created from a scanned document and doesn't already have searchable text, disabling OCR isn't a great option, as the text won't be searchable/editable in the converted Word doc.)
    Please let us know how it goes.
    Best,
    Sara

  • Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    it seems my subscription had expired so I signed up again.. It was still having trouble so I repeated the sign up process again.. Then it worked perfectly.. Unfortunately, I think I just subscribed twice and need to cancel one of them. Ugh. Such a pain when I'm trying to get this project completed. I'll be canceling at least one of the subscriptions in the morning. Adobe is not my favorite company right now. None of this was intuitive. And trying to get help was an absolute waste of an hour.
    Regards,
    Nathaniel
    [removed by moderator]

Maybe you are looking for