Transparent table for ADDR1_DATA structure

Dear all,
Plz. provide me the transparent table name for ADDR1_DATA structure.
Actually for ME21n (PO Create)
item level
Tab - Delivery Address
Now i want to fetch these address which is showing ADDR1_DATA structure after F1
Plz help me

U will find the address in ADRC itself.
In the delivery address tab u have a number given as "address" use this as address number in ADRC table and u can see ur delivery address.
кu03B1ятu03B9к
Edited by: Kartik Tarla on Dec 11, 2009 11:58 AM

Similar Messages

  • How to find out name of table for a structure.

    hello all,
                I want to find out name of table for a structure ADDR1_DATA. can anybody pls tell me how to find out it?
    Thanks,
    Ashu

    Hi Ashu,
    You write the structure name in se11
    after selecting the database table radio button
    click on the where used list button in the application tool bar.
    You will find the table name if it is used else where.
    Check out the website at:
    http://sap-idoc2edi-consulting.com/
    Read the blog at:
    http://blogs.ittoolbox.com/sap/ehadzipetros
    Regards,
    Jagadish

  • Transparent Table for RIWO00

    Hi,
           I am  working in PM, I need transparent table for RIWO00-STTXT(Structure). In IW22 when I give Notification Number I get the PM Notification Details. In this there is status (F1 Help) which is coming from RIWO00 this table. I need to write the User Exit to get this status value into Extract Structure.
          Please give me your valuable inputs which helps to bet the base table for this Structure.
    Thanks
    Robbie.

    Hi Robbie,
    Does the document have the status NOPR? If yes then the following code might work.
    TABLES: QMEL.
    DATA: S_ITAB TYPE JEST OCCURS 0 WITH HEADER LINE,
               S_TEXT TYPE TJ02T OCCURS 0 WITH HEADER LINE.
    SELECT SINGLE * FROM QMEL WHERE QMNUM = (Notification No).
    SELECT * FROM JEST INTO TABLE S_ITAB WHERE OBJNR = QMEL-OBJNR.
    LOOP AT S_ITAB.
    SELECT SINGLE * FROM TJ02T INTO S_TEXT WHERE ISTAT = S_ITAB-ISTAT.
    APPEND S_TEXT.
    ENDLOOP.
    You will get all the entries in the table S_TEXT.
    Hope this helps,
    Sudhi
    The system status should be present at the document level. You can view all the system statuses by clickin on the "i" icon in the transaction next to status.
    Message was edited by:
            Sudhindra Chandrashekar

  • How to create internal table for a structure in BSP

    hi ,
    I have created a Structure in BSP.I want to create an internal table for that Structure. But in my coding ie.
    <% data: begin of itab_1 .
                     include type zuvendstr.
                     data:end of itab_1.
                     data wa_str like line of itab_1.
                     loop at itab_1 into wa_str. %>
                    <tr>
                     <td><%=wa_str-name%> </td>
                           <%endloop.%>
    In this zuvendstr is Structure ,wa_str is workarea and itab_1 is an Internal table.But it is showinng an error that itab_1 is unknown.But we cannot define internal tables for an Structure in Page Attributes.So,please resolve how to create internal table for Structure in BSPS

    Hi,
    You can define itab_1 like this (assuming zuvendstr is a structure type):
    DATA: itab_1 TYPE TABLE OF zuvendstr.
    Regards,
    Tanguy

  • How to trace the database table for a structure

    hi
    am trying to find the database table for a structure unfortunately am failing to use the sql tracer any one know howelse i can do that the structure name is 'busbankcheck' and 'bus000flds'.
    thanx in advance

    Hi florence,
      1)      U can go to tcode sldb and give ur structure name or if u can find which logical database it is from u can get the tables of the structure....
    Suppose it is of HR it may be like pnp logical database and then to sldb and give pnp and u can get all the table of that....
    2)If u know which fields u want from the stucture....then go to table DD03L and give ur fields name and it iwll bring where all tables this field is avaialble and u can find them......
    3) the st05 sql trace can help u.....
    I hope any one of the three will definetely help uuu
    Regards
    vamsi
    Edited by: vamsi talluri on Jan 22, 2009 1:24 PM

  • Find table for a structure field

    Hi,
    I need to find table for field Q0743-OFFR1. I tried using tcode SE15, but was not able to find any table where the field is used.
    Is there any other method of finding a table for a structure field.
    Any pointers in this regard would be helpful.
    Thanks,
    Saher

    Hi,
    when u open the structure , u will find the tab " Component " in that you
    will find "Data Element" column which hold the data element of the structure
    component , now double click on the respective "Data Element " and that will
    open up the Data Element Page in which u will find a "Where Used List" icon
    , click on that, this will now display you the list, select the TABLE LIST
    Check box and execute, which will subsequently display you all the the table
    names which has "specified" data element's component as field
    Hope this will Help you.
    Regards,
    Kiran

  • Transparent Tables for KONV

    I've seen this question before, but haven't seen a satisfactory answer.  Which transparent tables are used for KONV?  I need to check the data from outside of SAP and look into the transparent tables from a SQL Server.  I have gone into  tcode SE11 for KONV in display mode, selected delivery & maintenance tab, and displayed the Object list for cluster table KONV, then double clicked on KOCLU in pooled/cluster field.
    None of the tables in the Package VF contain the data I'm looking for.
    Now what? 
    I ask the question that has been asked countless times - how do I find the transparent tables for KONV?

    Hi
    There is no Transparent tables for KONV cluster table
    which stores the pricing info of both SD and MM modules
    You have to fetch the data from this table using the Sales order (VBAK-KNUMV), or Billing doc (VBRK-KNUMV) or Purchase Order (EKKO-KNUMV)  by linking with KONV-KNUMV which is a key field for the respective price amounts/rates.
    Some times we may use KONP table for fetching the pricing data when it is not available in KONV.
    Regards
    Anji

  • Table for Komk structure

    hello everyone,
    Can anyone please let me know what is the Database table for KOMK structure.
    I want to get field STCEG(Vat Reg number ) from KOMK structure.
    AS i cannot use the select statement on KOMK structure i need Database table.
    thanks in advence,
    regards,
    cheruku.

    Hi Ashish,
    I have one doubt
    I want to transfer STCEG field from TKOMK to VBAP table Field(zz_stceg).
    so in user exit "userexit_move_field_to_vbap" i coded like below.
    VBAP-zz_stceg = TKOMK-stceg.
    is this ok or do i need to code anything Extra.
    Thanks in advance,
    regards,
    cheruku.

  • What is the Transparent Table for PO Delivery Date field

    Hii All,
    Does anyone know the Transparent table where the delivery date is stored for the PO line item. It's not in EKPO. Where is it?
    Thanks in advance

    Unfortunatly there is no diagram anywhere for the table relation.
    I usually help myself by F4 search in SE11
    You know e.g. table EKKO. So enter just EK* and press F4 to see all other tables starting this way.
    But in most cases when I search for tables that belong somehow together I use DB15 transaction.
    This gives me all tables that belong to the same archiving object.
    You can start there by entering a table name and search for the archving object.
    then you do it reverse and you get all tables for this object.
    (Unfortunatly SAP does not have archiving objects for any table)

  • Table for the structure RIHEQUI_LIST

    Hello,
       I want the table name for the structure RIHEQUI_LIST.I searched but i didn't get the table name. Please help me on this.
    Regards,
    Rajesh

    Hi , Please find some of the table names below , and you are very specific what you want from this structure.
    EQUI             Equipment master data
    EGERR            Device data: Info record for point of delivery - historical
    EGERS            IS-U Device Master Data
    EGTUR            Periodic Replacement List
    EIKE             Index for Removed Device
    EQBS             Serial Number Stock Segment
    EQKT             Equipment Short Texts
    EQST             Equipment to BOM Link
    EQUZ             Equipment time segment
    A270             Euqipment/Document Type
    A272             Equipment/Standard Dummy Customer/Document Type

  • Transparent Table for BSEC

    Hi Experts,
    I am a Functional Financial Consultant and I am in process on developing a report using SQVI (Queries).
    Within my report, I have joined the following tables:
    BKPF
    BSID
    BSIS
    There is some data entered in table BSEC which is a cluster table and cannot be used in join.
    I need your advice if you know what is the transparent table behind BSEC.
    Looking forward to hear from you!
    Regards,
    Anss Shahid Essani

    It seems that we will be unable to prepare such report using SQVI as BSEC is a cluster table. However, we can get it prepared with the help of ABAPer.
    Thank you all for your valuable suggestions.

  • Table for Budget Structure - FM9k

    dear All,
    I need to write the bdc for the fields in fm9k.
    I have the select the tick mark through my bdc in the tcode FM9k.
    Is there any table for this where i can directly modify this.
    please guide me..
    Regards,
    Vidhya

    please check the link below
    Re: Table for line items of budget document posted through FMBB transaction.
    Dont try to update standard table manually... sap handles it using standard transactions and reports..
    Regards
    Satish Boguda

  • How to find out the aligning Data dictionary table for a structure.

    Hi
    As the table controls are associated with strucures, the data input goes to the data dictionary table aligned to that structure. Is there any way we can find out the table related to that particular structure ?
    Thanks,
    Dhareppa

    Hi,
    The structure and its fields may be associated with multiple database tables.
    You can try by where-used list of the structure/field and then you can look and determine the table by hit and try method.
    Also as suggested above you can try get the SQL trace and then ypu can look for table associated behind the structure/fields I believe this is the best way to find the DB table.
    Thanks,
    Ravi

  • Find table for KOMG structure

    Hi,
    which table is related to KOMG structure and how to find it?

    hi ,
    Actually i want to retrieve the data from zpup control table.
    when i was checking this zpup control table through vk13 transaction, i can see some records for material, description, amount, unit, valid from , valid to, etc if i entered valid plant. (vk13->zpup->valid plant)
    but i don't know where these records are stored( i.e in which table all these records are maintained) and how to retrieve thsese records?
    if it is helpful, points will be rewarded

  • Table for Communication structure Info Objects

    Hi all,
    Is there any table which has list of all infosources along with the Info objects assigned to it.
    I tried to see in RSKSFIELD but some of the infosources are not present in this table.
    regards,
    Rk

    hi krishna,
    RSIS for the available Infosources but this is for the transaction data. If you need to know which Infosource is from which Infocube then check RSUPDINFO table.
    RSDCUBE table: displays the list of available cubes.
    RSODS table: to find the ODS/DSO.
    regards,
    raghu.

