<?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: Parsing Parameter Using Internal Session in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985055#M704866</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm, im still new to this abap, im using a dialog screen, i wan to pass a parameter frm program A to program B lets say a Textfield value. How to do by calling a transaction?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Oct 2007 08:32:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-31T08:32:24Z</dc:date>
    <item>
      <title>Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985051#M704862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, How do u Pass a Parameter By using Internal Session?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985051#M704862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985052#M704863</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;using export and import&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT - Export data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. EXPORT obj1 ... objn TO MEMORY.&lt;/P&gt;&lt;P&gt;2. EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key.&lt;/P&gt;&lt;P&gt;3. EXPORT obj1 ... objn TO DATASET dsn(ar) ID key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 1&lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO MEMORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions&lt;/P&gt;&lt;P&gt;1. ... FROM g (for each field to be exported)&lt;/P&gt;&lt;P&gt;2. ... ID key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Exports the objects obj1 ... objn (fields, structures or tables) as a data cluster to ABAP/4 memory .&lt;/P&gt;&lt;P&gt;If you call a transaction, report or dialog module (with CALL TRANSACTION , SUBMIT or CALL DIALOG ), the contents of ABAP/4 memory are retained, even across several levels. The called transaction can then retrieve the data from there using IMPORT ... FROM MEMORY . Each new EXPORT ... TO MEMORY statement overwrites any old data, so no data is appended.&lt;/P&gt;&lt;P&gt;If the processing leaves the deepest level of the call chain, the ABAP/4 memory is released.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;The header lines of internal tables cannot be exported, because specifying the name of an internal table with a header line always exports the actual table data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1&lt;/P&gt;&lt;P&gt;... FROM g (for each object to be exported)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Exports the contents of the data object g and stores them under the name specified before FROM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2&lt;/P&gt;&lt;P&gt;... ID key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Stores the exported data under the ID key in ABAP/4 memory . You can then use the ID to read it in again (with IMPORT ). The ID can be up to 32 characters long.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;If you store data both with and without an ID , the data stored without an ID remains separate and you can re-import it (using IMPORT without ID ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;Runtime errors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT_NO_CONTAINER : SAP paging exhausted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 2&lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... FROM g (for each field to be exported)&lt;/P&gt;&lt;P&gt;2. ... CLIENT h (after dbtab(ar) )&lt;/P&gt;&lt;P&gt;3. ... USING form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Exports the objects obj1 ... objn (fields, structures or tables) as a data cluster to the database table dbtab .&lt;/P&gt;&lt;P&gt;The database table dbtab must have a standardized structure .&lt;/P&gt;&lt;P&gt;The database table dbtab is divided into different logically related areas ( ar , 2-character name).&lt;/P&gt;&lt;P&gt;You can export collections of data objects (known as data clusters ) under a freely definable key (field key ) to an area of this database.&lt;/P&gt;&lt;P&gt;IMPORT allows you to import individual data objects from this cluster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;The table dbtab specified after DATABASE must be declared under TABLES .&lt;/P&gt;&lt;P&gt;The header lines of internal tables cannot be exported because specifying the name of an internal table with a header line always exports the actual table data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;Export two fields and an internal table to the database table INDX :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES INDX.&lt;/P&gt;&lt;P&gt;DATA: INDXKEY LIKE INDX-SRTFD VALUE 'KEYVALUE',&lt;/P&gt;&lt;P&gt;F1(4), F2 TYPE P,&lt;/P&gt;&lt;P&gt;BEGIN OF ITAB3 OCCURS 2,&lt;/P&gt;&lt;P&gt;CONT(4),&lt;/P&gt;&lt;P&gt;END OF ITAB3.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Before the export, the data fields in&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;front of CLUSTR are filled.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;INDX-AEDAT = SY-DATUM.&lt;/P&gt;&lt;P&gt;INDX-USERA = SY-UNAME.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Export der Daten.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXPORT F1 F2 ITAB3 TO&lt;/P&gt;&lt;P&gt;DATABASE INDX(ST) ID INDXKEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1&lt;/P&gt;&lt;P&gt;... FROM g (for each object to be exported)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Exports the contents of the field g and stores them under the specified name in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2&lt;/P&gt;&lt;P&gt;... CLIENT h (after dbtab(ar) )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Stores the data objects in the client h (if the import/export database table dbtab is client-specific).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3&lt;/P&gt;&lt;P&gt;... USING form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Does not export the data to the database table. Instead, calls the FORM routine form for every record written to the database without this addition. This routine can take the data from the database table work area and therefore has no parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;Runtime errors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Errors in the structure of the EXPORT / IMPORT database can cause runtime errors .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 3&lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO DATASET dsn(ar) ID key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;This variant is not to be used at present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;Runtime errors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT_DATASET_CANNOT_OPEN : Unable to describe file.&lt;/P&gt;&lt;P&gt;EXPORT_DATASET_WRITE_ERROR : File write error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985052#M704863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985053#M704864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm, Using Export And Import is Storing in Abap memory rite? is there anyway tat can Store in Internal Session so that other party cant access it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985053#M704864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985054#M704865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;other ways are &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal session: - created by calling a transaction (with CALL TRANSACTION), a dialog module (with CALL DIALOG) or a report (with SUBMIT or RETURN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tell ur exact requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985054#M704865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985055#M704866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm, im still new to this abap, im using a dialog screen, i wan to pass a parameter frm program A to program B lets say a Textfield value. How to do by calling a transaction?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985055#M704866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985056#M704867</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;EXPORT send a value to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT gather a value from memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First program: PROGRAM1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: field type char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field = '12345'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export field to memory id 'TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the other program: PROGRAM2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: field type char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import field from memory id 'TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope u understand &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985056#M704867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Parsing Parameter Using Internal Session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985057#M704868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya i have this already hmmm, other than using Export and Import? is there any way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 08:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parsing-parameter-using-internal-session/m-p/2985057#M704868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T08:44:33Z</dc:date>
    </item>
  </channel>
</rss>

