Form direction

Dear all,
i've multilingual application, forms with tabs is not changing direction like other forms and using set_form_property doesn't work unless i set the form property in the design time, which is not a solution..
any help will be appreciated

Hi,
sounds like a customer support case. However, without mentioning teh Forms version you use, I don't think that you get a sufficient answer here on the forum.
Frank

Similar Messages

  • Open Edit form directly when list item is clicked in Sharepoint 2013 list

    Hi,
    I have a list web part, wherein the user clicks the item it should open in the Edit form directly. various forum i checked was for SharePoint 2010, as we do not have design mode in SharePoint designer 2013, I am unable to do.. I know
    if I the change the form type from default page to edit page, it will work, but not sure about how to go ahead. Could anyone help me to achieve this please....

    Sunitha,
    You can do this with some jQuery and JavaScript.  Look at this post:
    http://brandonatkinson.blogspot.com/2013/11/open-sharepoint-2013-list-items.html
    Basically, add a Script Editor Web Part to the page and include this snippet:
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script type="text/javascript">
    $(function() {
    // Change all display form links to edit form links
    $('.ms-vb a[href*="listform.aspx"]').each(function(){
    var link = $(this).attr('href');
    link = link.replace("PageType=4", "PageType=6");
    $(this).attr('href', link);
    </script>
    Brandon Atkinson
    Blog: http://brandonatkinson.blogspot.com

  • Sending PDF form directly to email

    Is it possible to send filled PDF form directly from Acrobat Pro or Reader to requested email by clicking the SEND button? Or does it always go via senders email application?
    What should be done to get it going directly?

    Is it possible to send filled PDF form directly from Acrobat Pro or Reader to requested email by clicking the SEND button? Or does it always go via senders email application?
    Answer: To bypass client-side email software the form needs to submit to a server side script such as PHP or ASP.net.
    What should be done to get it going directly?
    Answer: You will need an SMTP account, a web server and server-side programming knowledge. The script would need take the inbound submission stream and pass it to the outbound SMTP message, and return a FDF response message or redirect to a URL. If you are using ASP.net, you can use iTextSharp or FDFToolkit.net to parse the submission, and inject the values directly into the message TO, CC, BCC, subject and body.
    For online examples please visit the following website: www.pdfemail.net/examples/

  • How to scan document into forms directly ?

    hi all
    how to scan any document into oracle developer form directly
    (we are using forms 4.5 ..on win 98)
    thanks
    Abu zaid Saad
    [email protected]

    First I would suggest that you read the documentation about working with Active/X.
    The online version is in the documentation section of Forms on OTN.
    Then, you insert the scan.ocx into your form. you use the ole importer to create a pl/sql package to communicate with the ocx and you are ready to start calling methods such as scan etc...

  • Experience porting 4.5 forms directly to 9i ??

    We are to port about 1000 4.5 forms and 500 6i forms (client/server) to forms 9i.
    Does anybody have any experience with porting 4.5 forms directly to forms 9i or is it necessary to go 4.5 -> 6i -> 9i ?
    Is it possible to use tools like 9i Migration Assistant, Forms*Nova, MIGrator or the like to do this in batch mode?
    Thanks for any help
    Christian

    Christian,
    the Forms Migration Assitant simply goes through your Forms Module and searches for changed built-ins or obsolete names. The real crux of migration is a change that happened between Forms 4.5 and Forms 5.0 in the Forms internal architecture.
    MIGrator is a tool offered by companies like Logis, XRSystems and Kybernon (where the second two licenced the product as far as i know) that performs a complete migration, also checking for the architectural changes.
    MIGrator is able to move Forms 3.0 applications to Forms 6i (and possibly higher) and really suited for customers with different versions of Forms.
    There are other companies in the same sector that are worth looking. PITTS.CON does do the same Job.
    For the sake of being neutral, here's a list of all partners offering migration tools:
    http://otn.oracle.com/products/forms/htdocs/partners.html
    The recommendation is to go from Forms 4.5 to 6i and then to Forms9i (you don't have to move to Forms9i first to get to Forms10g (9.0.4)).
    Frank

  • I want to print form directly with out using spool request

    hi,
            i want to print form directly with out using output type screen (spool request or print preview ) , i want to supress the screen and get output directly to the printer. plz help me
    thanks&regards
    praveen

    Hi Praveen,
    In your program, where you are calling the OPEN_FORM function.. pass the name of the printer in the 'DEVICE' parameter of the function module..
    Also, there is a parameter OPTIONS of sturcture ITCPO in the same function module.. in this parameter you will find lot of options to set properties for the printing..
    There will be one field for immediate printing, set that field to 'X' and other settings for print in the same structure and pass to the function module..
    Thanks and Best Regards,
    Vikas Bittera.

  • How to print report From Oracle form directly on printer

    Hi,
    I am running report from form and output should be directly printed on printer.
    Database: 11g Release2
    Forms version : 11.1.2
    Report version : 11.1.2
    OS: windows 7 professional 32 Bit
    Written following code:
    declare
    pl_id ParamList;
    varno number;
    x VARCHAR2(150);
    y NUMBER;
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    begin                
    pl_id := Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List( pl_id );
    END IF;
    repid := FIND_REPORT_OBJECT('SALEBILLNEW'); -- report object name
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id,'copies',TEXT_PARAMETER,'1');
    Add_Parameter(pl_id,'background',TEXT_PARAMETER,'Yes');
    Add_Parameter(pl_id,'mode',TEXT_PARAMETER,'Character');
    Add_Parameter(pl_id,'printjob',TEXT_PARAMETER,'YES');
    Add_Parameter(pl_id,'VCOMPANY',TEXT_PARAMETER,:block50.coname);
    Add_Parameter(pl_id,'VCOde',TEXT_PARAMETER,:block50.code);
    Add_Parameter(pl_id,'VOURBILLNO',TEXT_PARAMETER,:BLOCK50.FROMBILL);
    Add_Parameter(pl_id,'PARAMFORM',TEXT_PARAMETER,'NO');
    Add_Parameter(pl_id,'DESTYPE',TEXT_PARAMETER, 'PRINTER') ;
    Add_Parameter(pl_id,'DESNAME',TEXT_PARAMETER, 'OKI MICROLINE 391 TURBO (COPY1) on NILESH-PC') ; --default printer name
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,PRINTER);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_adminserver_inorasrv-pc_asinst_3');
    y := LENGTH ('rep_adminserver_inorasrv-pc_asinst_3') + 2;
    x := RUN_REPORT_OBJECT (repid, pl_id);
    WEB.SHOW_DOCUMENT('http://inorasrv-pc:7001/reports/rwservlet/getjobid'||SUBSTR(x,y)||'?server=rep_adminserver_inorasrv-pc_asinst_3&userid=scott/tiger@winorasr');
    Destroy_parameter_list('tmpdata');
    end;
    Above code giving following error:
    REP-52251: The output of job ID 111 requested on Thu Oct 18 18:37:20 IST 2012 cannot be retrieved.<P>REP-51026: No output is generated for job 111.
    Need help..
    Thanks in advance.

    Hi,
    I have change the printer name to OKI
    Add_Parameter(pl_id,'DESNAME',TEXT_PARAMETER, '\\Nilesh-pc\OKI') ;
    Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER, 'dflt.prt');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'\\Nilesh-pc\OKI');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt.prt');
    code which i have posted above unable to reach at default printer and gives following error
    The report generated successfully but distribution to destinations failed.
    Modified above code to take default printer from registry.
    Added below code
    rtn_Registry := CLIENT_WIN_API_ENVIRONMENT.Read_Registry('HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows','Device');
    rtn_defaultPrinter := substr(rtn_Registry,1,instr(rtn_Registry,',',1)-1);
    Add_Parameter(pl_id,'DESNAME',TEXT_PARAMETER, 'rtn_defaultPrinter') ;
    It is giving error
    CLIENT_WIN_API_ENVIRONMENT.Read_Registry must be declare.
    Edited by: parapr on Oct 20, 2012 10:47 PM

  • Using CFHTTP to submit a form directly to a google docs form

    Ok so here is some background
    Google has a service where you can create forms using google docs and embed them into your webpage, Results are automatically stored in a google spreadsheet upon submission.
    I want to use my own form to submit to to the google form processing page which I can get to work however the default generic google hosted thank you page appears upon submissing.
    I know you can use cfhttp to submit a form from a coldfusion server so I was thinking that I could simply pass my form variables to a action page that resubmitted them via cfhttp and thus bypass the thank you page altogether
    however when I try this it does not work and the results do not show up in the google spreadsheet. I figured that mabye the google processing page could tell that it was not submitted from a browser so I tired adding a useragent string but still no luck.
    Here is the code I was trying to use
    <cfhttp method="POST" url="https://spreadsheets.google.com/formResponse?key=tlo4FjygqMuUGmvuOb2_Gjw" redirect="yes" useragent="Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)">
         <cfhttpparam type="Formfield" name="entry.0.single" value="testValue1" >
         <cfhttpparam type="Formfield" name="entry.1.single" value="testValue2" >
    </cfhttp>
    And the online spread sheet can be viewed here
    http://spreadsheets.google.com/pub?key=tlo4FjygqMuUGmvuOb2_Gjw&single=true&gid=0 &output=html
    Does anyone know why this is not working?
    To recap I am able to use the following form on my own comptuer to directly submit to the processing page and this works
    <form action="https://spreadsheets.google.com/formResponse?key=tlo4FjygqMuUGmvuOb2_Gjw" method="POST">
    <input type="text" name="entry.0.single" value="" >
    <input type="text" name="entry.1.single" value="">
    <input type="submit" name="submit" value="Submit">
    </form>
    Any help would be greatly appreciated

    YES!!!!!!!!!!!!!!!!!!!!!! This did it final code is as follows thanks for you help
    <cfhttp method="POST" url="https://spreadsheets.google.com/formResponse?key=tlo4FjygqMuUGmvuOb2_Gjw" useragent="Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)">
         <cfhttpparam type="Formfield" name="entry.0.single" value="final test">
         <cfhttpparam type="Formfield" name="entry.1.single" value="final test">
          <cfhttpparam type="Formfield" name="submit" value="Submit">
    </cfhttp>
    Man this is great! and has eliminated half my database requirements! now only if you could pull the results back out!

  • How to Edit a custom HCM form directly after Employee selection?

    Hi All,
    As per the requirement, the Manager should have a tab in Portal called "Forms and Processess"  and on click of that he should see a Page with few hyperlinks . Each hyperlink is the name of a HCM Form.
    So,  the Manager will click on one of them to start a particular form. ex. One time payment
    After clicking, he should have the Employee search result having Direct reports under STEP "Select Employees".. But the next STEP has to be "Edit" instead of "Select Process" and the Form "One time payment" should directly Open for him to work on.
    Please help me providing the relevant information and the approach. Let me know if you need any additional information.
    Regards
    DK
    Edited by: DIPENDRA MOHANTY on Mar 11, 2011 12:05 AM
    Edited by: DIPENDRA MOHANTY on Mar 11, 2011 12:06 AM

    we do have selection of employees or search and you can choose a form?
    If you want to change it, then only option is WD ABAP Iviews custom
    But i still didnt fathom the need of teh approach above, does the standard doesnt meet the requurement? Please check it
    which is pretty flexible

  • How to make a form direct to different pages depending on which answers you select?

    I am creating an online application.  Before the user can get access to the application, I want to create a pre-qualification form.  I need to create it to where if they answer a certain form field one way, it will take them to a page that says "Sorry, we are not accepting applications at this time" and if they answer the form field another way, it will take them to the Application Form to fill out.
    How do I set it up to where when they hit submit, it directs them to the appropriate page?
    I have no idea what this is called and what I should search for online to find help on this matter.
    Thanks,
    Michael

    Hi
    First you need to decide on which scripting language you are going to use and any other requirements you may have.
    Simply put, (and this is very simply put) you would filter the answers using your scripting language using a if/else or switch statement to decide if to redirect, (or not).
    PZ

  • Submit form directly from website to designated email address.

    I'm sure this has been answered a thousand times, so forgive me. My PDF form works great on my site, but my "submit" button opens a file-save dialog box instead of sending the form data to my email box. I have configured the button with a "mail to:..." URL, and I've followed the Acrobat Pro 9 instructions concerning forms distribution, but I get the same results every time. The solution must be simple, because this is such a common need. Any help is appreciated. Thanks.

    A very simple form. A list of about 20 questions, each followed by a text box to capture an answer. The file-save dialog asks where to save a document that has the following nomenclature:
    Filename+tag.Fdf
    Again, the preferred action is to send the form or for data directly to a designated email box. Incidentally, I did use the "mail to:[email protected]" format. I am sending to a web mail box if that makes a difference. Thanks.
    Sent from my iPad

  • Can a submit button send forms directly to an email address?

    Hi, I'm just trying to design a form for an online business and am wondering whether I can have all forms sent directly to an email address to notify me of an order. I have Acrobat 9 Extended and Windows 7. Cheers

    Yes, when you set up the Submit Form action, specify a mailto type URL. Make sure mailto is lower case and there are no spaces, something like: mailto:[email protected]
    If you want Reader users to be able to send the entire PDF, it must be Reader-enabled: Advanced > Extend Features in Adobe Reader

  • AppsLocalLogin.jsp call forms directly

    I need to login in EBS 11.5.8 and go directly to a function forms.
    If it was a self service I could finelly use a OA.jsp but it's built in oracle forms.
    This forms exists in only one responsibility and the user has many other responsibilities.
    I couldnt built a oaf self service page because framework is too old and couldn't be updated.
    I need some like this:
    http://XXXXXXX/OA_HTML/AppsLocalLogin.jsp ???????? function = POxxxxxxx
    Tks for helping me.

    This call pointing to the specific function will be used only for a few users. The general call will be maintained.

  • Hi how can print report     from form directly

    Hi,
    I would like to print report from D2k directly....
    i.e. suppose we pressed a button report has to be generated and printed automatically.... Generating of report is done by Run_product function, but how to give print directly...
    please u send ur valuable suggestions to my mail id also
    [email protected]
    bye!

    When calling the report from form, include 2 more parameters in the parameter list:
    - PARAMFORM=No
    - DESTYPE=Printer
    hth

  • How to bypass Report10g Preview from calling Oracle form(Direct to printer

    Hi Experts
    I have a requirement here on calling report10g from oracle form10g ,actually report is working
    but i want to bypass the preview on screen mean to say whenever user run the report that time
    report preview should go on printer .(mean to say user don't want see a report10g preview on screen ,they wanted print/send report10g directly on printer.
    so can any buddy tell me neccesary steps for doing this activity but here make not report10g is web based.
    Appreciate if any buddy provide me step by step Solution example.
    Thanks
    Abhishek
    Tech Cunsultant.

    try this out hope this helps u
    PROCEDURE PRINT_DOC IS
         PL_ID PARAMLIST;
    BEGIN      
         PL_ID := GET_PARAMETER_LIST('TEMPDATA');
         IF NOT ID_NULL(PL_ID) THEN
              DESTROY_PARAMETER_LIST(PL_ID);
         END IF;
         PL_ID := CREATE_PARAMETER_LIST('TEMPDATA');
         ADD_PARAMETER(PL_ID, 'PARAMFORM', TEXT_PARAMETER, 'NO');
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'PRINTER');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<printer_path>');
         ADD_PARAMETER(PL_ID, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
         RUN_PRODUCT(REPORTS, '<report_name>', SYNCHRONOUS, RUNTIME, FILESYSTEM, PL_ID, NULL);      
    END;printer path = \\10.10.22.10\printer sharing name

Maybe you are looking for

  • How do I find, download, and install an older version of the Netflix app?

    I was using the Netflix app when it froze up trying to start playing an episode of a TV show. Rebooting my iPhone 5 didn't unfreeze it, so I deleted the app. When I went into the App Store to download it again, it said I had to update to iOS 7.0 or h

  • Apple Mail on MacBook Air 10.10.3

    Mailbox behavior: when I 'renamed' a mailbox, then all of the messages I had stored under the previous name vanished; did I delete these through this action?

  • Castor Binding File

    I'm having problem as "A class name generation conflict has occured between element 'psoID' and element 'psoID'. Please use a Binding file to solve this problem.Continue anyway [not recommended] (y|n|?)" Above warning is generated when am trying to g

  • Business Process and Sales process

    Hi Gurus, Will somebody explain me the Difference between " Business Process and Sales Process" Thanks & Regards Srikanth

  • AcroForm with Image button from LiveCycle

    I read Ted Padova's article at: http://www.acrobatusers.com/blogs/tedpadova/enabling-adobe-reader-users-options-importing- images-forms and was thrilled to find out that it is possible for Reader users to import images. However, I've run into some pr