Add a line break using OAF personalisation.

Hi All,
I added a new checkbox in the button bar region for disclaimer purposes as per a client requirement. This checkbox is now sitting in the same line as the rest of other buttons. I want to add a line seperator between the checkbox text and buttons for cosmetic reasons. I tried using spacer option but that just pushes the buttons far and creates a horizontal space bar. Any idea what else can be done?
Regards,
Archie.

Hi Kali,
The page is FinalReviewPG.xml under /oracle/apps/ap/oie/entry/summary/webui/FinalReviewPG 120.1
I tried creating it under: Page Button Bar: Actions Region where I already have a checkbox created with a custom text. I created a seperator in this region and reordered the button bar items to have the seperator between the newly created check box and the existing buttons.
Hope this helps. Thanks a lot for all your effort kali.

Similar Messages

  • How to add new line item using BAPI BAPI_CONTRACT_CHANGE for contract-ME32K

    HI Experts,
    how to add new line item using BAPI: BAPI_CONTRACT_CHANGE for existing contract.
    Requirement:
    Already the contract having two line items using ME31K.
    Custom program has to add new line items in existing contract.
    Thanks,
    Sendil

    I got the solution:
    We can do like this:
    1. Get all details using details, BAPI_CONTRACT_GETDETAIL.
    2. After getting results, append new line item. Then use your BAPI.
    Check this posting program.. where this bapi is used, use the same coding technique.
    IDOC_INPUT_PURCONTRACT_CHANGE

  • I need to find all XML elements and add a line break to the text of each of them

    I need to find all XML elements and add a line break to the text of each of them.
    Is this possible with a script?

    I need to go from this ...
    to this...
    but looking for the XML elements (not paragraphs) and then adding text ...
    Thanks for your attention !!!

  • Urgent !!! Line breaks using Oracle email option

    Dear All,
    I need an urgent help. My query is some what confusing so please do let me know if you need any clarification.
    What I want to do is that I am using the Oracle email option. when I perform a backup the server sends an email to all the concerned authorities. It is fine till this stage. Infact that message that I am sending in the email is a TWO row query in the database. To display this message on SQL prompt is ok as it will appear in TWO lines. But in the email these two rows appear to have concated.
    What i want to achieve is that each row should appear in separate line in the email as well. just like using the HTML tag <BR>, the next line is displayed in the next line. Is there any SQL command which I can use to solve my problem.
    I would appreciate an urgent response as I am already short of time.
    With best regards.
    Khurram.

    I used to declare a varchar variable for end of line like this:
    EOL VARCHAR2(10) := CHR(13) || CHR(10);
    Then I have concatenated this variable any time when I needed like this.
    'First line'||EOL||'Second line'
    Take care, email RFC specifies that a new line is composed from a carriage return a new line "\r\n", so you must use both CHR(13) and CHR(10), Oracle equivalent for \r and \n.
    Andrei

  • Line Breaks using span.splitAt

    I am trying to implement a function that inserts BreakElements at a given position when the user presses the Shift+Enter keys. In order to prevent the default behavior of the EditManager (splitParagraph), i tweaked the keyDownHandler to differenciate between Enter and Shift-Enter).
    It works fine, but i would like to define an operation for inserting breaks, so the user can undo it, just like undoing any TextOperation, I started making my own class that extends FlowTextOperation and filled in this code in the doOperation method
    public override function doOperation():Boolean
    var span:SpanElement = textFlow.findLeaf(textFlow.interactionManager.activePosition);
    var p:ParagrahElement = span.getParagraph();
    span.splitAtPosition((textFlow.interactionManager.activePosition - span.getAbsoluteStart());
    var br:BreakElement = new BreakElement();
    var index:int = p.getChildIndex(span);
    p.addChildAt(index+1,br);
    return true;
    Any ideas on how to implement the undo method?
    Is it impossible because inserting a FlowElement is not managed by the EditManager and so the stack of operations is flushed?
    thanks!

    For performance reasons TLF doesn't use BreakElements (and TabElements) except during import.  After that they normalized to \n in a SpanElement which gets merged with its neighbors.  That's fewer TLF objects and fewer FTE objects.
    For your operation I'd suggesting using InsertTextOperation with \n.
    Hope that helps,
    Richard

  • How do I create a line break in an axis label

    I have a very long x-axis label that needs some line breaks. I've tried every key combination I can think of to no avail. Does anyone know how?
    Thanks,
    Mark

    There are a few ways to get line breaks.
    First way: Go to the Chart Inspector, Axis tab.  At the bottom it will either have references to the header cells it is using for labels or it will have a list of the labels. If it has references, use the second or third method.  If it has text, go to the label you want to modify.  Use Option-Return to put a line break in it.
    Second way: This works when best before you create a chart and might work afterward if the chart is still refering to the header column and hasn't converted the labels to text. Use option-Return to create line breaks in the header cells of your table. In the screenshot below, the first label has no line breaks, the second has one, and the third has none but is simply wrapping to the next line in the cell. 
    Third way: If the chart inspector has references to the labels, go to the chart (not the table) and edit one of the labels. The inspector will now show text instead of references. Use the first method to add your line breaks.

  • Line breaks in java

    Hi, I'm a little new to Java. I am trying to make a line break that is not in a textbox. So far, to make something similar to a line break, I played with the size of the applet on the HTML file. However, it's not working for one of my applets because it must be in several lines.
    I know that you can use /n or /r/n for line breaks in a TextArea, but I need to use line breaks to separate Buttons and several TextFields.
    In an earlier forum there was something like this:
    System.getProperty("line.separator");
    I don't really know how to add the line separator to my code. I pasted that just inside
    public class ClassName extends java.applet.Applet
    implements ActionListener
    right before
    public void init( )
    I tried putting "line.separator" in a string, but it did not work
    I also tried the following:
    add(/n);
    add(/r/n);
    add(line.separator);
    but none of them worked.
    If someone could help me, I would very much appreciate it. Thanks!

    I don't know why I didn't think of that, but there's an error when I compile it.
    SquareRoot.java:21: cannot find symbol
    symbol : method add(java.lang.String)
    location: class SquareRoot
    add(System.getProperty("line.separator"));
    ^
    And the same thing happens when I try it with \n
    SquareRoot.java:21: cannot find symbol
    symbol : method add(java.lang.String)
    location: class SquareRoot
    add("\n");
    ^
    Here's the code:
    public class SquareRoot extends java.applet.Applet
         implements ActionListener
         TextField m1, m2;
         Button b;
         double i1, i2, i3, i4;
         public void init( )
              m1 = new TextField(20);
              m2 = new TextField(20);
              b = new Button("Calculate");
              add(m1);
              add("\n");  //I'm trying to add a line break here
              add(b);
              add(m2);
              b.addActionListener(this);
         }Thanks!

  • PHP deletes .swf line breaks

    Hi all -
    I have a designed a Flash based interface to send email via
    PHP.
    I capture the variables in Flash using:
    var my_lv:LoadVars=new LoadVars();
    my_lv.name=name_txt.text;
    my_lv.message=message_txt.text;
    my_lv.send("mail.php","POST");
    My PHP reads:
    <?php
    $headers = "From: " . $_POST["name"];
    $headers .= "<" . $_POST["from"] . ">\r\n";
    $headers .= "Reply-To: " . $_POST["from"] . "\r\n";
    $headers .= "Return-Path: " . $_POST["from"];
    $to = $_POST['to'];
    $message=stripslashes($_POST['message']);
    //NOTE: I tried $message without stripslashes - same results
    $subject=stripslashes($_POST['subject']);
    mail($to, $subject, $message, $headers);
    ?>
    When the message is received all line breaks using
    RETURN/ENTER in Flash message .swf are deleted making the message
    one long line when viewed by the recipient. Is there something I
    need to write into my actionscript/php to allow the message to
    recognize these hard line breaks and display properly in the
    recipient's email client? I'm guessing (hoping!) it's an easy fix.
    BTW, the messages do display properly in 'some' clients and not
    others. I need some fix that will correct this across the board.
    Thanks in advance -

    Couple of things to note,
    You should have a ","not a ";" separating the message and headers fields.
    Secondly, "$name.=$phone.$message" is meaningless. If you are trying to concatenate the three fields together, you have to use "." and add in whatever spaces of carriage returns/linefeeds you want. So:
    $name."<br>".$phone."<br>".$message
    It's frequently good to add labels to the fields so the reader knows what sorts of information should be there.
    The text in any line should not exceed70 characters, according to the PHP rules. You will have to break up the message if it's longer than that.
    Unless you are doing a lot of error checking for bad input, you are exposing yourself to a lot of harm using this function, like opening you and your server up to all sorts of nasty attacks.
    Never trust any input from the user.

  • WRITE string with line break inside string.

    I would like to add a line break into a string that I want to write with the WRITE statement, but without using SKIP or NEWLINE or WRITE: \.
    CONCATENATE 'part1'
                ?the_line_break?
                'part2'
      INTO lv_string.
    WRITE lv_string.
    Any idea?

    Interesting requirement..
    WRITE statement does not interpret OS line break codes.
    You've to program to induce line break, try the following example code.
    data: lv_string(20),
          lv_off type i.
    concatenate 'part1'
                '~'
                'part2'
      into lv_string.
    search lv_string for '~'.
    lv_off = sy-fdpos + 1.
    write: at 1(sy-linsz) lv_string0(sy-fdpos), lv_stringlv_off.
    Regards
    Sridhar

  • Tool Tip line breaks

    I know the "tool tips" should be brief, but I got a long one, and a line break would make it more readable.
    Is there a way to add a line break in NIB object's Help "Tool tip" property? Some sort of keystroke like Shift-Return?
    Presently I edit the Tool Tip text in a word processor, add Returns where I want, and then copy and paste into the Tool Tip field. Works fine, but I wonder if there is an "inline" alternative?
    John

    Is there a way to add a line break in NIB object's
    Help "Tool tip" property? Some sort of keystroke like
    Shift-Return?
    Try Option + Return

  • DefaultStyledDocument - JTextPane - Forcing Line Breaks

    Well i have a defaultstyled document put into a JTextPane.
    Now when the user puts text into it and it reaches the end of the
    line in the jtextpane it auto word wraps down to the next line.
    HOWEVER, it does not add a line break into the actual document, it is just what the jtextpane does or something.
    What i want is to add a line break into the actual document once it reaches the end of the line and auto wraps down to the next line.
    Any suggestions how to do this easily?

    Move to top. Need a solution.

  • How to add new price break lines to existing PO quotations?

    Hi,
    I am using a custom interface (to insert quotations data into PO headers/lines interface tables) and PO documents open interface to create PO Quotations in Oracle.
    I need to modify this interface to:
    1. Update existing price break lines for a quotation line.
    2. Add new price break lines to existing quotation line(which may/may not have exsiting price break lines).
    Please let me know:
    1. What modifications need to be done to the existing code.
    2. What values needs to be passed to the action columns in PO_HEADERS_INTERFACE and PO_LINES_INTERFACE for above scenarios?
    Any ideas/help will be appreciated.
    Thanks
    Imran

    Hi Imran,
    I have done a similar exercise for BPA price breakup.. Let me know if you need that as reference. I can share that :).. Please provide your personal mail id..
    Regards,
    S.P DASH

  • Acrobat v9 JavaScript Alert Box - any way to add space or line break after each array item?

    I have a Document level Javascript used to identify blank required fields and is triggered on document actions, Print and Save. The script identifies the blank required fields, counts them, and outputs to an Alert box indicating the number of required fields blank and lists the fields by tooltip name. The script identifies the required fields by an asterisk at the end of each tool tip.
    My question is there any way to add a space or a line break after the comma for each listed item?
    Here is an image of the output where the listed items are all run together.
    Here is the code:
    function validateFields()
    //a counter for the number of empty fields
    var flg = 0
    // count all the form fields
    var n = this.numFields
    //create an array to contain the names of required fields
    //if they are determined to be empty
    var fArr = new Array();
    //loop through all fields and check for those that are required
    // all fields that have a '*' in their tool tip are required
    for(var i = 0;i<n;i++){
    var fn = this.getNthFieldName(i);
    var f = this.getField(fn);
    //tool tip is the fields\'s 'userName' property;
    var tt = f.userName
    //test for the '*';
    if(tt.indexOf('*')!=-1 && f.value == f.defaultValue){
    //increment the counter of empty fields;
    flg++;
    //add the fields userName (tool tip) to the list of empty field names;
    fArr[fArr.length] = tt;
    //now display a message if there are empty fields
    if(flg>0){
    app.alert('There are '+flg+' fields that require a value\n\n'+ fArr,3)
    else{
    this.print();

    Thank you! The alert box array items now have a line break, image below.  You know you have made my day and possibly several weeks as now I have more understanding about how to apply everything I have been reading in the Acrobat JavaScript guide and of course as soon as you pointed out using a "join", that triggered some old-days of working with Access and SQL queries.
    I will work on the required attribute to see how I might reference it.  I am laughing at myself now - good luck to me in figuring it out as I was very stick-in-the-mud regarding the line break issue.
    Thanks again and here is the result of the updated code:

  • Very Simple: How do I programmatically add line breaks?

    Very Simple: How do I programmatically add line breaks or how do I encapsulate my RichCommandLink's within a paragraph?
    My Code is as follows:
    for (String token : userViews.getViewNames())
    // add command link
    RichCommandLink output = new RichCommandLink();
    output.setText(token);
    // set action here
    // output.setActionExpression());
    viewItem.getChildren().add(output);
    // update view
    this.menuAccordion.getChildren().clear();
    this.menuAccordion.getChildren().add(0, viewItem);
    AdfFacesContext.getCurrentInstance().addPartialTarget(getMenuAccordion());

    Sorry, I'm using Jdeveloper 11.
    Im using JSP, JSF, ADF, Fusion. The RichCommandLink is an ADF Control.
    My PanelAccordion is bound to a RichPanelAccordion in my java class. When I add RichCommandLink's to the accordion the items are added next to each other. How do I add line breaks from my java class?

  • Line breaks in emails when using Gmail

    *The problem arises because the iPhone uses "Plain Text" to send emails.*
    *When using gmail, gmail automatically inserts line breaks in "Plain Text" emails every 78 characters, the reason why you see the breaks when unexpected.*
    *See: http://www.google.com/support/forum/p/gmail/thread?id=4d1cecc1aab102ef&hl=en*
    *To fix this problem:*
    *1. Apple can allow us to send mail with Rich Text support from iOS devices OR*
    *2. Google has to change the line breaks setting so that Plain text flows (and isn't broken) <-- this option is probably more realistic*
    *I have tried from a hotmail account, sending email as plain text doesn't have line breaks imposed like the gmail account, but rather "flows".*
    *If you want gmail to add a setting to disable line breaks in plain text emails:*
    *Suggest the feature here:*
    *http://mail.google.com/support/bin/static.py?page=suggestions.cs*
    *I chose these categories:*
    *- I have another idea*
    *- Sending and receiving*
    *- - - Composing and delivery*
    *- - - - Sending options*
    *-For comments: Configure or disable plain text wrap length.*

    I am having the same problem with an IMAP/SMTP account. It was a GMail account, I switched it to using the GMail auto setup and haven't had any issues.
    But under the standard IMAP/SMTP setting almost 1/3 of all messages were showing no content.
    Though I don't recall exactly - I think most of them were sent while I was on 3G, and it otherwise works fine on WiFi.

Maybe you are looking for

  • Need help with a matte

    I have a transition that I'd like to do where someone lifts a bag out of the frame, revealing the next shot underneath. Shot 1 is of the bag and I've already masked it off in After Effects and brought that back into FCP. Shot 2 is the shot I'd like t

  • 8i hangs when calling a complex EJB

    Regarding 8i (8.1.6) and EJBs on an NT Server... We have been working towards deployment of a web application, using 8i, for some time now and have overcome a number of problems encountered with EJBs (remote access via 2481, clientserverserver demo n

  • Pricing Conditions deactivation at header level of Sales Order

    Hello there, We have used a routine in pricing procedure (BaseType Routine) to deactivate condition MWST in the MWST condition line in pricing procedure, transaction V/08. In the routine, We played with the KINAK (set to K )and KOBLI (set to space) f

  • Where is my serial number for convert to PDF

    I did not receive an e-mail or a cd.  I bought it on 11 Nov 14 for 89.99.  When I am in my e-mail trying to look at something someone sent me I get the pop up to buy it again or it wants a serial number which I don't have.  If I go to it from my desk

  • Adobe XI Reader issues

    I no sooner get a document opened when I receive a message that "Adobe Reader has stopped working correctly. Windows (Windows 7) will close the program and notify you if a solution is found". Any ideas on how to make a fix? I have deleted and reloade