<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ABAP Tutorials &#187; list of</title>
	<atom:link href="http://www.abap-tutorials.com/tag/list-of/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abap-tutorials.com</link>
	<description>ABAP Tutorials, Guides, Training, Manuals</description>
	<lastBuildDate>Thu, 17 Nov 2011 07:43:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>ABAP Program to show My Inactive Programs</title>
		<link>http://www.abap-tutorials.com/2009/07/15/my-inactive-programs/</link>
		<comments>http://www.abap-tutorials.com/2009/07/15/my-inactive-programs/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:53:46 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[inactive]]></category>
		<category><![CDATA[inactive programs]]></category>
		<category><![CDATA[list of]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://naveenvishal.wordpress.com/?p=102</guid>
		<description><![CDATA[Ever found caught in the circumstance where you don&#8217;t know, which of your ABAP programs are Inactive? The utility display a list of all the inactive programs under a SAP user. REPORT zinactive_programs. *&#8212;database tables used TABLES: dwinactiv . *&#8212;types used TYPES: BEGIN OF ty_tab.         INCLUDE STRUCTURE dwinactiv. TYPES: END OF  ty_tab. *&#8211;internal tables used [...]]]></description>
			<content:encoded><![CDATA[<p>Ever found caught in the circumstance where you don&#8217;t know, which of your ABAP programs are Inactive?</p>
<p>The utility display a list of all the inactive programs under a SAP user.</p>
<p><span id="more-102"></span></p>
<p>REPORT zinactive_programs.</p>
<p><span style="color:#3366ff;">*&#8212;database tables used</span><br />
TABLES: dwinactiv .</p>
<p><span style="color:#3366ff;">*&#8212;types used</span><br />
TYPES: BEGIN OF ty_tab.<br />
        INCLUDE STRUCTURE dwinactiv.<br />
TYPES: END OF  ty_tab.<br />
<span style="color:#3366ff;">*&#8211;internal tables used<br />
</span>DATA: itab TYPE TABLE OF ty_tab WITH HEADER LINE.</p>
<p><span style="color:#3366ff;">*&#8212;selection screen</span><br />
SELECT-OPTIONS: s_uname FOR dwinactiv-uname.</p>
<p><span style="color:#3366ff;">*&#8212;start of selection</span><br />
START-OF-SELECTION.</p>
<p>perform get_data.</p>
<p>END-OF-SELECTION.</p>
<p>perform display_data.</p>
<p><span style="color:#3366ff;">*&amp;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*<br />
*&amp;      Form  get_data<br />
*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-*</span><br />
form get_data .</p>
<p>  SELECT   object<br />
           obj_name<br />
           uname<br />
           delet_flag<br />
           FROM  dwinactiv<br />
           INTO TABLE itab<br />
           WHERE uname IN s_uname.</p>
<p>sort itab by uname.</p>
<p>endform.                    <span style="color:#3366ff;">&#8221; get_data<br />
</span><span style="color:#3366ff;">*&amp;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*<br />
*&amp;      Form  display_data<br />
*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-*</span><br />
form display_data .</p>
<p>  LOOP AT itab .<br />
    on change of itab-uname.<br />
    format color 7.<br />
    WRITE:/ itab-uname .<br />
    write:/ &#8216;in active objects under user is :&#8217;.<br />
    format color off.<br />
    ENDon.<br />
    write:/1   itab-object,<br />
           35   itab-obj_name,<br />
           120   itab-delet_flag.<br />
  ENDLOOP.</p>
<p>endform.                    <span style="color:#3366ff;">&#8221; display_data</span></p>
<p> </p>
<p> </p>
<p><span style="color:#000000;">On program execution, selection screen looks like</span></p>
<p><span style="color:#000000;"><img class="aligncenter size-medium wp-image-185" title="Selection Screen" src="http://naveenvishal.files.wordpress.com/2009/07/inactive_list1.jpg?w=300" alt="Selection Screen" width="300" height="217" /></span></p>
<p><span style="color:#000000;">And the output screen looks like</span></p>
<p><span style="color:#000000;"><img class="aligncenter size-medium wp-image-187" title="Inactive List Output" src="http://naveenvishal.files.wordpress.com/2009/07/inactive_list_output.jpg?w=300" alt="Inactive List Output" width="300" height="217" /><br />
</span></p>


<p>You might also be interested in these posts:<ol><li><a href='http://www.abap-tutorials.com/2009/07/11/find-my-words/' rel='bookmark' title='ABAP Program to search specific words(string) in SAP Programs'>ABAP Program to search specific words(string) in SAP Programs</a></li>
<li><a href='http://www.abap-tutorials.com/2009/08/04/track-hard-coding-in-programs/' rel='bookmark' title='ABAP Program to Track &#8216;Hard Coding&#8217; in Programs'>ABAP Program to Track &#8216;Hard Coding&#8217; in Programs</a></li>
<li><a href='http://www.abap-tutorials.com/2009/07/05/user-exits-and-badi-list-for-a-t-code/' rel='bookmark' title='ABAP program to get User Exits and BADI List for a T-Code'>ABAP program to get User Exits and BADI List for a T-Code</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.abap-tutorials.com/2009/07/15/my-inactive-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tcodes in SAP &#8211; Part 1</title>
		<link>http://www.abap-tutorials.com/2009/07/05/tcodes-in-sap-part-1/</link>
		<comments>http://www.abap-tutorials.com/2009/07/05/tcodes-in-sap-part-1/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 12:42:14 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Quick Reference]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[list of]]></category>
		<category><![CDATA[t-code]]></category>
		<category><![CDATA[t-codes]]></category>
		<category><![CDATA[table list]]></category>
		<category><![CDATA[tcode]]></category>
		<category><![CDATA[tcodes]]></category>

		<guid isPermaLink="false">http://naveenvishal.wordpress.com/?p=23</guid>
		<description><![CDATA[Everything function that is to performed in SAP is represented in the form of a Transaction and to execute that Transaction, SAP provide a Transaction Code (T-Code). On the SAP Intial Screen, you can enter this T-Code in the T-Code field provided at the top. You can execute the following commands in the transaction code [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Everything function that is to performed in SAP is represented in the form of a Transaction and to execute that Transaction, SAP provide a Transaction Code (T-Code). On the SAP Intial Screen, you can enter this T-Code in the T-Code field provided at the top.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-24" title="T-Code Field" src="http://naveenvishal.files.wordpress.com/2009/07/tab.jpg" alt="T-Code Field" width="500" height="26" /></p>
<p style="text-align:justify;"><span id="more-23"></span></p>
<p style="text-align:justify;"><span style="font-size:small;">You can execute the following commands in the transaction code (tcode) field with Enter. You will find some useful transaction codes below to work in tandem with the following commands:<br />
</span><strong><span style="font-size:small;">To call a transaction</span></strong><span style="font-size:small;"> &#8211; In the same session (window) Enter: /nxxxx (xxxx = transaction code). &#8211; In an additional session, Enter: /oxxxx (xxxx = transaction code).<br />
If you enter this function before any of the tcodes below, you are able to break out of your current screen/business and begin a completely new session. Otherwise, the current business process has to be terminated, and return to the initial user screen (the main menu) has to be initiated before entering tcode spro). /o tcode saves you the effort of having to do this.</span></p>
<p>To end the current transaction Enter: /n. Caution: Unsaved changes are lost without warning<br />
To delete the current session. Enter: /i.<br />
To generate a session list Enter: /o. To log off from the system Enter: /nend.<br />
(OSS Note 0026171 has additional information on OKCodes in SAP, and is a very useful read)</p>
<p>Now, since I am on ABAP module, T-Codes related to the module are marked as bold in the following list.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><span style="font-size:small;"><span style="font-family:arial;"><strong><span style="color:#3366ff;"><span style="font-size:small;">First Steps:</span></span></strong><span style="font-size:small;"><br />
AL08 List of All Users Logged On<br />
RZ20 CCMS Monitor Sets<br />
</span><strong><span style="font-size:small;">SA38 ABAP Program Execution<br />
</span></strong><span style="font-size:small;">SCC4 Display View “Clients”<br />
</span><strong><span style="font-size:small;">SE11 ABAP Dictionary<br />
SE16 Data Browser<br />
SE38 ABAP Editor<br />
SE80 Object Navigator (ABAP Workbench)<br />
SE93 Maintain Transaction<br />
</span></strong><span style="font-size:small;">SLICENSE SAP License Administration<br />
SM02 System Messages<br />
SM04 User List<br />
</span><strong><span style="font-size:small;">SM12 Select Lock Entries<br />
</span></strong><span style="font-size:small;">SM13 Update Requests<br />
SM21 System Log<br />
SM28 SAP Initial Consitency Check<br />
SM31 Maintain Table Views<br />
</span><strong><span style="font-size:small;">SM37 Simple Job Selection<br />
SM50 Process Overview<br />
</span></strong><span style="font-size:small;">SM51 SAP Servers<br />
SM66 Global Work Process Overview<br />
SMLT Language Management<br />
SR13 Administration of the SAP Library<br />
SU01 User Maintenance</span></span></span></p>
<p><span style="font-family:arial;"><strong><span style="color:#3366ff;"><span style="font-size:small;">Software Logistics </span></span></strong><span style="font-size:small;"><br />
SAINT Add-On Installation Tool<br />
</span><strong><span style="font-size:small;">SE01 Transport Organizer (Extended View)<br />
</span></strong><span style="font-size:small;">SE03 Transport Organizer Tools<br />
SE09 Transport Organizer<br />
SPAM Support Package Manager<br />
</span><strong><span style="font-size:small;">SPAU Modification Adjustment<br />
SPDD Modification Adjustment Dictionary<br />
SPRO Customizing: Execute Project<br />
</span></strong><span style="font-size:small;">SPRO_ADMIN Customizing: Project Administration<br />
</span><strong><span style="font-size:small;">STMS Transport Management System<br />
</span></strong><span style="font-size:small;"><br />
</span></span><span style="font-family:arial;"><strong><span style="color:#3366ff;"><span style="font-size:small;">Client Administration </span></span></strong><span style="font-size:small;"><br />
BDLS Tool: Conversion of Logical System Names<br />
SCC1 Copy by Transport Request<br />
SCC3 Client Copy / Transport Log Analysis<br />
SCC4 Display View “Clients”<br />
SCC7 Post-Client Import Methods<br />
SCC8 Client Export<br />
SCC9 Remote Client Copy<br />
SCCL Local Client Copy<br />
SCMP View / Table Comparison<br />
SCU0 Customizing Cross-System Viewer<br />
SE01 Transport Organizer (Extended View)<br />
STMS Transport Management System</span></span></p>
<p><span style="font-family:arial;"><strong><span style="color:#3366ff;"><span style="font-size:small;">User &amp; Authorization<br />
</span></span></strong><span style="font-size:small;">BD82 Generate Partner Profile<br />
LICENSE_ADMIN License Administration Workbench<br />
PFCG Profile Generator / Role Maintenance<br />
SCUG Central User Administration &#8211; Transfer Users<br />
SM19 Security Audit: Administer Audit Profile<br />
SM20 Analysis of Security Audit Log<br />
SU01 User Maintenance<br />
SU05 Maintain Internet User<br />
SU10 User Maintenance: Mass Changes<br />
</span><strong><span style="font-size:small;">SU20 Maintain Authorization Fields<br />
SU21 Maintain Authorization Objects<br />
SU24 Maintain Assignmt. of Authorization Objects<br />
</span></strong><span style="font-size:small;">SU25 Profile Generator: Upgrade / First Install.<br />
SU3 Maintain User Profile<br />
</span><strong><span style="font-size:small;">SU53 Display Authorization Data for User<br />
</span></strong><span style="font-size:small;">SUCOMP User Company Address Maintenance<br />
SUGR Maintain User Groups<br />
USMM System Measurement</span></span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">Background Processing<br />
</span></span></strong><span style="font-size:small;">RZ01 Job Scheduling Monitor<br />
RZ04 CCMS: Maintain Operation Modes/Instances<br />
</span><strong><span style="font-size:small;">SM36 Define Background Job<br />
SM37 Simple Job Selection<br />
</span></strong><span style="font-size:small;">SM37C Extended Job Selection<br />
SM49 External Operating System Commands<br />
SM61 Background Controller List<br />
SM62 Event History<br />
SM64 Background Events<br />
SM65 Analysis Tool &#8211; Background Processing<br />
SM69 External Operating System Commands<br />
SMX Job Overview</span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">Update<br />
</span></span></strong><span style="font-size:small;">SM12 Lock Entries<br />
SM13 Update Requests<br />
SM14 Update Program Administration<br />
Output Configuration &amp; Administration<br />
</span><strong><span style="font-size:small;">SPAD Spool Administration<br />
SP01 Output Controller: Spool Request Selection<br />
</span></strong><span style="font-size:small;">SP12 TemSe &#8211; Admin. of Temp. Sequential Data</span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">Data Archiving<br />
</span></span></strong><span style="font-size:small;">AOBJ View Cluster Maintenance<br />
DB15 Tables and Archiving Objects<br />
FILE Logical File Path Definition<br />
OAAD ArchiveLink: Admin. of Stored Documents<br />
OAC0 Content Repositories<br />
OAM1 ArchiveLink: Monitor<br />
SARA Archiv Administration<br />
SARI Archive Info System: Central Management<br />
SF01 Logical File Names, Client-Specific<br />
</span><strong><span style="font-size:small;">SM37 Simple Job Selection<br />
</span></strong><span style="font-size:small;"><br />
</span><strong><span style="color:#3366ff;"><span style="font-size:small;">Data Transfer &amp; Exchange<br />
</span></span><span style="font-size:small;">BAPI BAPI Explorer<br />
</span></strong><span style="font-size:small;">BD73 Error Handlung for Non-Posted IDocs<br />
BD82 Generate Partner Profile<br />
BDM2 IDoc Tracing<br />
BMV0 Manage Data Transfer<br />
IDOC IDoc and EDI Basis: Repair &amp; Check<br />
RZ12 RFC Server Groutp Maintenance<br />
</span><strong><span style="font-size:small;">SCOT SAPConnect: Administration<br />
SHDB Transaction Recorder: Recording Overview<br />
SM35 Batch Input: Session Overview<br />
</span></strong><span style="font-size:small;">SM58 Transactional RFC<br />
SM59 Configuration of RFC Connections<br />
SMQ1 qRFC Monitor &#8211; Outbound Queue<br />
SMQ2 qRFC Monitor &#8211; Inbound Queue<br />
SMQR qRFC Monitor &#8211; QIN Scheduler<br />
SMT1 Disply and Maintain Trusted Systems<br />
</span><strong><span style="font-size:small;">SOST SAPConnect: Transmissen Requests<br />
</span></strong><span style="font-size:small;">SXDA Data Transfer Workbench<br />
WE05 IDOC List<br />
WE21 Ports in IDoc Processing</span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">Instance Maintenance<br />
</span></span></strong><span style="font-size:small;">RZ03 Server Statuses and Alerts<br />
RZ04 Maintain Operation Modes and Instances<br />
RZ10 Edit Profiles<br />
RZ11 Maintain Profile Parameters<br />
RZ12 RFC Server Group Maintenance<br />
SM50 Process Overview<br />
SM63 Display/Maintain Operation Mode Set<br />
SMGW Gateway Monitor / Active Connections<br />
SMLG Maintain Logon Groups<br />
SMMS Message Server Monitor</span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">System Monitoring<br />
</span></span></strong><span style="font-size:small;">AL08 List of All Users Logged On<br />
AL11 SAP-Directories<br />
DB13 DBA Cockpit: System Config. Maintenance<br />
DB24 Logs for Adminstrative Database Operations<br />
OS03 Parameter Changes in Operation System<br />
OS07 Operation System Monitor<br />
RZ03 Disply Server Statuses and Alerts<br />
RZ20 CCMS Monitor Sets<br />
SM04 User List<br />
</span><strong><span style="font-size:small;">SM12 Select Lock Entries<br />
</span></strong><span style="font-size:small;">SM14 Update Program Administration<br />
SM21 System Log: Local Analysis<br />
SM35 Batch Input: Session Overview<br />
SM37 Simple Job Selection<br />
</span><strong><span style="font-size:small;">SM50 Process Overview<br />
</span></strong><span style="font-size:small;">SM51 SAP Servers<br />
SM58 Transactional<br />
RFCSM66 Global Work Process Overview<br />
SMGW Gateway Monitor / Active Connections<br />
SMICM ICM Monitor<br />
SMMS Message Server Monitor<br />
SMQ1 qRFC Monitor &#8211; Outbound Queue<br />
SMQ2 qRFC Monitor &#8211; Inbound Queue<br />
SP01 Output Controller: Spool Request Selection<br />
SSAA Administrative Activities<br />
</span><strong><span style="font-size:small;">ST01 System Trace<br />
</span></strong><span style="font-size:small;">ST02 Tune Summary<br />
ST03, ST03N Workload Monitor<br />
ST04 Maintain Database Integration<br />
</span><strong><span style="font-size:small;">ST05 Performance Analysis<br />
</span></strong><span style="font-size:small;">ST06 Operation System Monitor<br />
ST07 Application Monitor: User Distribution<br />
ST10 Table Call Statistics<br />
ST11 Error Log Files<br />
</span><strong><span style="font-size:small;">ST22 ABAP Runtime Error<br />
</span></strong><span style="font-size:small;">ST30 Global Performance Analysis<br />
STAD SAP Workload: Business Transact. Analysis<br />
TU02 Parameter Changes in SAPSYSTEM</span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">Monitoring Architecture<br />
</span></span></strong><span style="font-size:small;">AL15 SAPOSCOL Destination<br />
OS07 Operating System Monitor<br />
RZ04 Maintain Operation Modes and Instances<br />
RZ20 CCMS Monitor Sets<br />
RZ21 Monitoring: Properties and Methods<br />
</span><strong><span style="font-size:small;">SE91 Message Maintenance<br />
</span></strong><span style="font-size:small;">SE92 System Log Message Maintenance<br />
SM21 System Log: Local Analysis<br />
ST02 Tune Summary</span></p>
<p><strong><span style="color:#3366ff;"><span style="font-size:small;">Miscellaneous T-Codes<br />
</span></span><span style="font-size:small;">LSMW Legacy System Migration Workbench<br />
</span></strong><span style="font-size:small;">OSS1 SAP Online Service System<br />
</span><strong><span style="font-size:small;">SNOTE SAP Note Assistant<br />
</span></strong><span style="font-size:small;">SCAT Computer Aided Test Tool<br />
SCU0 Compare Tables<br />
</span><strong><span style="font-size:small;">SE18 Business Add-Ins: Definitions<br />
SE19 Business Add-Ins: Implementations<br />
SE24 Class Builder<br />
</span></strong><span style="font-size:small;">SE32 ABAP/4 Text Element Maintenance<br />
SE35 ABAP/4 Dialog Modules<br />
</span><strong><span style="font-size:small;">SE36 ABAP/4: Logical Databases<br />
SE37 ABAP/4 Function Modules<br />
SE41 Menu Painter<br />
SE43 Maintain Area Menu<br />
SE51 Screen Painter: Initial Screen<br />
SE71 SAPScript Layouts Create/Change<br />
SE72 SAPscript styles<br />
</span></strong><span style="font-size:small;">SE73 SAPscript font maintenance (revised)<br />
SE74 SAPscript format conversion<br />
</span><strong><span style="font-size:small;">SE75 SAPscript Settings<br />
</span></strong><span style="font-size:small;">SE76 SAPscript Translation Layout Sets<br />
SE77 SAPscript Translation Styles<br />
</span><strong><span style="font-size:small;">SE93 Maintain Transaction<br />
SHD0 Transaction variant maintenance<br />
SM30 Maintain Table Views<br />
</span></strong><span style="font-size:small;">SM35 View Batch Input Sessions<br />
SM37 View background job<br />
SM50 Process Overview<br />
SPRO Start SAP IMG (Implementation Guide)<br />
</span><strong><span style="font-size:small;">SQ00 ABAP/4 Query: Start Queries<br />
SQ01 ABAP/4 Query: Maintain Queries<br />
SQ02 ABAP/4 Query: Maintain Funct. Areas<br />
SQ03 ABAP/4 Query: Maintain User Groups<br />
</span></strong><span style="font-size:small;">SQ07 ABAP/4 Query: Language Comparison<br />
</span><strong><span style="font-size:small;">OAER Image Upload<br />
SNRO/NRIV Maintain Number Ranges<br />
SE54 Maintain Authorization Groups</span></strong></p>
<p style="text-align:justify;"><span style="font-size:small;"><span style="font-family:arial;"><strong><span style="font-size:small;"><br />
</span></strong></span></span></p>


<p>You might also be interested in these posts:<ol><li><a href='http://www.abap-tutorials.com/2009/07/20/useful-sap-basis-tcodes/' rel='bookmark' title='Useful SAP BASIS T-Codes'>Useful SAP BASIS T-Codes</a></li>
<li><a href='http://www.abap-tutorials.com/2009/07/17/assign-a-t-code-to-maintenance-view/' rel='bookmark' title='Assign a T-code to Maintenance View in SAP'>Assign a T-code to Maintenance View in SAP</a></li>
<li><a href='http://www.abap-tutorials.com/2010/04/16/making-table-data-transportable-in-sap/' rel='bookmark' title='Making Table Data Transportable in SAP'>Making Table Data Transportable in SAP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.abap-tutorials.com/2009/07/05/tcodes-in-sap-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

