Is there any api to modify the form field in PDF?

Hi,
Our client need we provide the editable PDF, i.e. some form fields in the PDF report can be edit. Now we created the PDF template and merged it with the XML data definition in Jdeveloper, but when we get the final PDF report, we found that the PDF form field property is changed to "Read-Only" automatically. We make sure that in PDF template the form field is not "Read-Only", something happened when we merging the XML data and the PDF template.
Now we wonder if there is any API can help us to modify the PDF form field property, after we merge the XML data and PDF template, we can use it to change the form fields to editable, not "Read-Only".

Hi,
What I need is to modify some form fields' property, I explore some web and found before I create the PDF file, I can set the security of the PDF:
Properties prop = new Properties();
prop.put("pdf-security","true");
prop.put("pdf-open-password","welcome");
So I wonder if there is one property related to the PDF form field.
Thank you.

Similar Messages

  • Is there any way to change the security on multiple pdfs without having to open each pdf in acrobat ?

    Hi all
    Is there any way to change the security on multiple pdfs without having to open each pdf in acrobat ?

    Hi Gilad
    Thanks for the reply
    I'm not sure how to create an action I have Acrobat Pro 8.
    My company would love if I could make it as a batch file or some exe so that each file doesn't have to be opened in Acrobat

  • Is there some api to modify the schedule information?

    hi all,
    Is there some GP API to modify the schedule information?
    for example, we just want some users to modify some process's schedule time,not all processes.
    So we must develop some web dynpro application.
    So is there some api to modify GP'S schedule?
    Thank you.
    Best regards,
    delma

    HI all
    I followed this help link:
    http://help.sap.com/saphelp_nwce10/Helpdata/EN/2b/ae193799564c26ab382f2d43ecc1bb/content.htm
    It seems working,except when i use this method:
    GPScheduleFactory.createTimingRecurrentMonthly
    I found it seems make a Recurrent Daily schedule except a recurrent monthly.
    I am confused.
    Can anybody help me?
    Thank you.
    Best Regards,
    delma

  • Is there any API to update locator flex field details?

    Hi All,
    Is there any API to update wms locator flex field details?

    Hi,
    As per Oracle we have below APIS for locator in WMS,
    - Create Locator API to create a new locator (CREATE_LOCATOR)
    - Update Locator API to update an existing locator (UPDATE_LOCATOR)
    - Locator Item Tie API to assign an item to a locator (CREATE_LOC_ITEM_TIE)
    - Delete Locator API to delete an existing locator (DELETE_LOCATOR)
    The APIs are part of PL/SQL package INV_LOC_WMS_PUB. This is defined in
    $INV_TOP/patch/115/sql/INVLOCPS.pls.
    You can search *"Locator Maintenance Application Program Interface"* in Metalink or MFGAPI for details.
    Hope it helps
    Kind Regards,
    S.P DASH

  • Is there any API to keep the Invoice Scheduled  Payment on Hold ?

    Hi All
    Is there any public or private API to keep the Invoice Scheduled Payment on Hold? Your help would be greatly appreciated.
    Regards
    Krishna
    Edited by: krishna on Feb 21, 2012 1:17 PM

    Hii,
    Invoice goes automatically on schedule payment hold, if bank details are not updated (only in case of "Electronic" payment method). Moreover, one can manually check the box for payment hold at Schedule payment level.
    Hope this clarifies your query.
    Regards
    Sandeep

  • Is there any way to modify the photo book size after I have created the book?

    I created a photo book then realized it was not the correct size. Is there a way to correct the size or do I have to start from scratch?
    I Found the answer after I posted this- CTRL D to duplicate, then choose new theme - Worked like a charm.

    Yes.  First click on the book in the Projects section and type Command +D (duplicate).  Open the book, click on Change Themes and in the next window select the size and type you want.
    The duplicate is to have in case you find any text that was removed in the resizing.  You can cut and past from the duplicate copy to the original.  Also verify that the resized book has all of its text, not text warning indicators and that all photos are there and in the correct order.
    Always create a PDF version of the book according to this Apple doucment, iPhoto, Aperture: Previewing an order in iPhoto or Aperture, to check for any errors, i.e. typos, missing text, etc., before ordering the book.  Keep the pdf file to compare with the printed version when it arrives.
    Opps!  Answered your question from the title without reading the full body of your post. However, the last 2 paragraphs are worth reviewing.
    OT
    Message was edited by: Old Toad

  • Is there any way to get the PivotTable Field List to appear in an embedded Excel Web Apps spreadsheet?

    The PivotTable Field List shows up fine when using Excel Web Apps normally. It doesn't appear to be accesible via the javascript API and the main
    Excel Web App cannot be embeded in a frame. Any ideas?

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, this issue is more related to Excel Web app develop. I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Is there any way to change the text size in pdf documents

    Is it possible to change the font size and line spacing in Adobe Acrobat without zooming the whole page. Any help with that

    Text size with the Text Touchup Tool. Line spacing is a NO. What you want to do does not fall into the category of what PDFs are created to do. If you are just doing it for screen reading, use the zoom.

  • Is there any API to obtain the current Folder ID where the user is located??

    how can obtain the current folder id where the user is?
    tks in advance

    Folder Id is one of the attributes you can pass to a custom item
    type procedure. In the custom item type, go to the Procedures
    tab. At the bottom of the page, under "Pass Attributes as
    Parameters" select Folder Id from the list. Under "Pass As" you
    have to provide the name of the parameter in your custom
    procedure.
    For example, here is a procedure that displays a list of
    subfolders for a given folder:
    <pre>
    create or replace procedure SCOTT.DISPLAY_SUBFOLDERS AS
    p_folderid IN VARCHAR2,
    p_siteid IN VARCHAR2)
    as
    begin
    for c in
    (select '<a href="PORTAL30.wwv_main.main?p_cornerid=' || f.id
    || '&p_siteid=' || f.caid || ">'
    || f.display_name || '</a>' theURL
    from portal30.wwsbr_all_folders f, portal30.wwv_user_corners c
    where c.id = f.id
    and c.parentid = p_folderid
    and f.caid = p_siteid ) loop
    htp.p(c.theURL || '<br>');
    end loop;
    exception
    when others then
    null;
    end;
    </pre>
    This procedure takes both the folder id and the site id as
    parameters.
    Regards,
    Jerry

  • Is there any api to delete the Calender entry from Blackberry phone

    Hi All,
    I want to delete the Calender entry from the Blackberry programatically please can you suggest me how to do it and also example is very much helpfull.
    Thanks
    Sharan

    Ask Skype. That's not an Apple product.

  • Is there any API available to read drm files in ios devices?

    Hi,
    I am ios developer and trying to read DRM files using my app.
    I want to know is there any API available for the same.
    Thanks in Advance.

    Hi Prathap,
    No, there is no Java API specific for RDF functionality available. However, Java client applications can use JDBC to access the RDF store. A partially relevant post is at How do you query Oracle RDF database using Java program? . The JDBC documentation will have detailed documentation on using JDBC.
    Code snippets for one way of accessing SDO_RDF_MATCH through Java is below:
    <..........>
    sbStmt.append("select * from TABLE( ")
    .append(" SDO_RDF_MATCH('(?S ?P ?O)',")
    .append(" SDO_RDF_Models('")
    .append( <model_name> )
    .append("'),")
    .append("null,null,null))")
    .append(" where rownum <= ")
    .append(iNumRows)
    ResultSet rs = stmt.executeQuery(sbStmt.toString());
    while (rs.next()) {
    System.out.print("\n");
    System.out.print(rs.getString("S"));
    System.out.print(" (");
    System.out.print(rs.getString("S$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("P"));
    System.out.print(" (");
    System.out.print(rs.getString("P$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("O"));
    System.out.print(" (");
    System.out.print(rs.getString("O$RDFVTYP"));
    System.out.print(") ");
    <............>
    <...... handling CLOB values that are returned ....>
    // read CLOB if applicable
    Reader reader = null;
    try {
    CLOB clob = ((OracleResultSet) rs).getCLOB("O$RDFCLOB");
    if (clob == null) {
    System.out.print("not a long literal ");
    else {
    reader = clob.getCharacterStream();
    char[] buffer = new char[1024];
    // reading 1K at a time (just a demo)
    int iLength = reader.read(buffer);
    for (int i = 0; i < iLength; i++) {
    System.out.print(buffer);
    System.out.print(" ...");
    finally {
    if (reader != null) reader.close();
    <..........>

  • Are there any APIs to create an Invoice in Oracle Payables?

    Hi,
    We have a requirement to import the invoices from the operational systems. We will be making approximately 7,000 checks a day. We need to import all these payments information into Oracle Payables as Invoices and then process the payments out of Oracle payments module. We are on EBS 12.1.1
    Were there any APIs to create the invoices directly in Payables as it comes from custom application? We could use payables open interface but as we would like to integrate the payables module with custom application it would be nice if invoice creates directly in Payables through APIs.
    Thanks,

    In the enterprise edition I am able to create all the below objects.But The job is not running after file arrival.
    Could you please me in this case also.
    BEGIN
      DBMS_SCHEDULER.create_credential(
        credential_name => 'LOCAL_CREDENTIAL',
        username        => 'upncommon',
        password        => '*******');
    END;
    BEGIN
      DBMS_SCHEDULER.create_file_watcher(
        file_watcher_name => 'test_file_watcher',
        directory_path    => '/home/upncommon/pub',
        file_name         => 'sample2.sh',
        credential_name   => 'LOCAL_CREDENTIAL',
        destination       => NULL,
        enabled           => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.create_program(
        program_name        => 'file_watcher_test_prog',
        program_type        => 'STORED_PROCEDURE',
        program_action      => 'PROC_SCH',
        number_of_arguments => 1,
        enabled             => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.define_metadata_argument(
        program_name       => 'file_watcher_test_prog',
        metadata_attribute => 'event_message',
        argument_position  => 1);
    END;
    BEGIN
      DBMS_SCHEDULER.create_job(
        job_name        => 'file_watcher_test_job',
        program_name    => 'file_watcher_test_prog',
        event_condition => NULL,
        queue_spec      => 'test_file_watcher',
        auto_drop       => FALSE,
        enabled         => FALSE);
    END;
    BEGIN
      DBMS_SCHEDULER.set_attribute('file_watcher_test_job','parallel_instances',TRUE);
    END;
    EXEC DBMS_SCHEDULER.enable('test_file_watcher');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_prog');
    EXEC DBMS_SCHEDULER.enable('file_watcher_test_job');

  • Any way to validate the Mandatory field in the XML file

    Hi,
    Is there any way to validate the Mandatory field in the XML file. I created an xml type table xml_validate based on the schema and insert the XML files with statement.
    INSERT INTO xml_validate(warehouse_id,xml_file_name,warehouse_spec)
    Values (agreementid,p_filename,XMLTYPE.createXML(l_clob));
    It is validating the data types, extra tags etc but not validating the missing of the manadatory tag/value.
    Thanks in advance
    Rizly

    Hi Ants,
    Yes, I was not doing the strict validation, after searching the forum i understood that was the reason. So i did this way,
    begin
    for x in (select myColumn from myTable where WAREHOUSE_ID=41) loop
    x.myColumn .schemaValidate();
    end loop;
    end;
    The out put is:
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00011: internal error: LsxvPushCandidate array overflow
    ORA-06512: at "SYS.XMLTYPE", line 345
    ORA-06512: at line 3
    My i know more information about this error, especially
    LSX-00011: internal error: LsxvPushCandidate array overflow
    Thanks in advance
    Rizly

  • Is there any way to get the canvases names on the form

    i have a form in Orcle 6i
    i want when the form load i get the names of the Canvases on the Form automatically
    to change their visual attribute
    is there any way to get the name of the canvases on the form automatically
    Thanks in advance

    The amount of time to evaluate each item in a Form is a lot less than you think. You are dealing with milliseconds. Worse case scenario, you might add 1 second to your form load time.
    I think Francois's suggestion is the best solution, but if this is still too much time, you might concider creating strategic When-New-Item-Instance triggers on an item in each of your canvases that would perform what you want to do.
    This will most likely cause problems of its own, but it is an alternative.
    Food to get the thought process flowing... :-)
    Craig...

  • The data fields in a filled-out PDF form disappeared after a crash.  Is there any way to restore the lost entries?

    Adobe Reader crashed while I had a filled-out Adobe PDF form open.  When I reopened the file, I found that all of the data that had been entered into the form fields had disappeared.  Is there any way to restore the data that is missing?
    I note that the "Restore" command in the Adobe Reader file menu is not available (grayed out).
    Thanks for your time.

    Hi a2jc4life,
    maybe you can restore your deleted profile with this tool
    http://www.chip.de/downloads/FileRestorePlus_29645008.html

Maybe you are looking for

  • Help! no IDE detection

    Ok, i was installing a hardcano fan controller, and upon trying to boot to afterwards, i got a boot error. i tried reinstalling winxp from a CD and it said it couldn't format the drive due to it being damaged. i assumed it was just the hard disk had

  • IMAC + Graphic Design

    Are any professional graphic designers using the new Imacs. I graduated earlier this year and have been thinking about getting a mac for a while now. My PC just crapped out about a week ago, so it is definitely time to buy a new comp. I know that get

  • No Scanner available in Acrobat ver. 9.x or X

    Hello Community, recently I installed my new MFP Device "Koycera FS-C2126MFP+" (Color Print, Fax, Scan, Network + USB). I used the latest drivers from Kyocera website (KX Driver v6.0) for Windows 7 x64. Unfortunately my Acrobat 9.4 did not show the s

  • Can a WAR call methods in a 'Parent' jar?

    With oc4j, can I designate a jar containing ejb's (2.1) as a parent of a war file that has servlets which call methods on the ejb (via jndi lookup)? I want to accomplish this without an ear. I am considering migrating from JBoss and for some reason J

  • My phone crashed while updating how do I not lose everything.

    I was updating my IPhone 5 to the IOS7.1 and something happened. It told me to connect to iTunes when I did it told me that my phone is in recovery mode. It wants to restore my iPhone, but it says that it will reset to factory settings. I really do n