Where is material revision number stored?

In what table is the material revision number stored (in Engineering Change Management)?  I need to pull a list of all materials and their most recent revision number.
Thanks!

CHECK
MARA & AENR tables..

Similar Messages

  • Where is the CCV number stored for offline processing? I cannot see it the secure PDF document

    Please note that we will not collect CVV, CVV2, CVC2 & CID as per PCI standards.
    A Card Verification Value code, CVV, (CVV2 for Visa, CVC2 for MasterCard and CID for AMEX) is the three or four digit number located either on the front or back of a credit or debit card. The effectiveness of this code is limited to the ability to keep it out of the hands of hackers and thief's, which is why it is prohibited by PCI Standards from being stored in any shape of format.

    Hey kathys25866299,
    Please ask your coworker to save the PDF in a different folder with administrative privileges.
    Also, try annotating some other PDF and check if the same problem appears.
    Has she tried sending the PDF via different email system (other than Outlook) after reviewing.
    Let me know.
    Regards,
    Anubha

  • Where is Check number stored in Fusion Payroll

    Hello All,
    I am working on an Positive Pay file that is sent to the Bank after the payroll process and I need the check number details, but not sue where it is stored.
    Can some one let me know where is the Check Number stored in the HCM tables.
    In EBS
    Check Numbers are in the field SERIAL_NUMBER on the PAY_ASSIGNMENT_ACTIONS table.
    Serial Number in Pay_Assignment_Actions is where the check numbers are held. When Check Writer is run, the process requests STARTING and ENDING Check Numbers (Ending Check Number can be left blank).
    But I am able to find the serial number in PAY_PAYROLL_REL_ACTIONS which is the payment reference and doesn't match the Check numbers that are generated.
    Can any one please let me know where to find this information.
    Appreciate all your inputs

    >
    Edward wrote:
    > Dear All exprt,
    >
    > In Payroll , for basic pay there is a Indicator for indirect valuation. If this indicator is marked as 'I', the amount of basic pay will not be stored in table pa0008. But when we use PA20 , We can see the amount.Is there any table which store this kind of data?
    >
    > BR
    I'm not sure if this gets stored in some database tables, I believe that this information is evaluated in the runtime(i.e., when accessed from 'PA20') using the wage type characteristics(v_t511).
    The function module 'RP_FILL_WAGE_TYPE_TABLE' returns the values of indirectly evaluated wage types also.
    The  (indirect)evaluations of the wage types take place in the subroutine 'EVALUATE_INDEV_TAB' of the function group 'RPIB'. (Include program : LRPIBFXX)
    Refer this thread
    Re: Indirect Valuation Error Message in IT 0008
    Regards
    Rajesh.
    Edited by: Rajesh on May 31, 2009 2:03 PM
    reference thread added

  • Material document number to match the FI document number

    Hello MM Gurus,
    May I know if anyone here has encountered a requirement where the material document NUMBER generated from goods movement (GR, GI) should have the same NUMBER with the FI accounting document generated with it? I tried to match the number ranges initially but this would only apply to 1 company code.
    Are there user exits here that I can use? 
    Regards,
    Marvin

    Hi
    You can create Number ranges for each year in OMBT transaction.
    regards
    Srinivas

  • Storage Bin where the material is stored

    Hello,
    I just uses Inventory Management and not the Warehouse Management.
    In Inventory Management you define where the material is stored, in the material master data.   
    However, I need to know if is possible decided at the time of good receipt, where the material will store.
    I appreciate your help.
    Regards,
    Hector.

    Thank you Charlie.
    Best Regards,
    Hector

  • Revision number for Header material in Production order.

    I have maintained Revision number in material mster  for Header material in Production order and also for components.
    1)Revision number for Header material in Production order is not appearing in AFKO table against production order.
    2)Revision number for components in Production order is not appearing in RESB table against reservation.
    Any settings for that please guide.

    Hi,
    Revision number generation is using ECM only possible. Are you using the ECM with revision levels. Check this.
    Regards,
    V. Suresh

  • Where can I find the WEP password/number stored on my mac

    Where can I find the WEP password/number stored on my mac.?

    Assuming you saved it it will be in your Keychain (Applications > Utilities > Keychain Access)
    Regards,
    Shawn

  • How to use materialized view in stored procedure

    in my stored procedure I use couple of queries (see the script below). I want to create materialized views to replace these queries. Is it possible to achieve and how to achieve it in my case? thanks in advance
    set serveroutput on
    DECLARE
      v_cur_tid NUMBER(5):=0;
      v_cur_cs_attendance NUMBER(5):=0;
      v_cur_c_tot_enrolments NUMBER(5):=0;
      v_most_enrolments NUMBER(5):=0;
      v_least_enrolments NUMBER(5):=0;
      v_most_pop_cid NUMBER(5):=0;
      v_least_pop_cid NUMBER(5):=0;
      CURSOR class_cursor IS
    select
    id,
    name,
    max_attendees
    from
    class
    where
    id in (select distinct(event_id) from trainer_schedule where event_type='c' and is_active='y')
    order by id;
    BEGIN
    DBMS_OUTPUT.PUT_LINE('==================================================================================================================================');
    --print the report header
    DBMS_OUTPUT.PUT_LINE('Summary Report No.3: Training Class Active Schedules Summary Report');
    FOR r_class IN class_cursor LOOP
    --print the header or subsection
    select sum(enrolments) into v_cur_c_tot_enrolments from class_schedule where class_id = r_class.id;
    IF v_most_enrolments < v_cur_c_tot_enrolments OR v_most_enrolments = 0
    THEN v_most_enrolments := v_cur_c_tot_enrolments; v_most_pop_cid := r_class.id;
    END IF;
    IF v_least_enrolments > v_cur_c_tot_enrolments OR v_least_enrolments = 0
    THEN v_least_enrolments := v_cur_c_tot_enrolments; v_least_pop_cid := r_class.id;
    END IF;
    DBMS_OUTPUT.PUT_LINE('******************************************************************************************');
    DBMS_OUTPUT.PUT_LINE('CLASS_ID: '  || r_class.id ||'     '|| 'CLASS_NAME: '  || r_class.name ||'     '||'CAPACITY: '  || r_class.max_attendees ||'     '||'TOTAL_ENROLMENTS: '  || v_cur_c_tot_enrolments);
    DBMS_OUTPUT.PUT_LINE(rpad('____________', 12) || lpad('____________', 12) || lpad('____________________', 20) || lpad('____________________', 20) || lpad('____________',12) || lpad('____________',12));
    DBMS_OUTPUT.PUT_LINE(rpad('SCHEDULE_ID', 12) || lpad('TRAINER_ID',12) || lpad('START_TIME', 20) || lpad('END_TIME',20) || lpad('ENROLMENTS',12) || lpad('ATTENDANCE',12));
    DBMS_OUTPUT.PUT_LINE(rpad('____________', 12) || lpad('____________',12) || lpad('____________________', 20) || lpad('____________________', 20) || lpad('____________',12) || lpad('____________',12));
    FOR r_cs IN (select id,to_char(start_time,'DD-MM-YYYY HH24:Mi') as start_time, to_char(end_time,'DD-MM-YYYY HH24:Mi') as end_time, enrolments from class_schedule where class_id = r_class.id order by id)
    LOOP
    select trainer_id into v_cur_tid from trainer_schedule where event_type='c' and event_id = r_cs.id;
    select count(training_session.id) into v_cur_cs_attendance
    from training_session, class_schedule
    where training_session.attended = 'y' and
    training_session.type='c'and
    to_char(training_session.start_time,'DD-MM-YYYY HH24:Mi') = to_char(class_schedule.start_time,'DD-MM-YYYY HH24:Mi') and
    class_schedule.id = r_cs.id;
    DBMS_OUTPUT.PUT_LINE(rpad(r_cs.id, 12) || lpad(v_cur_tid,12) || lpad(r_cs.start_time, 20) || lpad(r_cs.end_time,20) || lpad(r_cs.enrolments,12) || lpad(v_cur_cs_attendance,12));
    END LOOP;
    END LOOP;
    DBMS_OUTPUT.PUT_LINE('******************************************************************************************');
    DBMS_OUTPUT.PUT_LINE('******************************************************************************************');
    DBMS_OUTPUT.PUT_LINE('MOST_POPULAR_CLASS:  '||v_most_pop_cid||'      TOTAL_ENROLMENTS_TO_DATE: '||v_most_enrolments);
    DBMS_OUTPUT.PUT_LINE('LEAST_POPULAR_CLASS: '||v_least_pop_cid||'      TOTAL_ENROLMENTS_TO_DATE: '||v_least_enrolments);
    DBMS_OUTPUT.PUT_LINE('==================================================================================================================================');
    END;
    /

    Hi,
    you could use Dynamic SQL /Execute immediate to run DDL from a stored procedure.
    http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/11_dynam.htm
    Could you please tell why do you want to create a materialized view in stored procedure ?
    How frequently you will runt this procedure . It would is better to create a MV once and use it.
    thanks

  • ORA-01031 with materialized view in stored procedure

    USER1 has created a materialized view (MV). The MV is owned by USER2. USER1 needs to query the MV from within a stored procedure. How do I avoid the ORA-01031?
    Here's the illustration:
    SQL> show user
    USER is "USER1"
    SQL> CREATE MATERIALIZED VIEW USER2.ROLL
    2 BUILD IMMEDIATE
    3 REFRESH COMPLETE WITH ROWID
    4 ON DEMAND
    5 AS
    6 select * from user2.test_roll;
    Materialized view created.
    SQL> select status,owner,object_name,object_type where OBJECT_TYPE='MATERIALIZED VIEW';
    STATUS OWNER OBJECT_NAME OBJECT_TYPE
    VALID USER2 ROLL MATERIALIZED VIEW
    SQL> select count(*) from user2.roll;
    COUNT(*)
    959485
    SQL> declare
    2 n number;
    3 begin
    4 select count(*)
    5 into n
    6 from user2.roll
    7 where rownum<100;
    8 dbms_output.put_line(n);
    9* end;
    SQL> /
    99
    PL/SQL procedure successfully completed.
    SQL> create procedure test_mv is
    2 n number;
    3 begin
    4 select count(*)
    5 into n
    6 from as400_snpsht.roll
    7 where rownum<100;
    8 dbms_output.put_line(n);
    9 end;
    10 /
    Warning: Procedure created with compilation errors.
    SQL> select text from user_errors where name like 'TEST_MV';
    TEXT
    PL/SQL: ORA-01031: insufficient privileges
    PL/SQL: SQL Statement ignored
    So the point is:
    * Ad hoc sql works on the MV
    * Anonymous pl/sql works on the MV
    * Stored procedure fails compilation with ora-01031
    Any suggestions are appreciated.

    Sorry; In may example 'as400_snpsht' should have been 'USER2' (the owner of the MV). I changed the real user names to USER1, USER2 to make the example clearer but missed that one.
    I meant to say...
    SQL> create procedure test_mv is
    2 n number;
    3 begin
    4 select count(*)
    5 into n
    6 from user2.roll
    7 where rownum<100;
    8 dbms_output.put_line(n);
    9 end;
    10 /
    Warning: Procedure created with compilation errors.
    SQL> select text from user_errors where name like 'TEST_MV';
    TEXT
    PL/SQL: ORA-01031: insufficient privileges
    PL/SQL: SQL Statement ignored

  • Find material document with Material, Material document number

    Hi,
        i need to find the Material document (MSEG).
    I have the following details available
    a) Material number MATNR
    b) Plant
    c) Material document number. MBLNR
    To uniquely find the material document the following is required:
    MBLNR     Number of Material Document
    MJAHR     Material Document Year
    ZEILE     Item in Material Document
    Thanks
    AKG

    Hi Amit
    MSEG and MKPF are the tables where all material document numbers are stored and you can see the details using Tcode SE16.
    Since u have the material number and plant ..... hopefully movement type also ...... then u can see the material document number(field name MBLNR) in MB51.

  • How to fetch accounting document number from known material document number

    Hi,
    Using MIGO transaction, by giving mblnr(material document number) as input, I get accounting document number by clicking FI document.I have to add this accounting document number in my report for corresponding known mblnr(material document number) values.
    My question is how to fetch the accounting document number present in MIGO to add in my report program.
    I used the xblnr(Reference Document Number) which is present both in mkpf and bkpf tables to fetch values.
    I extracted xblnr values with known mblnr values from mkpf (Header: Material Document table).
    and then extracted belnr(accounting document number) from bkpf (Accounting Document Header table) by using xblnr values.
    But the query is running for a long time.
    Is there any other method  to extract the values in a simpler way.
    Kindly advise.
    Thanks and Regards,
    Sanjeev

    I had the values of xblnr and some other fields such as mblnr, budat etc in wi_item table.
    I created a new internal table i_xblnr and got down those values.
    And then created a new internal table i_belnr and tried to get values of belnr in it.
    The code I wrote is given below:
    IF not wi_item[] is initial.
    loop at wi_item.
       at new xblnr.
        ws_xblnr-xblnr = wi_item-xblnr.
         append ws_xblnr to i_xblnr.
       endat.
    endloop.
      select belnr xblnr from bkpf into table i_belnr for all entries in i_xblnr where xblnr = i_xblnr-xblnr.
    ENDIF.
    Kindly look after it.Thank you.
    Regards,
    Sanjeev

  • Where is the port information stored in HSS for HSS mode Essbase servers?

    In order to test .sec file validity, I started up a temporary server on port 1426. The .sec file was copied from an existing SS mode Essbase server. This worked fine and I stopped the temporary server. However, now in Shared Services, the Global "Analytical Server" instance inside the "Analytical Servers" project now points to port 1426. I can no longer manage the real server on port 1423 in HSS. Can somebody tell me where this port information is stored so I can change it?
    I don't want to have to re-externalise and mess about like that because I tried this on a test box and got into a horrible mess because externalising creates new analytical server instances in HSS with a new index number which doesn't match the original one etc. Horribly mess.
    This port number must be stored somewhere in HSS? It's not in OpenLDAP I think as I exported the whole server as LDIF and the string "1426" does not occur in the export. Couldn't find it in the HS9_HSS database either but perhaps I missed it.

    For reference, I found out how to fix this:
    Look in the Repository HS9_HSS for the table VERSION_CONTENT
    in the HUGEBLOBS (which are XML fragments), you'll find the the settings. Export, alter, import.
    Restart HSS and Admin services.

  • Where are my music videos stored???

    Actually, this is about my wife's iPhone...I am completely confused. She has like 60 music videos on her iPhone (from our iTunes library) and I cannot delete them. To be honest, I am not even sure how they are on there in the first place. When I plug in her iPhone, iTunes says she has 3.2 GB of videos...even if I don't select ANY music folder! If I uncheck the "Include Music Videos" box, then the videos go to 0 GB, so I know that number is from music videos (and not the small number of videos she has taken from her iPhone). I have tried to restore the OS (I upgraded her OS a couple weeks ago to iOS5, and restored it again to iOS5 yesterday), but that does nothing. Any clue where these videos are being stored so I can delete them from her iPhone? Even if I delete manually, they are reloaded the next time I plug in her iPhone to the computer. Crazy!
    For my own iPhone, using the same iTunes library, I do not have a problem at all with this.
    Thanks so much for your help!

    Actually, I did manually delete the videos from the phone, but when I plugged it back in, it re-installed them. Yes, I can avoid that by unchecking the "Include Music Videos", but the thing is...my wife does WANT music videos. But just the ones she selects, not these random ones. There must be some subfolder that it is not apparent that is holding these music videos. But for the life of me, I have no idea where this folder is. Can anyone help me with this? The last option I have will be to restore the iPhone as a new phone and reinstall everything onto it. But that's kind of a pain if I don't have to do that...
    Thanks everyone!

  • Function module to get material serial number status

    Hi Gurus,
    How to get get material serial number status? Is there any function module?
    TCode IQ03 to display the serial number staus, but where i can find the status (AVLB / ESTO / ECUS) of these serial number ?
    Pls help.
    Regards,
    Sankaran

    hi,
    SELECT SINGLE  equnr objnr FROM
                               equi INTO (equnr1 , objnr1)
                               WHERE sernr = wa_final-sernr
                                 AND matnr = wa_final-matnr.
        CALL FUNCTION 'STATUS_TEXT_EDIT'
          EXPORTING
            client           = sy-mandt
            flg_user_stat    = 'X'
            objnr            = objnr1
            spras            = sy-langu
            bypass_buffer    = 'X'
          IMPORTING
            line             = sttxt
          EXCEPTIONS
            object_not_found = 1
            OTHERS           = 2.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    Regards
    siva

  • Material Serial Number reporting

    Hi,
    I need to create an ABAP report or potentially a BI extractor to look at material stock by functional location, with serialised materials detailed down to serial number. I can see all of the relevant information through MMBE, but need to know where the link is between the MM documents and the serial numbers, in order to show the detail down to serial number.
    Thanks

    Hi,
    Thanks for your response. This table is empty, but I think I have found the solution.
    Table SER03 holds link from material document number to an object number (SER03-OBKNR). This object number is listed in table OBJK against serial numbers, equipment numbers, and materials.
    It looks like SER07 is the table used to link Physical Inventory Documents to OBJK.
    The OBJK table holds the link table (SER07 or SER03 in this case) in field TASER.
    If anyone else has any info on this it would be useful.

Maybe you are looking for

  • When foxstart loads up its not loaded correctly

    I have Foxstart set as my home page but when i load firfox up its not displayed correctly, all the tabs are open instead of being above the search bar as tabs, they are all open one after another scrolling down the page, but if i refresh the page its

  • SAP WM-PP: Spit transfer requirements

    Hello, We are working in a WM-PP scenario with transfer requirements and transfer orders. For one process we need to use the "2 step picking" functionality of the SAP system. In the release of the production order, the system is creating the transfer

  • Illustrator Doc Size Limit

    I design large wall graphics and displays. I do final art in Photoshop with no real limit to the size of my document.  Why is there a limit to doc size in Illustrator.  As a vector design package I don't understand what seems to be an arbitrary limit

  • Schedule line should not generate until SA release

    Dear All, We want when we run MRP against schedule agreement then "Schedule line should not generate until SA release" Abhinay

  • Custom Cursors

    I have a small PNG I wish to make the mouse cursor in a JComponent. ie, as the mouse passes over the component, the cursor changes to the png Is this possible? How do I define an image or icon as a cursor?