What do these Grub2 entries mean!?

Hey guys,
Can someone tell me what all these entries mean that i have whenever grub loads? I've had these since i did a fresh install and i don't get the difference!
Be friendly im new!
Link: http://i292.photobucket.com/albums/mm15 … archey.png
Last edited by Stevearch (2014-04-23 20:58:59)

o_caino wrote:Welcome to the Archlinux Forums.
Please, read the Forum Etiquette before posting, and do not post fullscreen screenshots.
It's always a good idea to take a look at the excellent Wiki before posting here, as it usually has the answer.
Sorry about the image! Looking at your link now.
Last edited by Stevearch (2014-04-23 21:02:09)

Similar Messages

  • What does this log entry mean  - Cancel initiated for Exchange Producer

    Is there anybody who can tell me what could this log entry mean:
    --Cancel initiated for Exchange Producer: <<66800621>> DbGateway Exchange*
    I'm asking because I have problem. In two physical sources (physical databases) I have two tables TABLE_1 has 60k rows TABLE_2 has 1 row. Next step these tables are "Binary Join" by BI server
    so it looks like here:
    -------------------- Sending query to database named OBI (id: <<66800621>>):
    select T7101.SYMBOL as c1,
    T7101.TABLE_1 as c2
    from
    TABLE_1 T7101 /* TABLE_1_ALIAS */
    order by c2
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Sending query to database named OBI_BACK (id: <<66800638>>):
    select T46142.KATEGORIA as c1,
    T46142.FIRMANO as c2
    from
    TABLE_2 T46142
    order by c2
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800638>>, Close Row Count = 1, Row Width = 24 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Cancel initiated for Exchange Producer: <<66800621>> DbGateway Exchange
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800621>> DbGateway Exchange, Close Row Count = 3, Row Width = 80 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800638>> DbGateway Exchange, Close Row Count = 1, Row Width = 24 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800654>> Binary Join, Close Row Count = 0, Row Width = 104 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800582>> Projection, Close Row Count = 0, Row Width = 76 bytes
    As you see first is executed select from TABLE_2 (Node: <<66800638>>, Close Row Count = 1) and this is correct number of close row count
    next we have
    Cancel initiated for Exchange Producer:(for node with SELECT ROM TABLE_2) - and I don't know what that's mean
    and after this we have
    Execution Node: <<66800621>> DbGateway Exchange, Close Row Count = 3
    And this is incorrect number of CloseRowCount (should be aprox. 60k)
    Finally result is wrong because we have no records (inner join by BI Server doesn't work :( )
    Thank you for help
    Edited by: markog on Mar 3, 2010 2:03 PM

    I'm wrestling with getting all of this to work myself.
    Can you see the job in XGrid Admin? It sounds as if the job is failing, but I can't be sure. Clicking on the job in XGrid Admin should give you a "play by play" and tell you where it is failing.
    My experience has shown me that permissions is the root cause of alot of issues, and I cannot find any clear reference on what permissions the "Podcasts" folder needs to make all of this work.
    Following the documentation, the "pcastxgrid" user doesn't actually get assigned any permissions via the file system or Group membership, so I'm not sure how all of this needs to be set.
    Hope this helps.

  • What does these startup messages mean?

    Hi, well today when starting up my box I noticed these two startup messages:
    :: Initiate Random Seed
    :: Removing LeftOver files
    What does these mean? And what program/service runs it? (And what 'left over files' is it removing?) I think I never see them before. Is these message appears because I just install sudo?
    Also when shutting down there is also a message concerning a Random Seed. (Saving Random Seed).  What is it doing?
    Last edited by zodmaner (2007-07-27 00:23:42)

    zodmaner wrote:
    Hi, well today when starting up my box I noticed these two startup messages:
    :: Initiate Random Seed
    :: Removing LeftOver files
    What does these mean? And what program/service runs it? (And what 'left over files' is it removing?) I think I never see them before. Is these message appears because I just install sudo?
    Also when shutting down there is also a message concerning a Random Seed. (Saving Random Seed).  What is it doing?
    Well...  if your head over to your /etc/rc.sysinit, you'll see exactly what it does.  If I remember correctly, saving random seed is just saving your startup time because it is random, and removing leftover files is clearing out the /tmp/ directory.

  • What are these duplicate entries in table T445M ?

    Hi,
    In table T445M, there are records for each line in my macro - and they have AR columns blank, and RL columns with zero value.  However, those same records are also duplicated - but now with R in AR columns, and 52 in RL columns (i.e. table T445M has double the number of records than the lines in my macro).
    So any idea how these duplicate records get created, and what is the meaning of the values in AR & RL columns ?
    Also, I see a column "Functional Module Name" - so can someone explain how to use FM in macro ?
    Thanks,
    - Chetan

    Hi,
    please help me in that counter loop code..how to do this!!
    and how to code for duplicate entries.
    DATA:  ITAB21 TYPE hashed TABLE OF zmailhist WITH UNIQUE key mandt vbeln kunnr,
           WA LIKE LINE OF ITAB21.
    WA-VBELN = P_VBELN.
          INSERT WA INTO TABLE ITAB21.
          WA-KUNNR = P_KUNNR.
          INSERT WA INTO TABLE ITAB21.
          TRANSLATE V_ID TO LOWER CASE.
          CONCATENATE V_ID '@cadence.com'  INTO CHAR1.
          WA-UNAME = CHAR1.
          INSERT WA INTO TABLE ITAB21.
          WA-VSURA = SY-UZEIT.
          INSERT WA INTO TABLE ITAB21.
          WA-ERDAT = SY-DATUM.
          INSERT WA INTO TABLE ITAB21.
              IF SY-SUBRC = 0.
                 V_VSTAT = '0'.
              ELSE.
                 V_VSTAT = '1'.
              ENDIF.
          WA-VSTAT = V_VSTAT.
          INSERT WA INTO TABLE ITAB21.
          WA-NAME1 = I_TAB1-EMAIL.
          INSERT WA INTO TABLE ITAB21.
    INSERT zmailhist FROM TABLE ITAB21 ACCEPTING DUPLICATE KEYS.
    its not picking the duplicate entries..pls help

  • What does these instructions actually mean ?

    hellp can you give me the idiots guide to these instructions for converting encrypted rem files back to jpg - i cannot understand how to find this BlackBerry® Enterprise Server or what to do ?
    I have an IT policy attached to my phone and nothing will delete it- even wiping the entire phone, also none of the setting will remobe this it policy and the phone is stuck permanenty on encrypt media ??! i cannot change the settings ??
    Overview
    When a BlackBerry® smartphone is removed from the BlackBerry® Enterprise Server, the BlackBerry smartphone may retain an IT policy that was assigned to the user during the original enterprise activation, and as a result can restrict access to certain features.
    To remove an IT policy from a BlackBerry smartphone, use one of the following methods:
    Method 1
    Before removing the account from the BlackBerry Enterprise Server, create a blank IT policy on the BlackBerry Enterprise Server, and assign it to the BlackBerry smartphone user account. For more information on how to create a blank IT policy

    Hello Davidhague,
    Rem format is one the secured format and that can not be converted to jpg. This is happening because balanced technology implemented on your handheld & this can be done on a company device.
    Your files converted to .jpg.rem format because you recived it on a company Id, if you want it in jpg format, then please ask sender to send it on a personal account.
    For further information about Balance technology you may read the document from below URL
    http://us.blackberry.com/business/software/blackberry-balance.html
    Hope this may help you.
    Good luck

  • Please help...what does these following event means?

    I have the following event log from my concentrator I am trying to create a L2L tunnel using ipsec. how to fix this? thanks in advance
    2359 01/02/2006 13:56:29.370 SEV=4 IKE/41 RPT=456 x.x.x.x
    IKE Initiator: New Phase 1, Intf 2, IKE Peer x.x.x.x
    local Proxy Address y.y.y.y, remote Proxy Address x.x.x.x,
    SA (L2L: manila-US)
    2362 01/02/2006 13:56:29.660 SEV=5 IKEDBG/64 RPT=239 x.x.x.x
    IKE Peer included IKE fragmentation capability flags:
    Main Mode: True
    Aggressive Mode: True
    2364 01/02/2006 13:56:37.960 SEV=5 IKE/0 RPT=475 x.x.x.x
    Received an un-encrypted Invalid Cookie notify message, dropping
    2365 01/02/2006 13:56:37.960 SEV=4 IKE/0 RPT=476 x.x.x.x
    Information Exchange processing failed

    Hi,
    maybe the following links can assist you:
    http://www.cisco.com/en/US/products/sw/secursw/ps2300/products_configuration_guide_chapter09186a008007cf4a.html
    What exactly are you trying to achieve, what is the involved hardware?
    Regards
    Martin

  • What does this log entry mean?

    2/26/15 2:59:36.000 PM kernel[0]: jnl: disk5s2: replay_journal: from: 4319232 to: 4418048 (joffset 0x1461000)
    and
    2/26/15 2:59:36.346 PM fseventsd[20]: disk logger: failed to open output file /Volumes/Data Backup/.fseventsd/0000000008eff481 (No such file or directory). mount point /Volumes/Data Backup/.fseventsd
    disk5s2 is working fine except for the reoccurring "Disk not ejected properly" message.

    I'm wrestling with getting all of this to work myself.
    Can you see the job in XGrid Admin? It sounds as if the job is failing, but I can't be sure. Clicking on the job in XGrid Admin should give you a "play by play" and tell you where it is failing.
    My experience has shown me that permissions is the root cause of alot of issues, and I cannot find any clear reference on what permissions the "Podcasts" folder needs to make all of this work.
    Following the documentation, the "pcastxgrid" user doesn't actually get assigned any permissions via the file system or Group membership, so I'm not sure how all of this needs to be set.
    Hope this helps.

  • I was playing with my ipad settings (it's an older model) and noted in the advanced settings of Safari there was a place to view website databases.  When I clicked on this I saw websites.  How do these get there and what does the space amount mean?

    I was playing with my ipad settings and noted in he advanced settings of Safari there was a place to view "website databases".  When I selected this I saw a multitude of websites.
    Can anyone tell me how these get there?  Can a website be posted even if it was never went to?  What does the space amount mean?  For example, 1.5 kb...is this quite a bit?  Would it indicate someone has gone to a site multiple times?
    I share my ipad with my teenage daughter and I'm trying to find out if she's lying to me.  Obviously she's swearing that she has "no idea" how these got there and I'm trying to keep her safe (she's only 14).
    Thanks everyone.
    Concerned Mom

    Think of your PC and the 'temporary internet folder' where it keeps cached copies of web pages or elements off a web page for 'quicker display the next time you visit'. That's pretty much what that folder is. 1.5K is tiny. Probably just a basic page with some text on it. (you might be confusing 1.5K with 1.5 megabyte....megabyte is large...it's roughly 1000 kilobytes, so the 1.5K is a tiny file)
    As far as I know, the only way info gets into that folder is if the browser has been to that site.
    if you have a concern there are browsers out there, McGruff is one i've seen recommended, that allow some degree of parental control and supervision. That or you could passcode lock the iPad or enable the restrictions to turn off some parts of the device to have some control.

  • What do these line in logic pro mean

    What do these lines to the left of tracks that turn light blue when selected mean in Logic pro 9? Can they be turned off? See inserted image.
    Thanks,
    Torrid41

    That did the job!....Thanks so much!!!
    seeren wrote:
    Those indicate control surfaces.  Go into control surface setup to change color or delete those which you may have inadvertantly configured or don't use anymore.  Right click on the header to configure header and deselect the box that shows those, if you want.
    Message was edited by: Torrid41

  • What does these messages mean

    I cannot get into my itunes because this message comes up. "A required iTunes component is not installed. Please repair or reinstall iTunes. (42404) "
    Then when I exit this message another one comes up. We could not complete your iTunes store request. "an unknown error occured (50)"
    Please help me to fix this.
    Grandmakat70

    zodmaner wrote:
    Hi, well today when starting up my box I noticed these two startup messages:
    :: Initiate Random Seed
    :: Removing LeftOver files
    What does these mean? And what program/service runs it? (And what 'left over files' is it removing?) I think I never see them before. Is these message appears because I just install sudo?
    Also when shutting down there is also a message concerning a Random Seed. (Saving Random Seed).  What is it doing?
    Well...  if your head over to your /etc/rc.sysinit, you'll see exactly what it does.  If I remember correctly, saving random seed is just saving your startup time because it is random, and removing leftover files is clearing out the /tmp/ directory.

  • Anyone Know What These Error Windows Mean?

    Hey All,
    I was opening up a Logic (Pro 7.1.1) song file off of my external hard drive (Lacie 250 GB with plenty of room) this morning when this error message popped up on my desk top:
    Damaged Song!
    (clearrec: sevstart < MSEQ)
    I clicked "okay" on this error message to see what would happen. The song loaded up but the arrange window had not retained it's original size where you place the sound files. They were shrunken. I expanded the size of the files to see if there was any info there. There was. I hit play and could hear everything. I then hit Save As Project to continue testing what was going on and received this error message:
    Error in seqdelete
    negative size
    I hit the cancel button on this window but the Save As Project command went through. Once that was done, I opened up the "newer" saved as project. It opened fine and all my stuff was there.
    I opened two other song files with no problems so I guess it's to do with that particular one. What puzzles me is that it was working fine as of yesterday.
    Does anyone have any clues as to:
    A) Why did this song file get corrupted in the first place?
    B) What do those error windows mean?
    C) Is there something I should be doing?
    I'm running Logic Pro 7.1.1 using a Lacie 250 GB External drive off of a PowerBook, G4 OS X 10.4.3, 1 G of RAM, MOTU Traveler
    I have been using this system succesfully for about a year.
    thank you, Jaymo

    B) What do those error windows mean?
    Apple likes to get money for tech support;-)
    I think that Apple should provide better error descriptions. I spent about a day trying to figure out why I couldn't import an aif file, which turned out was too large. The error displayed said "What kind of file is this?". Thanks alot for nothing Apple error authors:-(
    I still like 'em though.

  • What are these processes and how do I prevent them?

    For many years, many have complained of external drives that are in standby/sleep spinning up for no apparent reason.  From the user's point of view this is unnecesssary, but to make matters worse, the system usually stops everything else while waiting for the drives.
    I have a Mac mini that I use as a home theater pc.  The media and backups are on a 5-bay enclosure (no RAID) attached by USB.  While watching a video, the unused drives will go into standby mode, which is good.  But then, with no user activity, they will spin up, freezing the video and everything else, which is not good.  As these are slow drives and spin up sequentially, this can take 10-20 seconds.  This may happen once or twice an hour, but sometimes more frequently.
    In looking into the causes, I have turned off time Machine (after putting these drives into the Privacy section for good measure).  I also prevented Spotlight and fsevents logging with the following:
    mdutil -i off /Volumes/<drive1> /Volumes/<drive2> . . .
    cd /Volumes/<drive1 and then repeat for other drives>
         rm -rf .fseventsd .Spotlight-*
         mkdir .fseventsd
         touch .fseventsd/no_log .metadata_never_index
    As far as I can tell this has worked to stop those processes from accessing the drives after they are mounted, but the problem persists.  To find out what else might be causing them to wake up:
    sudo fs_usage -w | grep -e Volumes/<drive1> -e /Volumes/<drive2> . . .
    and here is what I found last night (actually didn't use the -w last night, thus it is cut off):
    18:35:36  fsgetpath   /Volumes/XBMC         0.000026   SSDragHelper
    18:35:36  fsgetpath   /Volumes/Stuff        0.000006   SSDragHelper
    18:35:36  fsgetpath   /Volumes/DatOptic_3   0.000005   SSDragHelper
    18:35:36  fsgetpath   /Volumes/MacBackUp    0.000003   SSDragHelper
    18:36:15  fsgetpath   /Volumes/XBMC         0.000026   System Prefe
    18:36:15  fsgetpath   /Volumes/Stuff        0.000004   System Prefe
    18:36:15  fsgetpath   /Volumes/DatOptic_3   0.000003   System Prefe
    18:36:15  fsgetpath   /Volumes/MacBackUp    0.000003   System Prefe
    18:55:36  fsgetpath   /Volumes/XBMC         0.000034   GoogleSoftwa
    18:55:36  fsgetpath   /Volumes/Stuff        0.000004   GoogleSoftwa
    18:55:36  fsgetpath   /Volumes/DatOptic_3   0.000003   GoogleSoftwa
    18:55:36  fsgetpath   /Volumes/MacBackUp    0.000003   GoogleSoftwa
    After looking into the Google process, I was surprised to find the tentacles that Google puts into your system, and ripped every bit of it out that I could.  But I have no idea about what's going on with SSDragHelper and System Prefe (presumable System Preferences).  This must be OS X itself?  What are these processes doing, and is there any way to prevent them from accessing these disks in this way?

    Thanks for the reply Hen3ry.  Looks like you've done a lot of investigation.  For me, fs_usage entries accompanying spindown are not problems - I'm happy if the drives spin down.  My problem is the spinups.  But still, I don't think it is necessary to time the fs_usage entries with spinups.  If you grep for the drives you're concerned about, you will see any process that would potentially wake them up.
    Because my understanding is limited, I also am more concerned with the process/application that is accessing the drives than with the functions or commands they are sending.  And the values that are returned by those functions are way beyond what I can deal with.
    It's interesting that you've found a difference between your old and new drives.  Could you specify the enclosure and drives in each case?
    The StorageStatus app looks interesting; thanks for the tip.
    Here's a summary of what I've done so far, which I think is working.  I need a few more weeks to know for sure.
    How to prevent unwanted drive spin-ups
    If you are actively using the computer that the enclosure is attached to, nothing on God’s green earth will stop OS X from waking them up after some user action, even ones that seem to have nothing to do with the external drives.  But if you leave the computer alone while some application is running, like watching a movie or downloading a file, you have a fighting chance of coaxing OS X into leaving the uninvolved drives alone.
    If the drives are shared with any other computers over a network, eject them on those computers
    Otherwise, OS X (AppleFileServer) will poll them every 10 seconds.  This might not be bad if you want to just keep the drives spinning and the other computer stays awake.
    Third-party apps
    Make sure no apps are running that might access your drives.  Google runs some processes that do this (maybe I’m naïve, but I was so shocked I removed chrome and every other trace of Google from my Mac mini system). Another is iStat and any utility that monitors SMART status in the background.
    Don’t let Spotlight index or search the drives
    Spotlight is persistent, and it may be necessary to take a variety of steps to stop its various processes (mds, mdworker) from accessing the drives and waking them up.  In other words, kill it, drive a stake through its heart, then burn the body:
    In System Preferences > Spotlight, add the drives to the Privacy pane.
    Add a file called .metadata_never_index to the root of each drive (note the leading period).  The easiest way to do this is in Terminal
    touch /Volumes/<drive1>/.metadata_never_index
    Tell Spotlight AGAIN to keep away from the drive:
    mdutil -i off /Volumes/<drive1> /Volumes/<drive2> . . .
    Finally delete the Spotlight folder from the drive.
    rm -rf /Volumes/<drive1>.Spotlight-*
    Stop fseventsd from logging in the drive
    This is easy, just putting a no_log file in its folder.  I have found that rarely it still writes some files in there, but it doesn’t seem to do so when it causes problems, so . . .
              rm –rf /Volumes/<drive1>/.fseventsd/*
         touch /Volumes/<drive1>/.fseventsd/no_log
    Finder sidebar
    Some people say that if the drives show in the Sidebar of Finder windows, the Finder will be checking them.  I’m not sure. But to be safe, in Finder Preferences > Sidebar, uncheck External Disks.
    Just say no to Time Machine
    On the home theater mac itself, regular backups shouldn’t be needed.  You should be able to just turn Time Machine off.  However, it is probably sufficient to simply open System Preferences > Time Machine > Options and add the drives to the list of locations to exclude from backup.
    Second, local backups can be disabled with
    sudo tmutil disablelocal
    Look for other culprits
    If the problem persists, use fs_usage, which generates a real-time log of filesystem activity. There is so much going on that you need to use grep to restrict the output to entries that involve your drives. The entries that accompany your drive spin-ups are the ones you really want.
    sudo fs_usage -w | grep -e Volumes/<drive1> -e /Volumes/<drive2> . . .
    Now leave the keyboard and mouse alone, as many things you might do will cause the drives to be accessed. You probably want to find what does it when you’re not actively interacting with the computer.  It’s not really necessary to wait for your drives to sleep and see what wakes them.  Any activity you see would probably wake the drives if they were asleep.  When you see some activity and want to stop and examine, type Control-C to stop the output.  On the far right of each entry is the process or application that accessed the disks.
    I got pointers from http://system-log.tyr.org.uk/2012/01/31/how-to-stop-usb-drives-from-spinning-up- unnecessarily-on-os-x-lion/ and http://www.jackenhack.com/disk-that-refuses-to-sleep-in-mac-os-x-how-to-fix-it/

  • TS3694 itunes error (-42404) -- Okay, getting a little frustrated (but then again, who isn't a little frustrated?). I recently tried to upgrade iTunes software a few days ago but it failed. What is (-42404) error code mean?

    itunes error (-42404) -- Okay, getting a little frustrated (but then again, who isn't a little frustrated?). I recently tried to upgrade iTunes software a few days ago but it failed. What is (-42404) error code mean?
    I get the following:
      (1) iTunes - The software required for communicating with iPods and mobile phones was not installed correctly. Do you want iTunes to try to repair this for you? Yes/No
      (2) iTunes - The software required for communicating with iPods and mobile phones could not be repaired. Please reinstall iTunes if you wish to use these devices. OK
      (3) iTunes error message - A required iTunes component is not installed. Please repair or reinstall iTunes. (-42404) OK
      (4) iTunes error message - We could not complete your iTunes Store request. A required iTunes component is not installed. Please repair or reinstall iTunes. (-42404) There is an error in the iTunes Store. Please try again later. OK
    Okay, so I decided to uninstall and reinstall. Funny, iTunes can be found in a program folder, but it does not show up in the programs list. I tried to look for it using the command prompt ("wmic" --> "product get name") but iTunes is not there either. Doesn't even show up in the registry to try to uninstall.
    I just want to "properly" uninstall and reinstall iTunes (plus the other usual suspects, Apple Software Update, Apple Mobile Device Support, Bonjour, & Apple Application Support). If anyone out there has any suggestions, please help! (I'm running Windows Vista -- don't judge/laugh) :-)

    Okay, feeling like an idiot, but will share so others don't have to. I rebooted my computer and that enabled iTunes to reappear in the programs list. Don't appear to be having the same problems as before (no error messages now). Problem solved!

  • What does this TJ data mean?

    Hello,
    I am implementing a PDF parser in Objective-C  (using CoreGraphics API's) that will aid in PDF search. I know that the Tj and TJ operators are used for displaying text, and that to retrieve the text information from a page I should be looking there.
    The problem comes in when there are weird operands in the TJ operator. Below is one such example:
    [<1C>]TJ
    0.7039 0 Td
    [<1D>]TJ
    What does the above highlighted red text data mean, in terms of the semantic information that it contains? During parsing, the output of the above 2 operands are the characters ˝ and ˛ respectively. Am I going to have to use the font encoding provided in the Resources dictionary of the page to decipher what these characters semantically mean?
    Thanks a lot,
    Michael

    I assume you have a copy of ISO 32000-1:2008 available, so that you are reading what is written there first before asking.
    The answer is that NOT ONLY do you need to read the font encoding information for ANY TEXT EXTRACTION, but you ALSO need to read the information from any embedded fonts for the embedded encoding information.  This is especially true for TrueType fonts vs. Type 1 fonts, and CID-based fonts.
    And don't forget ToUnicode tables!
    There is a section in ISO 32000-1 that describes the entire process of text extraction.

  • Please explain on what does these select statements get from these tables..

    Hello Experts,
    What does these select statements get?and what are these tables CDHDR and CDPOS used for?
    The program that I am currently modifying lets users post documents and the ones that are not posted
    are saved in a custom table. Now, we had a scenario in PROD server wherein certain items are not being
    fetched as bypassed but we saved it in the bypassed table. Anyway, below is the select statements:
    get all change document header within the selected dates
      SELECT * INTO CORRESPONDING FIELDS OF TABLE it_cdhdr
        FROM cdhdr
       WHERE udate IN s_udate
         AND objectclas EQ 'CHARGE'
         AND tcode IN (lc_tcode_msc1,
                       lc_tcode_msc2,
                       lc_tcode_msc1n,
                       lc_tcode_msc2n,
                       lv_tcode_vl33n,
                       'SE38',
                       'ZGENE').
    IF NOT it_cdhdr[] IS INITIAL.
    SELECT objectid changenr value_new
          FROM cdpos
          INTO TABLE it_cdpos
          FOR ALL ENTRIES IN it_cdhdr
         WHERE objectclas EQ it_cdhdr-objectclas
           AND objectid   = it_cdhdr-objectid
           AND changenr   = it_cdhdr-changenr
           AND tabname    = lc_tabname_mcha
           AND fname     IN (lc_fname_zustd,'LWEDT').
    DELETE it_cdpos WHERE value_new+00(01) = 'X'.
      LOOP AT it_cdpos ASSIGNING <fs_cdpos>.
        l_matnr = <fs_cdpos>-objectid+00(18).
        l_charg = <fs_cdpos>-objectid+22(10).
        l_zustd = <fs_cdpos>-value_new+00(01).
        READ TABLE it_batch INTO wa_batch
             WITH KEY matnr = l_matnr
                      charg = l_charg.
        IF sy-subrc EQ 0.
          l_tabix = sy-tabix.
          wa_batch-zustd = l_zustd.
          MODIFY it_batch FROM wa_batch INDEX l_tabix
                 TRANSPORTING zustd.
        ELSE.
          wa_batch-matnr = l_matnr.
          wa_batch-charg = l_charg.
          wa_batch-zustd = l_zustd.
          wa_batch-code  = 'A'.              "selected within period
          APPEND wa_batch TO it_batch.
        ENDIF.
      ENDLOOP.
      ENDIF.

    Hi,
                            The first select statement is for Change document header.CDHDR table contains this object class in your case if you change any batch number for any material number  from the transaction for example (MB01) you can trace this .
    From CDPOS you can trace which tables affected (EX : MCHA) and the new value(l_zustd ).
    Regds,
    Vinsa.R

Maybe you are looking for

  • FMS RED HAT LINUX PROBLEMS

    Hi, I hope that someone can help me. I am having so much trouble getting FMS to work it is unbelievable. We have installed FMS onto virtual server running Red Hat Linux Enterprise 3. We have managed to get FMS running but cannot get a connection to w

  • Rearranging Photos in a clump

    I'm making a stop motion film. I just recently imprted 200 photos. The photos were place on the end of the timeline. I'm trying to put them in a different place on the timeine. Can I highlight them all and do this. The only way I have been able to do

  • Does use-new-list-stack CMD +/- work in Grid View?

    With the use-new-list-stack dock setting, does CMD +/- shrink and enlarge icon sizes in Grid View?  From what I can see, it seems to work in List View, but not Grid View.  But I've read reports to the contrary that claim this works even in Snow Leopa

  • How to calc accumulate rate in a script logic?

    Hi experts, We are trying to generate a monthly accumulate rate in a script logic. We have a Unit rate in 12 months and we want UnitAccum rate (like YTD) in the same 12 months Finally, we need to use this new rate in a multiplication. How can we do i

  • IE8 script error while installing Flash Player

    [WinXP (2002) SP3] Installation of Flash Player 11 (tried this 10 or more times) is interrupted by an IE8 script error message "Object doesn't support this property or method" (Line: 207 Char: 1 Code: 0 URL: http://www.adobetag.com/d1/adobe/live/geta