<?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: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032485#M417214</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond, so kind of you, &lt;/P&gt;&lt;P&gt;please help me, i have written the code in one to one mapping in transformation routine in BI 7,0 right click on zzsourcsys and go tp rule details. No syntax errors in the code but when i load there is no value populating to zzsourcsys . i have defined  zzsourcsys as 12 char. can u suggest where it is going wrong, i checked in tools assignment of sourcesystem id is there in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abap Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: RSSM.&lt;/P&gt;&lt;P&gt;Data: G_S_MINFO TYPE RSSM_S_MINFO.&lt;/P&gt;&lt;P&gt;RESULT = G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Poonam Roy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Mar 2007 19:15:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-25T19:15:50Z</dc:date>
    <item>
      <title>ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032477#M417206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends please help me with the below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Requirement : to Populate The system Date , Source System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in BI for Each load request. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 Solution: I thought of writing the Start Routine for this but it is giving me error &lt;/P&gt;&lt;P&gt;syntax Error: END METHOD MISSING?????&lt;/P&gt;&lt;P&gt;2. Also I have requirement to populate 0sourcsys source system id, can any body help how to populate that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Poonam Roy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the End Method. what more to do. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD start_routine.&lt;/P&gt;&lt;P&gt;*=== Segments ===&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;&amp;lt;SOURCE_FIELDS&amp;gt; TYPE &lt;U&gt;ty&lt;/U&gt;s_SC_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;MONITOR_REC TYPE rstmonitor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$ begin of routine - insert your code only below this line &lt;STRONG&gt;-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;... "insert your code here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM STARTROUTINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USING G_S_MINFO TYPE RSSM_S_MINFO&lt;/P&gt;&lt;P&gt;CHANGING DATAPAK type TRANSTRU&lt;/P&gt;&lt;P&gt;ABORT LIKE SY-SUBRC.&lt;/P&gt;&lt;P&gt;DATA: ZLOAD_DAT LIKE SY-DATUM&lt;/P&gt;&lt;P&gt;ZZSOURSYS TYPE RSLOGSYS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF G_S_MINFO-DATAPAKID=1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOURCE_FIELDS-ZLOAD_DAT = SY-DATE.&lt;/P&gt;&lt;P&gt;SOURCE_FIELDS-ZZSOURSYS = G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABORT = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- fill table "MONITOR" with values of structure "MONITOR_REC"&lt;/P&gt;&lt;P&gt;*- to make monitor entries&lt;/P&gt;&lt;P&gt;... "to cancel the update process&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;raise exception type CX_RSROUT_ABORT.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$ end of routine - insert your code only before this line &lt;STRONG&gt;-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Mar 2007 23:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032477#M417206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-24T23:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032478#M417207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just fill Infoobject with routine in transfer rules. This will leave Datasource and Stransfer structure unchanged.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill return with sy-datum/sy-datlo, G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For source ID, use following FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'RSDG_ID_GET_FROM_LOGSYS'
