<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340165#M172229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Meghna, hope these answers helps you well...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) &lt;/P&gt;&lt;P&gt;Look at the sample code to display LOGO.&lt;/P&gt;&lt;P&gt;**********************&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;i_callback_program = i_repid&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;i_callback_user_command = 'USER_COMMAND_PERNR'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;it_fieldcat = header&lt;/P&gt;&lt;P&gt;is_layout = gt_layout&lt;/P&gt;&lt;P&gt;i_callback_top_of_page = 'TOP-OF-PAGE1'&lt;/P&gt;&lt;P&gt;i_grid_title = xyz&lt;/P&gt;&lt;P&gt;it_sort = gt_sort[]&lt;/P&gt;&lt;P&gt;i_default = 'X'&lt;/P&gt;&lt;P&gt;i_save = 'U'&lt;/P&gt;&lt;P&gt;is_variant = gt_variant&lt;/P&gt;&lt;P&gt;it_events = gt_events&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;t_outtab = t_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear t_output.&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Form TOP-OF-PAGE1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form top-of-page1.&lt;/P&gt;&lt;P&gt;data: header type slis_t_listheader,&lt;/P&gt;&lt;P&gt;wa type slis_listheader. "infield like wa-info, nline type n.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TITLE AREA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;wa-info = text-h04.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;write sy-datum to wa-info mm/dd/yyyy.&lt;/P&gt;&lt;P&gt;concatenate text-h03 wa-info into wa-info separated by space.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;concatenate text-h02 sy-uname into wa-info separated by space.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;concatenate text-h01 sy-repid into wa-info separated by space.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;********" LOGO&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;it_list_commentary = header&lt;/P&gt;&lt;P&gt;i_logo = 'ENJOYSAP_LOGO'.&lt;/P&gt;&lt;P&gt;*********" LOGO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To upload a logo ( bmp or jpg file) from the local system to SAP, use transaction code - OAER. &lt;/P&gt;&lt;P&gt;Inside that give class name - pictures&lt;/P&gt;&lt;P&gt;class type - OT&lt;/P&gt;&lt;P&gt;object key - ALVLOGO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;click execute/f8. Then inside the screen below, click standard doc.type list and select screen. Right click on it and click import file. Then select a file from ur local system and upload it. The object key which we give here is the value passed to Reuse_alv_commentary_write function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Electronic Data Interchange (EDI) is about doing business and carrying out transactions with your trading partners electronically. EDI covers most things that are traditionally done using paper-based communication.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The EDI interface is used to connect an EDI subsystem to the SAP system. EDI subsystems perform all EDI-related tasks such as Converting the data Handling messages or interchanges Communications Managing the partner profiles Monitoring processing. The EDI interface is based on IDoc technology. IDoc technology is independent of EDI standards. All data is exchanged via files between the SAP System and the EDI subsystem. The synchronous RFC (remote function call) is used to define the time of transfer of the files between both systems. Via the EDI interface, the following data can be exchanged:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outbound IDocs. IDocs are transferred from the SAP System to the EDI subsystem. &lt;/P&gt;&lt;P&gt;Inbound IDocs. IDocs are transferred from the EDI subsystem to the SAP System. &lt;/P&gt;&lt;P&gt;Status report. To inform the SAP System of the progress of processing of the outbound IDocs, the EDI subsystem transfers the status report to the SAP System. &lt;/P&gt;&lt;P&gt;The object of the certification is the technical test of the interface between SAP System and EDI subsystem. The transfer of outbound IDocs, inbound IDocs and the status report are tested. The test is performed for the EDI standard UN/EDIFACT. As an example, the messages used are: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outgoing order (ORDERS) &lt;/P&gt;&lt;P&gt;Incoming order (ORDERS) &lt;/P&gt;&lt;P&gt;Outgoing order response (ORDRSP) and &lt;/P&gt;&lt;P&gt;Incoming order response (ORDRSP). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(3) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALE comprises three layers:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the applications services,&lt;/P&gt;&lt;P&gt;the distribution services,&lt;/P&gt;&lt;P&gt;the communications services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MM - for Material Master data - RMDATIND&lt;/P&gt;&lt;P&gt;FI - for Accounting Documents - RFBIBL00&lt;/P&gt;&lt;P&gt;PP - for Independent requirements - RM06IN00&lt;/P&gt;&lt;P&gt;CA - for Classification data - RCCLBI03&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(5) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TNAPR - Processing programs for output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jun 2006 19:51:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-09T19:51:43Z</dc:date>
    <item>
      <title>abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340162#M172226</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;1. what is the function module to upoload logo in alv.&lt;/P&gt;&lt;P&gt;2. what is edi? name a few edi sub systems&lt;/P&gt;&lt;P&gt;3. what r diferent layers in ALE.&lt;/P&gt;&lt;P&gt;4.what isSAP standarddirect input program for material master.&lt;/P&gt;&lt;P&gt;5. in which transaction code &amp;amp; table, standard forms driver programs &amp;amp; form routines r available&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 May 2006 13:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340162#M172226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-27T13:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340163#M172227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Use FM - 'REUSE_ALV_COMMENTARY_WRITE'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using Function modules to display (You can also use Class), you will have to use GRID display for displaying the logo. Its not possible in List display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the Function module REUSE_ALV_GRID_DISPLAY and pass the parameter "I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE' ". This TOP_OF_PAGE is the subroutine (FORM - ENDFORM) in which the actual top of page code will be written (for showing the logo).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2006 19:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340163#M172227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-09T19:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340164#M172228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;5. TCode: NACE &amp;amp; Table: TNAPR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2006 19:41:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340164#M172228</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-09T19:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340165#M172229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Meghna, hope these answers helps you well...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) &lt;/P&gt;&lt;P&gt;Look at the sample code to display LOGO.&lt;/P&gt;&lt;P&gt;**********************&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;i_callback_program = i_repid&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;i_callback_user_command = 'USER_COMMAND_PERNR'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;it_fieldcat = header&lt;/P&gt;&lt;P&gt;is_layout = gt_layout&lt;/P&gt;&lt;P&gt;i_callback_top_of_page = 'TOP-OF-PAGE1'&lt;/P&gt;&lt;P&gt;i_grid_title = xyz&lt;/P&gt;&lt;P&gt;it_sort = gt_sort[]&lt;/P&gt;&lt;P&gt;i_default = 'X'&lt;/P&gt;&lt;P&gt;i_save = 'U'&lt;/P&gt;&lt;P&gt;is_variant = gt_variant&lt;/P&gt;&lt;P&gt;it_events = gt_events&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;t_outtab = t_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear t_output.&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Form TOP-OF-PAGE1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form top-of-page1.&lt;/P&gt;&lt;P&gt;data: header type slis_t_listheader,&lt;/P&gt;&lt;P&gt;wa type slis_listheader. "infield like wa-info, nline type n.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TITLE AREA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;wa-info = text-h04.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;write sy-datum to wa-info mm/dd/yyyy.&lt;/P&gt;&lt;P&gt;concatenate text-h03 wa-info into wa-info separated by space.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;concatenate text-h02 sy-uname into wa-info separated by space.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;concatenate text-h01 sy-repid into wa-info separated by space.&lt;/P&gt;&lt;P&gt;append wa to header.&lt;/P&gt;&lt;P&gt;********" LOGO&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;it_list_commentary = header&lt;/P&gt;&lt;P&gt;i_logo = 'ENJOYSAP_LOGO'.&lt;/P&gt;&lt;P&gt;*********" LOGO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To upload a logo ( bmp or jpg file) from the local system to SAP, use transaction code - OAER. &lt;/P&gt;&lt;P&gt;Inside that give class name - pictures&lt;/P&gt;&lt;P&gt;class type - OT&lt;/P&gt;&lt;P&gt;object key - ALVLOGO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;click execute/f8. Then inside the screen below, click standard doc.type list and select screen. Right click on it and click import file. Then select a file from ur local system and upload it. The object key which we give here is the value passed to Reuse_alv_commentary_write function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Electronic Data Interchange (EDI) is about doing business and carrying out transactions with your trading partners electronically. EDI covers most things that are traditionally done using paper-based communication.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The EDI interface is used to connect an EDI subsystem to the SAP system. EDI subsystems perform all EDI-related tasks such as Converting the data Handling messages or interchanges Communications Managing the partner profiles Monitoring processing. The EDI interface is based on IDoc technology. IDoc technology is independent of EDI standards. All data is exchanged via files between the SAP System and the EDI subsystem. The synchronous RFC (remote function call) is used to define the time of transfer of the files between both systems. Via the EDI interface, the following data can be exchanged:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outbound IDocs. IDocs are transferred from the SAP System to the EDI subsystem. &lt;/P&gt;&lt;P&gt;Inbound IDocs. IDocs are transferred from the EDI subsystem to the SAP System. &lt;/P&gt;&lt;P&gt;Status report. To inform the SAP System of the progress of processing of the outbound IDocs, the EDI subsystem transfers the status report to the SAP System. &lt;/P&gt;&lt;P&gt;The object of the certification is the technical test of the interface between SAP System and EDI subsystem. The transfer of outbound IDocs, inbound IDocs and the status report are tested. The test is performed for the EDI standard UN/EDIFACT. As an example, the messages used are: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outgoing order (ORDERS) &lt;/P&gt;&lt;P&gt;Incoming order (ORDERS) &lt;/P&gt;&lt;P&gt;Outgoing order response (ORDRSP) and &lt;/P&gt;&lt;P&gt;Incoming order response (ORDRSP). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(3) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALE comprises three layers:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the applications services,&lt;/P&gt;&lt;P&gt;the distribution services,&lt;/P&gt;&lt;P&gt;the communications services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MM - for Material Master data - RMDATIND&lt;/P&gt;&lt;P&gt;FI - for Accounting Documents - RFBIBL00&lt;/P&gt;&lt;P&gt;PP - for Independent requirements - RM06IN00&lt;/P&gt;&lt;P&gt;CA - for Classification data - RCCLBI03&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(5) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TNAPR - Processing programs for output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2006 19:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340165#M172229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-09T19:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340166#M172230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;4)SAP std. direct input program for material master:  &lt;/P&gt;&lt;P&gt;    RMDATIND(for uploading data).&lt;/P&gt;&lt;P&gt;    RMDATGEN(for Downloading data).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2006 19:53:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340166#M172230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-09T19:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340167#M172231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! here is the answer to your 3rd question (ALE):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALE acts as a layer that incorporates the inter-linking of business objects at the application level. The ALE layer provides the following services:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="info"&gt;&lt;/SPAN&gt;   Applications services: this layer provides ALE with an interface (for instance: BAPI) to R/3 to facilitate data exchange to or from external R/3 systems. &lt;/P&gt;&lt;P&gt;(ii)  Distribution services: the onus of filtering and converting messages exchanged between SAP and non-SAP systems is on the distribution layer of ALE. This service is the core service and acts as a sandwich layer between application and communication layers. &lt;/P&gt;&lt;P&gt;(iii) Communications services: ALE supports synchronous as well asynchronous communication. Synchronous messaging is used for the direct reading of control data, while asynchronous messaging is used for transmitting or receiving application data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The implementation of ALE is achieved with the help of external converters (ALE converters), which connect SAP applications to non-SAP applications. In simple words, external converters are generic-format conversion programs, which contain specific converter functions. &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>Fri, 09 Jun 2006 20:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340167#M172231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-09T20:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340168#M172232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            it_list_commentary = t_header.&lt;/P&gt;&lt;P&gt;            i_logo             = 'Z_LOGO'.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can see this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_enhanced.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_enhanced.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Upload Logo for REUSE_ALV_COMMENTARY_WRITE &lt;/P&gt;&lt;P&gt;For those who wish to upload and use a picture in your ALV abap reports. &lt;/P&gt;&lt;P&gt;Steps for uploading Logo :-: &lt;/P&gt;&lt;P&gt;1. Goto the transaction OAER &lt;/P&gt;&lt;P&gt;2. Enter the class name as 'PICTURES' &lt;/P&gt;&lt;P&gt;3. Enter the class type as 'OT' &lt;/P&gt;&lt;P&gt;4. Enter the object key as the name of the logo you wish to give &lt;/P&gt;&lt;P&gt;5. Execute &lt;/P&gt;&lt;P&gt;6. Then in the new screen select Standard doc. types in bottom window &lt;/P&gt;&lt;P&gt;Click on the Screen icon &lt;/P&gt;&lt;P&gt;Now, it will ask for the file path where you have to upload the logo &lt;/P&gt;&lt;P&gt;7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE &lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;Import Logo and Background Picture for Reporting &lt;/P&gt;&lt;P&gt;In this step, you can import a customer-specific logo and a background picture into the R/3 System. These will be displayed in the header area of reports in HR Funds and Position Management. &lt;/P&gt;&lt;P&gt;From the SPRO: &lt;/P&gt;&lt;P&gt;HR Funds and Position Management --&amp;gt; Dialog Control --&amp;gt; Customize Reporting Interface --&amp;gt; Import Logo and Background Picture for Reporting. &lt;/P&gt;&lt;P&gt;Activities &lt;/P&gt;&lt;P&gt;1. Enter the Name of your logo/background picture as an object key in the initial screen. &lt;/P&gt;&lt;P&gt;2. Make sure that the class name is PICTURES, and the class type is OT. &lt;/P&gt;&lt;P&gt;3. Choose Execute. &lt;/P&gt;&lt;P&gt;4. Double-click the document type Picture on the Create tab page. A dialog box will appear in which you can enter the path in which the logo/background picture can be found. &lt;/P&gt;&lt;P&gt;5. Enter the path and choose Open. The logo will be uploaded into the current R/3 System. If the logo/background picture is to be transported into other systems as well, choose Transport. &lt;/P&gt;&lt;P&gt;6. Return to the initial screen and repeat the procedure after having entered the Name of your background picture as an object key. &lt;/P&gt;&lt;P&gt;Please note that the logo/background picture can only be displayed in ALV-based reports with an HTML header. Manually programmed reports such as business distribution plans are not based on the ALV. &lt;/P&gt;&lt;P&gt;If you have selected several initial objects, ALV-based reports in HR Funds and Position Management will automatically use a hiearchical-sequential display. A logo is not displayed here either. Note also that the logo cannot be printed (see print preview in program). &lt;/P&gt;&lt;P&gt;Make sure that the logo does not exceed a height of 100 pixels because it would mean that the header of the report will be scrollable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;this is what SAP says..&lt;/P&gt;&lt;P&gt;EDI means..ELECTRONIC DATA INTERCHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDI is some thing different.&lt;/P&gt;&lt;P&gt;EDI is a technique used to communicate&lt;/P&gt;&lt;P&gt;business and information transactions&lt;/P&gt;&lt;P&gt;between computer systems of different&lt;/P&gt;&lt;P&gt;companies and organizations.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Electronic Data Interchange (EDI) is about doing business and&lt;/P&gt;&lt;P&gt;carrying out transactions with your trading partners electronically.&lt;/P&gt;&lt;P&gt;EDI covers most things that are traditionally done using paper-based&lt;/P&gt;&lt;P&gt;communication, for example placing orders with suppliers and&lt;/P&gt;&lt;P&gt;carrying out financial transactions.&lt;/P&gt;&lt;P&gt;EDI is described as the interchange of structured data according to&lt;/P&gt;&lt;P&gt;agreed message standards between computer systems, by electronic&lt;/P&gt;&lt;P&gt;means. Structured data equates to a simple and direct method of&lt;/P&gt;&lt;P&gt;presenting the data content of a document, be it an invoice, a sales&lt;/P&gt;&lt;P&gt;order, or any other document type. The method of ensuring the&lt;/P&gt;&lt;P&gt;correct interpretation of the information by the computer system is&lt;/P&gt;&lt;P&gt;defined by the EDI standard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the below links&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.sapgenie.com/sapedi/edi_sap_training.htm" target="test_blank"&gt;www.sapgenie.com/sapedi/edi_sap_training.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.sap-img.com/basis/" target="test_blank"&gt;www.sap-img.com/basis/&lt;/A&gt; difference-between-edi-and-idoc.htm &lt;/P&gt;&lt;P&gt;help.sap.com/saphelp_nw04/helpdata/ en/35/26b592afab52b9e10000009b38f974/content.htm&lt;/P&gt;&lt;P&gt;help.sap.com/saphelp_nw04/helpdata/ en/35/26b594afab52b9e10000009b38f974/content.htm &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.onestopsap.com/interview-Question/edi/" target="test_blank"&gt;http://www.onestopsap.com/interview-Question/edi/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. &lt;/P&gt;&lt;P&gt;ALE consists of the following layers:&lt;/P&gt;&lt;P&gt;Application services &lt;/P&gt;&lt;P&gt;Distribution services &lt;/P&gt;&lt;P&gt;Communication services &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;The program is RMDATIND and BMMH7 to fill material texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.TCode is  NACE &lt;/P&gt;&lt;P&gt; Table is TNAPR&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jun 2006 22:44:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340168#M172232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-09T22:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340169#M172233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi megna!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are getting any reply form the forum for your query then you should give reward points you each answer you got. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thannk and regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 14:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340169#M172233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T14:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340170#M172234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai ashvinder &lt;/P&gt;&lt;P&gt;i am  vijay&lt;/P&gt;&lt;P&gt;i want notes of the user exsists and BADIs please nay DOC and PDF pleasesend me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 16:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340170#M172234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T16:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340171#M172235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi meghana,&lt;/P&gt;&lt;P&gt;sample code to upload a logo into alv:&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;it_list_commentary = header&lt;/P&gt;&lt;P&gt;i_logo = 'ENJOYSAP_LOGO'.&lt;/P&gt;&lt;P&gt;ALe:&lt;/P&gt;&lt;P&gt;check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/ppt/ale.ppt" target="test_blank"&gt;http://www.sappoint.com/ppt/ale.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;EDI:&lt;/P&gt;&lt;P&gt;EDI is described as the interchange of structured data according to agreed message standards between computer systems, by electronic means. Structured data equates to a simple and direct method of presenting the data content of a document. The method of ensuring the correct interpretation of the information by the computer system is defined by the EDI standard."&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/utilities/edi.htm" target="test_blank"&gt;http://www.sapgenie.com/utilities/edi.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 18:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/1340171#M172235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T18:15:08Z</dc:date>
    </item>
  </channel>
</rss>

