How to adjust  Repetitive Area Lines & Height  in different cases

Hi,
Repetitive Area Lines Should display till Footer Level.How we can fix up the repetitive Area Height
Different Cases
1. In one Document has One Item in that case Lines should display till Footer
2.Another Document have morethan five Items  In that case also Lines should come till Footer Level
Suggest me how can i solve this.
Regards,
Vikram
Message was edited by:
        Marc Riar

Hi Challa
You could try and put your totals in the 'End of Report' area. Tick the 'Align to Bottom' on the format tab. If your totals are in the Repetitive Area (Footer) they will always display directly after the last record.
I hope I understood your problem correctly.
Regards
Daan

Similar Messages

  • How to adjust klick area of buttons in video playback control skins?

    Hello,
    I am far from a heavy flash user (yet), and try to figure some really basic things:
    I've adjusted the SkinOverPlayStopSeekMuteVol_ skin (under a new name, of course) that comes with Flash CS4 in the FLVPlaybackSkins/ActionScript 3.0.
    I've already put up some clients videos on a website but am not satisfied with the surrounding click area of the buttons
    (in my case make them far larger so the user doesn't have to hit the exact small shown area)
    Some buttons or bars come with certain Hit/Click areas that I can adjust by e.g. simply resizing their graphic.
    Other buttons like the play button movie clip don't seem to have such.
    Where ist and how can I adjust their click area that surrounds them?
    Another question:
    when I select/edit e.g. the play button disabled apart from the icon I do also have a button in my timeline/on stage which only displays with a littel cross and a circle. what are these exactly? and how can I control them/what can I control with them. it looks like that invisible click area I am looking for but I have no clue how to control them, what the rules are when moving them around (the blue border around the buttons changes when I move the around, but what are the rules/controls really)
    can anybody help me please?
    thanks,
    beatrice

    You can have too little or too much light on the backdrop. It can be a fine line when shooting high key video.
    Standing far enough away from the background is important. You do not want the light that is shining on the background to also shine on you. Also, you can use flags to keep the lights themselves from being seen in the camera. I would use a 4'X8' styrofoam board on each side to block the lights. Paint one side black, or cheat and cover it with black fabric. That way one side is a great reflector and the other sucks up the light.
    So, now that you are farther away, you light yourself with the standard three light setup, Key, Fill and Hair. Just keep in mind that you do not want to be lit as bright as the background is. Keep it a stop or two below the background for starters.
    So if you set your exposure for your face, then the background will be blown out. It may take some adjustment to get just the right amount of blown out. Too much light on the background still causes some to bounce back on you regardless, and it confuses the camera.

  • How can I match the line thicknesses in different sizes of the same font?

    I'm working on a graphic that includes a handwriting font, and I'd like some text to be larger than others. The obvious issue is that when I make the font larger, the lines also get thicker. Has anyone found a good solution for this problem, other than limiting the design options to large font families with lots of weights? I do employee communications design work for a call center, so purchasing a big font set for internal communications isn't an option.
    I've tried to "hide" some of the larger text's thickness by adding a white stroke to it, or by hiding the font edges with a mask, and I've also tried artificially "bolding" or adding a stroke to the smaller text. They all result in noticably distorted text, particularly around corners, and the results are particularly horrible when using something with texture, like a chalkboard font. I haven't had any better luck in Illustrator, either.
    I'm sure I'm not the only one out there who wants to simulate the look of one person writing in different sizes with the same writing utensil. Beyond writing it myself (my handwriting is ugly), can you think of any solutions I haven't tried?
    Thanks in advance!
    Paula

    Thanks, I'll try the Min/Max and see if that works any better. The final output in this case is pixel based, for use in PowerPoint and in email headers. I often do my text work in Illustrator, but in this case I was trying to simulate writing on a chalkboard, so I started in Photoshop so I could see how it looked against the background as I worked. I actually face this challenge fairly frequently, though.
    The team I design for is virtual, with over 700 people spread across the US and up into Canada. For that reason, I like to use the "hand drawn" look on occasion to bring some warmth and personal touch to the communications, to contrast with all the super-polished "high gloss" graphics they look at all day in their work tools. It's a real challenge to find text and artwork that matches well once scaled to fit my documents, especially since most of the vector-based artwork I find online has already been converted to outlines, so it doesn't retain the same stroke thickness when the images are scaled.
    If anyone out there knows of an illustrator who doesn't convert their sketch-style graphics or fonts/typography to outlines before putting it up for use, either on Shutterstock or on any free site (since those are the ones I can use) I'd love to hear about it!

  • Duplicate rows in repetitive area

    Hi all,
    I'm going to modify existing Employee Report (from Employee Master Active Window). I have added a repetitive area to show Education details. Education details are not there in the Employee Master window. Only a link is there. Education details data are saved in HEM2 table.
    Problem is : When running the report each row in the repetitive are are coming twice.
    How can I resolve this problem?
    Thanks.

    The fields you are adding related to the Education information should have this table in the content tab (properties):
    HEM2 Education, as you have said.
    I think only one repetitive area is needed in your case. In the same repetitive area you should have all the fields (the ones related to the general information and then ones related to the education).
    Then you should use the groups. (I suggest group 1 > empID, group 2> education line) So, you will be able to group the information the way you need. For example:
    Employee1
         Education 1
         Education 2
    Employee2
         Education 1
         Education 2
    Hope it helps!
    Regards,
    Vanessa

  • HELP !! change the line height in JTextArea ??

    can anyone tell me , how to change (set) the line height in JTextArea ???

    Looking at the source code for JTextArea, the rowHeight is taken from the font's FontMetrics and is used to set the preferred size of the ta, as you can see in the following app. Also, only three properties are maintained by the default PlainDocument as shown in the output. Might be worth your while to check out JTextPane.
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    public class TARowHeight {
      public static void main(String[] args) {
        final CustomTextArea ta = new CustomTextArea(5,10);
        ta.addPropertyChangeListener(new PropertyChangeListener() {
          public void propertyChange(PropertyChangeEvent e) {
            System.out.println(e.getPropertyName() + " changed to " + e.getNewValue());
        ta.setLineWrap(true);
        ta.setWrapStyleWord(true);
        ta.setFont(new Font("lucida sans regular" , Font.PLAIN, 16));
        JPanel centerPanel = new JPanel();
        centerPanel.add(ta);
        SpinnerNumberModel model = new SpinnerNumberModel(20,8,36,1);
        final JSpinner spinner = new JSpinner(model);
        spinner.addChangeListener(new ChangeListener() {
          public void stateChanged(ChangeEvent e) {
            int height = ((Integer)spinner.getValue()).intValue();
            ta.setRowHeight(height);
            ta.revalidate();
            ta.repaint();
        JPanel southPanel = new JPanel();
        southPanel.add(spinner);
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.getContentPane().add(new JScrollPane(centerPanel), "Center");
        f.getContentPane().add(southPanel, "South");
        f.setSize(300,200);
        f.setLocation(400,400);
        f.setVisible(true);
        System.out.println(ta.getRowHeight());
        Dictionary names = ((AbstractDocument)ta.getDocument()).getDocumentProperties();
        Enumeration keys = names.keys();
        Enumeration values = names.elements();
        while(keys.hasMoreElements())
          System.out.println("key: " + keys.nextElement() +
                             " value: " + values.nextElement());
    class CustomTextArea extends JTextArea {
      private int rowHeight;
      public CustomTextArea(int rows, int cols) {
        super(rows, cols);
      protected int getRowHeight() {
            if (rowHeight == 0) {
                FontMetrics metrics = getFontMetrics(getFont());
                rowHeight = metrics.getHeight();
            return rowHeight;
      protected void setRowHeight(int rowHeight) {
        int oldVal = this.rowHeight;
        this.rowHeight = rowHeight;
        firePropertyChange("rowHeight", oldVal, rowHeight);
    }

  • Line-height problem in publishing after update!

    This was how it looked before the update.
    This is how it look now.
    same line-height value. but it only happens when i publish it when i view it locally there's no problem.

    Fisrt, this problem only happens in the published content which has edge runtime js file in minified form.
    There is one issue with the minification due to which this issue happens.
    1. What´s the difference between the code you gave me and the "textShadow" with ts:"textStyle" you gave that other guy?
         Since your edge runtime code is hosted in CDN which we don't have acces to modify, that's why you need to add one line extra code. If edge runtime is hosted in your server itself then you can modify it as I suggested earlier. But I would recommend to add extra one line code, which will be cleaner way to do it.
    2. Should I always insert the code you gave me before starting a new project? So this problem doesn´t happen along the way?
         You can add this one line to every new project if it's using line-height. One we fix the issue in the next release, you no longer need to do that then. But till then, use it.
    -Vivekuma

  • PLD: Line items trauncate in repetitive area

    Hi All,
    I'm having issue with the line items truncate in the repetitive area.
    Is there a way to fix the number of items in repetitive area?
    Thanks in advanced.
    Regards,

    HI Tripti Shrestha
    >> Open your PLD and Create new Formula Field and put this formula,
    =>> Create new Formula Field in Repetetive Area Footer and put Formula.
    =>> Create the Seperate FORMULA Field in Repetetive Area Footer,
    for ex. Line No. Item Code, Discription, Qty, Unit Price, Total
    you should put the FORMULA in all FORMULA FIELDS in Repetetive Area Footer.
    Substring('\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n',0,2*(16-LineNum()))
    AND
    *IF Repetitive Area Footer fields is blank means that
    field should not display in Print AND Repetitive Area Footer decrease in Print*
    Do this,
    ->> Link to all Fields in Repetitive Area Footer.
    for example, DocTotal Field.
    ->> Choose DocTotal Field in Repetitive Area Footer than
    ->> Goto Properties Window and Link to DocTotal fieldID at General Tab.
    ->> put the Tick Mark in Area Height Adjustment at Format Tab.
    Save and Run the Print Preview.
    Thanks
    Khan Imran

  • How can I set the default line height?

    Greetings,
    I have a report that displays observed behavior in a list format like the one below:
    Behavior Observed:   
        Withdrawn           
        Happy
        Sad
        angry
    There are 5 responses as to the severity of the behavior or it is left blank if the behavior was within normal limits.
    So the output would look like this:  
    Behavior Observed:   
        Withdrawn            (mild)
        Happy
        Sad                      (moderate)
        angry
    The problem is that when this report was designed the details sections were not uniformy formatted and the spacing between data elements is hard to follow from the label to the data field.  I tried to set the details to be uniform by selecting "Arrange Lines",  however when I do this, the data is displayed too close horizontally.  So my question is how do I set the default line height for each field so that they are uniform in distance from each other but not too close due to the font height?
    Does this make sense?
    Thank you,
    Kevin

    I'm confused... How are you associating line height with horizontal field spacing???
    If you have this...
    Behavior Observed:     Severity:
    Withdrawn          (mild)
    Happy
    Sad               (moderate)
    angry
    But want it to look like this...
    Behavior Observed:
    Withdrawn (mild)
    Happy
    Sad (moderate)
    angry
    all you have to do is create a concatenation formula. Something like this...
    {TableName.BehaviorObserved} & " (" & {TableName.Severity} &")"
    Sorry if I've misunderstood what you are trying to do.
    Jason

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • I am trying to create a PDF document that calculates Gains and Losses in Mutual Funds. The calculation scripts are repetitive from line to line. The scripts work well until I reach the line 32. Script stops calculating...

    I am trying to create a PDF document that calculates Gains and Losses in Mutual Funds. The calculation scripts are repetitive from line to line. The scripts work well until I reach the line 32. Although I am using the same script as the fields above in the columm, the script eventually stops calculating and I can't figure out why. Is there a limit of how many calculation scripts you can enter? I will attempt to attach my pdf as soon as I figure out how. Thanks.

    For e31 :
    var e30 = +getField("e30").value ;
    var c31 = +getField("c31").value ;
    if ( (e30 !== 0) && (c31 !== 0) ) event.value = e30 + c31 ;
    else event.value = "";
    for e32 :
    var e31 = +getField("e31").value ;
    var c32 = +getField("c32").value ;
    if ( (e31 !== 0) && (c32 !== 0) ) event.value = e31 + c32 ;
    else event.value = "";
    for e33 :
    var e32 = +getField("e32").value ;
    var c33 = +getField("c33").value ;
    if ( (e32 !== 0) && (c33 !== 0) ) event.value = e32 + c33 ;
    else event.value = "";
    Java console doesn't show any error... That's why I am wondering if it's not a limitation issue... or memory issue, because they are maybe too many rows or something....
    The c value is not calculated.

  • How to adjust line spacing

    Can you adjust the line spacing in Dreamweaver or does it have to be done by code? And how so?

    Line-spacing on what?  Headings, Lists, Paragraphs...?  With CSS rules, you can define line spacing for all selectors in the body rules.  Or you can specify different line-heights on individual selectors.
    CSS global rule (applied to all selectors):
    body {line-height: 100%}
    CSS more specific rule (applied only to named selectors):
    #header p {
    line-height: 2;
    #footer p {
    line-height: 1.5;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to adjust splitted lines into one line in Text file?

    Hi Guys,
    I have a text file with 3 fields(comma separated): GLCode (Number), Desc1 (Char), Desc2(Char) and need to load it into BW.
    My Text file looks like:
    1011.00,"Mejor PC Infrastructure","This line is ok."
    1012.00,"Telephone Equipment $","This line ends in next line.   
    1)Need to change the equipment immediately.
    2)Take immediate action"
    1013.00,"V1 Computer Server Infrastructure # Equip","For purchases
    of components that make up the company's network, such as servers, hubs, routers etc."
    1014.00,"Flash Drive","Need to provide all IT Developer"
    This is how file looks like. Now I need the followings:
    1. Need to remove the space and need to adjust the splitted line into one. Say here
    line/record 2 is splitted into 3 lines and need to adjust in 1 line.
    2. In Line 5 (Record 3) data splitted into 2 lines and need to make 1 line.
    3. Need to remove bad characters.
    Could someone help me please how to proceed ?
    Regards,

    Not quite correct by my testing.  Try:
    $i=0
    Get-Content .\test.txt | ForEach {
    If ($i%2){
    ("$Keep $($_)").Trim()
    }Else{
    $keep=$_
    }$i++
    Good catch!
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • Tax break up in line by line for  each item in the repetitive area

    Dear SAP PLD Experts
    I am facing a problem for generating excise invoice in pld with tax break for each line item .
    for eg : i have 5 line item in the invoice. 
    so , i want to show the tax break up for each line item seperately in column wise .
    slNo----Item CodeQtyPriceCenvat E.Cess---- H.E.Cess-- Vat--
    Total
    1-- A  5 -1000 96.401.920.96 40.00---    line total
    2
    3
    4
    5
    But when i am showing the Tax amount from Sales tax authorities table in repetitive area, its showing 25 line numers instead of 5 line. and tax amounts is showing line by line.
    Can any body help me to sort out this issue.
    Thanks
    Regards

    Dear,
    Add the UDF's on the marketing document you want the tax break up.
    Apply FMS using below queries and call these UDF's on your PLD.
    FOR BED
    DECLARE @Amount as Numeric(19,2)
    DECLARE @Rate as Numeric(19,0)
    DECLARE @TAmount as Numeric(19,2)
    set @TAmount =$[$38.21.Number]
    SELECT    @Rate=STA1.Rate
    FROM         OSTC INNER JOIN
                          STC1 ON OSTC.Code = STC1.STCCode INNER JOIN
                          STA1 ON STC1.STACode = STA1.StaCode Where   OSTC.Code=$[$38.160.0] And STA1.SttType='9' order by STA1.EfctDate desc
    set @Amount=(@TAmount * @Rate)/100
    Select @Amount
    For Cess
    DECLARE @Amount as Numeric(19,2)
    DECLARE @Rate as Numeric(19,0)
    DECLARE @TAmount as Numeric(19,2)
    set @TAmount = $[$38.U_BED.Number]
    SELECT    @Rate=STA1.Rate
    FROM         OSTC INNER JOIN
                          STC1 ON OSTC.Code = STC1.STCCode INNER JOIN
                          STA1 ON STC1.STACode = STA1.StaCode Where   OSTC.Code=$[$38.160.0] And STA1.SttType='8' order by STA1.EfctDate desc
    set @Amount=(@TAmount * @Rate)/100
    Select @Amount
    For HCess
    DECLARE @Amount as Numeric(19,2)
    DECLARE @Rate as Numeric(19,0)
    DECLARE @TAmount as Numeric(19,2)
    set @TAmount = $[$38.U_BED.Number]
    SELECT    @Rate=STA1.Rate
    FROM         OSTC INNER JOIN
                          STC1 ON OSTC.Code = STC1.STCCode INNER JOIN
                          STA1 ON STC1.STACode = STA1.StaCode Where   OSTC.Code=$[$38.160.0] And STA1.SttType='10' order by STA1.EfctDate desc
    set @Amount=(@TAmount * @Rate)/100
    Select @Amount
    This will help you.
    regards,
    Neetu

  • How to give line height to text in AI Script

    how to give line height to text in AI Script

    I want to increase these three lines line height differently means i want script to increase the line height of outlined text

  • How to hide fields on Repetitive Area Footer on the last page?

    Hello,
    How can I avoid printing some fields on the last page, when this fields
    are on the Repetitive Area Footer, and the Repetitive Area Footer is
    defined to print on all the pages? I was hoping to do this with fileds linked
    to (ContinueNextPage) field, but it doesn't work!
    Regards,
    Júlio Pinho

    hI Júlio Pinho,
    i think, it is not possible in Repetitive Area Footer on PLD.
    but, it is possible in Page Footer on PLD.
    IF you dont need print some Fields in Last Page on printout.
    Try this,
    ->> Open the require PLD.
    ->> Create require Fields in Page Footer.
    for example,
    => Create DocTotal Field in Page Footer on PLD.
    => Link to SystemString (ContinueNextPageNotice) Formual FieldID in DocTotal Filed.
    Save and Run the Print Preview.
    Regards,
    Madhan.

Maybe you are looking for

  • Error message when exporting

    keep getting error message when exporting 12 min project from premier pro , never had this problem. Adobe tech used remote access to assist me with something and changed settings etc.

  • Content server for cFolders

    Hello Everyone, We have SAP DMS in our compnay and are using SAP Content server to storing the documents. Now,we are installing cFolders in the demilitarised zone(outside compnay network).My questions are: 1.Can we use the same SAP DMS content server

  • MD04 still showing outstanding PR.

    Hi all, MD04 still showing outstanding PR although i already open the PO and also done for the goods receipt but the it still list out the PR. And when i double click on the PR, it give a message said that "the purchase requisition has been completel

  • Dreamweaver created website on Apache/Tao Linux host

    I was creating a simple 5 page website based on a DW template, and once I FTP'd the home page ("Index.html") to the web host, I recieved an Apache setup screen - as if the file I placed wasn't read or understood. I renamed the original Index.html bac

  • Shipping Screen to main Screen

    Dear Friends, Requirement is- bringing Shipping Tab hidden in Header of Sales order to Main screen. Is this possible , and how. Thank you Ravi