Is any pdf doc for Java related in ADF

Hi,
Is any pdf is available to learn java for ADF.
Thanks in advance,
Sundar

...http://docs.oracle.com/cd/E24382_01/index.htm
To get the pdf version for most of the documents click the link and look in the upper right corner for the PDF link. Clicking this will get you the pdf version.
Timo

Similar Messages

  • Any gui interface for java db (derby ) such as oracle give sqldeveloper

    hi master
    sir any gui interface for java db (derby ) such as oracle give sqldeveloper that create table and view only mouse clicking
    how i get derby gui interface
    thank'
    aamir

    try db visualizer
    http://www.minq.se/products/dbvis/

  • Does anyone know of any Sun Classes for Java Cryptographic Extension -JCE ?

    Hello - anyone know of any Sun Classes for Java Cryptographic Extension? If so do you have the Sun class code/s?
    Edited by: Mister_Schoenfelder on Apr 17, 2009 11:31 AM

    Maybe this can be helpful?
    com.someone.DESEncrypter
    ======================
    package com.someone;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    public class DESEncrypter {
        Cipher ecipher;
        Cipher dcipher;
        // 8-byte Salt
        byte[] salt = {
            (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
            (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03
        // Iteration count
        int iterationCount = 19;
        public DESEncrypter(String passPhrase) {
            try {
                // Create the key
                KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
                SecretKey key = SecretKeyFactory.getInstance(
                    "PBEWithMD5AndDES").generateSecret(keySpec);
                ecipher = Cipher.getInstance(key.getAlgorithm());
                dcipher = Cipher.getInstance(key.getAlgorithm());
                // Prepare the parameter to the ciphers
                AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);
                // Create the ciphers
                ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
            } catch (java.security.InvalidAlgorithmParameterException e) {
                 e.printStackTrace();
            } catch (java.security.spec.InvalidKeySpecException e) {
                 e.printStackTrace();
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public DESEncrypter(SecretKey key) {
            try {
                ecipher = Cipher.getInstance("DES");
                dcipher = Cipher.getInstance("DES");
                ecipher.init(Cipher.ENCRYPT_MODE, key);
                dcipher.init(Cipher.DECRYPT_MODE, key);
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public String encrypt(byte[] data) {
             return encrypt(new sun.misc.BASE64Encoder().encode(data), false);
        public byte[] decryptData(String s) throws IOException {
             String str = decrypt(s, false);
             return new sun.misc.BASE64Decoder().decodeBuffer(str);
        public String encrypt(String str, boolean useUTF8) {
            try {
                // Encode the string into bytes using utf-8
                byte[] utf8 = useUTF8 ? str.getBytes("UTF8") : str.getBytes();
                // Encrypt
                byte[] enc = ecipher.doFinal(utf8);
                // Encode bytes to base64 to get a string
                return new sun.misc.BASE64Encoder().encode(enc);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
        public String decrypt(String str, boolean useUTF8) {
            try {
                // Decode base64 to get bytes
                byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
                // Decrypt
                byte[] utf8 = dcipher.doFinal(dec);
                // Decode using utf-8
                return useUTF8 ? new String(utf8, "UTF8") : new String(utf8);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
         // Here is an example that uses the class
         public static void main(String[] args) {
             try {
                 // Generate a temporary key. In practice, you would save this key.
                 // See also e464 Encrypting with DES Using a Pass Phrase.
                 SecretKey key = KeyGenerator.getInstance("DES").generateKey();
                 // Create encrypter/decrypter class
                 DESEncrypter encrypter = new DESEncrypter(key);
                 // Encrypt
                 String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                 // Decrypt
                 String decrypted = encrypter.decrypt(encrypted, true);
             } catch (Exception e) {
                  e.printStackTrace();
              try {
                  // Create encrypter/decrypter class
                  DESEncrypter encrypter = new DESEncrypter("My Pass Phrase!");
                  // Encrypt
                  String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                  // Decrypt
                  String decrypted = encrypter.decrypt(encrypted, true);
              } catch (Exception e) {
                   e.printStackTrace();
    }

  • Cannot create any PDF docs with Acrobat Pro 7.0

    I have Adobe Acrobat Pro 7.0 running on Microsoft XP.  All of a sudden, I cannot
    convert any documents into PDFs.  I have tried converting Microsoft Word
    docs and those from other applications.  It is important to stress that I
    have managed to do this many times in the past, but for some reason Acrobat
    has suffenly stopped doing this.  I have tried 'printing' to PDF and
    'converting' to PDF.  Each time I get the following error message on a
    'Notepad':
    "%%[ Error: undefined; OffendingCommand: setdistillerparams; ErrorInfo:
    CalCMYKProfile U.S. Web Coated (SWOP) v2 ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    Error accessing color profile: U.S. Web Coated (SWOP) v2
    %%[ Warning: PostScript error. No PDF file produced. ] %%"
    I have clicked on 'Detect & Repair' under the 'Help' menu button in Adobe
    Acrobat and this supposedly did some form of reinstalling/fixing (without
    the need for a CD to be inserted into the computer) and asked me to turn off
    my computer & then turn it back on.
    Having done this, I still cannot get docs to convert to PDF.
    I have not added any particular hardware or software to my computer in
    recent times.  Apart from the PDF conversion, everything else in Adobe
    Acrobat Pro seems to run fine.  I can read all documents etc.
    Can you help me?
    Thanks,
    Alan

    OK, I've got everything to work - so long as I 'Print' docs to PDF rather than clicking on the PDF conversion icons (if I click on these icons, I just get an error).
    But if I print to PDF, everything now works - I've even managed to solve the Word problem - I think it was a faulty Word doc for some reason.  I found a useful document which told me how to set up all the settings for Acrobat Distiller (http://mydocs.epri.com/docs/CorporateDocuments/WorkingWithEPRI/CreatingAcrobatPDFs.pdf).
    If you know how to make the PDF conversion icons work (it must be something simple) that'll save me having to print each time, it would be great, but I can survive without this.

  • OutPut as a PDF doc for Output Determination process of a PO

    Hi
    Can I get the OutPut as a PDF document for OutPut Determination process of a PO for a Vendor.
    My schema should produce a PDF file and get transmitted to that Vendor as soon i save my PO.
    Also can i get any SAP document on this.
    Pls help me. Swifty reply me.
    cheers
    MaruthiRam

    Hi,
    PO can be sent to using Outlook email or the Internal send within SAP.
    Message via E-Mail
    Use
    You can send purchasing documents to a vendor by e-mail.
    You can also send memos to an internal user from within the purchasing document, in which case the recipient can directly access the relevant document when processing the e-mail (executable mail).
    Prerequisites
    External Transmission
    Make the necessary Customizing settings
    The SAP system is configured for the transmission of external mails.
    The message determination facility has been set up in Customizing for Purchasing.
    You have defined a communication strategy in Customizing under Messages Output Control -> Message Types -> Define Message Types for <Purchasing Document> -> Maintain Message Types for <Purchasing Document> on the Default Values tab page, so that if no e-mail address can be found, for example, the system sends a fax.
    The following information is necessary:
    1.Data
    2.Value
    3.Comment
    Message type:
    Communication strategy
    E.g. NEU
    Choose a communication strategy or create a new one. Via the input help, you can branch to the maintenance function for communication strategies. Choose in the following window.
    Enter the necessary data on the Default Values tab page on the detail screen for the message type ().
    Processing routines
    Medium
    Program
    FORM routine
    5 (external transmission)
    SAPF06P (e.g. for PO)
    ENTRY_NEU
    The entries are identical to those of the print output.
    Partner roles
    E.g. external transmission/LF
    Maintain master data
    Message records must have been created through master data maintenance (Purchasing menu). (See Creating Message Records)
    Enter the necessary data u2013 for example, role LF (vendor), medium 5 (external transmission) and time spot 4 (send immediately upon saving).
    SAP recommends that you work with time spot 4, so that the e-mails generated are sent immediately.
    If you work with processing time spot 1 (send via periodically scheduled job), you must schedule the program RSNAST00 periodically for message output, so that messages are generated and e-mails sent.
    An e-mail address is stored in the vendor master record.
    An e-mail address is stored in the user master record.
    Please note that you must also maintain an e-mail address for user IDs with which batch-jobs are carried out.
    Internal Transmission
    Make the necessary Customizing settings:
    You have maintained the Customizing settings for Purchasing under Messages, Output Control -> Message Types ->Define Message Types for <Purchasing Document> -> Maintain Message Types for <Purchasing Document>.
    The following information is necessary:
    1.Data
    2.Value
    3.Comment
    Message type:
    Time-spot
    Transmission medium (output medium)
    Partner role
    E.g. MAIL
    E.g. 4 (send immediately upon saving)
    7 (SAPoffice)
    MP (mail partner)
    Enter the necessary data on the Default Values tab page on the detail screen for the message type ().
    Mail title and texts
    E.g. mail from purchase order
    Processing routines
    Medium
    Program
    FORM routine
    7 (SAPoffice)
    RSNASTSO
    SAPOFFICE_AUFRUF
    Partner roles
    E.g. SAPoffice/MP
    SAPoffice/LF
    Maintain master data
    Message records must have been created for the message type MAIL through master data maintenance (Purchasing menu). (See Creating Message Records)
    For more information on the internal and external transmission of e-mails, refer to the Basis documentation under Business Workplace (BC-SRV-GBT).
    Further information on external transmission is available in the Basis documentation under SAPconnect and in the section External Sending in the SAP System.
    Activities
    External Transmission
    If you have specified the processing time-spot 4 (send immediately upon saving), the system will immediately generate and transmit a message when you save the purchasing document.
    If you have specified the processing time-spot 1 (send via periodically scheduled job), you must initiate the output of e-mails manually.
    Result
    You see the documents generated in the SAP system under Office ->Work center -> Outbox -> Documents.
    Internal Transmission
    On the message screen of the Purchasing application (e.g. in the purchase order), enter the message type, the medium (SAPoffice) and the role (MP = mail partner).
    Choose Means of communication and enter your text on the following screen (<Purchasing document>: Send with note). Enter the useru2019s first and last names, for example, in the Recipient field.
    Executable mail
    If you wish to insert a transaction (because you want the recipient to view a purchase order, for example), choose Goto -> Execution parameters. Enter the necessary data, such as execution type (T = transaction), execution element (ME22N = Change Purchase Order), execution system, and the SET/GET parameters (BES for purchase order).
    Result
    If you have specified send immediately as the processing time-spot, the user will immediately receive a message or document when the purchase order is saved.
    The user can view the message sent to him or her via Office -> Work center -> Inbox.
    If the document in your inbox is an executable mail, you can click the right-hand mouse button and directly access the relevant purchase order, for example, via the menu thus displayed.
    Hope it works...
    Regards,
    Kiran

  • I can not search pdf doc for word or terms in doc, comes back as not found although I know it exists

    I have a Mac which prior to upgrading to snow leopard I could search a pdf document for words or terms.  Since the upgrade I can not successfully do this search.  Although I know the term or word exists in the document the search comes up with Not found.  Help!

    What you're seeing is ASCII unicode. The OCR of the text in the body of the PDF was either improperly performed or not at all... or the data has been corrupted.
    Have you tried opening it with Preview?

  • Can Not Print any PDF Docs

    I can't print any PDF Documents any more. I checked and have the current version. I have tried to print on two different printers and it still doesn't work. I can print using other programs like MS Word and Excel. Do I need to reinstall?

    hi, this is the forum to discuss issues with the forums themselves. to get best help quickly, you should probably repost this in the adobe reader forum:
    http://forums.adobe.com/community/adobe_reader_forums/adobe_reader
    good luck, dave

  • Any CASE tools for Java, JSP, and JavaBeans?

    For Java, JSP, and JavaBeans can we find something that can help us automate certain tasks?
    For example, CASE tools is an acronym for Computer Aided Software Engineering tools. I have a colleague use software to generate robust code for the database layer and with a few clicks of a button after the database is designed he can generate code that would otherwise take an hour or even hours to write and debug and test.
    Thanks for your time and help in advance!
    Cecilia

    The ones I know are MVCase (from Brazil) and Jude (from Japan). Both are free and I haven't fully tested them yet. It may help you.

  • Any updated JRC for Java 1.3 that can fix "Image swapping in PDF" issue?

    Hi:
      We are using Crystal Report XI release 1 on Websphere server 5.0 with Java version 1.3. Currently we are suffering from the problem that the wrong pictures are on the wrong places in the generated PDF document. The images are mixed up with other images in the report.
      It is said that the updated JRC files in CR4E 2.0 can fix this issue. I downloaded the JARs but unfortunately the Java version in these updated JRC JARs is higher than Java version 1.3.
    Could you please tell me is there any JAR that can not only solve the mentioned issue but also work with Java version 1.3?
    If yes could you please give me a URL link? If no could you please answer no so that I don't put more effort on this issue?
    Thanks a lot!!
    Ying

    Hi Ying,
    Unfortunately CR XI is past it's end of life and CR XI R2 and CR4E 2.0 requires java 1.4.
    Only option is to upgrade.
    Thank you
    Don

  • OIM - docs for Java APIs and methods, where are they?

    Hello all,
    I am having trouble finding the documentation for the various Java methods. I believe that with 9.0.3 there should be something available, but I can not find it.
    thanks in advance
    Kam

    Sigh...
    Ok, so the API docs are not included in the downloadable version of the docs, only in the live web version. Took me a while to find that discrepancy!
    Furthermore the live web returns 404 broken links for them, but at least I managed to find them squirreled away on the Oracle Japan site.
    Kam

  • Best PDF & Docs for beginers of ABAP-Netweaver

    Guys Pls help me getting best docs or pdf for abap practising in netweaver. with examples to proceed step by step.
    Moderator message : Moved to career center.
    Edited by: Vinod Kumar on Jul 19, 2011 1:25 PM

    There isn't much "hands on" material available.
    Transaction Code ABAPDOCU and the book "Sam's Teach yourself ABAP/4 in 21 Days" did the trick for me.
    BC400 is worth it too.
    regards, Lukas

  • PDF viewer for Java

    I looking for a java package to display pdf Files (Freeware).
    Thanks Mathias

    This is asked almost twice a week, try searching the forums.
    Adobe have one (viewer only).

  • Tech Usuage Selection for Java Related components

    Hi,
    This is related to the Technical Usuage selections in the solution
    manager.
    We are currently going for an upgrade from R/3 4.6C system to ECC 6 -
    EHP4. We need to have the Technical usuages like "Biller Direct -
    FSCM", Portal Content Common, Standard XI content..etc to be installed
    along with our upgrade.
    When we select the tech usuages from the tcode solution_manager...etc.,
    Solution manager doesn't allow us to select Biller Direct bcos
    there is * mark near SAP FSCM - Biller Direct which says there is no
    Java system.
    Since 4.6C is not a java system its not allowing us to download the
    same.
    But our customer wants to install the ones which is mentioned above as
    part of our upgrade,
    Can u pl let us know how to select/install technical usuages like
    Biller Direct, Portal Contect.. (which are Java Dependencies) along
    with our upgrade from 4.6C to ECC 6.0
    Thank you in advance
    Thanks & Regards
    Senthil

    Hi,
    If portal is not there in your system then how will you download these patches..
    Because to download patches you have to register Java stack in SMSY in solman. If you will not register it then MOPZ will not allow you to download these patches.
    Thanks
    Sunny

  • Generating PDF doc from java..

    hello all!
    i am looking for some API that would help me generate PDF or WORD document in my JSP or servlets.
    i have to present data and some graphs in PDF document.
    suggestions are appreciated.
    thanks in adavance,
    /rahul

    thanks aswhin. iText workds just fine.
    i am also looking to generate word documents from my servlets.
    do you have any suggestions?
    thanks once again.
    /rahul

  • How can I save a PSD image 'full size' in a PDF doc for printing

    I have a Photoshop image we've created that will be taken to the printer for a 3x6 banner. I need to save it as a PDF document, but when I do, it doesn't save as the original size of the image. I'm a total novice, so can someone help me with instructions to creat the PDF with the appropriate size image for the printing company to create the banner?

    Seconded! I have a 1039x697 PSD which comes out as a 249x167 PDF! Every time! What am I doing wrong?

Maybe you are looking for