<?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: SAP script problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884406#M677530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gaurav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBDKR and VBDPR you can get with the FM &amp;lt;b&amp;gt;RV_BILLING_PRINT_VIEW&amp;lt;/b&amp;gt;. You have to give in the document number (in a structure) of the SD invoice in the importing paramter of the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Sep 2007 08:45:50 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2007-09-21T08:45:50Z</dc:date>
    <item>
      <title>SAP script problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884403#M677527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing Sap-Script of "Proforma Billing "  . I have to display data from &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) VBDKR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) VBDPR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But both these are structures &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can i fetch data from these 2 structures  and pass to Sap script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 08:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884403#M677527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T08:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAP script problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884404#M677528</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;how can fetch data from a structure?&lt;/P&gt;&lt;P&gt;structure will never store data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is ur requirement ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 08:40:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884404#M677528</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-09-21T08:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAP script problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884405#M677529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fm.&lt;/P&gt;&lt;P&gt;IF nast-objky+10(6) NE space.&lt;/P&gt;&lt;P&gt;    vbco3-vbeln = nast-objky+16(10).&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    vbco3-vbeln = nast-objky.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  vbco3-mandt = sy-mandt.&lt;/P&gt;&lt;P&gt;  vbco3-spras = nast-spras.&lt;/P&gt;&lt;P&gt;  vbco3-kunde = nast-parnr.&lt;/P&gt;&lt;P&gt;  vbco3-parvw = nast-parvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION &amp;lt;b&amp;gt;'RV_BILLING_PRINT_VIEW'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      comwa                        = vbco3&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      kopf                         = vbdkr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      pos                          = tvbdpr&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      terms_of_payment_not_in_t052 = 1&lt;/P&gt;&lt;P&gt;      error_message                = 5&lt;/P&gt;&lt;P&gt;      OTHERS                       = 4.&lt;/P&gt;&lt;P&gt;  IF NOT sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 1.&lt;/P&gt;&lt;P&gt;      syst-msgty = 'I'.&lt;/P&gt;&lt;P&gt;      PERFORM protocol_update.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 08:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884405#M677529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T08:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAP script problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884406#M677530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gaurav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VBDKR and VBDPR you can get with the FM &amp;lt;b&amp;gt;RV_BILLING_PRINT_VIEW&amp;lt;/b&amp;gt;. You have to give in the document number (in a structure) of the SD invoice in the importing paramter of the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 08:45:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884406#M677530</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-09-21T08:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAP script problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884407#M677531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jain,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fields from the structures VBDKR,  VBDPR are stored in multiple tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first you find what are the tables affected by this structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Go to SE11 -&amp;gt; VBDKR -&amp;gt; display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. press Ctrl + Shift + F5 -&amp;gt;VZ- Dictionary objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So get the values from those tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 08:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-script-problem/m-p/2884407#M677531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T08:46:32Z</dc:date>
    </item>
  </channel>
</rss>

