Table name in which approver details are stored-Workflow

Hi ,
Can any one tell me the table name of approver is stored and theire levels...
Regards,
Veera

Do you know which table maintains approver details of PO?

Similar Messages

  • Table where the UI configuration details are stored

    Hi,
    I have the GUID information of Transport Request.
    Now I want to identify the related COMPONENT NAME / PAGE / ROLE CONFIG KEY /  COMPONENT USAGE/ OBJECT TYPE/OBJECT SUBTYPE
    Is there is any table where all the UI configuration are stored.pl suggest
    Regards
    BABU

    Though i don't know the excat place but I can suggest you that you do the following
    a) Start the st05 trace.
    b) launch the bsp_wd_cmpwb
    c) Perform the configuration changes.
    d) stop the st05 trace.
    e) Now if you do the due diligence , then you can find out the name of the table.
    Tedious i know but this is the way i know to do the things when i don't know the excat table.
    Regards
    Kavindra

  • Table name in which user information is stored in weblogic portal

    Hi Friends,
    Please specify the name of the table which stores user information(such as username,firstname,lastname,email,etc.)in weblogic portal.
    Thanx in advance.
    Chiku.

    Default table is PROPERTY_VALUE. You can write your own property manager to
    save is somewhere else
    Rajneesh
    <John Wayne> wrote in message news:[email protected]..
    Hi Friends,
    Please specify the name of the table which stores user information(such
    as username,firstname,lastname,email,etc.)in weblogic portal.
    Thanx in advance.
    Chiku.

  • Tables where vendor invoice paid details are stored

    Hello all,
    I have a technofunctional question. Once vendor invoices are paid through F110 transaction, what is the table that stores information regarding vendor invoice document number, its payment method and bank check number ?
    Regards,
    Rajesh.

    Hi Rajesh Thomas,
    REGUH:
    contains the information on the payment, such as the payment method, payment document number and payee. The payment program creates a REGUH record for each payment.
    REGUP:
    contains the information on the paid items, such as the amount, cash discount and invoice document number. The payment program creates a REGUP record for each paid item in a payment.
    Also have a look on below thread...
    Re: Urgent: Table for Payment for Bill
    Also have a look on below tables..
    LFB5
    LFC1
    LFBK
    RBKP
    RSEG
    BKPF and
    BSEG
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7

  • Which table campaign element details are stored

    Hi All,
    Would anyone know which table campaign and campaign element details are stored? I am using CRM 2007 and i am looking to find where details such as campaign element ID, campaign element description, start/end date are stored?
    i could not fund such data after looking through se16
    Any assistance is much appreciated.
    Thanks,
    Jonathan

    Hi,
    se16 > CGPL_PROJECT
    does not have records for the Campaign Element or Marketing Plan Elemtents,
    do you know which table I can find this information in please?
    Many thanks
    Mrugesh

  • Tables in which basis users details are stored

    Hello,
    I'm writing an application to read Basis users details using JCO. But I'm not able to locate in which tables the users details are stored. I tried looking at USR* tables, but most of its tables doesn't have data. Only usr01 and usr02 are having some relevant data. I also tried looking at ADR* tables, which are again of no use.
    If anyone knows in which tables Basis users details are stored, please let me know.
    Thanks & Regards,
    Chandrasekhar.

    Hi Chandrasekhar,
    SAP users are stored in the usr01 table (see transaction SE16.)
    Best regards,
    Houcine

  • Where PI Configuration Scenario details are stored under ABAP stack Tables?

    HI Experts,
    I want to know ABAP  table name where the PI Configuaration Scenario details are stored.
    I want to display the  list of all the Configuration Senarios created for different senarios under PI system.
    please let me know the table name or any other process.
    Thak you.
    Regards ,
    Nary

    I am not sure why you need this.
    If it is one time activity, log in to ID. Go to configuration scenario. Select All and paste in Excel.
    You will get list of configuration scenarios.
    But if you need in any program, I am not sure if there is any table which stores configuration scenario name. You will get many tables having BS, Comm Channel, Interface, Namespace, etc. but I doubt abt Scenario.
    We will also see replies from other's if they know any table.
    Regards,
    Gouri

  • Table in which deleted operations are stored.

    Hi,
         We are writing a report and for that i need the value of work hrs , so i would like to know in which table deleted operations of Maintenance order are stored ....
    regrds
    pm

    Hi,
    All the operations time values are found in AFVV, this includes the deleted operations. Also read AFVC for operation number, etc. The key to both these tables is AUFPL field (available in AFKO via order number).
    To decide if a particular AFVV record is deleted or not it is necessary to look at the JEST table. JEST can be accessed via Object Number, this has the format OV + AUFPL + APLZL. If the entry with status I0013 is active (no inactive flag) then this operation is deleted.
    -Paul

  • Table name in which return item data is stored of a PO

    Can some please specify the table name in which return item data is stored of a PO?
    Thanks in advance;

    Hi,
    Let me explain what exactly I need. In a PO there is a checkbox "Retun Item". If we check that checkbox for an item that item becomes a retun item.
    I need to fetch all the data of this return Item. The commitment data goes to table COOI but this return item records doesn't get stored in COOI table. I need all the data of this entry including the Network Activity, Project, WBS element etc.
    Please let me know if you could help me.
    Thanks.

  • In which infotype the employee login details are stored

    Hi experts,
    In which infotype the employee login details are stored.
    pls help me.
    Thanku,
    Ramkhe.

    For that you need to install the BC (Basis) component in addition to the HR system.
    I think there is an additional license charge for this "add on" though...
    But you must have a database - though it does not have to be started for the employee to have their logon details.
    Cheers,
    Julius

  • Hw to find the table name of the perticular field is stored in db,usingFM

    Dear all,
    I need to find out the table name of the perticular field is storing in database using FM (note: using Function Module or any standard program , not manually like press F1 -> technicall setting etc.. .) 
    [ Exmple: Field: "MATNR" is stored in table : MARA, so i need the program/FM  to findout MATNR is stoed in MARA table ]
    i need this  FM for update values of  material master ( mm01 ) stored in different warehouse using module pool program.
    it's very urgent , please send me reply asap.
    thanks,
    best regards
    srinivas

    hi Srinivas,
    Please use the following logic:
    types:
        begin of t_find,
           field(40),
        end of t_find.
    data:
        lt_find  type table of t_find,
        ls_find  type          t_find,
        lt_found type table of RSFINDLST.
    ls_find-field = 'MATNR'.
    append ls_find to lt_find.
    CALL FUNCTION 'RS_EU_CROSSREF'
    EXPORTING
       i_find_obj_cls                    = 'DTEL'
       I_SCOPE_OBJ_CLS                    = 'TABL'
       NO_DIALOG                          = 'X'
    TABLES
       I_FINDSTRINGS                      = lt_find
       O_FOUNDS                           = lt_found
    EXCEPTIONS
       NOT_EXECUTED                       = 1
       NOT_FOUND                          = 2
       ILLEGAL_OBJECT                     = 3
       NO_CROSS_FOR_THIS_OBJECT           = 4
       BATCH                              = 5
       BATCHJOB_ERROR                     = 6
       WRONG_TYPE                         = 7
       OBJECT_NOT_EXIST                   = 8
       OTHERS                             = 9
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    The table lt_found has the details for the tables having MATNR as a field; field lt_found-object will have the table names.
    Hope this helps,
    Sajan Joseph.

  • Table name from which to extract bank name and swift code by key field as vendor code

    Please help with the table name from which we can extract the bank name and swift code of vendors with the key input as vendor numbers

    Hello Subhadra, I'm sorry, I should've said join of LFBK and BNKA. The fields for the join will be the bank country(BANKS) and bank key (BANKL).
    If you have not found a docu on SQVI already, you can refer to this:
    How to create Report by using SQVI
    This is how your join should look in BASIS mode, your selection parameter should be vendor code LIFNR; output fields with be bank name BANKA and swift code SWIFT.

  • Table name where Broadcaster precalculation variables are saved

    Please help me with the table name where Broadcaster precalculation variables are saved. Thanks.

    Hello Jinal
    Please go to transaction SE11 and there search  in database table for tables starting with
              /BIC/OB*
    My table for example is named as following /it is the first precalculated value set:
    Transparent table -> /BIC/OB00000001
    description           -> Calculate with Broadcast Setting Z_CCUSTOMER_PRECALC_01
    However table class is L, where so I don't knwo how to see the data..
    In case you know please let me know
    Best regards
    Christian

  • Table name in which the trip history is stored.

    Hi All,
    I was trying to find out the table in which the trip history is stored but in vain could not. Can any one let me know the table name plz.
    Your help is very much appreciated.
    Thanks and Regards
    Sri

    FITV_REJECT                    Rejected Trips                            
    FTPT_IMR_SURFACE               IMR - Other Segments of Trip as Flights   
    FTPT_QT_ALTERN                 Quicktrip Trip Alternative                
    FTPT_QT_QTRIP                  Quicktrip Trip                            
    PTRV_ARCHIVE                   Administrative Table for Archived Trip Dat
    PTRV_BEIH_BEL                  Assignment of Receipts to a Subsidy for Tr
    PTRV_BEIH_TAG                  Assignment of Days to a Subsidy for Trips 
    PTRV_BEIH_WEG                  Assignment of Trip Segments to a Subsidy f
    PTRV_BEIHILFE                  Subsidies for Trips Home for Entire Separa
    PTRV_COMM_AMT                  Detail Data: Transfer to FM When Trip Save
    PTRV_COMM_ITM                  Header Data: Transfer to FM When Trip Save
    PTRV_F_FBLK                    Form Blocks of the Trip Costs Form        
    PTRV_F_FBLK_TXT                Form Blocks of the Trip Costs Form        
    PTRV_HEAD                      General Trip Data                         
    PTRV_PERIO                     Period Data of a Trip                     
    PTRV_REDUCTION                 Decision Fields: Change of Statutory Trip 
    PTRV_ROT_AWKEY                 Assignment of Trip Results to Posting Doc.
    PTRV_SADD                      Trip Statistics - Add. Receipt Data       
    PTRV_SBACKLOG                  Trip Statistics - Batch/Backlog Processing
    PTRV_SCOS                      Trip Statistics - Cost Assignment         
    PTRV_SHDR                      Trip Statistics - Trip Amounts            
    PTRV_SREC                      Trip Statistics - Receipts                
    PTRV_TRIP_CHAIN                Table of all Trip Destinations f. Processi
    PTRV_TRIP_DELETE               Trips Deleted in R/3 For Offline Travel Ma
    SFLTRIPBOK                     Individual Flight Bookings for a Flight Tr
    T702N                          Trip Provision Variants

  • Reg Table name for Menu / Form Details

    What is the Table name having the Menu name and Menu ID details for all modules?

    Hi,
    AFAIK this information is not stored in the database, appart from a fiew that are in the OADM table (PorName, RpdName, PdnName...). I think that this info is stored in a C++ library (don´t remember the name now).
    Perhaps if you ask what the objetive is we could help you with a workaround.
    Regards,
    Ibai Peñ

