<?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: Capture data after 'call transaction using bdcdata' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502805#M232599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe the new number is returned in a sap message try something like this:&lt;/P&gt;&lt;P&gt;data  t_messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH t_messtab.&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION tcode USING t_bdcdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                   MESSAGES INTO t_messtab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT t_messtab.&lt;/P&gt;&lt;P&gt;  PERFORM expand_error_message USING t_messtab&lt;/P&gt;&lt;P&gt;                                         w_error_message.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM expand_error_message USING f_raw_message STRUCTURE bdcmsgcoll&lt;/P&gt;&lt;P&gt;                                f_editted_message.&lt;/P&gt;&lt;P&gt;  DATA v_work_text LIKE bdcmsgcoll-msgv1.&lt;/P&gt;&lt;P&gt;  DATA v_length TYPE i.&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS &amp;lt;newtext&amp;gt;.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM t100&lt;/P&gt;&lt;P&gt;   WHERE sprsl = sy-langu&lt;/P&gt;&lt;P&gt;     AND arbgb = f_raw_message-msgid&lt;/P&gt;&lt;P&gt;     AND msgnr = f_raw_message-msgnr.&lt;/P&gt;&lt;P&gt;  CLEAR f_editted_message.&lt;/P&gt;&lt;P&gt;  MOVE t100-text TO f_editted_message.&lt;/P&gt;&lt;P&gt;  DO 4 TIMES&lt;/P&gt;&lt;P&gt;    VARYING v_work_text FROM f_raw_message-msgv1&lt;/P&gt;&lt;P&gt;                        NEXT f_raw_message-msgv2.&lt;/P&gt;&lt;P&gt;    v_length = STRLEN( v_work_text ).&lt;/P&gt;&lt;P&gt;    IF v_length = 0.&lt;/P&gt;&lt;P&gt;      ASSIGN ' ' TO &amp;lt;newtext&amp;gt;.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      ASSIGN v_work_text(v_length) TO &amp;lt;newtext&amp;gt;.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    REPLACE '&amp;amp;' WITH &amp;lt;newtext&amp;gt; INTO f_editted_message.&lt;/P&gt;&lt;P&gt;    CONDENSE f_editted_message.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "EXPAND_ERROR_MESSAGE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Jul 2006 23:23:55 GMT</pubDate>
    <dc:creator>former_member186741</dc:creator>
    <dc:date>2006-07-31T23:23:55Z</dc:date>
    <item>
      <title>Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502804#M232598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;I am working with an object  Delegation to PDOTYPE_SH, and i have build the dialogue method ZCREATEDIALOGPP03, which call PP03 creates a new HR position. Some of the data (as you can see in my semplified method below) necessary to create the position are passed using the call transaction for PP03 using bdc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the end, I would like to get the new Position ID created, to use it and pass it on for further processing.&lt;/P&gt;&lt;P&gt;How can I capture that in my method?&lt;/P&gt;&lt;P&gt;Please have a look below at my code.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;BEGIN_METHOD ZCREATEDIALOGPP03 CHANGING CONTAINER. &lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  objtype type PPHDR-OTYPE,      &lt;/P&gt;&lt;P&gt;  BDCDATA LIKE BDCDATA OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;prepare parameter ID&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;objtype = 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set paramater ID PP03&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; SET PARAMETER ID 'POT' FIELD objtype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;open bdc call&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;clear bdcdata.&lt;/P&gt;&lt;P&gt;refresh bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;bdc for Position Text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;perform bdc_dynpro tables bdcdata using 'MP100000' '2000'.&lt;/P&gt;&lt;P&gt;perform bdc_field tables bdcdata using 'P1000-STEXT' PLSTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call transaction PP03&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  Call transaction 'PP03' using bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end_method.&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;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       Start new screen                                              *&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 BDC_DYNPRO tables ibdcdata USING PROGRAM DYNPRO.&lt;/P&gt;&lt;P&gt;  DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;    CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;    BDCDATA-PROGRAM  = PROGRAM.&lt;/P&gt;&lt;P&gt;    BDCDATA-DYNPRO   = DYNPRO.&lt;/P&gt;&lt;P&gt;    BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;    APPEND BDCDATA to ibdcdata.&lt;/P&gt;&lt;P&gt;  ENDFORM.&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;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       Insert field                                                  *&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 BDC_FIELD tables ibdcdata USING FNAM FVAL.&lt;/P&gt;&lt;P&gt; DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DATA:   NODATA_CHARACTER VALUE '/'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IF fval &amp;lt;&amp;gt; NODATA_CHARACTER.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;     BDCDATA-FNAM = FNAM.&lt;/P&gt;&lt;P&gt;     BDCDATA-FVAL = FVAL.&lt;/P&gt;&lt;P&gt;     APPEND BDCDATA to ibdcdata.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; ENDFORM.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 23:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502804#M232598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T23:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502805#M232599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe the new number is returned in a sap message try something like this:&lt;/P&gt;&lt;P&gt;data  t_messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH t_messtab.&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION tcode USING t_bdcdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                   MESSAGES INTO t_messtab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT t_messtab.&lt;/P&gt;&lt;P&gt;  PERFORM expand_error_message USING t_messtab&lt;/P&gt;&lt;P&gt;                                         w_error_message.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM expand_error_message USING f_raw_message STRUCTURE bdcmsgcoll&lt;/P&gt;&lt;P&gt;                                f_editted_message.&lt;/P&gt;&lt;P&gt;  DATA v_work_text LIKE bdcmsgcoll-msgv1.&lt;/P&gt;&lt;P&gt;  DATA v_length TYPE i.&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS &amp;lt;newtext&amp;gt;.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM t100&lt;/P&gt;&lt;P&gt;   WHERE sprsl = sy-langu&lt;/P&gt;&lt;P&gt;     AND arbgb = f_raw_message-msgid&lt;/P&gt;&lt;P&gt;     AND msgnr = f_raw_message-msgnr.&lt;/P&gt;&lt;P&gt;  CLEAR f_editted_message.&lt;/P&gt;&lt;P&gt;  MOVE t100-text TO f_editted_message.&lt;/P&gt;&lt;P&gt;  DO 4 TIMES&lt;/P&gt;&lt;P&gt;    VARYING v_work_text FROM f_raw_message-msgv1&lt;/P&gt;&lt;P&gt;                        NEXT f_raw_message-msgv2.&lt;/P&gt;&lt;P&gt;    v_length = STRLEN( v_work_text ).&lt;/P&gt;&lt;P&gt;    IF v_length = 0.&lt;/P&gt;&lt;P&gt;      ASSIGN ' ' TO &amp;lt;newtext&amp;gt;.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      ASSIGN v_work_text(v_length) TO &amp;lt;newtext&amp;gt;.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    REPLACE '&amp;amp;' WITH &amp;lt;newtext&amp;gt; INTO f_editted_message.&lt;/P&gt;&lt;P&gt;    CONDENSE f_editted_message.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "EXPAND_ERROR_MESSAGE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 23:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502805#M232599</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-07-31T23:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502806#M232600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put this in your code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: messtab   LIKE  bdcmsgcoll OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: opttable LIKE ctu_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  opttable-dismode  = 'N'.&lt;/P&gt;&lt;P&gt;  opttable-updmode  = 'L'.&lt;/P&gt;&lt;P&gt;  opttable-racommit = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the call transaction statement as follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'PP03' using bdcdata OPTIONS FROM opttable MESSAGES INTO messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now loop on messtab and you will find the persons id in messtab-msgv1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award points if usefull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2006 23:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502806#M232600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-31T23:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502807#M232601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;tried what suggested by sudhir, but it does not work.&lt;/P&gt;&lt;P&gt;No position number in the messages tab.&lt;/P&gt;&lt;P&gt;Any other idea?&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 14:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502807#M232601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T14:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502808#M232602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you do the transaction manually, do you get a success message telling you the position number?  If so, then this message should definitly be getting sent back thru the MESSAGES into Messtab extension when you do a BDC.  If you don't get any such message, then can not get the new number from the BDC.  You would have to do something else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the transaction manually first and make sure that a "S" message with the number is triggered at the end of the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 14:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502808#M232602</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-02T14:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502809#M232603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: it_mesg like bdcmsgcoll occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data: v_message(100).&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;clear bdcdata.&lt;/P&gt;&lt;P&gt;refresh bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;bdc for Position Text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;perform bdc_dynpro tables bdcdata using 'MP100000' '2000'.&lt;/P&gt;&lt;P&gt;perform bdc_field tables bdcdata using 'P1000-STEXT' PLSTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call transaction PP03&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Call transaction 'PP03' using bdcdata update 'S'&lt;/P&gt;&lt;P&gt;                                      mode 'N&lt;/P&gt;&lt;P&gt;                                      messages into it_mesg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at it_mesg.&lt;/P&gt;&lt;P&gt;        call function 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;           exporting&lt;/P&gt;&lt;P&gt;                id        = it_mesg-msgid&lt;/P&gt;&lt;P&gt;                lang      = sy-langu&lt;/P&gt;&lt;P&gt;                no        = it_mesg-msgnr&lt;/P&gt;&lt;P&gt;                v1        = it_mesg-msgv1&lt;/P&gt;&lt;P&gt;                v2        = it_mesg-msgv2&lt;/P&gt;&lt;P&gt;                v3        = it_mesg-msgv3&lt;/P&gt;&lt;P&gt;                v4        = it_mesg-msgv4&lt;/P&gt;&lt;P&gt;           importing&lt;/P&gt;&lt;P&gt;                msg       = v_message&lt;/P&gt;&lt;P&gt;           exceptions&lt;/P&gt;&lt;P&gt;                not_found = 1&lt;/P&gt;&lt;P&gt;                others    = 2.&lt;/P&gt;&lt;P&gt;write:/ v_message.&lt;/P&gt;&lt;P&gt;      endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 14:30:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502809#M232603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T14:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502810#M232604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually the position number is not output by a message.&lt;/P&gt;&lt;P&gt;After the PP03 is completed and all the position infotype are created,&lt;/P&gt;&lt;P&gt;the system gets back to the starting screen in PP03 and fill the relevant field 'position id' with the position number just created. Meaning:&lt;/P&gt;&lt;P&gt;- At the beginning, when calling the PP03 the position field 'position id' is empty.&lt;/P&gt;&lt;P&gt;- then infotypes are created.&lt;/P&gt;&lt;P&gt;- Then get back to initial screen and the just created position number is in field 'position id'.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;Thank you and regards,&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 14:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502810#M232604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T14:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502811#M232605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahhh......yes!!!  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;  I think we may be able to pull it out of memory id.  Go to the screen where it filled in the position id.  Do F1 on this field,  click the technical settings button.  See what the parameter id is for this field.  Now go to your code, after the call transation statement, get the value in the parameter id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the following statement, PID represents the parameter id that you dicovered earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: posid(20) type c.

get parameter id 'PID' field posid.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 14:55:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502811#M232605</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-02T14:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502812#M232606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I found it.  It is parameter id PON.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GET PARAMETER ID &amp;lt;b&amp;gt;'PON'&amp;lt;/b&amp;gt; FIELD posid. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 15:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502812#M232606</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-02T15:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502813#M232607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great!&lt;/P&gt;&lt;P&gt;Problem solved.&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;Question: how did you get the parameter id 'PON'?&lt;/P&gt;&lt;P&gt;it is not that straightforward..&lt;/P&gt;&lt;P&gt;thank you again!&lt;/P&gt;&lt;P&gt;marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 15:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502813#M232607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-02T15:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Capture data after 'call transaction using bdcdata'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502814#M232608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually did some debugging of the PBO module, to see the GET statement.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Aug 2006 15:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-data-after-call-transaction-using-bdcdata/m-p/1502814#M232608</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-02T15:40:09Z</dc:date>
    </item>
  </channel>
</rss>

