AV Scripts, Free form docs, Breakdown reports and more...

Hi there,
We've posted an update to Adobe Story that includes exciting features like AV Scripts, Free form documents, and Breakdown reports among other things.
Check out the latest release notes to know more.
- Adobe Story team

This is a very very nice update, especially all the breakdown reports that I was missing badly.

Similar Messages

  • SQLDeveloper tool script execution aborts with Error report: No more data to read from socket

    Hello,
    Strange behaviour of  the SQLdeveloper tool while executing script with typical DDLs like:
    Create Table,
    Alter Table
    Create Trigger ( use of :new and : old attributes in tehe body of trigger ).
    Insert Into....
    Scripts works ok from time to time.
    But sometimes coincidentally aborts with the error :
    Error report:
    No more data to read from socket
    Do not understand where is the problem.
    Scripts works ok when executed in SQL*Plus on server ( where Oracle RDBMS resides ).
    The version of SQLDeveloper is
    Version 3.2.20.09 Build MAIN-09.87
    The version of RDBMS is  11.2.0.2.0 .
    Thanx for any reference or direction or hint for upgrade or experience.
    Greetings,

    Welcome to the forum!
    Please provide the 4 digit Oracle version (result of SELECT * FROM V$VERSION) for the source and target servers; 10g and 11g are not versions. You also mention sql developer so what is the exact version you are using?
    >
    If delete the "OF out_a.ALLOCATION_ID" of the for update clause of CURSOR exist_allocation, this prolbem will not happen, and the code is comple succesfully on sql developer for oracle 10g.
    >
    Please clarify what works and what doesn't work because your statements are both incorrect and misleading.
    You can't delete the "OF out_a.ALLOCATION_ID" of the for update clause or you would get a syntax error by leaving FOR UPDATE OF with nothing specified after it.
    Also you original statement said
    >
    But when compile a package which is fine on oracle 10g
    >
    But now you say that if you delete the "OF..." the problem doesn't happen and the code compiles on 10g.
    Does the original code compile on 10g or not? Does it compile on 11g or not? After the original code is migrated to 11g does it compile? That is, the code is there can you manually compile it?

  • XML Forms Builder complete Documentation and more

    Hi,
    I have several questions to the XML-Forms-Builder (XML-FB):
    1)
    I am searching for a really complete documentation of the XML-FB. I know the "how to create xml forms - PDF", the "help.sap.com", this forum,...., but i don't find one complete documentation. For example i miss the description of really all controls AND whose properties.
    2)
    Can I await any changing/enhancement between NW 2004 SP16 (my active Release) and NW 2004s SPx - with focus to the XML-FB?
    3)
    Is it possible to create forms witch allows <u>the author</u> to choose the placement of controls - for example images in the left, right, middle of the page - maybe via select/assign the corresponding form (-> maybe via using control-selector)? This means more individual flexibility for the author.
    I am searching for a solution without programming a proprietary solution, only customizing !
    okay, that's all, up to now
    Thanks for your patience
    Hermann

    Hi Herrmann,
    1.) There is no. Some features have been added more or less silently within the last year, but a central doc hasn't been published.
    2.) All I know is: Not much. Maybe the Forms Builder developer at SAP reads this and could throw a somewhat more detailed answer.
    3.) We have developed this as a small part of easyWCM; when creating the XML form, you can define not only 1 ShowForm, but different; the author then can choose which form to use. We provide such pre-defined forms within the BP.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Report and more summary value

    I need to build a report to show per each product (obj_id) number of sales ( a
    simple COUNT will do), total income
    from the sales and number of units sold
    (quantity). The following works OK, but I use DISTINCT and don't feel
    comfortable
    with future performance.
    WITH myMainTable AS
    (SELECT 1 AS obj_id, 'A'
    AS obj_desc
    UNION ALL
    SELECT 2,'B'
    UNION ALL
    SELECT 3,'C'
    UNION
    ALL
    SELECT 4,'D'
    UNION ALL
    SELECT 5,'E'
    UNION ALL
    SELECT
    6,'F'),
    myDataTable AS (
    SELECT 1 AS obj_id,
    3 AS qnty,
    45 AS
    total_price
    UNION ALL
    SELECT 1,4,87
    UNION ALL
    SELECT
    1,1,10
    UNION ALL
    SELECT 1,40,751
    UNION ALL
    SELECT 2,10,8
    UNION
    ALL
    SELECT 2,100,87
    UNION ALL
    SELECT 3,6,9)
    SELECT DISTINCT
    m.obj_id,
    m.obj_desc,
    SUM (d.total_price) OVER (PARTITION BY m.obj_id)
    AS total_income,
    SUM (d.qnty) OVER (PARTITION BY m.obj_id) AS
    total_qnty,
    COUNT(d.obj_id) OVER (PARTITION BY m.obj_id) AS
    total_sales
    FROM myMainTable m
    JOIN myDataTable d
    ON d.obj_id =
    m.obj_id

    Try
    SELECT m.obj_id,
    m.obj_desc,
    SUM (d.total_price)
    as total_income,
    SUM (d.qnty) 
    AS total_qnty,
    COUNT(d.obj_id) 
    AS total_sales
    FROM myMainTable m
    JOIN myDataTable d
    ON d.obj_id = m.obj_id
    group by m.obj_id, m.obj_desc
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • Calling and manipulating data on an Interactive Adobe form from ABAP report

    Dear All,
    Can you please tell me how to call an interactive adobe from from a custom adobe form?
    If so how can we pass and receive data between the interactive adobe form and the abap report program?
    Thank you.
    Regards,
    Prosenjit.

    Hi,
    It is possible to call an Interactive Adobe form from ABAP report and pass data into the form. If you search the forum, you will get many threads explaining the process. Let me know if you have any specific questions on this.
    Regards,
    Sanoosh

  • Pass a parameter from a report to a customization form of another report

    Hello,
    I want to pass a parameter value from a report to the customization form of another report and display it in the text field in the customization form as a default value. I have 2 variables in the customization form and in one of them, I would like to display the default value from a previous report.
    Thank you
    Jayasree

    1. go to the manage component screen of the report
    2. open the package body (pl/sql source)
    3. search for 'procedure show_parms'
    4. scroll down till you find
    -- call to parameter form rendering engine
    5. copy the procedure call below it
    a) you will have to pass <PORTAL_SCHEMA>.wwv_utlglobl.RUN_AS_NORMAL to p_mode
    b) remove the parameters p_reference_path, p_redirect_url, p_exec_mode, p_page_url ( or you can pass null to them)
    c) 'p_parm_names' will contain your 2 parameters
    d) you can pass values to 'p_parm_values' which you want to be displayed in the parameter forms.
    6. you can call this procedure from a dynamic page and link the dynamic page to your first report

  • Cannot add popup LOV to existing update form for interactive report

    I have a requirement to add a popup LOV to an existing interactive report with an update form in apex 4.0.2.00.07. I have an insert form as well form the interactive report and was able to add the shared LOV as a popup correctly (so the issue isn't with the popup LOV definition). However, when I add the popup LOV to the update form, the field does not show up when I run the application. There currently isn't any data in that column of the table in the db (I'm adding the field so that users can update the data with the LOV return ID). Is there something I should look for that is keeping the field from showing on the screen that i have to check or uncheck?
    Edited by: user11201107 on Apr 5, 2011 1:46 PM

    Either write a classic report and implement your own filters, and use those on your update function, or try to retrieve the where clause Apex uses in the IR.
    This blog from Stew should help you on your way:
    http://stewstools.wordpress.com/2009/02/19/get-ir-where-clause/

  • I need a doc link to connect 11g forms report and ODI ODQ software

    hi
    i need a doc link to connect and install 11g forms report and ODI ODQ software with 11gR2.
    oracle forms/report 11g server is need to be installed on oel 5.6 64b box and My DB is on different home PC with OEL 5.6.
    The ODI DQ sofware need to be installed on local client win xp PC.
    ofm_odidq_win_11.1.1.3.0_32_disk1_1of1
    ofm_odi_win_11.1.1.3.0_32_disk1_1of1_2
    ofm_pfrd_linux_11.1.1.2.0_64_disk3_1of1.zip
    ofm_pfrd_linux_11.1.1.2.0_64_disk2_1of1.zip
    ofm_pfrd_linux_11.1.1.2.0_64_disk4_1of1.zip
    please also suggest if anything to download.
    kind regards
    may be SWINM may think it may be appropriate forum.but my primary requirement is doc link.

    schavali wrote:
    SQLPL/SQLSYSAPPSDBATE0-121(EBZ11,R12)HPEVA1152046c wrote:
    cjmurray wrote:
    I asked one of the Oracle Data Quality (ODQ) writers, who provided this information:
    The documentation can be found here:
    * http://www.oracle.com/technetwork/middleware/data-integration/index-082810.html (Products page with Getting Started docs and sample files)
    * http://download.oracle.com/docs/cd/E15985_01/doc.10136/tutorial/ODQTG.pdf (Oracle Data Quality Tutorial)
    * http://download.oracle.com/docs/cd/E14571_01/integrate.1111/e12643/orcl_data_qual.htm#CHDHAADF (Chapter "Working with ODQ Products" of the ODI Dev guide)
    thx but i am finding hard to find frms report developer guide too.Which version of forms ?check the dled files.its 11.1 hopefully.
    >
    Forms 11g and 10g - http://www.oracle.com/technetwork/developer-tools/forms/documentation/10g-forms-091309.html
    Srini

  • Help in Installing Oracle Portal,Forms,Reports and Discoverer(11.1.1.2.0)

    Hi,
    I am trying to install Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Linux x86-64.
    I have installed weblogic 10.3.5 generic jar file.
    When i try to install forms and reports server the configuration step fails while creating weblogic domain.
    Please help me installing portal and reports.
    Is there any patch i am missing or the weblogic version is incorrect?
    Thanks.

    You cannot configure Fmw 11.1.1.2 against WLS 10.3.5. They are not supported nor compatible.
    If you want to use WLS 10.3.5, you need to "install" 11.1.1.2, but do not configure. That is an installation option. After you have successfully installed 11.1.1.2 you will need to patch it to 11.1.1.6. After patching, you then can run the configuration (config.bat).
    http://docs.oracle.com/cd/E23943_01/install.1111/e10421/install.htm#CLINS256
    Version 11 is far more complex than previous versions. I strongly encourage everyone to review the product documentation before trying to install. You can also refer to the following MyOracleSupport note:
    Steps to Maintain Oracle Fusion Middleware 11g Release 1 (11.1.1) (Doc ID 1073776.1)

  • How to deploy Forms, Reports and Menu from Client to Server machine

    Dear Experts,
    I have one requirement to deploy the Forms, Reports and Menu from client machine to server machine.
    Deployment involves the following steps :
    1. Firstly we have to search the selected file in a folder where the .fmx is present ( in Server machine) and take the back up of the the existing file in the server (Source and destination paths will be available).
         Ex. If the existing FMB name is TEST.fmx then the backup file should be TEST_sysdate.fmx.
    2. Secondly we have to transfer the file from the client folder (or from another folder of the same server) to the server folder where the back up exists.
    Please help me to search/rename/copy/replace the _.fmx/.rdf/.rep/.mmx_ files from client to server.
    We are using
    9i Database.
    10g Forms and reports.
    SQL Developer tool.
    OS is Windows (Client and Server).
    Help me out to attach a file of front end screen which we are planning to develop. It will give a clear picture on this requirement.
    Thanks :)
    Edited by: 941175 on Jun 17, 2012 9:09 AM
    Edited by: 941175 on Jun 17, 2012 9:12 AM
    Edited by: 941175 on Jun 17, 2012 9:14 AM

    941175
    Welcome to the forum. Please take a while to go through the FAQ to be found to the top right of the page.
    Your issue is more to do with batch files rather than Forms. The only relation with Forms, as I see it, is that you will be using HOST/CLIENT_HOST to start a batch file with the file name to be deployed as a parameter passed to it.
    You need to rewrite either a CMD batch file or a Powershell script to achieve what have set out to do.
    For CMD batch files look up http://www.robvanderwoude.com/battech.php , or any of the other excellent resources available on the internet.
    Regards,

  • Best solution to convert DOC to over 1000 form-fillable PDF's and apply Javascript

    I need to convert over 1000 MS Word docs to PDF, and make forms interactive with the following JavaScript or other scripting needs:
    40-50 fields per form, link to db connection (SQL)
    command buttons to Add New (new record to db), Update (existing record based on field value), Submit (submit saved pdf file to SharePoint site-must create directory based on field name; save file as field name
    form fields should be clear on open
    I know this is a tall order, but if I could get some direction on code examples, that would be greatly appreciated.
    I have created a db connection and coded to add new record, update record and save file to local directory based on hard coded path, but I need more dynamics on creating network path, filename using Sharepoint

    I would suggest using Acrobat Pro, but Acrobat Standard 9 now includes forms creation capabilities, including adding usage rights. Acrobat can automate the form field creation process by attempting to recognize where form fields would go. You will probably have to make some corrections, but it can help speed up the process.
    Adding a submit button is a simple matter, though submitting via email is often not highly reliable and is generally not secure. Consider setting up the form to submit to a web server for a much more reliable and secure system.
    If you will be including the entire PDF as an attachment to an email, you will need to enable usage rights (i.e., Reader-enable) for each form if it has to work for Reader users. Reader is not normally able to save a modified document, but it can if usage rights are applied.
    If you apply usage rights with Acrobat, you need to be aware of the relevant licensing restrictions. In short, if you will be deploying the form to more than 500 recipients, you may only use information from no more than 500 returned forms, including hardcopies. If fewer than 500 recipients, there are no limits.
    An alternative to emailing the entire document is emailing just the form data, which does not require usage rights. The recipient can use Acrobat to import the form data into a blank form and then save/print.
    George

  • Report and script

    what is the difference between report and script

    Hi chaitanya, this will help u.
    Script is a form which has a layout set as per the company standards and can be used for external use too. Generally reports are designed for internal use for in house users
    Scripts are client dependent. / Reports are client Independent.
    SAP scripts is a word processing tool of SAP which has the following components: Standard text. It is like a standard normal documents. Layout sets. - Layout set consists of the following components: Windows and pages, Paragraph formats, Character formats. Creating forms in the R/3 system. Every layout set consists of Header, paragraph, and character string. ABAP/4 program.
    You create executable programs directly using the tool called ABAP Editor. Executable programs can contain all processing blocks supported in ABAP, with the exception of function modules, and as many local classes as required. Executable programs are only started with the SUBMIT statement. Although NetWeaver AS ABAP offers several ways to call executable programs by entering their name on the screen, the system still executes the SUBMIT statement in the background.
    It is not necessary to control executable programs directly using self-defined screens since the relevant processors of the runtime environment call the processing blocks and screens (selection screens and lists) automatically and in a predefined sequence. The process flow allows the user to enter selection parameters on a selection screen. The data is then selected from the database and processed. Finally, an output list is displayed. At no stage does the programmer have to define his or her own screens. User actions on screens can then trigger further processing blocks.
    The runtime environment also allows you to work with a logical database, that is, with a special ABAP program for reading data from database tables. The flow of an executable program is oriented towards reporting (whose main tasks are to read data from the database, process it, and display the results). This is why executable programs are often referred to as reports, and why running an executable program is often called reporting (see Report Programming). Analogously, the source code of an executable program starts with the REPORTstatement.
    pls reward if helpful.
    with cheers,
    Hema.

  • Book for reports and forms

    Could any suggest a very good book for Oracle reports and forms which has all the details of the reports and forms from the fundamentals?

    Oracle tutorial..
    Although the first two of the following links are for older Forms versions, the concepts are still valid across all Forms versions.
    A Tutorial on Oracle9i Forms and Reports
    iSelfSchooling - Basic Introduction to Forms
    Oracle Forms 10g: Demos, Tips and Techniques
    http://www.dotnetspider.com/resources/22433-Triggers.aspx---Different Trigger types
    http://sheikyerbouti.developpez.com/index_en/
    http://www.slideshare.net/magupta26/oracle-forms-tutorial
    http://www2.cs.uh.edu/~ceick/3480/Customized_Oracle_Forms.pdf ---Creating Customized Oracle Forms
    http://www.youtube.com/watch?v=0BBiHvHzPYE -- video
    Hope this helps,
    Oracle Reports Tutorial...
    Here few link...
    1. http://docs.oracle.com/html/B14364_01/title.htm
    2. http://www.scribd.com/doc/3960412/Basic2-Oracle-Reports-10g-Tutorials
    Video Tutorial
    http://www.youtube.com/watch?v=Fum3MJm5yKU
    Hope this helps
    If someone's response is helpful or correct, please mark it accordingly.

  • Importing Reports and Forms from Oracle to Portals

    Hi,
    I have read somewhere that it is possible to import all ready created reports and forms from Oracle and view them as a Portlet in Portals. Is this actually possible and if so where do I begin??
    Could there be an issue with rights, this is all new to our DBA and we have only just got permission to publish forms created in Portals to the repository. Any ideas??

    941175
    Welcome to the forum. Please take a while to go through the FAQ to be found to the top right of the page.
    Your issue is more to do with batch files rather than Forms. The only relation with Forms, as I see it, is that you will be using HOST/CLIENT_HOST to start a batch file with the file name to be deployed as a parameter passed to it.
    You need to rewrite either a CMD batch file or a Powershell script to achieve what have set out to do.
    For CMD batch files look up http://www.robvanderwoude.com/battech.php , or any of the other excellent resources available on the internet.
    Regards,

  • Which modules of oracle apps have reports and forms?

    which modules of oracle apps have reports and forms? Do I need to have strong programming knowledge to learn these?
    Plz try to respond as I need to get started with the traiining asap.

    Most of Oracle Apps modules come with reports and forms. You would probably need to create your custom module (with custom forms/reports) instead of modifying the standard Oracle Apps forms and reports. Start with "Oracle Applications Developer's Guide" and "Oracle Applications Concepts" manuals, it should be helpful.
    Oracle Applications Concepts
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/11iconcepts.pdf
    Oracle Applications Developer's Guide
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115devg.pdf
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html

Maybe you are looking for