<?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 Interface startegy ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600517#M867192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have to design an Interface strategy here where in curent system is using VBA excel tool to extract data from legacy databases and generate a file for peoplesoft..We have to replace Peoplesoft with SAP...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wanted some suggestions on we should achieve this for interfaces...What can be the strategy...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers:&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2008 17:11:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-27T17:11:55Z</dc:date>
    <item>
      <title>Interface startegy ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600517#M867192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have to design an Interface strategy here where in curent system is using VBA excel tool to extract data from legacy databases and generate a file for peoplesoft..We have to replace Peoplesoft with SAP...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wanted some suggestions on we should achieve this for interfaces...What can be the strategy...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers:&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 17:11:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600517#M867192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T17:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Interface startegy ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600518#M867193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it a one time interface to migrate the data from the legacy system to the Peoplesoft / SAP, or will it be used on a more frequent basis?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For interfacing you can use the file interface you currently have working. But instead of uploading it into Peoplesoft, you can upload it into SAP. You have to write a program which will read the file and find some BAPI (Business Application Programming Interface, which are some sort of function modules) which will process the file and for example create business partners. You can then create a job which will process the file in background during the night (after office hours).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But SAP offers more interfaces like IDoc interfacing.This however requires more knowledge of the SAP system and at this moment it does not look like you have a lot of experience with SAP. So file interface (for now) should give you a good start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can, please elaborate on your exact requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Micky.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 17:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600518#M867193</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-03-27T17:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Interface startegy ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600519#M867194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are some tips, hope it may help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Find the SAP Transactions and fields that corresponds to that data on the file. You should have a field-to-field correspondece for each field you want to record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Study the field data elements and check if some data consistence is necessary (changing data disposition in fields, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Study if some extra condition is necessary to upload the file records to SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Develop a program to record the file data into SAP tables. For doing that, you should have an internal table with all the fields type C exactly like the file fields. It's like you have an internal table exactly like the file. For that you may use GUI_UPLOAD function (when manipulating local files) or OPEN DATASET/ READ DATASET/ CLOSE DATASET statements (when manipulating server files).&lt;/P&gt;&lt;P&gt;After that, you should find a way to validate data (checking the formats, etc.) and recording to an internal table which will be your source to update the SAP Data Dictionary Tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Use CALL TRANSACTION or Batch-Input to fill the SAP Data Dictionary Tables. It's the safest way for updating data on SAP standard processes. Or if you'll have a Z table, simply populate the table with the new data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 17:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface-startegy/m-p/3600519#M867194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T17:28:05Z</dc:date>
    </item>
  </channel>
</rss>

