Testing Forms Via IDS on Solaris

I can't figure out how to test a form created in 9iDS on Solaris without having to move it to our 9ias server. I have started the OC4J component in 9iDS, but what url do I use on my browser on my client machine to access it?

Thanks Shay, but it took a lot more than that. I finally found note #211261.1, which had the info I needed. It took adding the NPX_PLUGIN_PATH to the f90desm executable, and then setting the location of Netscape via the Edit/Preferences buttons in the tool itself. While this worked on Solaris, the note explained that it doesn't work on Linux without some additional steps.
Thanks for replying.

Similar Messages

  • Submit Form Via Webmail Is Not Creating Email In Drafts Folder

    Bottom Line Up Front: PDF's Submit via Email (Webmail) is not creating the email in the Webmail account.
    What I am using:
    =============
    * Adobe Acrobat Pro XI; however, I have a lot of users using Adobe Reader.
    * Yahoo! email
    What I am trying to do:
    ==================
    Send the data from a completed pdf to an email address via webmail.
    What Works:
    ===========
    Using the default application - Microsoft Outlook, the form's data is placed into an XML attachment and an email is created for review and transmission.
    What Isn't Working:
    ===============
    Sending the same form via the Webmail feature. Acrobat first provided the Yahoo account name and password handshake screen, and then I authorized Acrobat to use my Yahoo account. The form provided a status bar that indicated the email was being created and the attachment being added to the email; however, no email was ever created (and placed in my draft folder) and no email was sent (checked there too.)
    What I've Confirmed:
    ================
    I've gone to my Yahoo account's "Manage Apps and Website Connections" and confirmed that Acrobat is permitted to create emails (among other things). I've tested the non-webmail (default) email. I've confirmed in my Acrobat Pro XI preferences that the email account is there.
    All help is greatly appreciated.

    Yes. However, if I receive that 500th back I have violated the License. Though I believe you need to go back and read it again It seems to say you can only send out 500 copies.
    Either way would be breaking the intent of the license agreement.
    WE have fought hard just to get this little change made (for benefit of very small Business or even non-profits). So we don't want to cause Adobe to pull this out of the next version because of misuse.

  • Images of signatures,Test form layout printed as upside down & as mirror im

    Hi All,
    The images of signatures and the test form Layout images are printed as upside down mirror images.
    This is happening after upgrade. What could be the problem? this is happening while printing notifications.
    Please let me know. Thanks in advance.
    Thanks & regards,
    Y Gautham

    Hi,
    Take a look at SAP note #683605. Usually this is a problem of the printer driver at windows level if you use a windows device type like SAPWIN or SWINCF in SAP. If the printer is a HP PCL printer, try creating a spool and print via a PCL device type like e.g. HPLJ4000. The problem should not happen in this case. But the solution is a corrected windows printer driver as per note #683605.
    Regards,
    Aidan

  • IE 6 crashes while running test form on Windows 2003

    Hello Everyone,
    I have installed oracle application server 10.1.2.0.2 (forms and reports component) successfully on windows server 2003 SP2 EE.
    But whenever i tried to access test form on Server via IE 6 or Mozilla, my IE window gets disappear (crashed).
    I have tried all possible solution for the same.
    But itz not work form me, i can access EM console i can see reports jobs but not Test form.
    Kindly let me know the possible solution for the same,
    Note : i think some java processes are blocking while accessing form, m not able access JInitiator console 2...
    kindly help..

    Hi,
    Try disabling all ur add ons from ur IE browser,
    and even try these steps
    Tools – Internet Options – Advanced – Browsing — uncheck ‘Enable third-party browser extensions’
    The below link will also help you a bit,
    http://sathyabh.at/2009/06/27/fixing-internet-explorer-crash-on-launching-oracle-forms-application-with-jinitiator/
    http://www.oratransplant.nl/2007/01/04/oracle-forms-and-sun-jvm-16/
    Regards,
    fabian
    Edited by: Fabian on Nov 29, 2010 1:35 AM

  • Creating a link to specific view in a submitted InfoPath form via C#

     
    Hello,
    I have an InfoPath form that is submitted by a user, then the c# executes logic on a button click which is to send approver a link to a approver view within the submitted form(my company is
    not allowing use of Work flows).
    I have a problem creating this link namely because SharePoint changes the patter of a string that is used in creating a form name(Username and now() function characters change
    in URL).
    Is there an easy way to reference an url to a view in Infopath form via C#
    Thank you.
    Nemanja
    Nemnaja Sovic

    Brian,
    You can use the following javascript syntax to open a document on local drive:
    xfa.host.gotoURL("file:///C:/yourdocument.pdf",1);

  • How to add multiple records in table thru form via Submit button

    Hi all
    i have small requirement as follows.
    i have a view in which i have 3 UI elements one is webdynpro form,Table UI element and third one is submit button.
    now at runtime when i will enter the details in the form and click on the submit button then those record details has been stored in Table. then next time again when i submit the form with details then the table contains all records of current and existing ...so table has to maintain mutile records thru form via submit form..
    i need sample code on the same.
    points are always rewardable
    Thanks
    Sunil

    Hi,
    Create one context attribute and map it to the Inputfiled and one submit button, create a node with a valueattribute map it to a Table and in onActionsubmit write this code
    public void onActionsubmit(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionsubmit(ServerEvent)
        String str=wdContext.currentContextElement().getInputfiledattribute();
        IPrivateTableformView.ITablenodeNode node=wdContext.nodeTablenode();
       IPrivateTableformView.ITablenodeElement ele=node.createTablenodeElement();
       ele.setNodeattribute(str);
       node.addElement(ele);
        //@@end
    thanx,
    ramani.p

  • Submit button on Android doesn't submit completed form via e-mail

    We've created a form in Adobe Acrobat Pro with a submit button using the "mailto:" command.  When we are in the android app and click the button, the e-mail script works fine, but it doesn't send the actual file, just a blank e-mail.  Any advice?  I've seen some older posts saying java scripts aren't supported, but they were older posts.  Has this been addressed or is there a workaround to submit the completed forms via e-mail (with an added service or expense)? 

    When you write this
    > but it doesn't send the actual file, just a blank e-mail
    do you mean that it sends an email with a blank form attached? 
    If this is the case, this is currently as-designed, since your button has two actions: one that submits the form and one that resets the form.  Because emailing on an Android device is asynchronous, by the time the email is constructed by the mail app of choice, the reset form action has already executed and as a result, you end up sending a blank form.
    I will look into the Android mail APIs to find out if we can make the behavior synchronous, that is, the reset form action will not execute until AFTER the submit form action has fully completed.  In the meantime, you can work around this by separating the submit & reset button into two separate buttons: one that submits, and one that resets.  Users will tap the submit button to submit and then have to tap the reset button after submit completes to reset the form.
    Hope this helps,
    Darrell

  • How to create table in interactive form via Java Web Dynpro

    Hi,
    How to create table in interactive form via Java Web Dynpro ?
    Any online tutorial / example ?
    Thank you.
    Regards,
    Eric

    Hi Eric,
    Just choose the UI element Table from Form Library and drag and drop it on the form. now choose the no. of rows and columns and other settings you want about table from the wizard initiated through this process. This all is what you have to do to create the table. Now to bind it to the fields of the data source bind the individual colums to individual attributes of the node in the datasource.
    Hope it will solve your query.
    Regards,
    Vaibhav Tiwari.

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  t worked, but only for those with PC.  I could not get it to work with Apple Yosemite even with reader installed .  is there a way i can make it work for apple /

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email. It worked, but only for those with PC. However,  I could not get it to work with Apple loaded with Yosemite even with reader installed .  Is there a way i can make it work for apple / Mac? It worked fine on a mac using Mountain Lion and reader
    Thanks

    LiveCycle = XFA forms.
    afaik - These cannot be used in Apple OSs.
    Be well...

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for thos

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for those with adobe pro.  i could not get it to work with reader.  is there a way i can make it work for reader?

    Noted.
    The LiveCycle user to user forum is across town at:
    Adobe LiveCycle 
    Be well...

  • How to add a photo to a pdf form via the iOS app

    How do I add a photo to a pdf form via the iOS app?  I need to fill out a form for work using field observations and photos.  I can easily fill out the text portions of the form but I'm unable to add the photos from my phone.  Is this possible?

    Does the form have a provision to insert images (e.g. a Browse button)?
    [topic moved to iOS subforum]

  • Need to send Smart form via email through Driver program

    Hi All,
    We need to send smart form via email through a new driver program (z program). Can you please guide me on this.
    I have used the following code to achieve this. We are getting message saying 'Mail request has created' when executed, but the mail is not sent.
    lvs_comm_type = 'INT'.
    lvs_comm_values-adsmtp-SMTP_ADDR = e_mail.
    lvs_comm_values-adsmtp-R3_USER = 'X'.
    lvs_comm_values-adsmtp-ENCODE = '0'.
    call function 'CONVERT_COMM_TYPE_DATA'
    exporting
    pi_comm_type = lvs_comm_type
    pi_comm_values = lvs_comm_values
    pi_screen = ' '
    pi_newid = 'X'
    importing
    pe_itcpo = lvs_itcpo
    pe_device = lvf_device
    pe_mail_recipient = p_mail_recipient
    pe_mail_sender = p_mail_sender
    exceptions
    comm_type_not_supported = 1
    recipient_creation_failed = 2
    sender_creation_failed = 3
    others = 4.
    if sy-subrc ne 0.
    raise COMMUNICATION_ERROR.
    endif.
    control_parameters-device = 'MAIL'.
    output_options-TDIMMED = 'X'.
    output_options-TDDELETE = 'X'.
    CALL FUNCTION fm_name
    exporting
    CONTROL_PARAMETERS = control_parameters
    MAIL_RECIPIENT = mail_recipient
    MAIL_SENDER = mail_sender
    OUTPUT_OPTIONS = output_options
    USER_SETTINGS = space
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    Thank you

    Hi,
    For sending smartform output into mail you first have to generate spool request and convert it into PDF and then
    only it can be sended into mail, please find the sample code in the mail below:
    http://wiki.sdn.sap.com/wiki/display/sandbox/ConversionofSpoolRequestDataintoPDFandExcelFormatandSenditintoMail
    Mansi
    Edited by: Matt on Jan 29, 2010 8:25 AM - removed code, instead point to wiki that Mansi authored.

  • Fusion Middleware 11g Weblogic, forms and Reports in Solaris  11 zone

    Hi,
    Any one Installed Fusion Middleware 11g Weblogic, forms and Reports on Solaris 11 zone ??
    So Pls Let me know Weblogic and Fusion Middleware 11g versions which are working
    I try
    Weblogic 10.3.3 Installed 64 Bit Went OK
    Fusion Middleware 11g 11.1.1.2.0 Errors While Relink few items like frmbldr etc
    Then Fusion Middleware 11g Patchset5 11.1.1.6 Still Same Errors Relink few items like frmbldr etc
    Then Cconfig.sh failed at create domain
    Regards

    Hi Deepak,
    Just config.sh or config.cmd file and try to change the JDK with in and try to configure new domain from there.
    Regards,
    Kal

  • Sending forms via Fax

    I am trying to configure the output to send our purchase order form via fax.
    I have been able to successfully configure the output via transaction NACE for printing and email.  I have followed the same configuration steps for defining the fax, however, I am unable to successfully create the output.
    The error I receive in the purchase order is "Error in OPEN_FORM for document 45xxxxxxxx"

    Hi Farah,
    Welcome to SDN!
    Check the following notes:
    532251
    457497
    397691
    Hope it helps..
    Regards
    Srikishan

  • Sending output / forms via Fax

    I am trying to configure the output to send our purchase order form via fax.
    I have been been able to sucessfully configure the output via transaction NACE for printing and email.  I have followed the same configuration steps for defining the fax, however, I am unable to successfully create the output.
    The error I receive in the purchase order is "Error in OPEN_FORM for document 45xxxxxxxx"

    No unfortunately it does not provide any additional info.  I am thinking of following the instructions in the following SAP Note (397691) so that I have a better picture of the error: 
    "Symptom
    If errors occur when purchasing documents are output, the system generates an error message in the message log of the message overview.However, error message ME142 'Error in OPEN_FORM for document &' contains only the information that an error occurred and not the error cause.With the attached source code, the error cause is also displayed in the error message (for example, missing authorization, terminated connection and so on)."

Maybe you are looking for

  • How can I back up a Macbook Pro with Bootcamp

    Ok, so I have a 13" Macbook Pro (non-Retina) that's about 5 months old. There's loose wiring in the display, causing strange symptoms with my screen. There also seems to be something stuck in the fan, as it rattles around really loudly from inside th

  • Issue with Phantom Material in PCE

    Hi, While creating the PCE for one of the finished materials, in the PCE, the phantom material is not getting selected. There is no issue with the production version or BOM or Master recipe since in the process order after the BOM explosion the phant

  • Cursor for text and other editing tools is too light to see

    I have a new Macbook Pro Retina display running Mavericks. When I use editing tools (like text, shapes, etc.) in apps like adobe acrobat, fireworks, and photoshop the cursor is so light grey that I can barely see it on the screen. Does anyone know ho

  • Hardware requirement for a gateway server

    plan to put a gateway server in a untrusted domain/forest to manage about 100 servers over there. what's the reasonable hardware config for it? mainly CPU, RAM and disk space. The gateway server will be built on server 2012 R2. thanks in advance

  • Change validate from list property at runtime

    I am added below code in when-validate-trigger. But it is not working. Please do the needful. IF :PARAMETER.PARTY = 'N' THEN      set_ITEM_property('B1.GJM_PRTY_CODE',lov_name,'LV_INS');      SET_ITEM_PROPERTY('B1.GJM_PRTY_CODE',VALIDATE_FROM_LIST,PR