Reg: how to see the Assets in Tables

HI all,
How to see the assets in internal tables
regards
JK Rao

Hi,
ANAR     Asset Types
ANAT     Asset type text
ANEK     Document Header Asset Posting
ANEP     Asset Line Items
ANEV     Asset downpymt settlement
ANKT     Asset classes- Description
ANLA     Asset Master Record Segment
ANLB     Depreciation terms
ANLC     Asset Value Fields
ANLH     Main asset number
reward pts if useful
regds

Similar Messages

  • Reg: how to see the vendor details and general ledger details in tables

    HI all
    how to see the vendor details and general ledger details in tables.
    regards
    JK Rao

    General ledger transactions are available in following table;
    1. BKPF & BSEG
    2. BSIS - Open Items
    3. BSAS - Cleared Itesm
    For vendor
    1. BSIK - Open Items
    2. BSAK - Cleared Items
    For Customers
    1 BSID - Open Items
    2. BSAD - Cleared Items
    Regards
    Rakesh Pawaskar

  • Reg:How to delete the column in table control also from database table.

    Hi Experts,
    Once again thank u all for giving the responses.
    one more doubt is how to delete the columns of table control and also the record shold delete from ztable.
    With Regards,
    Saroja.P.

    Hi,
    If you want to delete the rows in the table control and simultaneously delete it from the database table, then you can implement a 'DELETE' functionality specific to your table control. Have a MARK field (you will find that in the screen attributes of the table control -> give a name for the MARK field, you will find an additional MARK column at the beginning of your table control). You can check whatever rows you want to delete from the table control, call the delete module.
    "This portion of code inside the LOOP...ENDLOOP.
    IF sy-ucomm eq 'F_DELETE'.
       gt_itab2-check = mark.  " Store the MARK field status into your internal table's correspoding field 'check'
      MODIFY gt_itab INDEX tabcontrol-current_line.
    ENDIF.
    iF sy-ucomm eq 'DELETE1'.
      DELETE gt_itab WHERE check eq 'X'. "Your internal table does not have rows that you want to delete
    ENDIF.
    Now you can modify your database table using the MODIFY statement.
    MODIFY ZDB FROM TABLE gt_itab.

  • How to see the Table Names & Field Names by other than F1 help

    Hi Experts
       How to see the Table Names & Field Names by other than F1 help, & How to see the List of MM Table Names.
    Rgds

    The only option to see the active table/ field name is through F1 --> Technical Information. Apart from this, you can use any 3rd part application like GUIex (INbuilt in SAP ECC 6.0 ... can be activated by clicking on the tri-color button on the top right), but you need technical knowledge to understand the information. As far consolidated list of MM tables is concerned, SAP don;t provide you the same at one place, it experience and knowledge which help you in this regard. For your immediate reference MM tables are as under :
    EBAN  - Purchase Requisition 
    EBKN  - Purchase Requisition Account Assignment 
    EBUB   - Index for Stock Transport Requisitions for Materi
    EINA    - Purchasing Info Record: General Data 
    EINE     - Purchasing Info Record: Purchasing Organization D
    EIPA     - Order Price History: Info Record 
    EKAB   - Release Documentation 
    EKAN   - Vendor Address: Purchasing Document 
    EKBE    - History per Purchasing Document 
    EKBEH - Removed PO History Records 
    EKBZ    - History per Purchasing Document: Delivery Costs 
    EKBZH  - History per Purchasing Document: Delivery Costs 
    EKEH    - Scheduling Agreement Release Documentation 
    EKEK    - Header Data for Scheduling Agreement Releases 
    EKES     - Vendor Confirmations 
    EKET     - Scheduling Agreement Schedule Lines 
    EKETH   - Scheduling Agreement Schedules: History Tables 
    EKKI      - Purchasing Condition Index 
    EKKN    - Account Assignment in Purchasing Document 
    EKKO    - Purchasing Document Header 
    EKPA     - Partner Roles in Purchasing 
    EKPB     - "Material Provided" Item in Purchasing Document 
    EKPO    - Purchasing Document Item 
    EKPV    - Shipping-Specific Data on Stock Tfr. for Purch. D 
    EKRS    - ERS Procedure: Goods (Merchandise) Movements to b 
    EKUB    - Index for Stock Transport Orders for Material 
    EORD    - Purchasing Source List 
    EQUK    - Quota File: Header

  • How to see the table in se11 that has been created in oracle 10g directly

    hi,
    how to see the table in se11 that has been created at SQL> prompt in oracle 10g directly ?
    is there any procedure to attache directly created table  into sap ?

    I think you have to create it in SE11 first. Although you can probably use native SQL to access it from an ABAP program.
    Rob

  • How to find the list of Tables....

    Hi
    How to find the list of Tables associated with When a Goods Issue is done for a Process Order ??
    Kindly tell me step-by-step procedure in browsing it.
    cheers
    MaruthiRam

    Hi
    goto SE16 Click F4, You have two options Information system & Sap Applications.
    Click on SAP Applications & selec the application you wnat to see, for E.g Purchasing you can click on materials managemnt, Purchasing if you drill down you will see the list of tables....
    reward points if useful
    Thanks & Regards
    Kiran

  • How to see the result

    hi every body...
    i want to get the result of any table..
    for ex: select * from dept;
    the o/p should be like(10~Accounts~new york)
    for this i wrote this code.... it run sucessfully;
    my prob is how to see the Result..
    declare
    tn varchar2(35);
    sqlstmt varchar2(2000);
    rc sys_refcursor;
    begin
    tn := '&tn';
    sqlstmt := 'select * from '||tn;
    open rc for sqlstmt;
    end;
    post u r comments,Hints and suggestion...

    post u r comments,Hints and suggestion...
    SQL> var rc refcursor
    SQL> begin
      2     open :rc for  'select * from &tn';
      3  end;
      4  /
    Enter value for tn: emp
    old   2:    open :rc for  'select * from &tn';
    new   2:    open :rc for  'select * from emp';
    PL/SQL procedure successfully completed.
    SQL> print rc
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SPENCER    CLERK           7902 17-DEC-80        800                    20
          7499 VERREYNNE  SALESMAN        7698 20-FEB-81       1600        300         30
          7521 VAN WIJK   SALESMAN        7698 22-FEB-81       1250        500         30
          7566 MAINGUY    MANAGER         7839 02-APR-81       2975                    20
          7654 KISHORE    SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BARRY      MANAGER         7839 01-MAY-81       2850                    30
          7782 BOEHMER    MANAGER         7839 09-JUN-81       2695                    10
          7788 PADFIELD   ANALYST         7566 09-DEC-82       3000                    20
          7839 SCHNEIDER  PRESIDENT            17-NOV-81       5500                    10
          7844 GASPAROTTO SALESMAN        7698 08-SEP-81       1500          0         30
          7876 CAVE       CLERK           7788 12-JAN-83       1100                    20
          7900 CLARKE     CLERK           7698 03-DEC-81        950                    30
          7902 JAFFAR     ANALYST         7566 03-DEC-81       3000                    20
          7934 ROBERTSON  CLERK           7782 23-JAN-82       1430                    10
           109 JOMAR                                                                   30
          8800 VISWARAYAR INTERN          7934 03-OCT-82          0                    10
    16 rows selected.
    SQL> Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • How to see the MM invoice changes in sap?

    Hi
    How to see the MM invoice changes in sap ?

    Dear Prashant,
    When ever we perform LIV and is blocked for payment (due to price variance or other variance) is stored on table RBKP_BLOCKED
    Now when we release it through t. Code MRBR that time its get deleted from RBKP_BLOCKED
    So you can always track it :
    Go to ->SE16 ->Enter table name CDHDR -.>Table contents (F7)
    In the selection screen enter
    OBJECTCLAS as INCOMINGINVOICE
    OBJECTID as =Invoice no+year (e.g 51056066022011 where is 5105606602 invoice no 2011 is year)
    TCODE as MRBR
    ->Execute
    You will find the details when it was released  Date ,Time, User ID etc
    Edited by: redriver on Dec 26, 2011 2:23 PM

  • HOW TO SEE THE NONACTIVE MATERILA LIST

    HOW TO SEE THE NONACTIVE MATERILA LIST

    Hello,
    are you asking for NON-active material with stock?
    if so use this t-code and generate the report:
    MC46-Slow moving items
    MC50-Dead stock
    if you only want those flag for deletion, try this:
    Go to SE16
    from the tables MARA for deletion indicator set at general level,
    from table MVKE for deletion indicator set at sales org level,
    from table MARD for deletion indicator set at storage location level.
    from table MBEW for deletion indicator set at valuation area level.
    from table MLGN for deletion indicator set at warehouse level.
    Hope this help you,
    Maia

  • How to see the billed invoices in VF04 transaction

    Hi,
    All
    I would like to find a way to see the invoice number for collective billing. When we process more than one Delivery at a time,
    The invoice number is generated in background and in order to find it that we have to reference back to the delivery. Is there an  place to see this or
    how to see the billed invoices in VF04 transaction
    Thanks
    rajesh

    Hi
    You may check the table VBRK, give the date of creation of invoice in ERDAT field and execute, it will give all the Invoice created on that date.
    you may also check with ref. to the invoive no. in table VBRP for the Delivery no. in the field VGBEL.
    If require you may create an ABAP Querry for these two tables VBRK and VBRP.
    Hope it will help
    Regards
    AA

  • How to see the records through infoset

    I have created infoset with infocube and master table,how to see the records in infoset?
    Thanks
    Gnanasundaram C

    Hi Gnanasundaram
    Just execute the t-code RSISET and click on infoset display data  button it will take you to the records.
    Hope its clear a little..!
    Thanks
    K M R
    >
    Gnanasundaram.c wrote:
    > I have created infoset with infocube and master table,how to see the records in infoset?
    >
    > Thanks
    > Gnanasundaram C

  • How to find the average of table row values it should display in next row in libwindow/​CVI

    Hi,
    How to find the average of table row values it should display in next row in libwindow/CVI
    Please let me know the solution.

    There isn't a built-in function to perform calculations on thable cells. What you can do is to retrieve thable cells values and calculate the average by yourself.
    To retrieve a bunch of cells in a single instruction you can use GetTableCellRangeVals: prerequisite for this function to work correctly is that cells are all included in a Rect structure (shortly, a rectangle) and are all of the same data type. See the help for the function for some explanations and the link to an example of its usage. In Cell range parameter you can pass VAL_TABLE_ROW_RANGE (row) macro to retrieve an entire row. See here for details.
    Once you have retrieved cell values in an array, you can pass it to Mean function to calculate the average.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Please let me know how to see the details related to the Key figure used

    Hi,
    Basic key figure BHSL-I belonging to the table GLPCT is used in the one of the reports created using the Report Painter.
    Please let me know how to see the details of the BHSL-I key figure.
    Details I am looking for is, how the field BHSL-I is getting populated I mean from which field/fields combinations and what is the formulae involved in the calculation of the key figure.
    Please let me know if any documentation exists about the key figures.
    Thanks in Advance.
    Madhuri.

    What model year is it? If older than a 2011 model, and even some early 2011 models, you will need the original install discs that came with it.
    If older than a 2011 model then you use the Online Internet Recovery system to erase the drive, format it Mac Extended and then reinstall OS X.
    To access that online recovery system at startup hold down the Command + Option/Alt + r key and keep them held down until you see a globe on the screen.

  • How to see and edit archieve tables?

    Please let me know how to see the archieve tables and thier contents. Also, please let me know how to edit them i.e. to modify the table?
    Thanks in advance!
    Suman

    check tcode SARA

  • How to see the Open PO Qty in Mass

    Dear Experts,
                        How to see the Open Qty in PO in mass, is there any report available..Please help 
    Regards
    karthik

    use the Txn ME2N
    Enter the follwoing details . Scope of list - ALV, Selection parameters- WE101, Plant- XXXX, Enter the document dates From and TO and execute ( F8), You will get all the details, If you want to adjust the format use cntrl+F8 to get the POP_up for selection of fields and use as you wish.

