Dynamic images in Form Builder?

Any idea about including images dynamically?
An example: how to print a form with the photo of the involved employee?
Images could be available via http...
Thanks a lot

1. I've a requirement to display dynamic image in a Adobe form.
Could you please let me know how this can be done?
2. When I click on UPL field it says I need to create a connection to the
http://<app server>:8005/sap/bc/fp/.
How do I create this connection?
3. I don't have access to any documentatuin on designing Adobe form except the on-line help from the designer. Can you please suggest where can I get documentation about designing Adobe forms?

Similar Messages

  • Dynamic SQL in Form Builder 6.0

    Hai,
    I would like to know how to create Dynamic SQL in Form Builder 6.0. I'am using oracle 9i database...Please help me.....

    I studied the EXEC_SQL and i wrote these syntax(below), but it gives me error...Could you help me please......:
    PROCEDURE Dynamic_sql IS
    connection_id EXEC_SQL.CONNTYPE;
    cursorID EXEC_SQL.CURSTYPE;
    sql_string VARCHAR2(1000);
    v_pc varchar2 (4);
    v_pd varchar2 (30);
    v_poc varchar2(4);
    v_pvd DATE;
    v_pid DATE;
    exec_id PLS_INTEGER;
    out_file TEXT_IO.FILE_TYPE;
    linebuf varchar2(7000);
    vchFileName VARCHAR2(100);
    Vchfolder VARCHAR2(100);
    AppID      PLS_INTEGER;
    nmbAlert          varchar2(50);
    BEGIN
    SET_APPLICATION_PROPERTY(CURSOR_STYLE,'BUSY');
    vchFileName := 'dynamic_sql_'||sysdate||'.txt';
    Vchfolder := 'D:\KONS\Damar\';
    host('mkdir '||Vchfolder,NO_SCREEN);
    out_file := text_io.fopen(vchfolder||vchFileName,'w');
    TEXT_IO.PUT_LINE (out_file,'PRODUCT CODE PRODUCT DESC PRODUCT OBJECT CODE PRODUCT VALID DATE PRODUCT INVALID DATE ');
    connection_id := EXEC_SQL.OPEN_CONNECTION('FIFDBA/F1FDBA@REPL_DAILY');
    cursorID := EXEC_SQL.OPEN_CURSOR(connection_id);
    sql_string := 'SELECT PROD_CODE, PROD_DESC, PROD_OBJT_CODE, PROD_VALID_DATE, PROD_INVALID_DATE
    FROM HOUS_PRODUCT_TYPE ';
    EXEC_SQL.PARSE(connection_id, cursorID, sql_string, exec_sql.V7);
    --EXEC_SQL.BIND_VARIABLE(connection_id, cursorID, '', input_empno);
    EXEC_SQL.DEFINE_COLUMN(connection_id, cursorID, 1,v_pc, 4);
    EXEC_SQL.DEFINE_COLUMN(connection_id, cursorID, 2, v_pd, 30);
    EXEC_SQL.DEFINE_COLUMN(connection_id, cursorID, 3, v_poc, 4);
    EXEC_SQL.DEFINE_COLUMN(connection_id, cursorID, 4, v_pvd);
    EXEC_SQL.DEFINE_COLUMN(connection_id, cursorID, 5, v_pid);
    exec_id := EXEC_SQL.EXECUTE(connection_id, cursorID);
    WHILE (EXEC_SQL.FETCH_ROWS(connection_id, cursorID) > 0 ) LOOP
    EXEC_SQL.COLUMN_VALUE(connection_id, cursorID, 1, v_pc, 4);
    EXEC_SQL.COLUMN_VALUE(connection_id, cursorID, 2, v_pd);
    EXEC_SQL.COLUMN_VALUE(connection_id, cursorID, 3, v_poc);
    EXEC_SQL.COLUMN_VALUE(connection_id, cursorID, 4, v_pvd);
    EXEC_SQL.COLUMN_VALUE(connection_id, cursorID, 5, v_pid);
    TEXT_IO.PUT_LINE(out_file,v_pc || v_pd ||v_poc||v_pvd||v_pid);
    --Forms_DDL('INSERT INTO TEMP VALUES('||''''||nRows||' '||v_state_id||''''||')');
    --COMMIT_FORM();
    END LOOP;
    EXEC_SQL.CLOSE_CURSOR(connection_id, cursorID);
    EXEC_SQL.CLOSE_CONNECTION(connection_id);
    SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');
    TEXT_IO.FCLOSE(out_FILE);

  • Creating dynamic LOV in form builder 6i

    Hi All,
    I am new to form builder.
    I want to create dynamic lov, means
    Project type
    Client
    Work_type(thsi is also lov) ->> 1) Billable
    Reason (this is also lov) ->> 1) Billable
    Work_type(thsi is also lov) ->> 2) Non-Billable
    Reason (this is also lov) ->> 1) Fresher
    2) Project Manager
    As shown above, Suppose the project type is client then I will select either "Billable" or "Non-Billable" value.
    If I am selecting Work_type LOV as "Billable" then it should display "Billable" value in reason LOV
    or if I am selecting Non-Billable value from Work_type LOV then reason LOV will display the list of value as Fresher and Project Manager.
    Please help me, its very urgent.
    Thanks in advance.
    Regards,
    Bluetooth

    Bluetooth,
    This can be accomplished by creating two seperate record groups; one for Billable and one for Non-Billable. Then - in the WORK_TYPE When-Validate-Item (WVI)trigger - when the value is "Billable" you assign the Billable Record Group to your LOV or if the value is Non-Billable, then you assign the Non-Billable record group to your LOV. Your Record Group queries must return the same number of columns and the column names must match. If your record groups need to have a different number of columns and column names, then I would just use two seperate LOV's and assign them to the item accordingly. For example:
    /* Sample WVI trigger */
    DECLARE
      lov_id    LOV;
      item_id   ITEM;
    BEGIN
      lov_id := Find_LOV('YOUR_LOV_NAME');
      /* Option 1: Change Record Group of LOV */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'BILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'BILLABLE_RG');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_LOV_Property(lov_id, GROUP_NAME) != 'NONBILLABLE_RG' ) THEN
          Set_LOV_Property(lov_id, GROUP_NAME, 'NONBILLABLE_RG');
        END IF;
      END IF;
      item_id := Find_Item('YOUR_BLOCK.REASON');
      /* Option 2: Seperate LOV's */
      IF ( :YOUR_BLOCK.WORK_TYPE = 'BILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'BILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'BILLABLE_LOV');
        END IF;
      ELSIF ( :YOUR_BLOCK.WORK_TYPE = 'NONBILLABLE' ) THEN
        IF ( Get_Item_Property(item_id, LOV_NAME) != 'NONBILLABLE_LOV' ) THEN
          Set_Item_Property(item_id, LOV_NAME, 'NONBILLABLE_LOV');
        END IF;
      END IF;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Problem with dynamic query in Forms Builder

    Hi,
    I need in forms builder cursor in procedure which parameter is a whole query. But i stuck when i wanna give some text in signs '' to procedure.
    I wanna give like test('select ' ||'test' || ' from dual');
    But this is not good beacuse it is missing ''.
    Query which procedure get is select test from dual.
    The right sql would be select 'test' from dual.
    How could i pass signs '' to procedure.
    Any ideas.
    Thanks in advance.

    test('select ''' ||'test' || ''' from dual');Francois

  • Dynamic image in the template builder plug-in does not work

    Hi all,
    The documentation says:
    Direct Insertion
    Insert the jpg, gif, or png image directly in your template.
    +...This works obviously+
    URL Reference
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter: url:{'http://www.oracle.com/images/ora_log.gif'}
    +...This works too when I hardcode an url as url:{'http://www.google.com.tr/images/firefox/mobiledownload.png'}+
    Element Reference from XML File
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{IMAGE_LOCATION}
    where IMAGE_LOCATION is an element from your XML file that holds the full URL to the image.
    +...This, however, does not work.+
    I use Apex' report query tool and My query is like
    select 'http://www.google.com.tr/images/firefox/mobiledownload.png' IMAGE_LOCATION from ... (a single result set for my template)
    the xml data is generated with an IMAGE_LOCATION tag. I load it to word template plug-in. The Url successfully displays in the report if I make it a plain-simple field.
    But when it's in the image format->web->alt text as url:{IMAGE_LOCATION} no image displayed.
    I need to keep this design procedure simple so a simple word user could design a report via using just template builder plug-in. I don't wish to explore the xsl-fo area...yet.
    Could you tell me why I can't get this url:{IMAGE_LOCATION} to work?
    Regards
    PS: My BI version: 10.1.3.4.1
    Edited by: oeren on Jun 8, 2011 12:28 AM

    Oeren,
    I stumbled across this little tidbit buried in the BI Publisher forum: Dynamic Images in rtf
    Glad you are up and running!
    Joshua

  • Dynamic image in table  in adobe PDF form

    Hi experts
                    I have been using a table in interactive form . In table
    I have a image field in which I want to insert employee pic which is comming in table as a URL . I have craeted a image field and attached tha table field to it but its not displaying it .
    Do any one have any other solution to get dynamic image ( which is comming from R-3 ) in table
    Regards
    Abhay

    Hi,abhay
    Use something like this:
    String url = WDURLGenerator.getAbsoluteWebResourceURL
    (wdComponentAPI.getDeployableObjectPart(),"sap_travel_request.jpg");
    wdContext.currentDataSourceElement().setSapTravelRequestUrl(url);
    where SapTravelRequestUrl is context attribute of type String,that is binded to your
    ImageField element.
    Regards,
    Michael

  • Populating dynamic values in the combobox with XML form Builder.

    I am trying to  populate dynamic value in the combobox with xml form builder. I  see the document saying create property group and document property Id with respecitive values.  I am able to create the property group with system admin -> System config
    -> KM -> CM -> Global services  -> property Metadata -> groups  with new button. and I  am trying to create document property Id with value. I am not able to find the way to give  value in the property.   I am using  EP 7.0 Sp 14.  Please let me know how to sovel it

    Hi
    You can create new property metadata with System Admin > System Config > KM > CM > Global services > Property Metadata > Properties > New. Specify the values for this metadata as the ones you need to have in the combo box. Use allowed values parameter of the matadata to sepcify the values. Each metadata property will have unique property ID and you can map this property ID to your combo box in xml forms.
    Give it a try.
    Regards,
    Yoga

  • Insert image to atable in forms builder

    hi everybody
    suppose this situation
    there is a database table in forms builder
    the first column is the name of the medicine and the second is the medicine image
    -- i want the user to insert an image from the hard disk or anywhere
    when he attempt to insert anew medicine in the table
    please help if u can
    regards

    Hi Semsem,
    Please look into the below link
    Insert Picture (image) using oracle forms
    Insert Picture (image) using oracle forms
    Thanks,
    Balaji K.

  • Dynamic Image (.gif) from URL into adobe Form by SFP

    Hi all
    I post the comment of Shamila because I have the same problem
    I need to place an image in the Adobe form based on the url.
    I have written the following formcalc script in the image field form ready action
    ImageField1.value.image.href = "http://www.adobe.com/imageshome/pdfgift_home.gif"
    But when i view the form , the image field is empty, and when i click on the blank space of the image field, a popup appears to select the image............
    How can i show the image from url in the form..........
    Regards,

    Hello,
    have you checked these basics documents?
    When you need to send a picture into the offline form: another image question - using Regular ABAP not web dynpro and Display a logo dynamically in adobe form
    Where to start with scripting: http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_basics.pdf
    http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf
    Also try: Re: Dynamic R/3 Image URL in Adoeb Form
    regards, Otto

  • Adobe Forms and Dynamic Images

    Hi all,
    I have a table in my Interactive Form and I need to add a dynamic image for each row of this table according with the URL field of my node, so i've done the steps of the tutorial "Dynamic Non-Interactive PDF Form", adding a image field, setting none for default binding, setting the url field as $record.Images[*].URL and then, adding the following FormCalc expression to initialize the image: this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Well, my node Images return 3 records and when I run the app, the following message returns:
    Script failed (language is formcalc; context is xfa[0].form[0].dataSource[0].Images[0].subImageTable[0].subImageRow[0].imageField[0])
    script=this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Error: SOM Expression returned list when single result was expected
    Script failed (language is formcalc; context is xfa[0].form[0].dataSource[0].Images[0].subImageTable[0].subImageRow[1].imageField[0])
    script=this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Error: SOM Expression returned list when single result was expected
    Script failed (language is formcalc; context is xfa[0].form[0].dataSource[0].Images[0].subImageTable[0].subImageRow[2].imageField[0])
    script=this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Error: SOM Expression returned list when single result was expected
    So, anyone here knows how to add a dynamic image to a table row?
    Thanks in advance
    []'s

    I solved it now, just changing the FormCalc expression.
    Instead of using the expression:
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    I used this:
    this.value.image.href = xfa.record.Images.URL;
    The URL value of Image Field, in this case is:
    <b>$record.Images[*].URL</b>
    And, to finish, I needed to add a Text Field bounded to  <b>$record.Imagens[*].URL</b>, case else the image doesn't appear.
    That's it!

  • Button to load dynamic image in interactive form webdynpro for java

    Hi all
    i tried to use image field to load dynamic image as shown in the online interactive form tutorial
    and it worked for test but when try it with view appears inside viewset it doesnt....
    so i think if we could call the image after render by pressing a button inside the form it may work
    but the problem is i have no idea about how to implement such solution ,so if any one has any idea about how to implement such solution i will be thankful if he can share me the solution.
    thanks.....
    Naguib..

    use the following tutorial. it is very easy to follow and it works fine, i have tried that.
    http://www.docstoc.com/docs/2540673/How-To-Integrate-ADOBE-form-on-WebdynPro-for-ABAP-and-Deploy-it-
    in case of some more problems, ask again and point out the part of tutorial where there is a problem.

  • A Dynamic Form Builder?

    I'm trying to avoid having to program a dynamic form builder
    from scratch for our CMS. I'm sure it's out there somewhere. Any
    leads?
    Thanks!
    Paul

    Yee I like reading other posts (is the best way to learn things sometimes), but also get afraid to make a new post :)
    I did what you (MLRon) and bsampieri told me, and I must say that was easy :) so thanks.
    I would just like an advice. (I am sorry to always compare with C# but I have using it latly and don't know how to explain myself). In C# you can create an attribute Tag on each method. This becomes like the Meta Data of the class from what I read. Now Is there anything like that in Java as well? Not actuall atributes, but meta data, or I would have to build that myself?
    I am asking the above because imagine the getText() method returns a string. A string graphic wise can be displayed either in a JTextField or a JTextArea (according to wether a multi line is wanted). The same goes for a boolean. It can be presented either by a check box, or else by two radio buttons.

  • NO image on iconic button in Forms Builder

    Hello,
    I'm using Oracle Forms [32 Bit] Version 9.0.4.0.19.
    When I open any .fmb file I dont see any image on iconic buttons.
    All my .gif files are in .jar
    Is there any way to fix that?

    The Builder cannot read jar files. Also, only gif, jpg, and ico files are supported for the 9.0.4 and newer Builder. In order to have the Builder find them, you need to set the following environment variables (usually in the Registry):
    UI_ICON=<some path to the images>
    UI_ICON_EXTENSION=<the file format extension - like gif>
    Note that this only applies to seeing the images in the Builder Layout Editor and has nothing to do with a running form.
    Ref.
    Note 251767.1

  • Dynamic Form Building

    Hello,
    I did some tought on how to build a dynamic form builder, and would also like to know what you people think. I did a search with google, but could not find much.
    What i tought so far is that my dynamic form builder should build a form for a class containing only data in it. This would mean that the class has only get/set methods. Now the get method would return either string, int, etc.
    Now Does anyone know how I can know all the methods in a class? I am sure it exsists in Java (coz I found it in C#)
    and also do you believe it is possible? I tought about this because I wanted my application data to have always a standard interface wether the user is viewing the data from his pc, and applet, or anywere else!
    all your toughts, advices & insults are widly appreciated :)

    Yee I like reading other posts (is the best way to learn things sometimes), but also get afraid to make a new post :)
    I did what you (MLRon) and bsampieri told me, and I must say that was easy :) so thanks.
    I would just like an advice. (I am sorry to always compare with C# but I have using it latly and don't know how to explain myself). In C# you can create an attribute Tag on each method. This becomes like the Meta Data of the class from what I read. Now Is there anything like that in Java as well? Not actuall atributes, but meta data, or I would have to build that myself?
    I am asking the above because imagine the getText() method returns a string. A string graphic wise can be displayed either in a JTextField or a JTextArea (according to wether a multi line is wanted). The same goes for a boolean. It can be presented either by a check box, or else by two radio buttons.

  • Dynamic form search in form builder

    Hello folks, I am relatively new to form builder, only a few months of experience, and here is the problem that I am having.
    I have this table, table1, with columns A,B,C,D..etc, I want to set up the search page in the following fashion:
    - One text field for every column of the table
    - The user can fill some of these text field, and leave others empty.
    - the form should only search for the columns in the text fields that are not empty, for example, if I leave the text field corresponding to A empty, then I can search for any value of A.
    - the result of the search is displayed in an LOV.
    I have read around and I found it to be something like that in the LOV query:
    SELECT *
    FROM table1
    WHERE
    (:block.A_text_field IS NULL OR table1.A = :block.A_text_field) and
    (:block.A_text_field IS NULL OR table1.A = :block.A_text_field) and etc for all columns...
    Or maybe this:
    SELECT *
    FROM table1
    WHERE (A = :block.A_text_field AND :block.A_text_field IS NOT NULL) OR
    (B = :block.B_text_field AND :block.B_text_field IS NOT NULL)OR etc for all columns....
    I haven't tested these two sample codes, because the server is closed currently, but would they work knowing my requirement? Would this query search for any value of B if the B_text_field was left empty? eg. user types 55 in A_text_field and leaves B_text_field empty; would it generate an LOV that shows A=55 and B any value?

    well to my mind this where clause
    (:block.A_text_field IS NULL OR table1.A = :block.A_text_field) and
    (:block.B_text_field IS NULL OR table1.B = :block.B_text_field) and [...]returns:
    if A_TEXT_FIELD is entered, then the column A column has to be exact the value of A_TEXT_FIELD (:block.A_TEXT_FIELD = table1.A) else if it there isn't any value entered there is no limitation for table1.A (:block.A_TEXT_FIELD is null with OR condition).
    When entering A_TEXT_FIELD and B_TEXT_FIELD, both limitations have to be fulfilled (if only B_TEXT_FIELD is entered just the B_TEXT_FIELD condition has to be fulfilled of course).
    When you don't enter any conditions in your textfields, you get all records from the table
    whereas the second construct won't return anything if you don't enter some data in your text fields.
    guess this:
    :block.a_text_field is null and :block.b_text_field is null, so this would be:
    (A = NULL and NULL IS NOT NULL) --this is false
    OR (B = NULL and NULL IS NOT NULL) -- this is also falseyou can simply check this by issuing the following query in SQL*Plus or something:
    CRONET@tcp_asterix_impl> select 1 from dual where 1 = null and null is not null;
    no rows selected
    CRONET@tcp_asterix_impl>So I believe the first condition does the thing you want.
    regards

Maybe you are looking for

  • When display switches off I can't get it back without forced restart

    When display switches off due to low battery power & I can't get it back even when I plug in to the mains and have to force the PC to restart. Is there a pref somewhere to disable this?

  • Link between classes: Reference Error

    Hi, I am still trying to create a movie clip array to make a list of objects appear on stage and have the user interact with them. This will be my game loop class called "LetterArray()". My main class is called "BugGoopFSGame()". After I add the line

  • Plz tell me wht is error in  code.its showing illegal start of expression

    import java.awt.*; import java.awt.event.*; import java.awt.image.*; class Image01 extends Frame{ //controlling class   Image rawImage;    //ref to raw image file fetched from disk   Image modImage;      //ref to modified image   int rawWidth;   int

  • Install Panther "Install Mac OS X" will not launch

    I backed up all data on the disk erased and zeroed out and partioned disk. I did this from a seperate HD. Booting from a seperate HD running 10.4.8, using the original Panther disks ( don't ask why im reinstalling Panther) i double click the "Install

  • External URL in Gateway Space

    I have a portlet that does a Response.Redirect to another address within our domain. However, when the user accesses it. It is not in the Gateway space. How can I add this URL so that it resides in the Gateway Space?