<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: hi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784015#M910418</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Transparent Table :  Exists with the same structure both in dictionary as well as in database  exactly with the same data and fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent tables are a representation of the way SAP R/3 interacts with the DBMS that actually stores the data, such as Oracle.  This is just the manner in which data is made available to an ABAP/4 program by the R/3 Basis System and is NOT a user-defined or controlled specification. &lt;/P&gt;&lt;P&gt;The database table has the same name as the table in the ABAP/4 Dictionary. The fields also have the same names in both the database and in the ABAP/4 Dictionary. The data types in the ABAP/4 Dictionary are converted to the corresponding data types of the database system. &lt;/P&gt;&lt;P&gt;Beginning with Release 3.0, the sequence of fields in the ABAP/4 Dictionary can vary from the sequence of fields in the database. This allows you to insert new fields without having to convert the table by performing a physical reorganization. When adding new fields, the adjustment is made by changing the database catalog (ALTER TABLE). A new field is appended to the database table, regardless of its position in the ABAP/4 Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pls reward if useful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 16:32:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T16:32:36Z</dc:date>
    <item>
      <title>hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784009#M910412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kindly tell me examples of transparent tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784009#M910412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784010#M910413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBAK, VBAP, LIPS are transparent tables..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A transparent table is created automatically on the database when it is activated in the ABAP Dictionary. At this time, the database-independent description of the table in the ABAP Dictionary is translated into the language of the database system used.The database table has the same name as the table in the ABAP Dictionary. The fields also have the same names in both the database and the ABAP Dictionary. The data types in the ABAP Dictionary are converted to the corresponding data types of the database system.&lt;/P&gt;&lt;P&gt;The order of the fields in the ABAP Dictionary can differ from that of the fields on the database. This permits you to insert new fields without having to convert the table. When you add a new field, adjust the order of the fields by changing the database catalog (ALTER TABLE). The new field is added to the database table.&lt;/P&gt;&lt;P&gt;ABAP programs can access a transparent table in two ways. One way is to access the data contained in the table with OPEN SQL (or EXEC SQL). With the other method, the table defines a structured type that is accessed when variables (or more complex types) are defined.&lt;/P&gt;&lt;P&gt;You can also create structured types in the ABAP Dictionary for which there are no corresponding objects in the database. These types are called structures. Structures can also be used to define the types of variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:14:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784010#M910413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784011#M910414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Transparent Table&lt;/STRONG&gt; :  Exists with the same structure both in dictionary as well as in database  exactly with the same data and fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MARA&lt;/STRONG&gt; -  General Material Data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;KNA1&lt;/STRONG&gt; -   General Data in Customer Master&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;KNVV&lt;/STRONG&gt; -  Customer Master Sales Data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784011#M910414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784012#M910415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One Sincere advise from my end would be .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before you post your questions in SDN try to search the forum first. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to the page where you are posting the questions there you will see search forum just click on that then it will take you to the next page there just type what ever u r looking for. U will get lot of similar threads all these basic questions discussed before many times. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y I am saying this to u means it will save lot of time for you. Rather than posting the question and waiting for the replies from someone u can directly search the forum in this way u can save lot of time and u can search more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is an advise if you feel bad sorry to say..............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:26:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784012#M910415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784013#M910416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some more examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBAK ---&amp;gt; Sales Document: Header Data&lt;/P&gt;&lt;P&gt;VBAP ---&amp;gt; Sales Document: Item Data&lt;/P&gt;&lt;P&gt;MARC ---&amp;gt; Plant Data for Material&lt;/P&gt;&lt;P&gt;MARD ---&amp;gt; Storage Location Data for Material&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784013#M910416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784014#M910417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I appreciate Naveen's approach ....Please do that in order to save time and to avoid repeatitive questions ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:28:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784014#M910417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784015#M910418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Transparent Table :  Exists with the same structure both in dictionary as well as in database  exactly with the same data and fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transparent tables are a representation of the way SAP R/3 interacts with the DBMS that actually stores the data, such as Oracle.  This is just the manner in which data is made available to an ABAP/4 program by the R/3 Basis System and is NOT a user-defined or controlled specification. &lt;/P&gt;&lt;P&gt;The database table has the same name as the table in the ABAP/4 Dictionary. The fields also have the same names in both the database and in the ABAP/4 Dictionary. The data types in the ABAP/4 Dictionary are converted to the corresponding data types of the database system. &lt;/P&gt;&lt;P&gt;Beginning with Release 3.0, the sequence of fields in the ABAP/4 Dictionary can vary from the sequence of fields in the database. This allows you to insert new fields without having to convert the table by performing a physical reorganization. When adding new fields, the adjustment is made by changing the database catalog (ALTER TABLE). A new field is appended to the database table, regardless of its position in the ABAP/4 Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pls reward if useful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 16:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3784015#M910418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T16:32:36Z</dc:date>
    </item>
  </channel>
</rss>

