How to get VBEP coresponding shadow line?

Hi all,
In a Sales Order, line item's schedule line (Table VBEP)
Sometime, it may have a case that for one request delivery date, it was spitted into 2 schedule line due to the AV check result (I call the system generated schedule line as shadow line). Technically in ABAP, how can I found the correct shadow line corresponding to the original schedule line???
Please consider this case:
Schedule line 1:
Date = 20.11.2008, Qty = 5, Confirm Qty = 0
Schedule line 2:
Date = 20.11.2008, Qty = 5, Confirm Qty = 0
Schedule line 3 ( This is the shadow line of Schedule line 1)
Date = 25.11.2008, Qty = 0, Confirm Qty = 5
In fact, I am requested to make a report with normal schedule line, and with its confirmed qty and confirmed date. So, for the above case, I need to get a result as follow
Schedule 1: Date = 20.11.2008, Qty = 5, Confirm Date = 25.11.2008, Confirm Qty = 5
Schedule 2: Date = 20.11.2008, Qty = 5, Confirm Date = 00.00.0000, Confirm Qty = 0
Many thanks!!
Best regards,
Chris

Go to Applications, Utilities, and launch Terminal.
Does that help?
Matt

Similar Messages

  • How to get string (specified by line and column) from txt file with labview

    Hi everyone
    How to get string (specified by line and column) from txt file with labview
    thx 
    Solved!
    Go to Solution.

    As far as I know, a text file has no columns.  Please be more specific.  Do you mean something like the 5th word on line 4, where words are separated by a space, and lines are separated by a newline character?  You could the Read from Spreadsheet String function and set the delimiter to a space.  This will produce a 2D array of strings.  Then use index array and give the line number and column number.
    - tbob
    Inventor of the WORM Global

  • How to get rid of the line encasing the left hand side of a vertical spry menu?

    Hi,
    I have created a vertical spry menu bar. It all works but there is a line like this [  encasing the left hand side of the menu. Does anyone know how to get rid of this?
    Thanks!

    Line 73 in your Spry css calls for a border
    ul.MenuBarVertical{
        border: 1px solid #ccc;
    Either remove the rule or change the #ccc to #fff

  • How to get rid of shadowed border around screen on MacBook Pro?

    Just wondering if anyone knows how to get rid of this shadowed border on the screen of my macbook pro. I think my young daughter made it appear when she was striking various keys at random on my computer when I was not there. The cursor does not work when its over the shadow (i.e. will not depress the red 'x' button to exit a window and I have to drag window out from under shadow to close it).
    It also appears in the middle of screen when airplay is turned on. (See screen shots below)
    I have been unable to find any other discussion on this issue.
    Above is screen normally and below is when airplay is turned on. Please help, thanks.

    Hi rose_hedley,
    I'm wondering if you have restarted your computer by now and if that helped.
    That border is from Exposé with Show Desktop enabled (F11).
    Mac Basics: Exposé (Mac OS X v10.6 and earlier)
    http://support.apple.com/kb/ht2503
    Need to temporarily clear the clutter? Press F11 and watch all your windows scamper away.
    Take care,
    Nubz

  • How to get the number of lines of a file?

    Folks:
    Is there a way to get the number of lines of a text file? I don't know if there is an existing method to do that.
    Thanks a lot.

    HI
    I found some solution
    other than increment loop and all
    here is the code it might helpful to u
    //returns the number of lines in a file
    //author : Ravindra S
    //Symphony software Hyderabad
    try
    RandomAccessFile randFile = new RandomAccessFile(csvFile,"r");
    long lastRec=randFile.length();
    randFile.close();
    FileReader fileRead = new FileReader(csvFile);
    LineNumberReader lineRead = new LineNumberReader(fileRead);
    lineRead.skip(lastRec);
    countRec=lineRead.getLineNumber()-1;
    fileRead.close();
    lineRead.close();
    catch(IOException e)

  • How do I get rid of "shadow lines" in Firefox, (but not Safari)

    I'm designing a website in iWeb for the first time and am having a slight problem.
    I design a page in the iWeb app, but then when I publish it and view it in a browser, I see faint gray lines - like bounding boxes - surrounding some of the objects.  This is only happening in Firefox; in Safari I don't see them.  I'm not sure what is happening in IE.
    How do I get rid of these? Is there a way to make sure the page looks the same in the most-used browsers?

    I'm using the "Freestyle" template. 
    This is what it looks like in iWeb:
    And this is what it looks like in Firefox:
    Thanks!

  • How to get the Number of lines displayed in  table control in bdc

    Hi,
    when we write a  bdc for a standard transaction, if we encounter a table control, we fill the values for each record like field(01), and the second record field(02) .......and so on..
    if only 3 records are displayed in the screen and if we have 5 records to be filled in the table control, how to write the logic for that?
    how to track of how many lines are getting displayed in the table control .. again it depends on the screen resolution i think..
    useful answers will be rewarded
    shekhar

    Hi,
    Here is the solution code for this :-
    data for controlling paging on screen 0102 
    DATA: W_MAXLINES(2) TYPE N, 
    W_NEXT_LINE(3) TYPE N, 
    W_PAGE(1), "y = page forward, n otherwise 
    W_SCRLEN(2) TYPE I, 
    W_SCRLINE(2) TYPE I. 
    DATA: BEGIN OF W_HDR. 
    INCLUDE STRUCTURE D020S. 
    DATA: END OF W_HDR. 
    DATA: BEGIN OF W_FLD OCCURS 100. 
    INCLUDE STRUCTURE D021S. 
    DATA: END OF W_FLD. 
    DATA: BEGIN OF W_LOG OCCURS 20. 
    INCLUDE STRUCTURE D022S. 
    DATA: END OF W_LOG. 
    DATA: BEGIN OF W_MC OCCURS 20. 
    INCLUDE STRUCTURE D023S. 
    DATA: END OF W_MC. 
    DATA: BEGIN OF W_DYNPRONAME, 
    PROGRAM(8) VALUE 'SAPMM60X', 
    DYNPRO(4) VALUE '0102', 
    END OF W_DYNPRONAME. 
    FORM GET_MAX_LINES. 
    set w_maxlines to the number of var-loop occurrences on the screen so 
    that we know when to page forward on screen 0102 
    also initialise w_next_line to zero for GET_NEXT_LINE 
    this subroutine caters for all cases - including screens without loops 
    CLEAR: W_MAXLINES, 
    W_NEXT_LINE. 
    IMPORT DYNPRO W_HDR 
    W_FLD 
    W_LOG 
    W_MC 
    ID W_DYNPRONAME. 
    LOOP AT W_FLD WHERE LTYP EQ 'L'. 
    MOVE W_FLD-LINE TO W_SCRLINE. "first var-loop line 
    MOVE W_FLD-LBLK TO W_SCRLEN. "depth of loop block 
    EXIT. 
    ENDLOOP. 
    IF SY-SUBRC EQ 0 
    AND W_SCRLEN NE 0. 
    sy-srows = total no of lines on screen 
    w_scrline = actual first line of loop so that 
    w_scrline - 1 = number of heading lines (before loop) 
    4 = no of lines at top of screen - command line, pushbuttons, 2 ulines 
    3 = no of lines after loop - uline & Page count 
    w_scrlen = no of lines in loop block 
    w_maxlines = sy-srows - ( wscrline - 1 ) - 4 - 3 
    and then 1 less but not sure why! 
    W_MAXLINES = SY-SROWS - W_SCRLINE - 1 - 4 - 3. 
    W_MAXLINES = W_MAXLINES - 1.
    W_MAXLINES = W_MAXLINES DIV W_SCRLEN. 
    ELSE. 
    MOVE 99 TO W_MAXLINES. "this required if no screen loop 
    ENDIF. 
    ENDFORM. 
    FORM GET_NEXT_LINE. 
    set w_page if page forward is required 
    W_NEXT_LINE = W_NEXT_LINE + 1. 
    IF W_NEXT_LINE GT W_MAXLINES. 
    W_NEXT_LINE = 1. 
    W_PAGE = 'Y'. 
    ELSE. 
    W_PAGE = 'N'. 
    ENDIF. 
    ENDFORM. 
    Hope it helps.
    reward if helpful.
    Regards,
    Sipra

  • How to get characters from a line in a file ?

    Hello Everybody ,
    I am able to read the lines from the file using readLine( ) method.
    But i do not want to read anything that comes after the character '#'
    Any thing that follows a '#' character is considered as a commet in my case.
    The contents of my input file are,
    #Character mappings for Japanese Shift-JIS character set
    #ASCII character Mapped Shift-JIS character
    m 227,128,133 #Half width katakana letter small m
    n 227,128,134 #Half width katakana letter small n
    o 227,129,129
    p 227,129,130
    q 227,129,131
    r 227,129,132
    s 227,129,133
    t 227,129,134
    u 227,129,135
    v 227,129,136
    w 227,129,137
    x 227,129,138
    y 227,129,139
    z 227,129,142
    My code to read the contents of the file is,
    import java.io.*;
    class Read
    public static void main(String s[])
    try{
    int i=0,j,l;
    BufferedReader in=new BufferedReader(
    new InputStreamReader(
    new FileInputStream("Character.txt")));
    String []str=new String[100];
    while(true)
    str=in.readLine();
    if(str[i]==null) break;
    System.out.println(str[i]);
    i++;
    catch(Exception e)
    e.printStackTrace();
    System.out.println(e);
    How do i store the values within a line in the file
    to two different variables
    Like say,
    I read the line
    i get the character 'm' store it in a variable say, char ch='m' ;
    and the corresponding value 227,128,133 in a String variable.
    String str="227,128,133";
    Please offer some suggesstions and help me out .
    Any suggesstions would be welcome and very useful.
    Thanks and regards
    khurram

    It depends on whether the format of the file will ever change. If the "rules" regarding the structure of the file are predictable, then it's fairly simple.
    In the sample file, if we assume that anything that starts with # should be ignored, and all relevant lines begin with single char, followed by three comma separated integers; then you can just do the following (haven't tested this)
    import java.io.*;
    class Read
         public static void main(String s[])
              try{
                   // Create a Map to store the results..
                   Map data = new HashMap();
                   // We will store the actual values in an array
                   int[] values = null;
                   // Each valid line has a character
                   char theChar;
                   // Temp storage for the integer values
                   String[] strValues = null;
                   BufferedReader in=new BufferedReader(
                   new InputStreamReader(
                   new FileInputStream("Character.txt")));
                   String str=null;
                      while(true)
                        str=in.readLine();
                        if(str==null) break;
                        // trim to remove any spaces
                        str = str.trim();
                        theChar = str.charAt(0);
                        if(theChar != '#') {
                             // not a comment
                             // Split to get the int
                             strValues = str.substring(1, str.length()).split(",");
                             // We only want the first 3 tokens
                             values = new int[3];
                             for(int i = 0; i < values.length; i++) {
                                  values[i] = Integer.parseInt(strValues);
                             // Now, add the results to the map
                             data.put(String.valueOf(theChar, values);
                             System.out.println(str);
              catch(Exception e)
                   e.printStackTrace();
                   System.out.println(e);
    This will leave you with a Map of the character mappings, keyed on the String value of the character (just because you can't store a char in a Map)

  • How to get PO number and line item in he check item method of MB_MIGO_BADI

    Hi All,
    First time I am using BADI and I am stuck in one issue.
    I am using CHECK_ITEM method of MB_MIGO_BADI.
    While pressing CHECK button MIGO for a GR(wrt to a PO),a warning message has to displayed.This warning message has to displayed according to the line item in the purchase order.
    In the CHECK_ITEM method, how I will get the PO number and the line item imported into that method.?
    Thanks.

    HI  ,
    in Check_item method 
    DATA: ls_extdata TYPE zqsscrap_screen_field .
    LOOP AT gt_extdata INTO ls_extdata .
    endloop.
    Check what you are getting  .
    regards
    Deepak.

  • Hpphotosmart 5500 series off line how to get it back on line

    I can not print from my laptop, it says my HPphotosmart 5500 series printer is off line. How do I get it on line?

    Hi,
    Please use the following tips/instructions to fix:
        http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02221706&cc=us&lc=en&dlc=en
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to get an only audio line in working for HP ENVY 15?

    So, I have have an HP ENVY 15 (product number E1P05AV), and am trying to record audio (from a synthesizer, mono audio out) into a third-party program (REAPER, though Audacity would work too). I am trying to accomplish this through an audio line in through the combined headphone/mic port on the right side of the computer. However, all attempts/experiments so far have resulted in the computer recording from the internal microphone- not desired. I've browsed the web a bit, but have found nothing really of help.
    So, the question: how can I get the combined audio jack to work such that I can record audio from it, and not the internal microphone?

    Supernova187,
    I had the same problem with the HP "x2-k010nr". Bought the pc at OfficeMax/OfficeDepot and went to Radio Shack and bought the "adapter" since OfficeMax/OfficeDepot did not carry one. Spent days trying to figure out the same problem you are having.  Sent to pc to HP and they returned it and indicated that they could not find any problem. Went back to OfficeMax/OfficeDepot and bought an Asus Transformer and it worked properly for two days and the same problem happened and had to return it. There appears to be a very serious problem with external audio-in on any Microsoft 8.1 os system and external audio . I have given up on Microsoft os products until this problem is solved. I have been using my Gateway netbook with XP os for 4 years with zero problems with external audio-in or out.
    Ham123 Merry Christmas

  • How to get rid of hash lines on tabs,ive been told that you have to down grade to wot.. true not true

    randomly hash lines will appear on tabs and continue across every tab when open... how do i get rid of this whit out down gradeing to a previous version?

    ''cor-el [[#answer-713567|said]]''
    <blockquote>
    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    </blockquote>

  • I lost the top line from my home page and don't know how to get it back, this line has file, edit, history, bookmarks

    how can you get the line that has file edit bookmarks history on it back when it disapears

    Firefox 3.6 versions allow the user to turn-off the Menu Bar. Several ways to re-display the Menu Bar below.
    '''<u>Menu Bar</u>''' (File, Edit, View, History, Bookmarks, Tools, Help) , see: <br/>
    http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    * Press F10, Menu bar will appear, click View, click Toolbars, click Menu bar
    * Press ALT, the Menu bar will appear, click View, click Toolbars, click Menu bar<br />
    * Hold down the ALT button while pressing V+T+M
    '''<u>Navigation Toolbar</u>''' (Back/forward, Refresh...Home, URL/Location Bar, Search Bar): Do one of the following
    #click View > Toolbars, click on "Navigation Toolbar" to place a check mark, OR#right-click the Menu Bar, click "Navigation Toolbar" to place a check mark. See: <br />
    #*https://support.mozilla.com/en-US/kb/Back+and+forward+or+other+toolbar+items+are+missing
    #*http://support.mozilla.com/en-US/kb/How+to+customize+the+toolbar
    #*http://kb.mozillazine.org/Toolbar_customization
    #*http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    #*http://support.mozilla.com/en-US/kb/Navigation+Toolbar+items
    '''<u>Bookmarks Toolbar</u>''': Same procedure as Navigation Bar except click "Bookmarks Toolbar".<br />
    '''<u>Status Bar</u>''': click View, click Status Bar to place a check mark<br />
    '''<u>Full Screen Mode</u>''': If you have no Toolbars or Tab Bar: Press F11 (F11 is an on/off toggle). See: http://kb.mozillazine.org/Netbooks#Full_screen<br />
    Also see: http://kb.mozillazine.org/Toolbar_customization_-_Firefox#Restoring_missing_menu_or_other_toolbars
    <br />
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post.
    *Adobe PDF Plug-In For Firefox and Netscape
    **New Adobe Reader X (version 10) with Protected Mode released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    *Shockwave Flash 10.1 r53
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "Download..." page below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*Download and information: http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #Update the [[Java]] plugin to the latest version.
    #*Download site: http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    #*Also see "Manual Update" in this article: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • How vendor get info of schedule lines

    Hello Gurus,
    I am creating schedule lines from scheduing agreement. Now how does vendor come to know about these schedule lines.
    How vendor will be communicated about the new requirement? Schedule lines are generated in our system not in vendor's
    system.
    Regards,
    VM - Learning MM

    The scheduling lines can be transmitted to the vendor means that the output type can be triggered as per the requirement in SAP. check the configuration node.
    Materials Management - > Purchasing -> Messages -> Message Determination Schemas - > Define Message Schema for Scheduling Agreement Release/Expediter
    hope this helps you.

  • How to get rid of empty lines in a file?

    How can read a file "text.txt", delete all the empty lines and restore it to same filename "text.txt" without using a temporary file?

    Ages ago I ruined an 8" floppy disk drive by doing something similar to
    this: let b1 b2 ... bn nl be a series of blanks followed by a newline
    character (nl) and let c1 ... cm be a sequence of other characters. Let
    the total relevant sequence be:
    b1 b2 ... bn nl c1 ... cm
    Reverse the entire sequence: cm ... c1 nl bn ... b2 b1 and then
    reverse the first m bytes: c1 cm nl bn ... b2 b1. Now repeat the entire
    thing for the sequence c1 ... cm by checking for more blank lines in it.
    After this has all finished, simply truncate the file.
    The advantage of this method was that I only needed to be able to swap
    two bytes in a file; the disadvantage was that the floppy disk drive
    couldn't handle it ;-)
    kind regards,
    Jos

Maybe you are looking for

  • InDesign CS6 Text Wrap increments not accurate.

    My work jumped from CS4 to CS6 so I don't know if CS5 had the same issue. Anyway. Text wrap (around bounding box) seem to now be very limited. For example, If I have, say a .25 text wrap on the bottom of a object, but I need to change it slightly to

  • How do you get documents (and other links) to open in Safari?

    I have a website that I use for school and there are course documents and such that I would like to open right in the Safari window, but Safari always downloads them. I know that they can be opened in the same window, but I can't figure out how to ge

  • Mail doesn't send emails

    I have two accounts. Mail suddenly stops sending emails though i can receive emails from that account. I checked the email server and it is absolutely working fine. It throws an error and asks me for my password again and again. Whats weird is that t

  • More questions about iphone family plan - second line regular phone

    I am planning to switch from a verizon family plan(2 phones) to att family plan with 1 3g iphone and one regular phone. I will get the iphone and my wife won't what is the best free phone to get from att ? and how can i do this in apple retail store?

  • How to compare the two same fields of different tables

    Hi can any one let me know the logic for compare the two fields of different tables.