Inventory count and re-count data

hi  friends,
need some info ..
Is it possible to view changes of inventory documents e.g. if a count was changed for an item on the inventory document. Used MI12 to display changes but did not get a result.
Any transaction / table to view this info.
regards,
chaitanya

Hi
Kindly check the tables
cdpos and cdhdr
Note:
The system only creates change documents when:
o   the creation of change documents is allowed for all plants in
    Customizing for Inventory Management in the step  Define Default
    Values for Physical Inventory Document
o   a user changes a physical inventory document (MI02)
o   a user changes a physical inventory count (MI05)
REgards
Damu

Similar Messages

  • Where is play count and watched/unwatched data stored?

    Where is play count and watched/unwatched data stored?
    Is it on file or somewhere else?

    I don't know where play count is stored, but, when using list view for songs
    Go to menue toolbar item 'View' - on the drop down list that appears choose 'View Options...'
    In the window that opens up check the box next to Play Count
    now iTunes will keep track of how many times you play each song.
    But, if you follow the same menue path while movies are in list view mode, the play count option does not appear to exist for movies, although date last played is an option.
    If you don't check the box in view options, I don't think iTunes will keep track of song play count. The only data from past use of any individual item iTunes can show is probably limited to that items' metadata that you can see using the 'get info' option for any selected item.

  • List of tables count and Views count in schema wise

    Hi All,
    I want to get all tables count and views count in Schema wise, What is the query for that?
    Thanks in Advance.

    SELECT COUNT(*) FROM sys.tables t join sys.schemas s
    on s.schema_id=t.schema_id
    SELECT COUNT(*) FROM sys.views t join sys.schemas s
    on s.schema_id=t.schema_id
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to dynamically set Min count and Max Count values in Adobe Print Form?

    How to set the Min Count and Max Count values dynamically in a Print Form?
    The values when set should over ride the values set in Binding Tab.
    This is all needed to print multiple Material Number labels on a single page - and the number of labels to be printed needs to be under user control - something like an Avery Address labels
    Please advise.
    Thanks,

    Here is a work around that works for me and may not be an intelligent solution .
    I kept the Min Count to 1 on the subform binding properties.
    Per the number of labels required, I appended the same item to the internal table so many times and passed it to the label.
    it works fine for my requirement.
    However - leaving out the post for a while to see if this can be done at the form level via scripting.
    Thanks,

  • ALV - Count and Sub Count

    Hello,
    I have an ALV Report.Could any one tell me the code for Count and Sub Count.
    Example is belwo.
    Number     Name     Type
    1     af     A
    2     werg     A
    3     weg     A
              Subcount =3
    4     t2423     B
    5     24t2     B
              Subcount =2
    6     24t2     C
    7     2442422     C
    8     fdghs     C
    9     sghs     C
              Subcount =4
    10     rghqwegtwq     D
              Subcount =1
              Total = 10
    - Varun
    Basic questions are not allowed. Please put some effort from your side, before turning to the forums for help. Use the existing tools (F1 Help, ABAPDOCU, Google, SAP Help, etc) first to resolve your issue. Thread locked
    Edited by: kishan P on Aug 24, 2010 9:43 AM

    Hello,
    I have an ALV Report.Could any one tell me the code for Count and Sub Count.
    Example is belwo.
    Number     Name     Type
    1     af     A
    2     werg     A
    3     weg     A
              Subcount =3
    4     t2423     B
    5     24t2     B
              Subcount =2
    6     24t2     C
    7     2442422     C
    8     fdghs     C
    9     sghs     C
              Subcount =4
    10     rghqwegtwq     D
              Subcount =1
              Total = 10
    - Varun
    Basic questions are not allowed. Please put some effort from your side, before turning to the forums for help. Use the existing tools (F1 Help, ABAPDOCU, Google, SAP Help, etc) first to resolve your issue. Thread locked
    Edited by: kishan P on Aug 24, 2010 9:43 AM

  • How to find the max session count and process count for a database

    Hi All,
    How to find the maximum session count and process count reached for a database over a period of 15 days?
    DB version:11.2.0.2
    OS:AIX

    Thanks for the link.
    The output of the below query that is given in the link shows the results for the last 10 or 12 days.. Is there a query which gives a result for the last 30 days?
    col metric_unit for a30
    set pagesize 100
    Select trunc(end_time),max(maxval) as Maximum_Value,metric_unit
    from dba_hist_sysmetric_summary
    where metric_id in ( 2118,2119) group by trunc(end_time),metric_unit order by 1;

  • SCOM-Difference between Problem Count and Event Count in Application Failure Analysis Report

    Dear All, 
    Could someone explain me clearly , the difference between  Problem Count and
    Event Count in Application Failure Analysis  Report. Please help me in understanding What is meant be problem and event in the report .
    Thanks in Advance.
    Regards,
    Rajesh Kumar C

    Hello Rajesh,
    The "problem" is the logically grouped set of the exception events which have the identical hash calculated over several fields as "Stack", "Source", "Failed Function" and so on... So, even if exceptions are different
    in the other properties but hash matches over the considered properties - then all those exceptions go into the same "problem group".
    So, event is an instance of the problem. One event contributes to one problem but one problem might have a huge event count if you have a repeating issue.
    The logic is similar for the performance analysis report, only fields that go into the "problem" hash are different. e.g. "Stack" is not used in hash for perf events...
    Dmitry Matveev

  • Getting Sum, Count and Distinct Count of a file

    Hi all this is a UNIX question.
    I have a large flat file with millions of records.
    col1|col2|col3
    1|a|b
    2|c|d
    3|e|f
    3|g|h
    footer****
    I am supposed to calculate the sum of col1 =9, count of col1 =4, and distinct count of col1 =c3
    I would like it if you avoid external commands like AWK. Also, can we do the same by creating a function?
    Please bear in mind that the file is huge
    Thanks in advance

    This sounds like homework for a shell class, but here goes. Save into a file, maybe "doit". Run it like this:
    $ ./doit < data
    <snip>
    #!/bin/sh
    got0=0
    got1=0
    got2=0
    got3=0
    got4=0
    got5=0
    got6=0
    got7=0
    got8=0
    got9=0
    sum=0
    cnt=0
    IFS='|'
    while read c1 c2 c3 junk; do
    # Sum and count
    echo "c1=${c1}"
    case "${c1}" in
    [0-9] )
         sum=$(expr ${sum} + ${c1})
         cnt=$(expr ${cnt} + 1)
    esac
    # Distinct
    case "${c1}" in
    0 )     got0=1;;
    1 )     got1=1;;
    2 )     got2=1;;
    3 )     got3=1;;
    4 )     got4=1;;
    5 )     got5=1;;
    6 )     got6=1;;
    7 )     got7=1;;
    8 )     got8=1;;
    9 )     got9=1;;
    esac
    done
    echo "cnt=${cnt}"
    echo "sum=${sum}"
    echo "distinct="$(expr $got0 + $got1 + $got2 + $got3 + $got4 + $got5 + $got6 + $got7 + $got8 + $got9)
    <snip>

  • How to reduce logical count and scan count for a select query

    hi,
    I have two tables one is master and other is history. i need to combine this two tables into one temporary table.
    I am using the below query to create temp table.
    Select * into temporders
    from
    (select * from orders
    union
    select * from ordershistory) b
    where updateon= (select max(updateon)from (select updateon,name,units,subunits from orders
    union
    select updateon,name,units,subunits from ordershistory) a
    where updateon <='11/08/2008 11:18 AM' and a.name=b.name and a.units=b.units and a.subunits=b.subunits group by name,units,subunits)
    order by report,subunitsorder
    the statistics for this query:
    SQL Server parse and compile time:
    CPU time = 47 ms, elapsed time = 62 ms.
    Table 'Worktable'. Scan count 556, logical reads 1569, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
    Table 'ORDERSHISTORY'. Scan count 116, logical reads 339, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
    Table 'ORDERS'. Scan count 116, logical reads 285, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.
    SQL Server Execution Times:
    CPU time = 32 ms, elapsed time = 63 ms.
    (115 row(s) affected)
    you see logical reads and scan count for worktable(temporary) is quite high.
    So anyone can give a solution for reduce the scan count and logical reads.
    NOTE: name,units, subunits,updateon columns have primarykey

    SQL ServerAm i reading it properly? :(
    This is Oracle Forum And not the SQL Server.
    Regards.
    Satyaki De.

  • Maximum record counts and property counts

    Hello,
    I am looking for the document/link that mentions maximum record counts and maximum property counts for each record.
    let say there are 1.5million records and each record has 2000 properties. Not sure if it can be handled nicely.
    Mdex version is 6.2.1 at this point. but can upgrade if higher version can handle more.
    Thanks,

    Jeremy is pretty much correct. There are no limitations except by performance.
    Start with the Performance Tuning Guide - here is a link to the 6.4.1 document:
    http://docs.oracle.com/cd/E41223_01/Mdex.641/pdf/PerfTuningGuide.pdf
    For your questions, start with Chapter 5 and read how properties/dimensions affect performance and this will help drive how you architect your queries and pipeline configuration/index setup to be most efficient.

  • Word counts and character counts

    Hi,
    I'm using Pages '06. I would like to be able to count the number of words and characters in a paragraph in Pages. I know that if i go to the Document Inspector and click info, it gives me word and character counts for the entire document. Is there a way to do this for individual paragraphs?
    Many thanks.
    Joe.

    After you install WordService (see link in Dennis' post), you can access several new services in the Pages menu. You may have to restart Pages &/or your Mac.
    WordService & CalcService add their functions to any OS X program that has been programed to utilize Services. I've been using them since shortly after I got iWork '05.

  • Xlate count and connection count

    Can a firewall show more XLATE created than CONNECTIONS?
    Is that theoretically possible to have more XLATEs than the total number of connections?. the reason I am asking, that assuming a Cisco 5510 has have maximum 130,000 total connections, however xlate limit on an ASA is considered as UNLIMITED.
    I am designing a large network having multiple CIsco ASAs deployed as multi context mode to cater various networks inside the organization. I want to create proper resources per class. So far Xlate count vs. connection count is not very clear.. I tried putting a very large value for xlate and the firewall accepted it, and still showed the total percentage as 0%
    Xlates           default          all      CA  unlimited                     
                     123                2       C 2147483647 4294967294      0.00%
                     All Contexts:      3                    4294967294      0.00%
    Whereas connection count is shown as
    Conns            default          all      CA  unlimited                     
                     123                2       C      65000     130000    100.00%
                     All Contexts:      3                        130000    100.00%
    Any help is highly appreciated.
    Thank you,
    FNK    

    Hi
    as far as i remember xlate is nat (regardless if it is static or not)
    and on the IOS systems it is the same, static entries are in the table.
    connections are actual session in the packetfilter/firewall sessions this is a differnet operation.
    Patrick

  • First Generation Ipod Shuffle: Play count and Last Played date

    I have a 1st Gen Ipod shuffle that works great in all other respects but it doesn't track the number of "plays" or the "last play" dates. Which means I can't use the "Smart Playlists" Itunes feature to be sure that the music on it stay fresh, non-repetitive. Another problem is if I listen to a podcast on the Ipod Shuffle then in Itunes the podcast appears as though it has never played before. This gets confusing as I listen to a number of podcasts.
    I have tried resetting and restoring the Ipod shuffle. Is there anything I can do to it to make it track the number of plays or last played dates?

    All my tracks should be MP3s or AAC.  I ripped them myselfs with iTunes.  I may have bought some songs directly off of record labels or some other online music store, but I own my music legally whether I bought it on CD or got given it by magazines or record labels.
    I went to the gym today.  I set the shuffle to random.  Some songs were synched back to iTunes but they weren't the songs I listened to, at least not all of them.  Some of them may have been the songs I listened to last workout, at least one or two of the songs updated I did listen to today.
    I listened to some other songs last night on my main Mac so it is easy to determine which songs iTunes updated this morning.
    I haven't had much time to play with Match.  It is still updating and uploading, it has 6000 songs to go.  That means in a half month of trying it has managed to find and/or upload a little over 1000 songs actually close to 2000 now.  It is something, but it isn't the service I was sold.  All my songs and playlists were supposed to be available in the cloud.  That hasn't happened and in the case of my smart playlists will never happen. 
    I'll read you link, but I wrote a blog posting how I was disappointed with the service so far.
    Thanks!

  • IPod Shuffle 2 no longer updating playlist play count and last played date

    I use my shuffle 2 in the gym.  When I'm done working out I sync and the most recently played songs are rotated off using a smart play list.  This is no longer working.  I reset the shuffle 2, I've forced sync and auto filled many times.  My latest workout it still lists all the songs I just listened to in the order I listened to them and has their last played date as many months ago.
    This seems to be affecting my other iPod too, but it is tougher to diagnose.  I signed up to iTunes Match and after several days that is still running but I noticed this problem long before iTunes Match became available in Canada.  Both my iPod Shuffle and iTunes are up to date but my music is on an older but upgraded Mac.  It has a G4 so no Lion upgrade, I just checked it is 10.5.8

    All my tracks should be MP3s or AAC.  I ripped them myselfs with iTunes.  I may have bought some songs directly off of record labels or some other online music store, but I own my music legally whether I bought it on CD or got given it by magazines or record labels.
    I went to the gym today.  I set the shuffle to random.  Some songs were synched back to iTunes but they weren't the songs I listened to, at least not all of them.  Some of them may have been the songs I listened to last workout, at least one or two of the songs updated I did listen to today.
    I listened to some other songs last night on my main Mac so it is easy to determine which songs iTunes updated this morning.
    I haven't had much time to play with Match.  It is still updating and uploading, it has 6000 songs to go.  That means in a half month of trying it has managed to find and/or upload a little over 1000 songs actually close to 2000 now.  It is something, but it isn't the service I was sold.  All my songs and playlists were supposed to be available in the cloud.  That hasn't happened and in the case of my smart playlists will never happen. 
    I'll read you link, but I wrote a blog posting how I was disappointed with the service so far.
    Thanks!

  • Phone usage counter and carriers counter don't match?

    I have been pretty consistant about reseting my usage counter on my iphone on my billing day.  And yesterday i got a notice saying i was at 65%.  I checked my phone and only showed ~37mb of in and out usage but when i logged into att it says i'm at 160mb.  For the most part the usage looks right but there are 3 occasions where its in the 65mb, 40mb and 25mb.  Way above my usual 1-4mb usage per session.  Customer service only had "well then upgrade your data plan" to say but i don't want to do that till i know whats wrong.
    Is there anyone that can explain why they are so different and any way to get att to remove those 3 oddballs cause its seriously like day 4 of my billing cycle.
    iphone 4
    gsm 5.0.1
    icloud over cellular syncing is off.

    Think i figured it out.  It appears to be a bug with icloud as the phone was not connected to wifi but the laptop it plugged into was. For some reason it then sync'd with icloud anyhow racking up my data.  Just annoyed that this transfer was somehow not put into the counter.

Maybe you are looking for

  • JVM freeze on SocketRead

    Hi! Try to explain my problem. I have a Servlet (call com.foo.core.ProxyServlet) which uses HttpUrLConnection (it's a proxy). The problem is : after a week all thread are frozen in the same method. Here the thread dump : "ExecuteThread: '26' for queu

  • [SOLVED] Trouble selecting Line-in instead of Mic

    I'm trying to use QSSTV to display SSTV signals from my ham radio. The only problem I'm having is that it's listening to my laptop's built-in mic instead of the line-in jack. The input soundcard option in QSSTV is set to default, so I presume I'll ha

  • DataSocket Failures followed by Inability to parse URL

    I am having a recurring problem with Data Socket Where I get a "No traffic from server " error or "write failed" How can I repair this?

  • REG: Correcting error records which have invalid characters

    Hi All, I had couple of questions regarding DTP. DTP loads are failing because of the invalid characters, we are correcting the error records from the error stack and then running the Error DTP to process further. now my question is the original DTP

  • Tcp wrappers /etc/hosts.allow format

    since most of the services that were originally run from the /etc/inet/inetd.conf file on pre-Solaris 10 systems are now run from smf, what are the "in.*" service names that should be placed in the /etc/hosts.allow file? also is there a "safe_finger"