Tables for Change Management

Mentors
We are excercising control over Vendor's Material using Quality module .We crete Inspection Lots for Incoming GR Inspection . If Material is found defective , we temporarily stored the lot with Specific USER Status & field control .
Once Vendor rectifies the defects we Change the User status for which UD can be given & QI block can be lifted.
The Active User status is managed in Table JEST by inputting necessary Object No. I want to know , where the Dates for the chanegd User status are managed ?
Regards

Dear Ashish,
Table QALS. Fields PASTRTERM - Inspection Start Date, QPRENDE - End Date of the Inspection
Regards,
Naveen

Similar Messages

  • Why no table for Line manager in SAP HCM

    Hi ,
    I am a ABAP technical consultant , I am aware about the program and Function modules required for fetching an employees line manager . My question is why SAP has not made a table for line manager info . As every time I need that info I put in redundant coding efforts to fetch that details . I would like to get your views on this one .
    Thanks
    Gaurav Deep

    Hi Gaurav Deep,
    I think it would be too easy if there would be direct table for finding line manager Seriously speaking I think SAP HR is clever compared to other modules using the object-oriented concept. When relationship between position and person is updated standard function modules find the new line manager without going to specific table. Maybe if other modules would have as clever built we wouldn't have that many tables in SAP? My favourite function module in HR is RH_STRUC_GET. If you can't find fitting evaluation path to return what you want to get then it is easy to create one in tcode OOAW.
    cheers, s

  • Documentation on Interface tables for lease management

    Hi i found out the following interface tables for lease management
    but couldn't find any documentation or information of the mandatory columns to be populated in these tables
    is there any documentation provided in R12 for the following tables?
    PN_LEASE_OPTIONS_ITF
    PN_RENT_ROLL_LEASE_EXP_ITF
    PN_SPACE_ASSIGN_LEASE_ITF
    PN_SPACE_UTIL_LEASE_ITF
    thanks
    Arshad

    hi
    thanks for quick reply...
    etrm is more generic..
    i would like to know the validations that are performed on the columns
    the concurrent programs which does the import of data from these tables to base tables
    something which oracle provides for interface tables in their user guides or implementation guide. (Example for GL_INTERFACE the column level validations are given in GL user guide).
    i couldnt find such document for lease management.
    thanks
    Arshad
    Edited by: Arshad on Dec 2, 2008 7:24 PM

  • Table for Changes done to Vendor Bank Details

    Hei ,
         Please let me know the table which stores the old data when the Bank Key Or a Bank Account is changed for a particular Vendor.
    Thanks .
    Best Regards 
    om prakash ..

    Hi,
    I agree with Krishna K that you will get changed data in tables CDPOS and CDHDR.
    Please note that data flows into these tables only when change management is made active else you can use standard SAP transaction codes FI04 - Display Changes  and S_P00_07000008 - Display of Bank Changes to see the changes made.
    Regards,
    Tejas

  • Minimum steps required for Change Management and Incident management

    Hello experts,
    Does anyone have a check list of the absolute minimum steps required for getting Change Management and Incident management functioning in Solution Manager.
    I just need it to function with creating changes and incidents and be able to assign them, change their status and close them.
    The purpose is to get an idea if this is something for us to use. If we then find it useable, then we will go for a full scale implementation using official guides, education etc.
    I just need an absolute minimum guide for demonstrating the functions, and if you guys have any recommendations, things we should pay special attention to or other experiences feel free to tell me.
    Thanks in advance.
    Regards,
    Kenneth

    Hi,
    There are a number of Blogs in the SDN about Charm and ServiceDesk, explaining first steps and more.
    Check these to start:
    http://wiki.sdn.sap.com/wiki/display/SM/ChangeRequestManagement
    The Complete ChaRM Solution
    Change Request Management scenario: Usual questions and known errors
    First steps to work with Change Request Management scenario in SAP Solution Manager 7.0
    Regards,
    Jan

  • Function Modules for Change Manager Tickets

    Dear all,
    I have the requirement to display some basic statistics about the number of change manager tickets that are currently open, that are assigned to a person and in proceesing state.
    I had a look into the system but could find a valuable hint on which function modules are available and which are even RFC enabled.
    So is there someone who has achieved this or does know how to access that information?
    I would be very happy about any hints.
    Thank you and best regards.
    Nicolas

    Hallo Nicolas,
    I had the same requirement and started looking into this. Essentially I used php to make RFC calls to SAP.
    there are at least 2 FM (they are both RFC enabled) you can use to extract service desk ticket data.
    They are:
    - CRM_DNO_SELECT_SERVICE_TRANS
    This FM has the service desk number as you see it in CRMD_ORDER or CRM_DNO_MONITOR
    The other FM is:
    - DNO_OW_GET_NOTIFICATIONS and report RNOTIFWL
    This will give you data for the notification
    You can use DNOH_OBJNR in the first FM and OBJNR in the second to join the two together.
    The only thing is that there is no selection screen to select the data within the FM. When you execute both FM you have to provide a variant - based on that variant the data will be picked up. The best thing is probably to setup a variant that will pick up all your tickets and have your rfc calling application compile the stats that you are after. Also the variant you use is not the on you would use in CRM_DNO_MONITOR you have to go the FM transaction and create the variant for it there.
    Hope it helps, ~p.

  • Table for change in cost center in Kb61

    Dear friends,
    I changed the cost center using t code KB61, From which table i can get the details of change in cost center
    Rgds
    Madhavan

    Hi,
    KB61 will post the document with the change from old cost object to new cost object in CO documents, so you can check the following tables for this posting.
    CO document Header: COBK
    CO document items:COEP
    CO summary table:COSP (or COSS)
    best regards, takashi

  • USER Hook for Changer Manager function

    Dear All,
    I need to know that is there any user hook for Manager Self Service -- Change Manager function for employee.
    If yes then please give me the module name/id for the user hook.
    If no then how can I set custom validations on this page.
    Regards.

    You should look for the update assignment api.
    select * from hr_api_modules
    where module_name like '%UPDATE%ASG%'
    Depending on the legislation, you will have different modules/packages/procedures.

  • How to access a table for changes

    I'm iterating through the Pgf objects in a flow, and for each one I look for table anchors. I find the table anchor, then what do I do to access its Tbl object and do things with it? I'm just trying to find out if there are any changebars in the table. I don't think using Doc.FirstTblInDoc will help me because I'm starting with a TblAnchor text item.
    I run this code on a doc that has only one paragraph with a table anchor in it:
    function test() {
        doc = app.ActiveDoc;
        var pgf = doc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
        while ( pgf.ObjectValid() ) {
        var textitems = pgf.GetText(Constants.FTI_TblAnchor);
        var aa = textitems[0];
        Console('what is this: '+aa);
        pgf = pgf.NextPgfInFlow;
    This prints "what is this: [object TextItem]".
    Seems like I should be able to do something like this to get the Tbl object:
    myTable = textitems[0].idata;
    Am I warm? Once I get the Tbl object, I'm hoping it's a simple matter of using GetText to get changes, then finding a changebar.
    Thanks,
    Mark

    Here's the working code I ended up using to search through a table and find out if it had any changebars.
    Mark
    // Find a changebar in tables. The context is iterating through the Pgfs in a doc.
    function findChangebarInTable(pgf) {
        var tableitems = pgf.GetText(Constants.FTI_TblAnchor);
        // If no table anchors, return now.
        if (tableitems.length == 0) { return; }
        for (var i = 0; i < tableitems.length ; i += 1) {
            // get table using table anchor.
            var table = tableitems[i].obj;
            cellChangebar = searchCells(table);
            // If there's a changebar in any table, return.
            if (cellChangebar) {
                return true;
    // Search the cells of the table for a changebar.
    function searchCells(table) {
        var tcell = table.FirstRowInTbl.FirstCellInRow;
        while (tcell.ObjectValid()) {
            // Get changed items in this cell.
            var cellitems = tcell.GetText(Constants.FTI_CharPropsChange);
            for (var i=0; i < cellitems.len ; i +=1) {
                // Find out if the Cell has a changebar.
                // The result of the bitwise AND (&) must be greater than 0 or no changebar.
                var c = cellitems[i].idata & Constants.FTF_CHANGEBAR;
                if (c > 0) {
                    return true;
            tcell = tcell.NextCellInTbl;

  • Table for asset management

    Hi
    Can anybody please tell me the table for assest like we have table BSID for customers and table BSIK for vendors.
    Regards
    Ankit

    Hi,
    This is asset accounting tables
    FI-AA-AA (AA)    Asset Accounting: Basic Functions – Master Data
    ANKA             Asset Classes: General Data             ANLKL
    ANKP             Asset Classes: Fld Cont Dpndnt on Chart ANLKL / AFAPL
                     of Depreciation
    ANKT             Asset Classes: Description              SPRAS / ANLKL
    ANKV             Asset Classes: Insurance Types          ANLKL / VRSLFD
    ANLA             Asset Master Record Segment             BUKRS / ANLN1 / ANLN2
    ANLB             Depreciation Terms                      BUKRS / ANLN1 / ANLN2 / AFABE
                                                             / BDATU
    ANLT             Asset Texts                             SPRAS / BUKRS / ANLN1 / ANLN2
    ANLU             Asset Master Record User Fields         .INCLUDE /  BUKRS / ANLN1 /  ANLN2
    ANLW             Insurable Values (Year Dependent)       BUKRS / ANLN1 / ANLN2 / VRSLFD /
                                                             GJAHR
    ANLX             Asset Master Record Segment             BUKRS / ANLN1 / ANLN2
    ANLZ             Time Dependent Asset Allocations        BUKRS / ANLN1 / ANLN2 / BDATU
    FI-AA-AA (AA2)   Asset Accounting: Basic Functions – Master Data 2.0
    ANAR             Asset Types                             ANLAR
    ANAT             Asset Type Text                         SPRAS / ANLAR
    FI-AA-AA (AB)    Asset Accounting: Basic Functions –
                     Asset Accounting
    ANEK             Document Header Asset Posting           BUKRS / ANLN1 / ANLN2 / GJAHR /
                                                             LNRAN
    ANEP             Asset Line Items                        BUKRS / ANLN1 / ANLN2 / GJAHR /
                                                             LNRAN / AFABE
    ANEV             Asset Downpymt Settlement               BUKRS / ANLN1 / ANLN2 / GJAHR /
                                                             LNRANS
    ANKB             Asset Class: Depreciation Area          ANLKL / AFAPL / AFABE / BDATU
    ANLC             Asset value Fields                      BUKRS / ANLN1 / ANLN2 / GJAHR /
                                                             AFABE
    ANLH             Main Asset Number                       BUKRS / ANLN1
    ANLP             Asset Periodic Values                   BUKRS / GJAHR / PERAF / AFBNR /
                                                             ANLN1 / ANLN2 / AFABER
    it is useful assign points
    Thanks
    gvr

  • Tables for change documents

    Hi Guru's,
    Can i know from which tables we can find the Change Document Header and Items.
    Regards,
    vcsreddy.

    Dear vcsreddy.
    table:CDHDR for header changes.
    Regards,
    Abhee.

  • Set up validity table for inventory management

    Hi all,
    somebody know if it is necessary reload the infocube 0IC_C03 every time that change the transfer method with the Tx. RSDV?
    Thanks in advance.
    Facundo Romero.

    Hi,
    If you decide later that you require more validity-determining characteristics, you can modify the selection using the report RSDG_CUBE_VALT_MODIFY. In this report, the non-cumulative InfoCube is only changed to the extent that the new validity-determining characteristics are selected and the validity table is reconstructed. The structure of the non-cumulative InfoCube remains the same. You do not have to reload the transaction data for it.
    I hope this helps.

  • Tables for Investment Management

    Dear All,
    We need to develop an ABAP report for Budget distribution in investment management in the format specified by the user. The client uses Investment management for budgets in Marketing budgets.
    I got tables IMTP, IMPR, IMPU for Investment program, position id etc.
    But I could not find the tables where the Budget amounts get stored when we distribute amounts in Tran.Code IM32.
    Please tell me the tables where Budget amount, Distributable, Distributed etc get stored when we post IM32.
    Reply me soon.
    Thank you very much in advance.
    Vishnu,
    VST-IT.

    Refer BPGE, BPJA.
    Regards

  • Table for solution manager key in ecc

    Hi all
    can any please tell me "solution manager key" is stored in which table in ecc
    Thanks & regards
    Chaitanya

    HI,
    I dont think it will be stored some where, it seems to be just installationpre-requisites.
    What is the need of tracking solution manager key ..Its more interesting for me!
    Regards

  • Updating database table for 'CHANGE' and 'ADD' buttons.

    Hi,
    I am working on module pool program. Here i am using table control.Below is my requirement:
    1) I have designed a selection - screen with 'CHANGE' and 'DISPLAY' buttons and in screen 100 i have 'ADD' and 'SAVE' buttons.
    2) when i click on 'CHANGE' , it will move to screen 200 here i need to change quantity field for that particular record which is in table control.once i change the field value and click on 'SAVE'  a message should be populated that "RECORD IS SAVED' and  this record should be updated in database table with new quantity field value and it should return back to my selection screen.
    3) When i click on 'ADD' , it should display already existing records in disable mode and a new line should be added inorder to enter new records. Once i enter the data and click on SAVE, this new record should be saved in the database table along with existing records.
    Kindly suggest me a sample code for this as am new to table control in module pool programming.

    Hi Gaurav,
    I've a similar problem!! any solutions to your problem!!

Maybe you are looking for

  • Can anyone tell me why this error only occur in Tomcat-4.0.2 ??

    When I try to execute my jsp page, Tomcat printed out this error. This error has never occurred in Tomcat-3.2.1 and Tomcat-3.3a. java.io.IOException: Stream closed      at org.apache.jasper.runtime.JspWriterImpl.ensureOpen(JspWriterImpl.java:242)    

  • JVM 1.5 under solaris10

    hello all this is my problem: we have 2 applications deployed under IAS the first application works fine, but the second one consume (after 2 or 3 day ) more than 90% of CPU the worrying thing is that even during the night when there is no traffic on

  • Helpful, Solved or Not solved

    I do not know if this is possible with the current forum software, but I would like to see another category added to the Solved on Helpful buttons. There are many questions that at present with OS-X as it is that cannot be solved. What I mean by that

  • Trial photoshop cs5 extended extended

    i try to download a trial version of photshop cs5 extended but only photoshop cs6 appear. as a result i fail to download photoshop cs5 extended. pls help

  • Error message behaving like Abort Message

    Hi, In my program code , there is a error message written, but when this error message is triggered it is displayed as ABORT message and it is skipping the transaction.   SORT zt5.   READ TABLE zt5 INDEX 1.   IF sy-subrc <> '0'.     MESSAGE e208 WITH