Which DB table?

in va01
at the item level, there are two colums BLK and REL. can anyone please tell me in which database table tht status flag is stored??
RV45A  :structure
STATUSFLAG :fieldname
STAT01  :fieldname
Message was edited by:
        shahid mohammed syed

ok

Similar Messages

  • In which FI table can I find the triangular deal flag?

    Hi expert,
    I am looking for the FI table in which I can find the triangular deal flag.
    In SD, I can see the documents with traingular deal in table VBAK (field XEGDR), but I don't know in which FI table I can find it.
    Do you have any idea?
    Thank you.
    Kind regards,
    Linda

    Hi,
    You can find the field in BSEG, BSAK tables in FI.
    Regards,
    Praisty

  • In which SAP tables where INCOTERMS COST are stored?

    Dear All, Costing/Financial Experts,
    <b>Could you please let me know,
    In which SAP tables are cost details  for "INCOTERMS" stored?</b>
    OR if someone can help me navigate to find the <b>cost</b> data for incoterms ?
    Thanks in Advance.

    Try these:
    A033
    A034
    A127
    A301
    Rob

  • IN which SAP tables Email id is stored

    In which sap tables Email Id is stored

    You really shouldn't worry about that. Use the access functions instead.
    If you are thinking about the e-mail address for a user, use the function module BAPI_USER_GET_DETAIL.
    If you are thinking about the e-mail address for an employee (which is not stored in the same table), one solution is to use BAPI_EMPLCOMM_GETLIST and look for an entry with subtype 10 (this one is SAP standard I believe) or any custom subtype which should hold e-mail address.

  • Message-mappings: stored in which database-table?

    Hello everybody,
    I want to code some ABAP to check some message-mappings.
    Does anybody know in which DB-tables the mapping including the mapping steps are stored?
    Thanks a lot.
    Regards Mario

    Hi Muller,
    Check these tables,
    <b>/SAPDMC/LSOMAP</b>                 Field Mapping
    <b>/SAPTRX/SCAOTMAP              </b>
    <b>/SAPTRX/SCCNDMAP              </b>  <b>/SAPTRX/SCEVTMAP              </b>
    <b>/SAPTRX/SCFUNMAP              </b> /<b>SAPTRX/SCSOMAP               </b>
    or Just say map in SE11 and u will get a list..
    Regfards,
    Sridhar

  • Workflow attchment data stored in which SAP Tables

    Hi,
    In Leave workflow when approver rejects it the approver(Agent) provide the reason for rejection as an attachment.
    I have to send the external mail to the employee.
    I am able to send the mail with fixed information, however unable to extract the information from attachment ( want to know in which SAP Tables say SW* this information is stored) or any other solution.
    Help Please.
    Praveen Jain

    You really shouldn't worry about that. Use the access functions instead.
    If you are thinking about the e-mail address for a user, use the function module BAPI_USER_GET_DETAIL.
    If you are thinking about the e-mail address for an employee (which is not stored in the same table), one solution is to use BAPI_EMPLCOMM_GETLIST and look for an entry with subtype 10 (this one is SAP standard I believe) or any custom subtype which should hold e-mail address.

  • Tables report are stored in which db table

    tables report are stored in which db table ?and can we do remote comparision between this in dev and prd

    Hi,
    Goto your report.
    Display the source code.
    Goto Utilities-----> versions--
    > versions management
    Click on remote comparision button.
    On the pop-up which appears subsequently, enter the sys name with which u want to compare ur code.
    <b>Reward if helpful</b>
    Regards.
    Pritha.

  • Which views/tables to use for retrieving item information

    Hi All,
    I need to write a PL/SQL procedure for retrieving detailed information for a specified item (given inventory item ID and organization ID). I'm not quite sure which views/tables to us for this.
    I found out that view MTL_SYSTEM_ITEMS_FVL is the underlying view for the Master Item Form (via help / record history menu option). But when looking up in eTRM following warning is described:
    Warning: Oracle does not recommend you query or alter data using this view. It may change dramatically in subsequent minor or major releases.
    The second view I found is MTL_SYSTEM_ITEMS_VL. But when quering for data in this view, it turned out that the view is empty.
    Can anybody tell me for what purposes this view is used?
    Is it the correct way to use one of these views (or any other?) for retrieving detailed item information or should I better define a new query within the procedure using tables such as MTL_SYSTEM_ITEMS_B, MTL_SYSTEM_ITEMS_TL and MTL_PARAMETERS (any others) ?
    Any ideas for that?
    Best Regards,
    Carolin

    Hi Carolin,
    It's usually more efficient to use base tables instead of views. The tables you will actually need will depend on your requirements. Regarding your question about MTL_SYSTEM_ITEMS_VL, it's usually ok to use the _VL views. These typically contain the same information as the base tables plus some logic to get the appropriate translations for fields that can be shown in different languages (for instance, DESCRIPTION). Typical table names you will need could be:
    Item Master: MTL_SYSTEM_ITEMS_B
    Organizations: MTL_PARAMETERS
    Subinventories: MTL_SECONDARY_INVENTORIES
    Units of Measure: MTL_UNITS_OF_MEASURE
    Onhand Quantity: MTL_ONHAND_QUANTITIES_DETAIL
    Material Transactions: MTL_MATERIAL_TRANSACTIONS
    Categories: MTL_CATEGORIES_B, MTL_CATEGORY_SETS_B, MTL_ITEM_CATEGORIES
    If your query didn't return any data, it's probably because the language was not properly setup in your session (check USERENV ('LANG') so see what's the language in your session).
    Hope it helps.

  • Which Interface table should I select

    I require to insert data into the interface tables for the shipping done against the customer order.
    I have doubt as to which interface tables are to be selected. I am listing the interface tables which are known to me.
    1. WSH_DELIVERIES_INTERFACE
    2. WSH_NEW_DEL_INTERFACE
    3. WSH_TRIPS_INTERFACE
    Are the table names I have listed above are correct. If there are any more tables that I have to select please suggest me
    Thanks in advance
    Vishwanath

    Hi,
    Please help me out how to use the WSH_FREIGHT_COSTS_PUB.Create_Update_Freight_Costs API.
    I had used the below code but it returns with error.
    pub_freight_costs.delivery_id      := Delivery_Id;
         pub_freight_costs.freight_cost_type_id := P_type;
         pub_freight_costs.currency_code := 'USD';
         pub_freight_costs.unit_amount      := nvl(I.shipping_charges, 0);
         p_action_code := 'UPDATE';
    APPS.WSH_FREIGHT_COSTS_PUB.Create_Update_Freight_Costs (
         p_api_version_number => 1.0
         , p_init_msg_list => init_msg_list
         , p_commit => p_commit
         , x_return_status => x_return_status
         , x_msg_count => x_msg_count
         , x_msg_data => x_msg_data
         , p_pub_freight_costs     => pub_freight_costs
         , p_action_code => p_action_code
         , x_freight_cost_id => freight_cost_id
    Please send the reply to [email protected]

  • Which HR table has details of subordinates names under a particular person?

    Which HR table has details of subordinates names who are under a particular person?
    That is>>I need to know 'I have to display all the employes working under a particular person' how can I do it??
    Regards,
    Shashank.

    Look at infotype 1001, where objects are linked
    <b>About the Relationship Infotype (1001)</b>
    <b>Definition</b>
    Infotype, which defines the Relationships between different objects.
    <b>Use</b>
    You indicate that a employee or user holds a position by creating a relationship infotype record between the position and the employee or user. Relationships between various organizational units form the organizational structure in your enterprise. You identify the tasks that the holder of a position must perform by creating relationship infotype records between individual tasks and a position.
    Creating and editing relationship infotype records is an essential part of setting up information in the Organizational Management component. Without relationships, all you have are isolated pieces of information.
    Look also at <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/HRINF/HRINF.pdf">HR Infotypes</a> for a detailed list of infotypes.
    Regards

  • Which SAP tables does CM read to update data

    Hi
    Please can someone tell me which SAP tables in FI, MM and SD that SAP Cash Management  (CM) selctes data from when updating FSCM-CM.
    In other words, if I delete CM data and then recreate it using programs RFFDDL00  (delete) and RFFDKU00 / RFFUEB00 / RFFDMM10 / RDDSD10 / RFFDMM20  (create for OIs, GLs/Bank Bal, MM/POs, SD/SOs and MM/PRs resp) which tables are the source tables for SAP CM?
    Thanks for any help anyone can give me. I'm trying to undesrstand the data creation process to trace why the drill-down to AP/AR OIs is not working and why the GL drill-down lists 000's more OIs than the CM balance shows and why the drill-down for POs/PRs in MM and SOs in SD works correctly.
    Wayne

    Hi Priyanka,
    Please take a look at these..
    http://help.sap.com/saphelp_erp2005/helpdata/en/04/964e38533e3860e10000009b38f889/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/5a/5b5738ed5a1d36e10000009b38f889/frameset.htm
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • ATWRT field is from which database table.

    Hi Gurus,
        I need to see the field name ATWRT(Manufac Method) for the particular material number.from which database table can i access both the data.Please help me .
    Thanks in advance.
    Points will be rewarded.
    Thanks & Regards,
    A.Ashok kumar.

    Hi
    these are the tables where atwrt exists:
    ABAUSP
    AFFV
    AFFVB
    AFFVD
    APICAWN
    API_CAWN
    API_CCHAR
    API_VALI
    API_VALUE
    API_VAL_IN
    CCIHS_IHPRIOT
    CCRCS_EHS_SVT_MA
    CLGO_MULTIPLE
    CLRS_OBJ_KEYS
    CLRS_OBJ_VALUES
    CLSELSTATISTICS
    CLS_CHARAC
    COFIV
    COFV
    COFVP
    COME
    COMEP
    COMER
    COMSE
    COMW
    COVLP
    CRMT_IC_SCRIPT_M
    CSIM_ST_DETAIL
    CTBW_VALUE_TEXT
    CTIH_01
    CTMSEXIT001
    CTMS_02
    CUCD_CONF
    CUD0_02
    CUGEN_SIMPLE_LIT
    CUGEN_SIMPLE_SIN
    CUGEN_VALUE
    CURTO_CU_GEN_SIMPLE_L
    CURTO_CU_GEN_SIMPLE_S
    CUSL_01
    CUSL_02
    CUSL_05
    CUSL_06
    CUSTOMER_FILTER_CHAR
    CUXREF
    CUXR_OBJ
    CUX_EXP_VALUE
    DDB_AW
    DDB_C01
    DDB_C02
    DDB_C03
    DDB_C04
    DDB_C06
    DDB_C07
    DESCR
    DIWPS_ATINN
    DIWPS_CA
    DIWPS_CONF
    DIWPS_CONF_MARK
    DIWPS_RV_ATINN
    DIWPS_RV_CA
    DIWPS_RV_CONF
    DIWPS_RV_CONF_MARK
    DIWPS_RV_NAV
    DIWPS_WA_WORKPACKAGE
    DIWPS_WPID_CONF
    DIWPS_WP_NAV
    E1AUSPM
    E1CAWNM
    E1CUV1M
    E1EDL12
    E1EDL15
    E1ISU_SDORD_POS_CONF
    E1WBB17
    DIWPS_ATINN
    DIWPS_CA
    DIWPS_CONF
    DIWPS_CONF_MARK
    DIWPS_RV_ATINN
    DIWPS_RV_CA
    DIWPS_RV_CONF
    DIWPS_RV_CONF_MARK
    DIWPS_RV_NAV
    DIWPS_WA_WORKPACKAGE
    DIWPS_WPID_CONF
    DIWPS_WP_NAV
    E1AUSPM
    E1CAWNM
    E1CUV1M
    E1EDL12
    E1EDL15
    E1ISU_SDORD_POS_CONF
    E1WBB17
    E1WTADDI12
    E2AUSPM
    E2CAWNM
    E2CUV1M
    E2EDL12
    E2EDL15
    E2WBB17
    E3AUSPM
    E3CAWNM
    E3CUV1M
    E3EDL12
    E3EDL15
    E3WBB17
    ECONF_OUT
    EHQMSAPIM1
    Regards
    Preeti
    <b>
    Reward if useful</b>

  • Which database table store page names?

    Hi, I'm trying to retrieve the corresponding page name based on the NAME column from the OWA_PERF.TOP_PAGE_BYDAY table. I've tried to get the value from RTAL.WWPOB_PAGE$ using SITE_ID and ID, but it returns duplicates records with the same name. May I know which database table actually stores the specific page names without repeats?

    Sorry. there was a small mistake in my previous post. Here is the updated one:
    Hi, I'm trying to retrieve the corresponding page name based on the NAME column from the OWA_PERF.TOP_PAGE_BYDAY table. I've tried to get the value from PORTAL.WWPOB_PAGE$ using SITE_ID and ID (which is the first two parts of the NAME value), but it returns duplicates records with the same name. May I know which database table actually stores the specific page names without repeats?

  • Which ECC table stores shipment # condition type level data?

    Hi all:
    Here I have a requirement to get freight data at condition type level for each shipment number.
    Does anybody know which ECC table/field maintain such data?
    Any post would be appreciated and thank you all in advance!
    Tim

    hi,
    this is to infrom you that,
    please try these tables:
    Tables for Shipping/Delivery document
    VTTK : SD Doc: Shipment Header
    VTTP - TKNUM: SD Doc : Shipment Item
    please check and confirm
    i have checked from my end.
    regards,
    balajia
    Edited by: balaji timmampalli achari on Nov 24, 2010 8:17 AM

  • Which CRM table stores the release quantity and target quantity

    I found one table named CRMD_SCHEDLIN, one field is Quantity, is it the target quantity or not? If not, which CRM tables stores this info?
    Thanks!

    H Tracy,
    As far as i could find the table CRMD_SCHEDLIN is the only table which stores quantity. the sum quantities of each line item gives you the target quantity of the order i think.
    Please check the source code of function module CRM_SCHEDLIN_I_GET_ORD_QTY_OW you may get soem idea.
    Thanks,
    Rajini A.

  • Which all table contains a particular field

    Hi
    Can any one give me the query for finding which all tables in the database contains a particular field.
    Like I want to find out all the tables which has fields with field name like '%LOC%'
    Thank You
    .S

    select table_name from dba_tab_columns where column_name like '%LOC%'

Maybe you are looking for

  • How to get document number in user  created form?

    Hi All,          I am creating a form.In that i want to maintain Document number for each form(each order)(like in sales order form (Document  No. field)).                Please help me to maintain the document number either manually or by system gen

  • In Lion, Time Machine seems to be perpetually running - and running slowly

    Up through Snow Leopard, Time Machine did its incremental backup every hour quickly and stopped. Since upgrading to Lion back in July, Time Machine seems be be running almost all the time - and very very very slowly. There doesn't seem to be any exes

  • Send encrypted data from oracle 11g to Ms SQL Server 12

    Hi every body, we want to send encrypted data from oracle 11g to Ms SQL Server 12: - data are encrypted to oracle - data should be sent encrypted to Ms SQL server - data will be decrypted in Ms SQL server by sensitive users. How can we do this senari

  • Consuming Web service : Sample ABAP application

    Hi Friends, I am trying to consume existing web service. I have few questions. --> Why do we need to create simple ABAP application while consuming Enterprise Service? --> How this ABAP application will be triggered? Will it be triggered automaticall

  • When add messge type and profile parter to IDOC regarding xml to IDOC .

    Hi all:      There is a business requirement to pass xml to IDOC using xi, can you tell me when the message type and profile partner  information is added to IDOC?  this work is done by Xi or sap? Thank you very much