<?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: sales order table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607142#M272458</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you have enter multiple line in BDC for a table control use call transaction code using i_bdcdata options from opt message into i_messages. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below example.&lt;/P&gt;&lt;P&gt;data: lws_cnt type char2,&lt;/P&gt;&lt;P&gt;lws_field type char15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_invoicing_plan INTO wa_invoicing_plan.&lt;/P&gt;&lt;P&gt;lws_cnt = sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = lws_cnt &lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = lws_cnt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'FPLT-AFDAT(' lws_cnt ')' INTO lws_field.&lt;/P&gt;&lt;P&gt;CONCATENATE wa_invoicing_plan-date+6(2)&lt;/P&gt;&lt;P&gt;wa_invoicing_plan-date+4(2)&lt;/P&gt;&lt;P&gt;wa_invoicing_plan-date+0(4) INTO lws_date&lt;/P&gt;&lt;P&gt;SEPARATED BY '.'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING lws_field lws_date.&lt;/P&gt;&lt;P&gt;CONCATENATE 'FPLT-FPROZ(' lws_cnt ')' INTO lws_field.&lt;/P&gt;&lt;P&gt;lws_perct = wa_invoicing_plan-percentage.&lt;/P&gt;&lt;P&gt;CONDENSE lws_perct.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING lws_field lws_perct.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While calling the transaction give like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: opt TYPE ctu_params.&lt;/P&gt;&lt;P&gt;opt-dismode = 'N'.&lt;/P&gt;&lt;P&gt;opt-updmode = 'A'.&lt;/P&gt;&lt;P&gt;opt-defsize = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcode&lt;/P&gt;&lt;P&gt;USING i_bdcdata OPTIONS FROM opt MESSAGES INTO i_messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_messages.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Oct 2006 13:51:58 GMT</pubDate>
    <dc:creator>pavankumar_hukkeri</dc:creator>
    <dc:date>2006-10-13T13:51:58Z</dc:date>
    <item>
      <title>sales order table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607139#M272455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to upload sales order information (va01 transaction) from flat file to sap.&lt;/P&gt;&lt;P&gt;but in va01 tcode table control is there &lt;/P&gt;&lt;P&gt;so could you plz guide me whts the procedure to upload sales information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Divya sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 13:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607139#M272455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T13:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: sales order table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607140#M272456</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;You can use different ways for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best to do this is using BAPI function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use function module BAPI_SALESORDER_CREATEFROMDAT1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you google with this function module, you will lot of sample codes also to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 13:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607140#M272456</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-13T13:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: sales order table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607141#M272457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use BAPI_SALESORDER_CREATEFROMDAT2 hope it help u.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat Chaitanya&lt;/P&gt;&lt;P&gt;Tata Consultancy Services Ltd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 13:50:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607141#M272457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T13:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: sales order table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607142#M272458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you have enter multiple line in BDC for a table control use call transaction code using i_bdcdata options from opt message into i_messages. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below example.&lt;/P&gt;&lt;P&gt;data: lws_cnt type char2,&lt;/P&gt;&lt;P&gt;lws_field type char15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_invoicing_plan INTO wa_invoicing_plan.&lt;/P&gt;&lt;P&gt;lws_cnt = sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = lws_cnt &lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = lws_cnt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'FPLT-AFDAT(' lws_cnt ')' INTO lws_field.&lt;/P&gt;&lt;P&gt;CONCATENATE wa_invoicing_plan-date+6(2)&lt;/P&gt;&lt;P&gt;wa_invoicing_plan-date+4(2)&lt;/P&gt;&lt;P&gt;wa_invoicing_plan-date+0(4) INTO lws_date&lt;/P&gt;&lt;P&gt;SEPARATED BY '.'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING lws_field lws_date.&lt;/P&gt;&lt;P&gt;CONCATENATE 'FPLT-FPROZ(' lws_cnt ')' INTO lws_field.&lt;/P&gt;&lt;P&gt;lws_perct = wa_invoicing_plan-percentage.&lt;/P&gt;&lt;P&gt;CONDENSE lws_perct.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING lws_field lws_perct.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While calling the transaction give like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: opt TYPE ctu_params.&lt;/P&gt;&lt;P&gt;opt-dismode = 'N'.&lt;/P&gt;&lt;P&gt;opt-updmode = 'A'.&lt;/P&gt;&lt;P&gt;opt-defsize = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcode&lt;/P&gt;&lt;P&gt;USING i_bdcdata OPTIONS FROM opt MESSAGES INTO i_messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_messages.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 13:51:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607142#M272458</guid>
      <dc:creator>pavankumar_hukkeri</dc:creator>
      <dc:date>2006-10-13T13:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: sales order table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607143#M272459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, &lt;/P&gt;&lt;P&gt;      do recording using SHDB transaction for sample&lt;/P&gt;&lt;P&gt;       data and copy the recording screen &lt;/P&gt;&lt;P&gt;       sequence in your program .   &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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 14:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607143#M272459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T14:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: sales order table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607144#M272460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use SHDB to record BDC for your VA01,&lt;/P&gt;&lt;P&gt;do not forget to press "add Item" button before every item you add, it will shift all items up to the last one which will be on the 1st row and the 2nd row will always be available for new item info.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 17:50:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sales-order-table-control/m-p/1607144#M272460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T17:50:06Z</dc:date>
    </item>
  </channel>
</rss>