Maybe you are looking for

  • Why copy option from recent call numbers is not working on ios7 [recent call logs in phone]?

    why copy option from recent call numbers is not working on ios7 [recent call logs in phone]?

  • RTMPS and RTMPE

    Hi, FMLE is not possible to stream in with secure connection, right? FMLE pops up an error about invalid url if trying to use e.g. rtmps:// in FMS url. Any ideas when this could be enabled? nnynas

  • When approving email notifications the FireFox reply box has a 'K' in it..

    hi all.. As above. It is generates an email reply box but with a 'K' as recipient, and not linking to anything.. The user is using Firefox email app. Is it some setting? A pop-up blocker? Has anybody experienced this where users have been trying to a

  • You are not setup a buyer

    Hi All, While attempting to open purchase order from Purchasing vision operations (USA), i am getting following message: You are not setup a buyer. To accept this form you need to be a buyer. I have created a buyer, but still i am getting same in my

  • Pci and network controller drivers

    the hardware IDs  PCI\VEN_168C&DEV_0036&SUBSYS_217F103C&REV_01 PCI\VEN_168C&DEV_0036&SUBSYS_217F103C PCI\VEN_168C&DEV_0036&CC_028000 PCI\VEN_168C&DEV_0036&CC_0280 PCI\VEN_10EC&DEV_5229&SUBSYS_2194103C&REV_01 PCI\VEN_10EC&DEV_5229&SUBSYS_2194103C PCI\