EXPORTING
i_source_system = G_S_MINFO-LOGSYS
IMPORTING
e_soursysid = RESULT
EXCEPTIONS
id_not_found = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 00:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032478#M417207</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-25T00:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032479#M417208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks A million for the response. i got success with system date in transformation but please correct my source system id code. it is giving me error&lt;/P&gt;&lt;P&gt;my BI object name is ZZSOURSYS.&lt;/P&gt;&lt;P&gt;Where should i put the code in routine transformation for ZZSOURSYS or in data soource enhancement in cmod where. please help&lt;/P&gt;&lt;P&gt;i got this error in  routine transformation &lt;/P&gt;&lt;P&gt;Error: E:Field "G_S_MINFO-LOGSYS" is unknown, it niether one of the data statement so when i use data it gives error saying characters like - 0 not allowed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSDG_ID_GET_FROM_LOGSYS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_source_system = G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_soursysid = RESULT.&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;id_not_found = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 00:33:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032479#M417208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-25T00:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032480#M417209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First, Have you assigned a Source System ID in RSA1, Tools Menu, Assignment of Source System to Source System ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Logical source system G_S_MINFO-LOG is one of the parameters provided when you build a routine in &amp;lt;b&amp;gt;transfer rules&amp;lt;/b&amp;gt; (in BI)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 11:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032480#M417209</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-25T11:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032481#M417210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Requirement is to have the sourcesystem id's.  I have assigned the source system id's to logical source system in rsa1 but still it is giving me same error that G_S_MINFO NOT defined so to resolve that i changed the code as below&lt;/P&gt;&lt;P&gt;But Now it is giving me dump error during loading but no syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Abap Code in routine one to one .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: RSSM.&lt;/P&gt;&lt;P&gt;Data: G_S_MINFO TYPE RSSM_S_MINFO.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSDG_ID_GET_FROM_LOGSYS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_source_system = G_S_MINFO-LOGSYS&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_soursysid = RESULT&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;id_not_found = 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 15:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032481#M417210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-25T15:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032482#M417211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to write the code (&amp;lt;b&amp;gt;in BI/BW&amp;lt;/b&amp;gt;) in the transfer rule (&amp;lt;b&amp;gt;between Datasource transfer structure and infosource/info object&amp;lt;/b&amp;gt;) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There the FORM begin with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[code]USING RECORD_NO LIKE SY-TABIX&lt;/P&gt;&lt;P&gt;    TRAN_STRUCTURE TYPE TRANSFER_STRUCTURE&lt;/P&gt;&lt;P&gt;    G_S_MINFO TYPE RSSM_S_MINFO&lt;/P&gt;&lt;P&gt;CHANGING RESULT TYPE /BI0/OIPERSON&lt;/P&gt;&lt;P&gt;    G_T_ERRORLOG TYPE rssm_t_errorlog_int&lt;/P&gt;&lt;P&gt;    RETURNCODE LIKE SY-SUBRC&lt;/P&gt;&lt;P&gt;    ABORT LIKE SY-SUBRC. &amp;#147;set ABORT &amp;lt;&amp;gt; 0 to cancel datapackag[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GS_MIN_INFO structure RSSM_S_MINFO contains information on the request being processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;G_S_MINFO. This passes technical information about the data load request,&lt;/P&gt;&lt;P&gt;such as requesting user, request date and time, update mode, the handling of&lt;/P&gt;&lt;P&gt;duplicate records, error handling flags, parallel processing flags, and what data&lt;/P&gt;&lt;P&gt;targets to update.&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If tou want to use start-routine for optimization reasons and fill an empty field in transfer structure, the structure G_S_MINFO is available too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[code]USING G_S_MINFO TYPE RSSM_S_MINFO&lt;/P&gt;&lt;P&gt;CHANGING DATAPAK type TAB_TRANSTRU&lt;/P&gt;&lt;P&gt;    G_T_ERRORLOG TYPE rssm_t_errorlog_int&lt;/P&gt;&lt;P&gt;    ABORT LIKE SY-SUBRC. &amp;#147;set ABORT &amp;lt;&amp;gt; 0 to cancel datapackage[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And stay in FORM between limits :&lt;/P&gt;&lt;P&gt;[code]&lt;STRONG&gt;$&lt;/STRONG&gt;$ begin of routine&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;$&lt;/STRONG&gt;$ end of routine[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update RESULT in first case, and field(s) of DATAPAK in second case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[code]RESULT = G_S_MINFO-LOGSYS.[/code] or&lt;/P&gt;&lt;P&gt;[code]LOOP AT DATAPAK INTO l_s_datapak_line.&lt;/P&gt;&lt;P&gt;  l_s_datapak_line-zzsourcsys = G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;  MODIFY DATAPAK FROM l_s_datapak_line.&lt;/P&gt;&lt;P&gt;ENDLOOP.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 15:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032482#M417211</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-25T15:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032483#M417212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't have to define G_S_MINFO. It is defined in the FORM to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So where are you inserting your code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 16:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032483#M417212</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-25T16:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032484#M417213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond , please help me, i am writing the code in one to one mapping in transformation routine in BI 7,0 right click on zzsourcsys and go tp rule details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then  can you modify my code and i can use that .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: RSSM.&lt;/P&gt;&lt;P&gt;Data: G_S_MINFO TYPE RSSM_S_MINFO.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSDG_ID_GET_FROM_LOGSYS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_source_system = G_S_MINFO-LOGSYS&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_soursysid = RESULT&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;id_not_found = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i write your code in start routine it gives me error saying end method missing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 16:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032484#M417213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-25T16:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032485#M417214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond, so kind of you, &lt;/P&gt;&lt;P&gt;please help me, i have written the code in one to one mapping in transformation routine in BI 7,0 right click on zzsourcsys and go tp rule details. No syntax errors in the code but when i load there is no value populating to zzsourcsys . i have defined  zzsourcsys as 12 char. can u suggest where it is going wrong, i checked in tools assignment of sourcesystem id is there in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abap Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: RSSM.&lt;/P&gt;&lt;P&gt;Data: G_S_MINFO TYPE RSSM_S_MINFO.&lt;/P&gt;&lt;P&gt;RESULT = G_S_MINFO-LOGSYS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Poonam Roy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Mar 2007 19:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032485#M417214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-25T19:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032486#M417215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Poonam Roy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing same routine problem. I hope u would have solved this problem.&lt;/P&gt;&lt;P&gt;Please send routine code to my mail id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my id is: chandu2k@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032486#M417215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032487#M417216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Isn't this module function (RSDG_ID_GET_FROM_LOGSYS) to be used to retreive ID from system source name ?&lt;/P&gt;&lt;P&gt;from the table rssoursystem, as in RSA1/assignement of source system id ?&lt;/P&gt;&lt;P&gt;it doesn't seem to retreive the current system source name during an extraction...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i can be wrong....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 14:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032487#M417216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T14:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP CODE TO POPULATE LOGICAL SOURCE SYSTEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032488#M417217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;I know you answered this a long time ago and it pertains to the mostly obsolete 3.x transfers, but just wanted to say 'thanks' anyways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really liked your explanations - I learned something I didn't know before so will certainly be able to leverage the new knowledge for other types of routines!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Darryl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 20:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code-to-populate-logical-source-system/m-p/2032488#M417217</guid>
      <dc:creator>darryl_goveas3</dc:creator>
      <dc:date>2014-03-24T20:06:19Z</dc:date>
    </item>
  </channel>
</rss>

