How to add an image for the new form?

I created a new form,and I want to add an [image] to the toolbar in the new form.How to add [image] for a form?
Like:
[image] File Edit Tool Help
My Form
Thanks in advance!

Thank you!
Maybe the message I sent yesterday have some mistakes.
Form version 12.0.5.1
I want it this way:
How to add [image]?
[image] Manager Maintenance
Browser Open Save Help
-- My Form --
-----------------------------------------------------------------------------

Similar Messages

  • How to add Custom Image for the Workset Map Pictogram property

    Hello Everybody,
                     Can anyone suggest where should i put a custom image so that i can select it in the Workset Map Pictogram Property of an Iview. I have already uploaded a gif image in root->etc->public->mimes->images->pictograms in KM but still i am not able to see the uploaded image in Iview property. Looking forward for a quick solution.
    Thanks in advance,
    Regards,
    Sarabjeet Singh.

    Hello Nicolas,
    just stumbled accross the topic. Well, if the portal service is
    ".../j2ee/cluster/server0/apps/sap. com/irj/servlet_jsp/irj/root/portalapps/com.sap.portal.navigation.mimeservice" as discussed above.
    I have found the .gifs inside this par file of my NW7.0 Portal:
    \j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd\com.sap.portal.navigation.mimeservice.par.bak
    Hope this is still interesting for someone.
    Regs
    Ulf

  • How long does it take for the new ios to load?

    how long does it take for the new ios to load?

    you mean to install it or to run after instalation?
    downloading takes from a half hour, up to 2 hours if your connection is poor.
    installing takes about 5 minutes.
    and running it is like a minute.

  • How to provide security settings for the adobe form using livecycleDesigner

    Hello,
    I am very new to form designing,
    can any one please tell me how to provide security settings for the adobe forms at client side?
    Regards,
    Menaka

    Hi,
    that is a good topic for the ADFS forum.
    ADFS forum - http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
    But you could pass the user-agent as incoming claim type Client User agent. User-agents can be manipulated, so if that is an issue you can look into Device Registration and the Device OS type from there. That is also a incoming claim but requires DRS and
    DRS is not available for all plattforms.
    Hth,
    Lutz

  • How to add a image in the DocSign example

    Hi,
    I am struggling to add a image to the DocSign example instead of text. If somebody could give me a few hints it would be much appretiated.
    I am currently modifying the CreateN2XObject function.
    My situation is as follows:
    I am drawing a image using the wxWidget library. From this a save the raw pixel data to a file. The pixel data is an array of unsigned chars where the first RGB triplet corresponds to the pixel first pixel of the first row, the second one to the second pixel of the first row and so on until the end of the first row; and so on...
    In the CreateN2XObject I create an ASStm to read this file.
    I create an attribute dictionary for this image
    And then a new cos stream from the ASStm and dictionary
    When I return from the function the plugin says that it is successfully signed, but I see nothing on the screen.
    When I open the 'signed' document in a text editor I see:
    <</Subtype/Form/Length 16038/Name/PROS/BitsPerComponent 8/Matrix[1.00011 0.0 0.0 1.00011 0.0000305176 0.0000305176]/ColorSpace/DeviceRGB/Width 54/Height 99/Type/XObject/BBox[0 76 238 0]/FormType 1>>stream
    the data in the file
    endstream
    Below is the code I use to make the image i.e. CreateN2XObject:
         DSAPXObjEntryRec signRec;
         memset(&signRec, 0, sizeof(DSAPXObjEntryRec));
         signRec.rect = *pBBoxRec;
         signRec.bDestroy = true;
         AVDevRect rcDev = { (int)ASFixedToFloat(pBBoxRec->left), (int)ASFixedToFloat(pBBoxRec->top), (int)ASFixedToFloat(pBBoxRec->right), (int)ASFixedToFloat(pBBoxRec->bottom) };
         const char* baseDirectory = "C:/temp/data";
         ASPathName exampleFilePathName = ASPathFromPlatformPath ((char*)baseDirectory);
         ASFile theFile;
         ASInt32 retVal = ASFileSysOpenFile(NULL,exampleFilePathName, ASFILE_READ, &theFile);
         int len = 16038;
         ASStm inStm = ASFileStmRdOpen(theFile,len);
         char tmpsize[255];
         sprintf(tmpsize,"%d",len);
         AVAlertNote("tmpsize");
         AVAlertNote(tmpsize);
         //sprintf_s(buf, 125, "1 0 0 RG %i %i m %i %i l S", rcDev.left, rcDev.top, rcDev.right, rcDev.bottom);
         //ASArraySize len = strlen(buf);
         //int len = 19758;
         //ASStm inStm = ASMemStmRdOpen(buf, len);
         CosObj attrDict = CosNewDict(cosDoc, false, 1);
         CosDictPutKeyString(attrDict, "Type", CosNewNameFromString(cosDoc, false, "XObject"));
         CosDictPutKeyString(attrDict, "Subtype", CosNewNameFromString(cosDoc, false, "Image"));
         CosDictPutKeyString(attrDict, "Width", CosNewInteger(cosDoc, false, 54));
         CosDictPutKeyString(attrDict, "Height", CosNewInteger(cosDoc, false, 99));
         CosDictPutKeyString(attrDict, "ColorSpace", CosNewNameFromString(cosDoc, false, "DeviceRGB"));
         CosDictPutKeyString(attrDict, "BitsPerComponent", CosNewInteger(cosDoc, false, 8));
         CosDictPutKeyString(attrDict, "Name", CosNewNameFromString(cosDoc, false, "PROS"));
         CosDictPutKeyString(attrDict, "Length", CosNewInteger(cosDoc, false, len));
         CosObj cBBoxObj = CosNewArray(cosDoc, false, 4);
         CosArrayInsert(cBBoxObj, 0, CosNewInteger(cosDoc, false, rcDev.left));
         CosArrayInsert(cBBoxObj, 1, CosNewInteger(cosDoc, false, rcDev.top));
         CosArrayInsert(cBBoxObj, 2, CosNewInteger(cosDoc, false, rcDev.right));
         CosArrayInsert(cBBoxObj, 3, CosNewInteger(cosDoc, false, rcDev.bottom));
         CosDictPutKeyString(attrDict, "BBox", cBBoxObj);
         AVAlertNote("Creating cos stream");
         CosObj cStmObj = CosNewStream(cosDoc, true, inStm, 0, true, attrDict, CosNewNull(), len);
         AVAlertNote("Finished creating cos stream");
         ASStmClose(inStm);
         signRec.xobj = cStmObj;
         AFPDWidgetBorderRec border;
         AFPDWidgetGetBorder(PDAnnotFromCosObj(sigAnnot), &border);
         AVAlertNote("Returning DigSigAPXObjectFromXObjList");
         return DigSigAPXObjectFromXObjList(cosDoc, pBBoxRec, &signRec, 0, 0, &border, kDSMerge);
    Regards,
    Magda

    Thanks!
    So, even though I am spesifically telling it to create an Image type with CosDictPutKeyString(attrDict, "Subtype", CosNewNameFromString(cosDoc, false, "Image"));
    I must still create a Form object around it?

  • How to add an Image in the Tab strip of a Tab

    Hi,
    I am trying to add an image to the Tabstrip of a Tab UI element. I have declared a context variable of type string and also added the gif file into the \src\mimes\Components\ folder.
    How can I assign the context variable to point to this Image? I am not sure how to go about binding the Image.Source property of the context. Will be of great help if someone can throw more light in this area.
    Thanks for all your help in advance.
    Best regards,
    Divya

    Hi Divya,
    you could do for example in the wdDoInit() of the view
    wdContext.currentContextElement().setPicture("picture.gif");
    Now you assign this context variable to the Tab using the Tab_header's imageSource-Property. When you click on its value column, you see a button with three dots on it. If you click on this button, you will get all context nodes and attributes for this View. Usable variables are clearly marked, you now choose the one named Picture or what ever name you prefer to use. But it must correspond to the one set in the wdDoInit.
    I think setting a picture (not necessarily for the tab-page) is done in one of the excellent tutorials. If you are a newcomer I strongly recommend doing some of the tutorials.  I have learned tremendously from them.
    Hope this helped
    Harald

  • How to add background image for AdvancedDataGrid in Flash Builder 4

    I want to add a background image for the whole AdvancedDataGrid and
    Application. Can anyone tell me how to do that?
    Thank you.

    you can use css to customize skin of af:document. something similar to this
    af|document
      background-image: url("../../img/Bluehills.jpg");
    body {
      background: url("/img/body_bg.gif") repeat-x #E0E0E0;
    }if you are using Jdev release 2 then you can simply do this from Skin editor check this link for more info http://download.oracle.com/docs/cd/E18941_01/tutorials/jdtut_11r2_83/jdtut_11r2_83.html
    Edited by: Zeeshan BaiG on Jul 12, 2011 10:33 AM

  • How to upload a image for the login with my user?

    When I open system preferences and I go to users and groups; I can't upload a new image for the login.. how I can upload a new one?  Sorry for my english, I'm Italian
    Please help me!! Thanks
    -Lorena

    Your English is a lot better than many who post here.
    Click on your picture, select 'Recents', and you should be able to copy and paste a new picture in an open box. Sometimes it may take a couple of attempts.

  • How can i use AME for the new OAF page.

    Dear all,
    I have developed a new OAF page and registered under Employee Self Service.
    How can i use AME for the approval process.
    Appreciate your ideas?
    zamora

    I will try to answer based on my experience of working with iProcurement and AME. It depends on how you want to make a call to AME , directly from OAF Page or from Workflow and your requirement. You didn't specify what you want to show the users on OAF Page and your business requirement.
    Before calling AME Engine from the OAF page or workflow, I guess you did already setup AME Transaction Type and it's Approval Groups, Conditions, Action Types and Rules. Do some testing from AME Business Analyst Test Workbench. Please note that, AME provides lot of PL/SQL API's that you have to call from your programs (java or workflow pl/sql)
    Let's look at the workflow and putting an OAF Page as notification.
    As Sameer said, you have kick-off workflow process from PR of CO and with in the workflow function, you make a call to AME Engine API's with the AME Transaction ID. This transactionId belongs to the AME Transsaction Type that you setup. Based on the rules setup, AME Engine generates list of approvers/approver and stores them AME Tables for that transactionId. Then, it sends a notification to the approver.
    In the workflow, where that notification is defined, in the message body you have to put an attribute(&XX_WF_FWK_RN) of type document/send. And this attribute will have the constant JSP:/OA_HTML/OA.jsp?OAFunc=XX_FUNC&paramId=-&DOCUMENT_ID-. This function is SSWA Jsp function that makes a web html call to your OAF Region.
    If your requirement is to just show the list of approvers on the OAF Page, you may have to call AME API diectly passing your AME TrasnactionId with other parameters. Then AME generates list of approvers and stores them in AME tables with each approver status. You can pickup those approvers using VO and show them on OAF Page.
    Hope this gives some idea.

  • How to add F4 help for the custom field of a custom table

    Hi All,
    How to add F4 help to the custom table field? in the table maintainance when user clicks on F4 i want to provide possible values for this field I am trying to write the code in the screen of table maintainace like the following
    PROCESS ON VALUE-REQUEST.
      FIELD ZTEST_MAH_F4-KUNNR MODULE zVALUE_kunnr .
    But when i am double clicking on module it's giving options to create include program but after that it's giving user is currently editing the table i am not getting this can some body clarify my doubt it's gr8 if some body give some examp code
    Thanks&Regards
    mahesh

    Hi,
    Create a subroutine under the event and call the following FM
    1. Select all the related data into an itab, for ex i_kunnr
    2.    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
        DDIC_STRUCTURE         = ' '
           retfield               = 'KUNNR'
        PVALKEY                = ' '
           dynpprog               = sy-repid
           dynpnr                 = '1000'
           dynprofield            = <selection screen field>
        STEPL                  = 0
        WINDOW_TITLE           =
        VALUE                  = ' '
           value_org              = 'S'
        MULTIPLE_CHOICE        = ' '
        DISPLAY                = ' '
        CALLBACK_PROGRAM       = ' '
        CALLBACK_FORM          = ' '
        MARK_TAB               =
      IMPORTING
        USER_RESET             =
          TABLES
           value_tab              = <b>i_kunnr</b>
        FIELD_TAB              =
           return_tab             = < return table >
        DYNPFLD_MAPPING        =
         EXCEPTIONS
           parameter_error        = 1
           no_values_found        = 2
           OTHERS                 = 3

  • How to add an image in the header? Pages 5.0

    I don't believe I have to use Microsoft Word! I can't, no way, add an image in the header. This is unbelievable!
    **** time I updated to Mavericks!
    Please, does anyone know the solution?
    I'm losing a great deal in my company.

    Do you still have Pages 4.3 installed. If so, use that.

  • Have VS Express 2013 for Web but need to add JavaScript .. how to add this Template in the New Project or should I...

    Install Visual Studio Express 2013 for Desktop instead. Is there a way to have both installed on same machine? Or can I install some add ons (if so what) to get that feature in VS Express for the Web? suggestions?

    Thanks for pvge42's help.
    Hi Phillipk,
    I agree with the pvdg42's suggestion, so if possible I suggest you can try the pvdg42's suggestion to install the VS2013 Community check your issue.
    In addition, I suggest you can refer the VS2013 Express MSDN document to understand different project use the different version of VS2013 Express.
    http://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to add an image at the end of a video?

    I tried following these instructions https://pantherfile.uwm.edu/type/www/116/SoftwareTutorials/QuickTimePro/DougProu ty_QTPro_Tutorial/QuickTimePro_DougProuty.pdf
    But can't find where to choose the frame rate. So when I add it to my video it goes away so quick you can't even read it.
    Can anyone please help me with this.
    Thank you.

    Those instructions are very old and not intended for a single image.
    In your case you need to give your still image some "time" (duration). Easy to do with QuickTime Player Pro.
    Open any audio file in QuickTime, make a selection (in and out points) that matches the duration you wish for the image file. Let's say an mp3 with a ten second selection. Leave this window open.
    Open your image file in QuickTime. Select All (Edit menu) and Copy. Close this window.
    Switch to your audio file selection. From the Edit menu choose Add to Selection & Scale. You'll see the window expand in dimensions as your image is added.
    Open the Movie Properties window (Windows menu). You'll notice it now has a "Video" track.
    Single click on the Video track and then click the "Extract" button (upper left of the window). The ten second video track will open in a new Player window.
    Close the audio file window without saving.
    Do a "Save As" on the image video track. Give this new .mov file a name and location. Leave the window open.
    Select All and copy the ten second video track. Switch to the movie file you want to add it to and move the playhead to the end. From the Edit menu "Paste" the ten second video. It will be added to the end of the movie.
    Save As (self contained) and name the new video.

  • How to add a image at the top of every pages of a pdf document

    Hi all,
    My problem is as follows. I have a .pdf document and I'm copying it to another and then I'm appending some new things to it. Now while adding new pdf contents I want an image to be added for every new pages added to the document. I tried using "document.getPageNumber()" here document is a Document object which is a part of "itext-1.3.1.jar". But "document.getPageNumber()" is returning 0 every time.
    If anyone has the solution please help me out.
    Regards,
    turja

    there is no cursor to be set, as you go adding
    something in the pdf document those get added to that
    document and if one page gets filled it adds new page
    to it.If it says "current" page, then this implies that something is current with regards to something else. I'd like to know what "something else" is.

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Connect macbookpro to a tv through av or scart?

    I am looking for a way to connect my macbook pro to a tv without hdmi/vga/dvi, but with av and scart. Is there an easy/cheap way to do so?

  • Process for tds receivable posting

    hi all what is the process for tds receivable configuration in sap and how do we post tds receivable in sap. please let me know the process of customer tds receivable configuration in sap and posting through fb70 Kind regards sap fico arman

  • X11 problem after upgrade to Snow Leopard - keyboard unresponsive

    I have just upgraded to Snow Leopard from Tiger. I use Sun's Secure Global Desktop native client which runs using X11. It worked fine under Tiger, but since the upgrade it isn't working - the native client starts up (and starts the X server), it resp

  • Problem of download

    Hi,  When I try to download an application on BB app world on the web site, I receive this message Une erreur est survenue lors de la communication avec le plug-in Web BlackBerry App World. Redémarrez votre terminal, puis réessayez. Si la protection

  • Mac hangs and takes 1 hour to restart.

    i have a mac book pro which i bought in 2010 and has a core 2 duo processor. after i installed lion on it, my mac keeps on hanging. i have to shut it down then, and then to  restart, it takes at least 40 minutes. yesterday, it took 1 hour to restart.