Maybe you are looking for

  • Generation of java classes from XML Schema.

    Hi All, I am working with JWSDP-2.0 but got stucked.: To generate Java classes from an XML Schema with the JAXB ,I need to have following jar file in thils location with this JWSDP-2.0 <JWSDP>/jaxb/lib/jaxb-api.jar <JWSDP>/jaxb/lib/jaxb-impl.jar <JWS

  • PC to Mac - A few questions ?

    Hi Everyone; I currenty have a PC and I'm really sick and tired of Windows. I've been considering for quite sometime now about switching to a Mac - specfically a Powerbook. I've heard that there are issues acessing internet sites using Safari, Proble

  • HELP with JMS message bridge to MSMQ

              Can anyone offer suggestions on how to obtain/build a JMS messaging bridge to MSMQ.           I see that WL has a Messaging Bridge but only for certain foreign messaging systems.           FioranoMQ have a JMS Implementation with a bridge t

  • How to use RCIEV feature to trigger mail to a particular mail id in M0001

    Hi, I'm trying to trigger mail for any marital status change in personal data infotype for employee through dynamic action. Kindly help me in using RCIEV feature in M001 feature in detail for triggering mail to a manager other than administrator. Tha

  • How to undo permanent applying clipping mask,

    Hello, I hope somebody can help me. I'm having some trouble with the adjustment layers. I've made a selection that I want to brighten a bit, and then I make a selection in the wanted area, and choose "curves" in the adjustmenlayers to brighten the se