Determine line count with wordwrap without Textcomponent visible

Hi,
I read a lot of post here that contains code that return number of line occupied by a wrapped text in JTextArea/JTextPane.
However, the code only work if the text component is visible and already on screen.
What I want is calculate the number of line count of wrapped text in those component even before the component is visible.
Currenly, the line count always return 0 because component yet to display on screen.
Can someone tell me how to do this ? thanx.

I've been struggling with this for JTextArea. This seems to work. tp is the JTextArea and I get width from the preferred size.
        public int getLines(float width) {
            View view = tp.getUI().getRootView(tp).getView(0);
            view.setSize(width, (float)Short.MAX_VALUE);
            int preferredHeight = (int)view.getPreferredSpan(View.Y_AXIS);
            int lineHeight = tp.getFontMetrics( tp.getFont() ).getHeight();
            return preferredHeight / lineHeight;
        }

Similar Messages

  • Determinations Server - response with and without decision report

    I'm trying to solve a problem where a decision report will be needed sometimes but not all the time.
    Is there a way to have to have the determinations server respond with 2 different responses for 1 request?, or send back the standard response without decision reports and write a response with decision reports to a log?
    The concern is that the decision reports will slow the processing of the entire application.

    Hi. It may not be exactly what you are looking for perhaps following link from developer's guide could help.
    Oracle Policy Automation Developer's Guide
    Process multiple determinations within the same Assess request
    The Determinations Server is able to process multiple determinations within the same Assess request. To do this you must:
    Design your rulebase to concurrently determine multiple outcomes.
    At runtime, construct your request to send all the entities you want to reason on, and all the outcomes that you want.
    Rulebase Design
    You can design a rulebase in such a way that it can make multiple determinations concurrently if the determinations are attributes or, less commonly, inferred relationships belonging to a non-singleton (and not the global) entity.
    Once the outcomes belong to an entity, it is possible to create multiple entities and infer the values for all entities at once.

  • Programmatically determine step count with nested sequences

    I have a program that uses the count of steps in a sequence to determine progress. I currently use a sequence pointer to call GetNumSteps for each group. What would be the best way to expand this to handle subsequences? In other words, if I have a top level sequence with 5 main steps, 0 setup and 0 cleanup but one of the steps is a sequence call and that sequence has 10 main steps, 0 setup and 0 cleanup steps, I want the count to be 15 and not 5. Thanks.
    -G-
    -G-

    Steve is correct, you would have to set this up using recursion where you count steps and also go into sequence calls to count their steps as well. There is no native way to do this in TestStand, you would have to program this with your language of choice and call that recursive function.
    Brandon Vasquez
    Applications Engineer
    National Instruments
    Brandon Vasquez | Software Engineer | Integration Services | National Instruments

  • How to determine line count in single multiline textbox

    I have data that comes out of a sql db text field that already has line breaks and paragraph breaks.  I would like to determine how many lines this will be (w/ line wrapping on) so that I can say if over 20 lines font = 12 pt. etc.  How do you determine how many lines there are in a multiline textbox?  In .net a textbox can be called w/ .linecount to get the # of lines.
    How can I accomplish this in Crystal Reports?
    Any help would be appreciated.
    Dave

    That would work if we had full lines of Text.  The problem is that we have line breaks and paragraphs which would prevent lines from being full.  Here is an example:
    My name is Dave.
    I went to the store today and bought some bread, lunch meat, juice,
    and wine.
    Signed by:
    David
    08/01/2008
    The middle section could be x lines long.  But as it grows I need to shrink the font since there is a finite amount of height for the textbox.
    Thanks for the idea,
    Dave

  • Add line count

    Hi,
    I'm trying to get the kerning character's report from our document. I have done the script without the line count, can you please guide to me "how to add the line count with in this script".
    //~ Define variables
    var myDoc = app.activeDocument;
    var myDocPath = myDoc.filePath;
    var myDocName = myDoc.name;
    Fnd = new Array();
    FoundContents = new Array();
    totalArray = new Array();
    try
        var myColor = app.activeDocument.colors.item("KER").name;
    catch(myError)
        var myColor = app.activeDocument.colors.add();
        myColor.name = "URL";
        myColor. model = ColorModel.process;
        myColor.colorValue = [15, 100, 100, 0];
    //~ End define variables
    //Array start for find urls and apply color
    var doc = app.activeDocument,
        _stories = doc.stories;
    for(var i=0;i<_stories.length;i++)
            var characters = _stories[i].characters;
            for(var j=0;j<characters.length;j++)
                    if(characters[j].insertionPoints[-1].kerningMethod != "Metrics" && characters[j].insertionPoints[-1].kerningMethod != "Optical")
                            if(characters[j].insertionPoints[-1].kerningValue <= -51)
                                    characters[j+1].fillColor = myColor;
                                    characters[j].fillColor = myColor;
    reportPage = new Array();
    reportContents = new Array();
    app.findTextPreferences = app.changeTextPreferences = null;
    app.findTextPreferences.fillColor = myColor;
    var myFoundColor = app.activeDocument.findText();
    for(f=0; f<myFoundColor.length; f++)
        var myFoundPage =  myFoundColor[f].parentTextFrames[0].parentPage.name;
         Fnd.push(myFoundPage)
        var myFoundContents = myFoundColor[f].contents;
        FoundContents.push(myFoundPage + "\t" + myFoundContents + "\r")

    Try this,
    //~ Define variables
    var myDoc = app.activeDocument;
    var myDocPath = myDoc.filePath;
    var myDocName = myDoc.name;
    var result = [];
    try
        var myColor = app.activeDocument.colors.item("KER").name;
    catch(myError)
        var myColor = app.activeDocument.colors.add();
        myColor.name = "URL";
        myColor. model = ColorModel.process;
        myColor.colorValue = [15, 100, 100, 0];
    //~ End define variables
    //Array start for find urls and apply color
    var doc = app.activeDocument,
        _stories = doc.stories;
    for(var i=0;i<_stories.length;i++)
            var characters = _stories[i].characters;
            for(var j=0;j<characters.length;j++)
                    if(characters[j].insertionPoints[-1].kerningMethod != "Metrics" && characters[j].insertionPoints[-1].kerningMethod != "Optical")
                            if(characters[j].insertionPoints[-1].kerningValue <= -51)
                                    characters[j+1].fillColor = myColor;
                                    characters[j].fillColor = myColor;
                                    result.push(characters[j].parentTextFrames[0].parentPage.name + "\t" + characters[j].parentStory.characters.itemByRange(characters[j].parentTextFrames[0].lines[0].index,  characters[j].index).lines.length + "\t"+ characters[j].contents + "\r")
    alert(result)
    Regards,
    Chinna

  • Multiple small stories with variable line counts assigned to different editors

    I have a "best practice" question for you more experienced InCopy users about what workflow you recommend for my specific issue. I am experienced in InDesign, but am a InCopy newbie. I want to make sure I'm not missing a solution because my lack of experience with InCopy may be causing me not to see the forest for the trees.
    Short version: What is the best way to allow multiple editors access to each of multiple small stories separately (one story per editor), but to allow the line count of each story to be variable each week, while adjusting the rest of the stories along with it on the page (see image below)?
    Details: My publishing company's workflow is on CS6 with editors working in Word, and we're upgrading to CC2014 with InCopy. We have 7 in-house editors, and all files on an in-house server. We have quick deadlines (some are 15 minutes from editor writing copy to transmitting publication to subscribers). In the example below, we have 10 sections, and I have all seven editors writing different sections at the same time. A final editor has control over fitting the final page. My INDD files to test the new workflow use an assignment-based workflow. I understand I can place each of these sections as their own story, under the same assignment, so a different editor can have them checked out. However, each section does not have the same line count from week to week. Markets with more activity will get more lines.
    In our current workflow, we have multiple rough Word docs pulled into one master doc with a script, that the final editor edits to fit, so each section can be a different number of lines as long as the total is the same. Then production staff load it in. When we upgrade, we can use a hybrid workflow where the final editor just loads that final Word doc into one InCopy story and edits it to fit.
    It would be great if I just didn't understand how to make the text height variable for the story each editor is typing, and auto-adjust so the next story starts below where the story above it ends, and you all had an idea how I can do it!
    Thanks! Nancy

    I disagree to Seshu's answer to question 1.
    Correct answer of question 1 is C and <u><b>not A.</b></u>
    Sorry I didn't find time to check the rest.
    <u>To the examinee</u>
    I wouldn't assume all answers from SDN-ers are correct if my certification exam was knocking the door! I would rather try and find out the correct answers myself from the system instead of mugging these answers without any understanding of the technology involved! Find out the answers yourself from the system...that way it will help you to understand why the answer is 'C' and not 'A'...just knowing the answer is 'C' is not good enough...one has to understand "why" its 'C' and not 'A'. Hope you get my point! Good luck.

  • Determining number of lines in a File without loading it to memory

    hello guys,
    I'm just wondering if there is a way to know the number of lines in a file without having to load the file entirely into memory and count the lines.
    in my project i have a restriction that says that i'm not allowed to load into memory more than 10 KB. i have to read the file block by block, say ten lines at a time.
    I actually did the second point which is reading the file 10 lines at a time, but still the total number of lines is still hard coded.
    thank you for your help !
    I

    ralfph wrote:
    hello guys,
    I'm just wondering if there is a way to know the number of lines in a file without having to load the file entirely into memory and count the lines.
    in my project i have a restriction that says that i'm not allowed to load into memory more than 10 KB. i have to read the file block by block, say ten lines at a time.
    I actually did the second point which is reading the file 10 lines at a time, but still the total number of lines is still hard coded.
    thank you for your help !
    ISo just read a line at a time, increase a counter, and don't save the line. As long as no one line is longer than 10 kB, you're fine.
    If it's possible for a line to be longer than 10 kB, then you'll have to read into a byte[] or char[] and iterate over it looking for end of line characters.

  • Compare two invoices with same distribution line count

    I am trying to pull data out of Oracle Payables - invoices for which the invoice amount ,the vendor and distribution line count is same.
    I could achieve pulling invoices with same Vendor having same amount.But finding hard to compare the counts.
    Can anyone share ideas on how to achieve this ... Tried self join but did not work.
    The query which I used is as follows :
    select invoice_num,invoice_id,invoice_amount,vendor_id,
    (select vendor_name from apps.po_vendors where vendor_id=aia.vendor_id) vendor_name,
    (select count(*) from apps.ap_invoice_distributions_all aid where aid.invoice_id=aia.invoice_id) line_count
    from apps.ap_invoices_all aia
    where invoice_amount in (select aiab.invoice_amount
    from apps.ap_invoices_all aiab
    where aiab.creation_date >='01-AUG-2012'
    and vendor_id=aia.vendor_id
    group by aiab.invoice_amount
    Having (count(aiab.invoice_amount) >1))
    and aia.creation_date >='01-AUG-2012'
    Thanks in Advance.

    I did try your query with sample records and counts are also correct plz chk the following, for me counts are correct as per your logic -
    select aia.invoice_num,aia.invoice_id,aia.invoice_amount,aia.vendor_id,
    (select vendor_name from
    (select 'XX' vendor_name, 'A' vendor_id from dual union all
    select 'XY' vendor_name, 'B' vendor_id from dual union all
    select 'XZ' vendor_name, 'C' vendor_id from dual union all
    select 'XA' vendor_name, 'D' vendor_id from dual ) po
    where vendor_id=aia.vendor_id) vendor_name,
    (select count(*) from
    (select 1 invoice_id from dual union all
    select 1 invoice_id from dual union all
    select 1 invoice_id from dual union all
    select 2 invoice_id from dual union all
    select 3 invoice_id from dual ) aid
    where aid.invoice_id=aia.invoice_id) line_count
    from
    select 10 invoice_num, 1 invoice_id,100 invoice_amount, 'A' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 11 invoice_num, 1 invoice_id,100 invoice_amount, 'A' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 12 invoice_num, 1 invoice_id,100 invoice_amount, 'A' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 13 invoice_num, 2 invoice_id,100 invoice_amount, 'B' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 14 invoice_num, 2 invoice_id,100 invoice_amount, 'B' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 15 invoice_num, 3 invoice_id,100 invoice_amount, 'C' vendor_id ,'01-SEP-2012' creation_date from dual union all
    select 16 invoice_num, 4 invoice_id,100 invoice_amount, 'D' vendor_id,'01-OCT-2012' creation_date from dual) aia
    where aia.invoice_amount in (select aiab.invoice_amount
    from
    select 10 invoice_num, 1 invoice_id,100 invoice_amount, 'A' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 11 invoice_num, 1 invoice_id,100 invoice_amount, 'A' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 12 invoice_num, 1 invoice_id,100 invoice_amount, 'A' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 13 invoice_num, 1 invoice_id,100 invoice_amount, 'B' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 14 invoice_num, 1 invoice_id,100 invoice_amount, 'B' vendor_id ,'01-AUG-2012' creation_date from dual union all
    select 15 invoice_num, 1 invoice_id,100 invoice_amount, 'C' vendor_id ,'01-SEP-2012' creation_date from dual union all
    select 16 invoice_num, 1 invoice_id,100 invoice_amount, 'D' vendor_id,'01-OCT-2012' creation_date from dual) aiab
    where aiab.creation_date >='01-AUG-2012'
    and aiab.vendor_id=aia.vendor_id
    group by aiab.invoice_amount
    Having (count(aiab.invoice_amount) >1))
    and aia.creation_date >='01-AUG-2012'
    o/p
    INVOICE_NUM,INVOICE_ID,INVOICE_AMOUNT,VENDOR_ID,VENDOR_NAME,LINE_COUNT
    10,1,100,A,XX,3
    11,1,100,A,XX,3
    12,1,100,A,XX,3
    13,2,100,B,XY,1
    14,2,100,B,XY,1
    -------

  • How can I keep my audio track, delete a short segment of video, and reinsert a new video clip, without changing the audio with the way it lines up with the original video?

    How can I keep my audio track, delete a short segment of video, and reinsert a new video clip, without changing the audio with the way it lines up with the original video?

    If you have either iMovie 09 or iMovie 11 you can do this easily using the Cutaway feature.
    Go to iMovie/Preferences and make sure that the Advanced Tools are enabled.
    Now you jut drag and drop the 2nd clip onto hte first clip at the frame where you want the Cutaway to start. A popup menu will appear. Choose Cutaway.
    Here is a good Tutorial.
    If you have iMovie 08, let me know. There is a way to do it, but it is more complex.

  • White lines fixed with art optimization - Is it possible to copy with that setting?

    I've seen threads about the white lines you get on the edges of objects due to the anti-aliasing in Illustrator, and I found that when exporting, you can remove them by setting 'art optimized' in one of the options there.
    For those who don't know the white line issue:
    Sometimes, when Illustrator blends the pixels around an object, it puts a thin white line around it that always appears 1 px thick at any zoom level.
    It's not really there, and when printed it vanishes. Trouble is, even when exporting the document, or copying objects into other software for screen use, it's still there.
    A lot of people think the white line is a tiny gap, but it's not.
    People also tend to tell you it's because you have two objects butted up against one another. This is also not true. The white line still occurs even on overlapping shapes.
    People will also say it's when two shapes on top of each other follow the same path. Again, not true. The white lines still show up even when you only have 1 object following a particular path.
    My issue is that I rarely export an entire document at once, but tend to copy elements of it into Photoshop. When I do so, the white lines travel with it, and become permanent. Even on a .jpg, .png, or .gif image file, the lines are still visible.
    What I want to know is, can I copy objects from Illustrator using art optimization?
    Or is there any other way to copy them without taking those white lines with me?
    I know I can get rid of them by turning anti-aliasing off, but then everything looks really pixellated, so it's not much better.
    Plus, anti-aliasing doesn't actually fix the problem, it just hides it. Even with the setting off, when I copy affected objects to Photoshop, the white lines reappear in Photoshop.
    And please don't bother to reply explaining to me what the white lines are, or how to get rid of them, or how to lose them in exporting. I already know all that.
    Notes:
    I'm running Illustrator CS6
    And Photoshop CS6

    Weirdly, yes. That does work.
    The only problem is that I can't then resize it in Photoshop in the same way as a smart object. I'll just have to know what size it needs to be before I rasterize it.
    But for now, it's a solution that's workable. Thanks! ^.^

  • How to know if a Sales order item created with or without reference

    Hi,
    I am working on user exit USEREXIT_MOVE_FIELD_TO_VBAP, and I just wanted to know if there is a way to know if a sales order item is created with or without reference to a contract.
    I need to write the code in USEREXIT_MOVE_FIELD_TO_VBAP, however, when an SO line item is created with reference the userexit is being called twice and when the SO line item is created without reference the user exit is being called only once.
    My aim is to check if a SO line item is created with reference to a valid contract. If the item is without reference to a contract or the referenced contract is not valid, then I will have to determine the contract based on the customer contracts.
    Any help on this would be greatly appreciated.
    Best regards,
    Siva

    Hi Vindo,
    The Userexit USEREXIT_MOVE_FIELD_TO_VBAP is called twice when the SO line item is created with reference to contract. The first time the user exit is called there will be no value filled in vbap-vgbel and the second time it comes to the userexit then vbap-vgbel will have a value. I think CVBAK-VBELN will contain the reference if the so line item is created with reference and the value of CVBAK-VBELN contrains blank if the item is not referenced. Anyway thanks for your reply.
    Best regards,
    Siva

  • Line size and line count

    Hi all,
    May i know about line size and line count impact on reports ?
    i mean depending on line sizes values i.e 200 etc hw it will effect report either in output display  or length ?
    and also ablout line count too.
    Thanks in advance.

    This information may help you
    *... LINE-SIZE width *
    Effect
    This addition specifies the line width of the basic list and details list of the program to width characters, and sets the system field sy-linsz to this value. The line width determines the number of characters in the line buffer as well as the number of columns in the list displayed. The value width must be a positive numeric literal. The maximum line width is 1,023 characters.
    When the LINE-SIZE is not specified, the line width of the basic list is set to a standard width based on the window width of the current Dynpro, but is at least as wide as a standard size SAP window. For the standard width, the contents of sy-linsz is 0. The LINE-SIZE overwrites the value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-SIZE addition to the statement NEW-PAGE.
    Note
    The current maximum line width is stored in the constants slist_max_linesize of the type group SLIST. Also defined there is a type slist_max_listline of type c with length slist_max_linesize.
    *... LINE-COUNT page_lines[(footer_lines)] *
    Effect
    This addition specifies the page length for the basic list of the program to page_lines lines and fills the system field sy-linct with this value. If the LINE-COUNT is not specifed, and if page_lines are less than or equal to 0 or greater than 60,000, then the page length is set internally to 60,000. This setting overwrites the passed value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-COUNT addition to the statement NEW-PAGE.
    If you optionally specify a number for footer_lines, a corresponding number of lines are reserved for the page footer, which can be described in the event block END-OF-PAGE.
    You must specify page_lines and footer_lines as numeric literals.
    Notes
    For screen lists, you should use the standard value since, as a rule, page breaks defaulted through LINE-COUNT are not adjusted to the window size.
    You should also use the standard value for print lists, so that you can still select the page size on a printer-specific basis. A print list should be created in such a way so that it can handle every page size.
    Specifying a fixed line count is only useful for form-type lists with a fixed page layout. Here, however, you should always check whether such forms can be created by other means, such as SAPScript forms.

  • Getting line count of wrapped text in JTextArea

    I'm trying to get the line count of wrapped text in a JTextArea, but I see no way to do it other than to write a function for manually determining the line count, which I'm struggling with. I'm trying to get the following code to print out "4 4" on both lines, but it's printing out "1 1" instead. Is there a built-in way to get the actual line count? I'm guessing the JTextArea.getLineCount() function is supposed to count line breaks, which I don't have.
    public class SSCCE
         public static void main(String args[])
              String s = "abc def ghi jkl mno pqr stu vwx yz1 234 567 890";
              JFrame f = new JFrame("test");
              JPanel p = new JPanel();
              JTextArea t[] = {cta(s,1,3),cta(s,1,4)};
              p.add(t[0]);
              p.add(t[1]);
              f.setSize(500,500);
              f.add(p);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.setVisible(true);
              try
                   Thread.sleep(200);
              catch (InterruptedException e)
                   e.printStackTrace();
              System.out.println(t[0].getRows()+" "+t[1].getRows());
              System.out.println(t[0].getLineCount()+" "+t[1].getLineCount());
    }

    Oh wait, I see. Never mind. I went back there and saw that there were indeed two (last time I checked, I looked for the first one I saw since you didn't give me the full signature), and I got the one for the JTextArea, but I still need Thread.sleep to get the accurate line count.
    import java.awt.Font;
    import java.awt.KeyboardFocusManager;
    import java.lang.reflect.InvocationTargetException;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    import javax.swing.SwingUtilities;
    import javax.swing.text.View;
    public class SSCCE implements Runnable
         private static JTextArea t = cta("abc def ghi jkl mno pqr stu vwx yz1 234 567 890");
         public SSCCE()
              SwingUtilities.invokeLater(this);
              try
                   SwingUtilities.invokeAndWait(this);
              catch (InterruptedException e){
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              catch (InvocationTargetException e){
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         @Override
         public void run()
              System.out.println(t.getLineCount());
         public static JTextArea cta(String text)
              JTextArea ta = new JTextArea(text,4,12);
              ta.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS, null);
              ta.setFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS, null);
              ta.setFont(new Font("Courier New",Font.PLAIN,12));
              ta.setLineWrap(true);
              ta.setWrapStyleWord(true);
              return ta;
         public static int getWrappedLines(JTextArea component)
              return (int)component.getUI().getRootView(component).getView(0).getPreferredSpan(View.Y_AXIS)/component.getFontMetrics(component.getFont()).getHeight();
         public static void main(String args[])
              JFrame f = new JFrame("Text Area Lines");
              JPanel p = new JPanel();
              p.add(t);
              f.add(p);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.setSize(200,200);
              f.setLocationRelativeTo(null);
              f.setVisible(true);
              System.out.println(getWrappedLines(t));
              try
                   Thread.sleep(50);
              catch(Exception e)
              System.out.println(getWrappedLines(t));
    }Although, it's not working exactly the way I want it to. Is there a way to get this to work before I paint? It works fine after I paint, but I was just wondering.

  • Photon Counting with an Oscilloscope

    I am faily new to LabView, and I am trying to emulate a photon counter
    with a digital oscilloscope for determining fluorescence lifetimes. So
    far, the program downloads the waveform from the scope and determines
    the arrival time of each peak above the discriminator/threshold. But, I
    cannot figure out how to sum the counts for each time bin - ie add and
    store a count for each value in the "locations" array, and then store
    all the counts into a histogram. Any help is greatly appreciated.
    Attachments:
    Photon Counter.vi ‏247 KB

    The Replace array subset does nothing with an empty array. Do you fill the Total Counts array with the right number of elements before running the VI? I modified the VI to initialize the array with the number of elements in the peak location array. I also set the for loop to autoindex on the locations array and removed most of the coercion dots. Without any data I cannot test.
    To give us some data, run a sample of some data and Make the Current value default on the Current Waveform graph. Then remove the Instrument IO Assistant and convert the Current Waveform graph to a control. Save the modified VI and post it.
    Lynn
    Attachments:
    Photon Counter.2.vi ‏231 KB

  • Order of delivery schedule line counter at schedule agreements from MRP run

    Currently we are using schedule agreements for our long term external suppliers, but we are facing a problem with the order of new delivery schedule lines created during MRP run.
    Because of master data settings like, lot size, rounding value, plan delivery time and planning time fence to set as firm new requirements, multiple schedule lines are created with no order for schedule line counter.
    Does anyone is aware of a BADI, user exit or customizing control to have this schedule line counter in order?
    Thank you
    Daniel Guillen
    IT
    Skyworks Inc.

    Hi,
    Pls put this query in SD fourms  and get immly help because this is technical fourms.
    Anil

Maybe you are looking for

  • Syncing iphone and it froze, now it does not know my iphone.

    I was syncing my iphone and it froze.  I had to disconnect and now it does not know my iphone.  What do I do now?

  • Page is almost there - Firefox problem

    Good evening :) I finally have what I think will be a working page template to work with and am very happy with how it looks in IE. However, when you click on the activities page link from the home page, the padding isn't the same on the paragraphs a

  • Benefits Rates ( IT0167/IT0168) not feeding through PU12.

    Hi experts, I know this question was asked before but no reply so far from any one. My issue is We are currently running PU12 export and using ZTMU (copy of standard OTMU interface format).I am interested in knowing how companies handle the issue of

  • How to install drivers without Internet?

    Hello I have installed Windows 7 (downgraded from 8) with USB flash disk and faced to this problem - I can not install drivers, including USB and Ethernet controller, that is my laptop does not have access to the Internet and does not see USB-devices

  • How do I get WINDOWS MEDIA PLAYER for Mac to work?!

    I just purchased a mac for the first time and so far I love it except certain videos I try and download seem to require Windows Media Player which is no problem except for every time I download the Mac version it shows up as a Windows.stix file and i