Maybe you are looking for

  • MacBook Pro (9,2) Thunderbolt Port does not project mirror image correctly

    Scenario: Using an Apple Mini Display Port to VGA adapter MacBook Pro (9,2) Thunderbolt port Various projectors Epson 450w Epson 460 Epson PowerLite 45+ Using Mirroring setting in Display preferences. Symptoms: Inserting the Apple Mini Display Port t

  • Cursor bind variable syntax err

    Any one help me in correcting the syntax, for cursor return. Oracle version 10g I am trying to execute the sproc and print the cursor results using bind variable, I am getting he below error Variable V_REFCUR REFCURSOR Variable V_REFCUR2 REFCURSOR va

  • "Ant downloader" does not show up when set to "statusbar" but shows up when in toolbar.

    In the previous versions, this would work on the bottom of the screen as a status bar, with version 4 beta though, there seems to be no statusbar at all.

  • SAP Expenses Automation

    We presently have a paper based process for claiming expenses but are looking at entering claims (probably via intranet type front end), workflow for authorisation, through to automatic posting into SAP Travel Management expenses. Does anyone do this

  • Hide row in planning book using BADI /SAPAPO/ADVX USER_EXIT_MACRO

    Dear All,    I would like to have your suggestion how to hide row in planning book using BADI USER_EXIT_MACRO    the requirement is when I drill down the object by region, the first line will be "total" and the second and third line    will be region