<?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 paramter ID info req? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339080#M1033564</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;If you are using the interactive report why dont you read the value into a variable and then call the transaction,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*----------------------------------------------------------------------*
*  FORM DISPLAY_INVOICE_INFO                                           *
*----------------------------------------------------------------------*
*  Subroutine for calling the transaction VF03 to display Invoice info *
*----------------------------------------------------------------------*
*  There are no interface parameters to be passed to this subroutine.  *
*----------------------------------------------------------------------*
FORM display_invoice_info .

  DO.

    READ LINE sy-index FIELD VALUE w_cbox_inv.

    IF sy-subrc NE 0.

      EXIT.

    ELSEIF w_cbox_inv EQ c_flag_x.

      w_invc = sy-lisel+14(10).
      CLEAR w_cbox_inv.
      MODIFY LINE sy-index FIELD VALUE w_cbox_inv
                           FIELD FORMAT
          fs_prod_ship_cond-invc COLOR col_positive INTENSIFIED.
* To display the detailed information of a selected Invoice.
      SET PARAMETER ID c_parameter_id_vf FIELD w_invc.
      CALL TRANSACTION c_transaction_vf03 AND SKIP FIRST SCREEN.

    ENDIF.                             " IF SY-SUBRC NE 0

  ENDDO.

ENDFORM.                               " DISPLAY_INVOICE_INFO
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I am calling the transaction VF03 and displaying the billing doc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Aug 2008 04:57:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-28T04:57:21Z</dc:date>
    <item>
      <title>set paramter ID info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339078#M1033562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in an interact report,when the user clicks on a vbeln no,than i had used the below mentioned code&lt;/P&gt;&lt;P&gt;:when 'CHOOSE'.&lt;/P&gt;&lt;P&gt;set paramter ID 'AUN'  field itab-vbeln.&lt;/P&gt;&lt;P&gt;call tcode 'VA32' &amp;amp; skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my prob is like,its capturing the vbeln value,each time,but when opeing VA32,its not taking any value there,&amp;amp; showing an error to enter vbeln no.&lt;/P&gt;&lt;P&gt;please tell how to get value there?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 04:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339078#M1033562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T04:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: set paramter ID info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339079#M1033563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vipin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM list1 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;  CASE r_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;IF rs_selfield-fieldname = 'TDNAME'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;READ TABLE it_lines INDEX rs_selfield-tabindex.&lt;/STRONG&gt;          &lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'PLN' FIELD it_lines-tdname+4(8).&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'CA03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM.          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 04:54:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339079#M1033563</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-08-28T04:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: set paramter ID info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339080#M1033564</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;If you are using the interactive report why dont you read the value into a variable and then call the transaction,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*----------------------------------------------------------------------*
*  FORM DISPLAY_INVOICE_INFO                                           *
*----------------------------------------------------------------------*
*  Subroutine for calling the transaction VF03 to display Invoice info *
*----------------------------------------------------------------------*
*  There are no interface parameters to be passed to this subroutine.  *
*----------------------------------------------------------------------*
FORM display_invoice_info .

  DO.

    READ LINE sy-index FIELD VALUE w_cbox_inv.

    IF sy-subrc NE 0.

      EXIT.

    ELSEIF w_cbox_inv EQ c_flag_x.

      w_invc = sy-lisel+14(10).
      CLEAR w_cbox_inv.
      MODIFY LINE sy-index FIELD VALUE w_cbox_inv
                           FIELD FORMAT
          fs_prod_ship_cond-invc COLOR col_positive INTENSIFIED.
* To display the detailed information of a selected Invoice.
      SET PARAMETER ID c_parameter_id_vf FIELD w_invc.
      CALL TRANSACTION c_transaction_vf03 AND SKIP FIRST SCREEN.

    ENDIF.                             " IF SY-SUBRC NE 0

  ENDDO.

ENDFORM.                               " DISPLAY_INVOICE_INFO
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I am calling the transaction VF03 and displaying the billing doc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 04:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-paramter-id-info-req/m-p/4339080#M1033564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T04:57:21Z</dc:date>
    </item>
  </channel>
</rss>

