R/3 Table for Text Descr of ORD43 (Tax Type) of ANLA (Asset Master) table ?

Hi all,
   I want to find the table name from which we get the Text Description for ORD43 ( Tax Type - Exemption Certificate no) of ANLA (Asset Master) table in R/3.
   In R/3, we could see that description, next to 'Tax Type - Exemption' (on the right side) with Tcode AS03 (Display Asset : Master Data) under 'Reporting' tab
   The InfoObject in BW for the same ORD43 is 0EVALGROUP3 which is an attribute of 0ASSET and InfoSource is 0ASSET_ATTR_TEXT.
   Which table has that description for ORD43, PLEASE ?
Thanks,
Venkat.

Hi Venkat,
My sincere apologies for the inconvenience regretted,
SO10 is a transaction where you maintain the texts and STXH is the table where you can find the description, if text maintained through SO10. Please check and let me know.
Regards,
Adhi.

Similar Messages

  • Regarding SID table for Texts

    Hi,
    Do we have a SID table for text as we have for characteristics, attributes and hierarchy ?
    Regards,
    Sunitha

    Hi,
    Master data and Hierarchy have the SID tables but for text we do not have any SID table.
    Regards,
    rik

  • Building index from multiple tables for text search

    Hallo,
    I had a look at how to build a index table to optimize search with Oracle text.
    At the moment we are using a JOIN of tables to search for a text in several fields located in different tables.
    My question is:
    Is it possible to create that index table from several tables?
    If yes, can you point me out to any links or give me an example.
    So far, all the examples I read were about 1 table only.
    Thanks
    Elisabeth

    The following is an extension of the original example. It uses ctx_ddl.sync_index to synchronize the index and shows the changes in one of the index tables and shows that the query finds the newly synchronized data. It also shows how this only happens when the column that the index is on is updated. In this example, the index is on the dummy column. The first update does not update the dummy column, so the ctx_ddl.sync_index command does not synchronize the new data. The second update does update the related dummy column, so ctx_ddl.sync_index does synchronize the new data. Lastly, I showed what happens to one of the index tables when you rebuild the index. Notice the reduction in rows in the index table after the rebuild process. You could also rebuild online or drop and recreate the index.
    SCOTT@10gXE> DROP TABLE addresses
      2  /
    Table dropped.
    SCOTT@10gXE> DROP TABLE customers
      2  /
    Table dropped.
    SCOTT@10gXE> CREATE TABLE customers
      2    (customer_id NUMBER,
      3       first_name  VARCHAR2(15),
      4       last_name   VARCHAR2(15),
      5       dummy         VARCHAR2(1),
      6    CONSTRAINT   customers_pk PRIMARY KEY (customer_id))
      7  /
    Table created.
    SCOTT@10gXE> CREATE TABLE addresses
      2    (customer_id NUMBER,
      3       street         VARCHAR2(15),
      4       city         VARCHAR2(15),
      5       state         VARCHAR2(2),
      6    CONSTRAINT   addresses_fk FOREIGN KEY (customer_id)
      7                REFERENCES customers (customer_id))
      8  /
    Table created.
    SCOTT@10gXE> GRANT SELECT ON customers TO ctxsys
      2  /
    Grant succeeded.
    SCOTT@10gXE> GRANT SELECT ON addresses TO ctxsys
      2  /
    Grant succeeded.
    SCOTT@10gXE> CONNECT CTXSYS/ctxsys_password
    Connected.
    CTXSYS@10gXE>
    CTXSYS@10gXE> CREATE OR REPLACE PROCEDURE concat_cols
      2    (p_rowid IN     ROWID,
      3       p_clob     IN OUT CLOB)
      4  AS
      5    v_clob            CLOB;
      6  BEGIN
      7    FOR c1 IN
      8        (SELECT customer_id, first_name || ' ' || last_name AS data
      9         FROM      scott.customers
    10         WHERE  ROWID = p_rowid)
    11    LOOP
    12        v_clob := v_clob || c1.data;
    13        FOR c2 IN
    14          (SELECT ' ' || street || ' ' || city || ' ' || state AS data
    15           FROM   scott.addresses a
    16           WHERE  a.customer_id = c1.customer_id)
    17        LOOP
    18          v_clob := v_clob || c2.data;
    19        END LOOP;
    20    END LOOP;
    21    p_clob := v_clob;
    22  END concat_cols;
    23  /
    Procedure created.
    CTXSYS@10gXE> SHOW ERRORS
    No errors.
    CTXSYS@10gXE> GRANT EXECUTE ON concat_cols TO scott
      2  /
    Grant succeeded.
    CTXSYS@10gXE> CONNECT scott/tiger
    Connected.
    SCOTT@10gXE>
    SCOTT@10gXE> EXEC CTX_DDL.DROP_PREFERENCE ('concat_cols_datastore')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('concat_cols_datastore', 'USER_DATASTORE');
      3    CTX_DDL.SET_ATTRIBUTE ('concat_cols_datastore', 'PROCEDURE', 'ctxsys.concat_cols');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX customer_text_idx ON customers (dummy)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS ('datastore concat_cols_datastore')
      4  /
    Index created.
    SCOTT@10gXE> INSERT INTO customers VALUES (1, 'Bob', 'Smith', NULL)
      2  /
    1 row created.
    SCOTT@10gXE> INSERT INTO addresses VALUES (1, 'Noplace', 'Nowhere', 'CA')
      2  /
    1 row created.
    SCOTT@10gXE> INSERT INTO customers VALUES (2, 'Bob', 'Jones', NULL)
      2  /
    1 row created.
    SCOTT@10gXE> INSERT INTO addresses VALUES (2, 'Smith St.', 'Somewhere', 'CA')
      2  /
    1 row created.
    SCOTT@10gXE> EXEC CTX_DDL.SYNC_INDEX ('customer_text_idx')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> COLUMN   token_text FORMAT A30
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    SOMEWHERE                               0           2          2           1
    ST                                      0           2          2           1
    8 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Smith') > 0
      5  /
    FIRST_NAME      LAST_NAME       STREET          CITY
    Bob             Smith           Noplace         Nowhere
    Bob             Jones           Smith St.       Somewhere
    SCOTT@10gXE> -- dummy is not updated, so the index is not synchronized:
    SCOTT@10gXE> UPDATE   addresses
      2  SET      city = 'Anywhere'
      3  WHERE    city = 'Somewhere'
      4  /
    1 row updated.
    SCOTT@10gXE> EXEC CTX_DDL.SYNC_INDEX ('customer_text_idx')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    SOMEWHERE                               0           2          2           1
    ST                                      0           2          2           1
    8 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Anywhere') > 0
      5  /
    no rows selected
    SCOTT@10gXE> -- once dummy is updated, the index is synchronized:
    SCOTT@10gXE> UPDATE   customers
      2  SET      dummy = NULL
      3  WHERE    customer_id = 2
      4  /
    1 row updated.
    SCOTT@10gXE> EXEC CTX_DDL.SYNC_INDEX ('customer_text_idx')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    SOMEWHERE                               0           2          2           1
    ST                                      0           2          2           1
    ANYWHERE                                0           3          3           1
    BOB                                     0           3          3           1
    CA                                      0           3          3           1
    JONES                                   0           3          3           1
    SMITH                                   0           3          3           1
    ST                                      0           3          3           1
    14 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Anywhere') > 0
      5  /
    FIRST_NAME      LAST_NAME       STREET          CITY
    Bob             Jones           Smith St.       Anywhere
    SCOTT@10gXE> -- notice the changes if the index is rebuilt or dropped and recreated,
    SCOTT@10gXE> ALTER INDEX customer_text_idx REBUILD
      2  /
    Index altered.
    SCOTT@10gXE> SELECT   token_text, token_type, token_first, token_last, token_count
      2  FROM     dr$customer_text_idx$i
      3  /
    TOKEN_TEXT                     TOKEN_TYPE TOKEN_FIRST TOKEN_LAST TOKEN_COUNT
    ANYWHERE                                0           2          2           1
    BOB                                     0           1          2           2
    CA                                      0           1          2           2
    JONES                                   0           2          2           1
    NOPLACE                                 0           1          1           1
    NOWHERE                                 0           1          1           1
    SMITH                                   0           1          2           2
    ST                                      0           2          2           1
    8 rows selected.
    SCOTT@10gXE> SELECT   c.first_name, c.last_name, a.street, a.city
      2  FROM     customers c, addresses a
      3  WHERE    c.customer_id = a.customer_id
      4  AND      CONTAINS (C.dummy, 'Anywhere') > 0
      5  /
    FIRST_NAME      LAST_NAME       STREET          CITY
    Bob             Jones           Smith St.       Anywhere
    SCOTT@10gXE> 

  • Table for combination of Purchase requestition doc type and Purchase order doc type

    Hi,
    scenario:
    Purchase requestion has document type of Direct purchase which has allowable item category "Standard, consignment, subcontracting, third party and stock transfer".
    Purchase order has document type of indirect purchase which has allowable item category "standard and services".
    Now i saw in Define Document type OMEC, 'Doc type-Direct purchase' of purchase requestion is being linked to 'Doc type-Indirect purchase' of purchase order.
    Question:
    Can you please let me know how to pull of data for combination of  'Doc type-Direct purchase' of purchase requestion and 'Doc type-Indirect purchase'  of purchase order from SE16N? (assuming that we dont know what PR is converted to PO for the above combination)
    Note: Please don't delete this thread

    You did the hardest part: finding the custo in SPRO.
    Once you there, just click "table view" :
    and then on "print"
    Once you click, you see the table name you are looking for:
    Hope it helps,
    Génia.

  • Vendor name in Asset Master Table

    Hi all,
    If i open any asset master with Tcode AS02, i am able to see the vendor code and vendor name in the origin  tab in the asset master.
    And the fileds filled in asset master will be stored in table called ANLA, when i open the said table for the respective asset, there i am able to see only the vendor code only not the vendor name field.
    the vendor name field ANLA-LIEFE was showing blank, as it was showing data in the asset master.
    I think there might a technical issue in this regard.
    Please suggest me to fix this bug.
    Thanks,
    Srinu

    Hi
    It is not a bug,
    This field is currently for informational purposes only.
    You can only use this field to define sort versions.
    SAP-Definition of Sort version."A means of defining groups and group totals in asset reports. All fields of the asset master record can be used as group and/or sort criteria for defining a sort version. You enter the sort version key when starting a report."
    regards

  • Table for text at header and item level.

    Hi gurus,
    I have typed some text at the item level (Texts TAB for the item). In which table can i find this data. The table STXL does not contain the data thats been entered. Please help me with some information.
    Regards,
    Udaynath.

    Uday,
    UsE Function Module READ_TEXT or  try with Table STXH..
    Reward IF THIS HELPS..
    Regds
    MM

  • Table for Texts for Customs Documents - Relation to /SAPSLL/CUHD or ..CUIT

    Hi Folks!
    I am looking for the table where the text for customs declaration is stored in.
    E.g. when you write a remark or other text within a customs export declaration (on the text-tab) - in which database table is this text stored and how is the relation to /SAPSLL/CUHD or on item leve to /SAPSLL/CUIT?
    any help would be much appreciated.
    Regards,
    Ralf

    Hi Ralf,
    i have just used simple traced transaction and it leads to STXH and STXL tables.
    TDOBJECT: SLL_CUHD_C
    I believe function module reads/translated the texts.
    But this is probably only a beginning of investigation.
    Cheers,
    Gabriel.

  • Table for text elements and selection texts

    Hi All,
    In which DB table does SAP stores program name and corresponding text-elements and selection texts used in that program.
    There is a table D010TINF which just stores basic information but not the text elements number and name.
    Thanks in advance.
    Regards,
    Atish

    hi,
    table name - RS38M (take se11 and give this, u can confirm)
    field name  - STEXTT
    rgds
    anver
    if hlped pls rwrd points

  • QM Tables for CLASS(Class Number), KLART(Class Type) and MATNR(Material)

    Hi All,
    is there any table which are having the fields : CLASS(Class Number), KLART(Class Type) and MATNR(Material) in QM.
    the above three fields should be in single fields.
    thanks,

    Hi Gupta,
    Go through the AUSP table: Characterstic Values,
                             IFLOT table : Functional location.
    and
                             KSSKAUSP view for required fields.
    by
    Prasad gvk.

  • Request view of a cube - Which table for DTP texts?

    Hi all,
    does anybody know where I can find the text of column "DTP/InfoPackage" in slide "requests" if you start "manage" of an infocube?
    We started a dtp, but name was impractical. We just wanna change text in request-view (not rename and reload).
    It doesn't seem to be table RSBKDTPTH. We changed all names here, but old name is didplayed in request-view.
    Does anybody know which tabe is selected here?
    Regards,
    Christoph

    Hi,
    check for the below tables for text.
    RSBKDTPSTAT
    Status Information on Data Transfer Process
    RSBKDTPT
    Texts on Data Transfer Processes
    RSBKDTPTH
    Texts on Data Transfer Processes
    i checked my system BW 7.0 not there. if your using the BW 7.3/4 would have text.
    Thanks,
    Phani.

  • Tables for PROJECT SYSTEM

    hi all,
    Which are the tables for Networks(Orders) and Activities and how can i link these tables to the corresponding WBS Element (table PRPS) ?
    Thanks in advanced.
    Regards
    Geeta Gupta

    Hi,
    these r the tables
    Basic Data
    PRHI                                 Work Breakdown Structure, Edges (Hierarchy Pointer)
    PROJ                                Project definition
    PRPS                                WBS (Work Breakdown Structure) Element Master Data
    RPSCO                             Project info database: Costs, revenues, finances
    MSPR                               Project stock
    also
    Equipment
    EQUI                                             Equipment master data
    EQKT                                            Equipment short text
    EQUZ                                            Equipment time segment
    thanks
    ravi

  • Table for taxes

    Hi
    Can any one please suggest me (a MM guy) a table equivalent to BSET (for taxes) which will contains fields accounting document number, fiscal year, company code, material number, cost center (split account assigned vendor invoice), tax amount, and base amount for the tax amount
    BSET will have all the fields except the material number and cost center. I want to know, to which material, this tax amount has been paid
    waiting for your quick reply
    regards
    srini

    Hi Srini,
    refer these tables:
    T005S - Taxes- Region (Province) Key
    T005U - Taxes- Region Key- Texts
    T006  - Units of Measurement
    A003 - Tax Indicator
    A053 - Taxes via Jurisdiction Code
    T007A - Tax Keys
    T007B - Tax Processing in Accounting
    T007S - Tax Code Names
    T030K - Tax Accounts Determination
    T030R - Rules for Determination of Standard Accounts
    T050T - General texts
    T681A - Conditions: Applications
    T681B - Conditions: Applications:
    Texts - T681V Conditions: Usages
    T681W - Conditions: Usage: Texts
    T681Z - Conditions: Dependent Data for Application/Usage
    T682I - Conditions: Access Sequences (Generated Form)
    T683S - Pricing Procedure: Data
    T683T - Pricing Procedures: Texts
    T685 - Conditions: Types
    T685A - Conditions: Types: Additional Price Element Data
    T685T - Conditions: Types: Texts
    TTXD - Description of Tax Jurisdiction Code Structure
    TTXJ - Check Table for Tax Jurisdiction
    TTXJT - Text Table for Tax Jurisdiction
    Thanks and regards

  • Table name for Asset master

    hi folks,
    can u share the TABLE NAME FOR ASSET MASTER
    Thanks in Adv
    Regards,
    Varma

    hi Prasad,
    ANLA                           Asset Master Record Segment              
    ANLB                           Depreciation terms                       
    ANLBZW                         Asset-specific base values               
    ANLC                           Asset Value Fields                       
    ANLE                           Asset Origin by Line Item                
    ANLH                           Main asset number                        
    ANLI                           Link table for investment measure -> AuC 
    ANLK                           Asset Origin by Cost Element             
    ANLP                           Asset Periodic Values                    
    ANLQ                           Period values from dep. posting run per po
    ANLT                           Asset Texts                              
    ANLU                           Asset Master Record: User Fields         
    ANLV                           Insurance data                           
    ANLW                           Insurable values (year dependent)        
    ANLX                           Asset Master Record Segment              
    ANLZ                           Time-Dependent Asset Allocations         
    hope this helps
    ec

  • 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 - SAP BI Transformation

    Hi,
    I would like to know the table names related to BI transformations.
    I need to document the transformations, do we have any table to findout the how the info objects mapped from source to destination.
    Thanks in advance

    Hi prassana,
    YOu get the list from se11 --> type -->RSTRAN* ->click F4.
    please find some ofthe tables below
    RSTRAN     Transformation
    RSTRAN_R_CURR     Currency Translations for Transformation R
    RSTRAN_R_IOBJ     InfoObjects for UnitTest Transformation Ru
    RSTRAN_R_TEST     UnitTest Transformation Runtime
    RSTRAN_R_UNIT     Unit Conversions for Transformation Runtim
    RSTRAN_RTO     Runtime Object of Transformation
    RSTRAN_RTO_HDR     Header Information for Transformation Runt
    RSTRAN_STEPTPL_R     Runtime: Template STEP Type Relations
    RSTRAN_STEPTYP_R     Runtime: Sections for STEP Type
    RSTRANAPPEND     Assignment of Transformation - Appends
    RSTRANENQ     Lock Entries for Transformation
    RSTRANFIELD     Mapping of Rule Parameters - Structure Fie
    RSTRANFIELDPROP     Field Properties Within Transformation
    RSTRANGROUPT     Transformation Texts
    RSTRANIF     Table for Source/Target Interface
    RSTRANROUTMAP     Rule Type: Routine
    RSTRANRULE     Transformation Rule
    RSTRANRULE_TEST     Mapping Table for Single Rule Simulation
    RSTRANRULESTEP     Rule Steps for a Transformation Rule
    RSTRANRULET     Texts for a Transformation Rule
    RSTRANSEG     Used segments
    RSTRANSTEPCNST     Rule Type: Constant
    RSTRANSTEPIOBJ     Rule Step: InfoObject Assignment
    RSTRANSTEPMAP     Mapping for Rule Step Within a Rule
    RSTRANSTEPMASTER     Rule Type: Read Master Data
    RSTRANSTEPMOVE     Rule Type: Direct or MOVE
    Regards
    Prashanth K

Maybe you are looking for