Adobe Form :  Extended text area

Hi,
My client requested an interactive adobe form where they can enter text like a word file. Once the layout field comes to an end, the text area should be extended automatically for them to key in more text. is it possible. Please advice.
Thanks
Maanu

Hi Ashwini,
I have the similar kind of requirement, where I am displaying the Notification longtext fro SAP. I have made the text box editable, so that the user can input as many text lines as he wants. This is client's requirement.
I have wrapped my textbox in a Flowed subform and also checked the Expand to fit property for the text box.
But still my text box's height is not dynamic. The height of the box is fixed according to the no of lines coming from SAP. If I want to add more lines, the box is not increasing in height. Similarly, when I am deleting some of the text, the box size is not reducing.
Do you have any idea, how can I achieve this requirement?
Do I need to use script for this? Or I can achieve this without scripting?

Similar Messages

  • Down load adobe form in text documnet

    Hi Experts,
    I want to downlaod the adobe form in text document..
    Depending upon the certain conditions i want to download the form or print it.
    I am able to print it by using print program.
    However I am not able to download it
    Please advice.
    I have also found out one fm EFG_FORM_DOWNLOAD but not able to use it.

    Hi Liem,
    Use the follwing code to change color:
    if ( <Fieldname>.rawValue > 500 ) then
    <Fieldname>.caption.font.fill.color.value = "200,10,10"
    endif
    Here <Fieldname> is assumed to be the field for which you want to change the colour. suppose the value for it is greater than 500 it will become red and for values less than 500 it will be the default colour or you set in its properties.
    Hope it will be helpful.
    Regards,
    Vaibhav Tiwari.

  • Adobe forms: Displaying work area data in different windows

    Hi,
    I have a requirement of showing work area data in different windows i.e work area which has sent from program needs to come in different windows of the form. I have created a smartform which will perfectly doing the above logic. The above work area also contains amount fields. I am also passing language 'English' or 'French', based on this i am displaying some texts also.
    But Client wants to see the same requirement in Adobe forms. Ao i am new to Adobe forms, I need some help for performing the above scenario. I am doing my research on this. But i want to know the steps which will not reduce the performance.
    In smartform, first window contains personnel no from work area and the second window contains address from work area. Then i have created a template with employee premium amount column, company premium amount column and total of that, all these from work area. So work area will contain only one row which i have to show in different window and on template.
    In Adobe forms, How can i do the same this which i have done in smart forms.
    Please suggest me any one in doing this. I appreciate your answers.
    Thanks,
    s.vikgnesh

    Hi,
    Yes as Santoosh said there is no such wiondow option in Adobe forms.
    But if you use webdynpro java/Abap we can acheive this.
    think something like this below, if it works.
    have 2 views 1st for the adobe form, 2nd view in a new window for the work area screen.
    in the adobe view have a button for the work area and respective event handler.
    in the event handler call this window, and then reload the same adobe form.
    if from the work area form if you need value to be passed to this adobe form. have a event handler for this.
    when purpose is done, close that window and set value to the required context field on the form. and reload that adobe form.
    this is a fuzzy process and time consuming, unless business has no other option we dont go this approach.
    but for sure this works, we did the same for a EHS process.
    Cheers,
    Sai

  • Can we store values @run time in Adobe Forms when there are multiple views

    Hi,
    I am new to Web dynpro Java - Adobe Forms. I working on a solution for the following scenario.
    I have 3 Views (each an adobe Form) in a web dynpro component.
    I have to capture the user entered values in View1 and View2 (PDFs) and display them in VIew 3 (another PDF)
    I am able to capture the values in the recent view. (view2) but the values from the view1(Context elements ) are cleared.
    Can I hold or store the values from the first view like we do in java using session variables??
    Also, if there is any other way out, please let me know.
    Version:
    NWDS 7.0.1
    SAP Netweaver SP12
    Adobe Designer - 7.0.1
    Thanks in Advance.
    Vasu

    I got the solution

  • Adobe Form Translation : Text Fields

    Hi All,
    I am trying to translate Type : Textfield in Adobe using SE63.
    Type: Text  is translated but not Type : TextField.
    any suggestion why this is not happening or is this the  way SAP is built for Translations in Adobe forms.
    Thanks,
    Tk.

    You can have translation for adobe forms in sfp itself,
    In Menu Bar > Goto> Translation...
    Thanks,
    Rakesh.

  • Dropdown of all adobe forms of mss are not working

    Hi All
    <b>Dropdown in adobe forms like</b>
    Change Employee Group and Subgroup
    Change Personnel area and subarea
    <b>are not showing any values</b>.
    When I download adobe form in xml format I can all values from backend is <b>available in xml file</b>.
    Actually when I click on down arrow of any dropdown it doesn't do anything.
    I am using EP 7.0 , NW 2004 s and Adobe 7.0.8 is installed in Fronend.
    I can observe pick list for date is working.
    Please help.
    Thanks
    Rakrim

    I fixed it somehow.
    Sent from my iPhone
    On Sep 28, 2014, at 10:55 AM, Gilad D (try67) <[email protected]>

  • XSL Stylesheet for Form with TEXT AREA not responding to DATASRC or DATAFLD

    I have a stylesheet for Form which displays data in the input boxes for edit and re submit.
    While all input text boxes show data from the database, TextArea box does not display the value for edit
    <div align="left">
    <table border="0" cellpadding="0" cellspacing="0"
    width="600">
    <tr>
    <td width="600" height="1">
    <font face="Arial" size="2">17. Describe how
    the accident or exposure
    happened</font>
    <textarea rows="3"
    name="P_ACCD_TXT"
    datafld="{ACCD_TXT}"
    onblur="javascript:while(''+this.value.charAt(0)==' ')this.value=this.value.substring(1,this.value.length);"
    cols="72">
    </textarea>
    </td>
    </tr>
    </table>
    </div>
    In other input boxes value="{column_name}" works, but value attribute is not available for textarea. both datasrc="{ACCD_TXT}" and datafld="{ACCD_TXT}" do not work.
    Is it because datsrc and datafld are not supported. Would very much appreciate if some one can clarify on tthis and advise how to go about retreiving data into textarea box
    Thanks

    datasrc and datafld are Microsoft IE specific "data binding" attributes that are supported in the MS IE5 implementation of HTML.
    What you likely want is just the standard HTML way of putting data into a <textarea> that you would do in XSLT like this:
    <textarea>
    <xsl:value-of select="ACCD_TXT"/>
    </textarea>assuming that the current node has a child element named <ACCD_TXT> in the source document.

  • Item text is populationg Partially in adobe form

    Hi All,
    I have a problem in printing item text in adobe form.
    item text is having more than 100 lines which is being populated in adobe form.
    the subform text is created in layout and there a TEXT node is created which has text
    this TEXT node in subform text prints item texts.
    now problem is that suppose there are 100 lines in item text then 60 lines are being printed and the rest 40 lines are not printing in adobe in next page... from next page next item text are being printed...
    When i increase the page height till some lenght then rest all 100 line is getting printed but in single page...
    I want item text to be printed in 1st page and 2nd page also if item text is long ( ie. 60 lines to be printed in page 1 and rest 40 lines should be printed in page 2)
    Thanks

    Hi,
    Have you checked, Object palette --> Layout --> Expand to fit?
    Thanks & Regards,
    Sanoosh

  • Communication problem between Adobe Form and WebDynpro

    Hi all,
    I have the following problem and am thankful for any help I can get from you in order to solve it:
    I created an Adobe Form in WebDynpro. In both the WebDynpro as well as in the Adobe Form, I created a Submit Button (which I binded to the same method) as well as a text field (which I binded to the same context attribute). When I do changes in WebDynpro, everything works fine and the changes are displayed in the Adobe Form as well.
    But when I do changes in the Adobe Form, these changes are not submitted. Also the Submit button in the Adobe Form is not working.
    I send the project to a colleague and she could deploy and run my project without any problems. So I think it is a problem with my settings or installation. I already did a reinstallation of the NW Developer Studio as well as the Adobe Lifecycle Designer. But it did not help.
    Did anyone have a similar problem or has a suggestions what else I could do?
    Thanks in advance,
    Thorsten

    Hi Thorsten,
    If the submit button doesn't do anything, it usually means there's something wrong with your client software.
    Are you using NW04s or NW04? NW04 only supports ACF (Active Component Framework) forms, whereas NW04s also supports ZCI (Zero Client Installation) forms (there're different Submit buttons in Adobe LiveCycle Designer). Reader 7.0.9 should definitely work in all cases, but Reader 8.0 (and Reader 8.1, released yesterday) doesn't work properly with ACF forms (there's an SAP note on this subject).
    To use ZCI forms, all you need is Adobe Reader at client side. To use ACF forms, you also need some other client software: either (the correct version!) SAP Active Component Framework (stand alone software that you can download from SAP Marketplace; it's part of some SAP note; search for xACF and select the correct version of the note). A better option is not to install xACF manually (uninstall it if present, using Control Panel > Add/Remove programs), but to use the ActiveX control instead (reinstall it in your case because of the problem you have). First kill the AcroRd32.exe process, if it is running. Then go to "C:\WINDOWS\Downloaded Program Files" and delete the file AdobeControl(s) (NW04) or AcfControls (something similar; NW04s) if present. Then access your form in your Web Dynpro application using IE (Firefox doesn't support ActiveX; the only option is to use ZCI forms with non-IE browsers). If all goes well, prior to displaying the form, IE should ask to install an ActiveX control (it will only be asked if you have sufficient privileges, that is belong to the local Administrators group).
    Kind regards,
    Sigiswald

  • Problem with the Adobe Forms

    Hi,
    I am having two issues regarding Interactive Adobe forms.
    We are impelementing MSS/ESS in ECC5.0,EP6 and <b>first</b> , in the PCR after i select " Change Employee Group/subgroup"  (edit it, preview it) then when i click on Submit button it gives me Parser Exception . Error message reads as below :
    <i>The initial exception that caused the request to fail, was:
    com.sap.engine.lib.xml.parser.ParserException: XMLParser: No data allowed here: (hex) 75, 6e, 64(:main:, row:1, col:3)
    at at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2733)
    at at com.sap.engine.lib.xml.parser.XMLParser.scanDocument (XMLParser.java:2778)
    at at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:227)
    at at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:141)
    at at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:156)
      ... 31 more</i>
    <b>second</b>, When i select either "Request for Internal Transfer(Enhanced)" or "Request Promotion " it displays a warning message " <i>Form could not be called up due to an internal error</i> " . Rest of the form types i am able to get them ( view,edit,preview and submit )
    What could be issue in both the cases here. Need your help on this
    Thanks in advance,
    Vijay

    Hi Vijay,
    Check if your XML code is properly. You can do this by going into t-code SFP, open form ISR_FORM_SPEG and go to the layout tab.
    Now Adobe Designer will start. If you don't have a XML tab, Select View > XML source. You can copy the XML source in a new text file and display it with Internet Explorer. If it works, you will see the XML source. If it fails, you will receive an XML parse error from IE.
    The problem may occur by using different languages. SAP provides the SPEG and other MSS scenarios as an <b>example</b>.

  • NewLine Character in the String received from Interactive Adobe Form

    Hello Experts,
    Following is the issue we have with interactive Adobe Form
    We have a text area within the form. User enters the text in multiple lines in this text area.
    We are calling a backend function module designed in SE37 that accepts and process the data from the adobe form.  We are also processing the string data user enters in the text area.
    When we receive the string from the form, the newline character within the string is displayed as '#' in the debugger. We tried splitting this string using cl_abap_char_utilities=>newline and cl_abap_char_utilities=>cr_lf  but NO luck. Though in the debugger we see cl_abap_char_utilities=>newline  as '#'  in the debugger and also '#' is present within the string, for some reason when string is processed to find cl_abap_char_utilities=>newline, we can find/locate it.
    Because ABAP code is not able to identify the newline character within the string received from Adobe form, we are not able to maintain the formatting of the string as it was entered in the form.
    Any help to resolve this issue is appreciated.
    Thanks in Advance.
    Regards,
    Bhushan

    Hi Bhushan,
    I was going through your issue, and I feel this is something you can do with scripting. Basically you should read whole string and find the new line character and replace with a space or comma, as per your requirment.
    Do like following:
    In the exit event of the field select java script and write following code:
    var strng = this.rawValue;
    strng.replace(/\n/g, " ");
    above im reaplcing new line with a space.
    I think it should work I have not tested it. Pls update if you test it .
    Regards,
    Ravi.D

  • Problem while generating copies in Adobe Forms

    Hi Experts,
          I'm trying to print two copies of my adobe form, I have changed the copies values from Output Options Pop up and printed the form. But i didn't get two copies of it instead I got only one copy. And I have checked SPAD configuration also, the document gets printed according to copy counter specified from the form but in case of adobe it is not. We tried with smartforms, it is working fine. Please see the following screenshots.
    1. Entered the number of copies as 2.
    2. After clicking on print button, I got the following ouput.
    SPAD Configuration:
    Please provide your valuable inputs.

       Copies are not supported in adobe form. There are certain things which are different between the forms. SAP note 1009567 explains it clearly.  Alternative solution to get multiple copies has been explained in the thread  Multiple copies in Adobe form with different header text.
    So,i'm closing this thread.

  • Display Text Area as Read Only

    Hello,
    I have about 5 forms, some of the forms have text areas with counters. All of my text area fields are pretty much set up the same way:
    width = 75, height= 6, max width = 500.
    When a user logs in with read only priv. the text areas turn change to read only. The problem is when I enter some data into a text area it will display across the screen. I need the text area to do word wrap. I have tried the following in the Read Only Element Table Cell Attribute.
    display:block; width: 400px; word-wrap: break-word; overflow:hiddenI have also tried to add some CSS to my HTML Header, which adds borders to all of the fields, which is not wanted and it doesn't word wrap.
    <style type="text/css">
    span.display_only {border:2px inset #D4D0C8; padding:1px 0px;}
    </style>Any help, is greatly appreciated.
    Mary
    Edited by: MaryM on Aug 25, 2010 11:58 AM

    They are page items all of them have character counters. The problem, comes when a user logs in with Read Only privelages, then the text area's turn to Read only. For example, if I enter something in the text box like (xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxeeeeeeeeeeeeeeeeeeeeeee) it will display across the screen when a Read Only user logs in and looks at it. I need it to word wrap, when it is in Read Only mode. It will also display the same way if I change the field type to Display as Text ex: (xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee), it will not word wrap.
    All of my text area boxes are varchar2 (300) or more in length. I need to be able to word word wrap. I was able to do with classic reports, using standard report columns and in the css I added the following:
    display:block; width:400px;word-wrap:break-word;overflow:hidden.Hope I explained this better.
    Mary
    Edited by: MaryM on Aug 25, 2010 12:25 PM

  • Custom Adobe Forms in FORM16 output

    Dear Sapgurus,
    I have a requirement to change the adobe forms output in FORM16 PDF output.
    In standard output PDF will contain annexure to Form 16 as fifth page .We don't need that fifth page in output.
    So we tried to create a custom Adobe form without the annexure  but unable to get PDF output with custom adobe form.
    We are able to get the PDf output with 5 pages if we used the standard adobe form .Is there any other way to restrict the fifth 
    page.
    Kindly provide me some info  whether we need configure apart from ADS settings or how to restrict the fifth page alone ?.
    thanks ,
    S.Sriram
    Moderator message: this is the wrong forum, please have a look in the forum for "SAP Interactive Forms by Adobe".
    Edited by: Thomas Zloch on Jun 21, 2011 9:57 AM

    Dear Sapgurus,
    I have a requirement to change the adobe forms output in FORM16 PDF output.
    In standard output PDF will contain annexure to Form 16 as fifth page .We don't need that fifth page in output.
    So we tried to create a custom Adobe form without the annexure  but unable to get PDF output with custom adobe form.
    We are able to get the PDf output with 5 pages if we used the standard adobe form .Is there any other way to restrict the fifth 
    page.
    Kindly provide me some info  whether we need configure apart from ADS settings or how to restrict the fifth page alone ?.
    thanks ,
    S.Sriram
    Moderator message: this is the wrong forum, please have a look in the forum for "SAP Interactive Forms by Adobe".
    Edited by: Thomas Zloch on Jun 21, 2011 9:57 AM

  • Webdynpro Interactive Adobe Forms/Workflows

    Hi,
    I have the following steps for my client in their appraisal process.
    Manger selects his employee using webdynpro and selects the appraisal form.
    Manager and Employee fills Appraisal form / interactive adobe form in the beginning of the year .
    It will be sent to the employee UWL through workflow for verification in read only form where he can add his comments in the comments box.Once he agrees with the objectives and submits the form it sits in the UWL of managers.
    After six months there will be revision of Objective Setting if required by manager and employee with same as above process.
    Objective Setting should be freezed after approval.
    At the end of the year, the final appraisal form is agreed with employees and manager an approval from manager should send to the next level line manager UWL using workflows.
    I have built the webdynpro application with an interactive adobe appraisal form , but how to trigger the Workflow from the adobe form and what are the steps i need to customize for the above process and store the appraisal form after the second line managers approval??
    Are these available in standard workflows provided by SAP? Or do I need customization?
    Please help.
    Thanks.
    Kumar

    Hi Kumar,
    Your requirement is achievable by configuring a HR Process by using the HCM Process and Process. Please refer to SAP course material HR 280 for an overview of the HCM process and forms.
    Regards,
    Roy

Maybe you are looking for

  • Outlook/iPhone Multiple calendar sync

    Hi I have a work calendar in Outlook, driven from Exchange and a second personal calendar containing things that don't apply to work (birthdays, social events and so on). While both calendars appear in Outlook, I can't get the personal calendar to sy

  • How to connect usb disk

    Using airport utilithy 6.1, i've enabled file sharing and added a disk password.  all looks good, but i don't see the disk in finder.  Any ideas folks?

  • Markdown in Prices anytime soon...?

    Yo, Atm im in the market for a BIG lcd (30inch) but the 30" ACD is AUS$3200! way too much for me as the dell 30" is AUS$2600. Can we expect prices to drop on ACD anytime soon..?

  • Stock transfer between plant to plant in blocked status

    Hi Gurus, Can anybody know how to use some mov. type to transfer restricted status between plant to plant? Many thanks in advanced. Luiz Geraldi

  • 5800: How can I select access points manually in a...

    The access point management of the 5800 is somewhat different: using Web you can select the access point every time you start it, but other applications using network (e.g. Opera Mini) start connecting Wifi or 3G whatever comes first which means when