<?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: SET PARAMETER AND CALL TRANSACTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884827#M52294</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;Check this sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f9300_alv_events.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local work areas&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA: lw_event TYPE slis_alv_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Populating ALV events table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            et_events       = i_events&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            list_type_wrong = 1&lt;/P&gt;&lt;P&gt;            OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    READ TABLE i_events WITH KEY name =  slis_ev_user_command&lt;/P&gt;&lt;P&gt;                             INTO lw_event.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      MOVE slis_ev_user_command TO lw_event-form.&lt;/P&gt;&lt;P&gt;      MODIFY i_events FROM lw_event INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f9300_alv_events&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                        rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lv_tabname LIKE rs_selfield-tabname,&lt;/P&gt;&lt;P&gt;        lv_vbeln   LIKE vbrk-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK r_ucomm EQ c_dblclk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE rs_selfield-fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN C_VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      lv_tabname = rs_selfield-tabname.&lt;/P&gt;&lt;P&gt;      IF lv_tabname = 'i_output'.&lt;/P&gt;&lt;P&gt;        READ TABLE i_output INTO w_output INDEX rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        lv_vbeln = w_output-vbeln.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        READ TABLE i_output1 INTO w_output1 INDEX rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        lv_vbeln = w_output1-vbeln.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CHECK sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      IF NOT lv_vbeln IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call transaction VF03&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        SET PARAMETER ID 'VF' FIELD lv_vbeln.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.              " f3100_alv_user_command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 May 2005 13:18:24 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2005-05-25T13:18:24Z</dc:date>
    <item>
      <title>SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884825#M52292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;in my hierarchical ALV i´ve got the following code when double cliking a row:&lt;/P&gt;&lt;P&gt;form frm_alv_user_command USING UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                                SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;case ucomm.&lt;/P&gt;&lt;P&gt;when 'VER_PEDIDO'.&lt;/P&gt;&lt;P&gt;CHECK NOT selfield-tabname IS INITIAL.&lt;/P&gt;&lt;P&gt;IF SELFIELD-TABNAME = 'GT_ITAB'.&lt;/P&gt;&lt;P&gt;  IF SELFIELD-FIELDNAME = 'VBELN'.&lt;/P&gt;&lt;P&gt;    CLEAR gt_itab.&lt;/P&gt;&lt;P&gt;    read table gt_itab index SELFIELD-TABINDEX.&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      FREE MEMORY ID 'AUN'.&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'AUN' FIELD GT_ITAB-VBELN.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VA23' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;The problem is that &lt;U&gt;when i go to transaction VA23 i always get the last value shown in the transaction and not the one i´ve double clicked in the ALV&lt;/U&gt;.&lt;/P&gt;&lt;P&gt;Why is this happening?&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2005 12:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884825#M52292</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2005-05-25T12:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884826#M52293</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;Depending on what transaction you call (in your case, VA23), the value for VBAK-VBELN is populated from a different parameter ID. Try setting parameter id AGN instead of AUN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To see where this happens, open program SAPFV45K in SE80 and look for the subroutine VBAK-VBELN_GET_PARAMETER. There you will see that the parameter ID varies, depending on config from table T180.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2005 13:03:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884826#M52293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-25T13:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884827#M52294</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;Check this sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f9300_alv_events.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local work areas&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA: lw_event TYPE slis_alv_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Populating ALV events table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            et_events       = i_events&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            list_type_wrong = 1&lt;/P&gt;&lt;P&gt;            OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    READ TABLE i_events WITH KEY name =  slis_ev_user_command&lt;/P&gt;&lt;P&gt;                             INTO lw_event.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      MOVE slis_ev_user_command TO lw_event-form.&lt;/P&gt;&lt;P&gt;      MODIFY i_events FROM lw_event INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f9300_alv_events&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                        rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lv_tabname LIKE rs_selfield-tabname,&lt;/P&gt;&lt;P&gt;        lv_vbeln   LIKE vbrk-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK r_ucomm EQ c_dblclk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE rs_selfield-fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN C_VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      lv_tabname = rs_selfield-tabname.&lt;/P&gt;&lt;P&gt;      IF lv_tabname = 'i_output'.&lt;/P&gt;&lt;P&gt;        READ TABLE i_output INTO w_output INDEX rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        lv_vbeln = w_output-vbeln.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        READ TABLE i_output1 INTO w_output1 INDEX rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        lv_vbeln = w_output1-vbeln.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CHECK sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      IF NOT lv_vbeln IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call transaction VF03&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        SET PARAMETER ID 'VF' FIELD lv_vbeln.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.              " f3100_alv_user_command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2005 13:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884827#M52294</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-05-25T13:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884828#M52295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Martin's got it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameter ID for quotations (VA21,VA22,VA23) is AGN not AUN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The f1/f9 help on the field is a bit misleading as the field is set to PID AUN on the screen painter, but the code overwrites the AUN PID with the AGN PID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change your PID to AGN then it will work without problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2005 13:23:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884828#M52295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-25T13:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884829#M52296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is not that the value is being read incorrectly from the ALV list, but the wrong parameter ID is set before calling the transaction (see above).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2005 13:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884829#M52296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-25T13:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884830#M52297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin Ceronio ,&lt;/P&gt;&lt;P&gt;         How can we find the program for the respective parameter.ie how did you find program SAPFV45K for the&lt;/P&gt;&lt;P&gt;the field.is it based on experience or any tips is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Latha prabhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 08:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884830#M52297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T08:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884831#M52298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Latha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I knew from experience that some of these SD programs override the parameter ID set on the data element. However, I will explain how I found it for this particular case, but obviously it's just general advice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just placed a breakpoint on the first debuggable statement from PAI of screen 102 in program SAPMV45A (which is called by VA23) - if you set on debugging before calling the transaction, it may not stop at the breakpoints you set. (You cannot set a breakpoint in the flow logic of a screen, that is why I say place it at the first debuggable statement).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I called VA23. In debugging mode, I set a breakpoint on statement "GET PARAMETER". After that, I just ran through the program until I got to the code in program SAPFV45K.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you understand how I got there.&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;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 09:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884831#M52298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T09:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884832#M52299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Latha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Feel free of course to reward the above answer if you find it useful!&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;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2005 07:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884832#M52299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-29T07:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884833#M52300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin ,&lt;/P&gt;&lt;P&gt;      Thanks for the solution.I was not in the office for some days.Sure to reward.Trying to reward but there's some problem,I couldn't find stars.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Latha prabhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: latha prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2005 04:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884833#M52300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-07T04:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884834#M52301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Latha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is probably because you did not create the message originally.&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;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Aug 2005 14:00:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-call-transaction/m-p/884834#M52301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-04T14:00:47Z</dc:date>
    </item>
  </channel>
</rss>

