<?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 Regarding Genera task list in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-genera-task-list/m-p/6241328#M1382177</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guri ji,&lt;/P&gt;&lt;P&gt;we create one bdc for tcode (IA05). Under this tcode we create one  general task list.but when we are going further to create subtask list under this general task list that is not happened.Plz give solution to me .this is urgend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eport Z_IA05_CREATE_GENERAL_TAST&lt;/P&gt;&lt;P&gt;       no standard page heading line-size 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TT_ITAB,&lt;/P&gt;&lt;P&gt;        PLNNR TYPE MAPL-PLNNR,&lt;/P&gt;&lt;P&gt;        STTAG(10),&lt;/P&gt;&lt;P&gt;        KTEXT TYPE PLKO-KTEXT,&lt;/P&gt;&lt;P&gt;        WERKS TYPE MAPL-WERKS,&lt;/P&gt;&lt;P&gt;        ARBPL(8),&lt;/P&gt;&lt;P&gt;        VERWE TYPE PLKO-VERWE,&lt;/P&gt;&lt;P&gt;        VAGRP TYPE PLKO-VAGRP,&lt;/P&gt;&lt;P&gt;        STATU TYPE PLKO-STATU,&lt;/P&gt;&lt;P&gt;        STRAT type PLKO-STRAT,&lt;/P&gt;&lt;P&gt;        END OF TT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : T_ITAB TYPE STANDARD TABLE OF TT_ITAB WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       W_ITAB TYPE STANDARD TABLE OF TT_ITAB WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : FLAG TYPE C,&lt;/P&gt;&lt;P&gt;        i type i,&lt;/P&gt;&lt;P&gt;        s type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include bdcrecx1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                      = 'C:\FRom NK Singh\task_list.txt'&lt;/P&gt;&lt;P&gt;   FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt;   HAS_FIELD_SEPARATOR           = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = T_ITAB&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;LOOP AT T_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDI' '3001'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RC271-PLNNR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RC271-PLNNR'&lt;/P&gt;&lt;P&gt;                             T_ITAB-PLNNR.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RC271-STTAG'&lt;/P&gt;&lt;P&gt;                              T_ITAB-STTAG.&lt;/P&gt;&lt;P&gt;case i.&lt;/P&gt;&lt;P&gt;  when 1.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDI' '3200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'PLKOD-PLNAL(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=ANLG'.&lt;/P&gt;&lt;P&gt;when 2.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDI' '3200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'PLKOD-PLNAL(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=ANLG'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDA' '3010'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'PLKOD-STRAT'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=BU'.&lt;/P&gt;&lt;P&gt;s = s + i.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-PLNAL'&lt;/P&gt;&lt;P&gt;                              s.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-KTEXT'&lt;/P&gt;&lt;P&gt;                              T_ITAB-KTEXT.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-WERKS'&lt;/P&gt;&lt;P&gt;                              T_ITAB-WERKS.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RCR01-ARBPL'&lt;/P&gt;&lt;P&gt;                              T_ITAB-ARBPL.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RCR01-WERKS'&lt;/P&gt;&lt;P&gt;                              T_ITAB-WERKS.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-VERWE'&lt;/P&gt;&lt;P&gt;                              T_ITAB-VERWE.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-VAGRP'&lt;/P&gt;&lt;P&gt;                              T_ITAB-VAGRP.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-STATU'&lt;/P&gt;&lt;P&gt;                              T_ITAB-STATU.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-ANLZU'&lt;/P&gt;&lt;P&gt;                              '0'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-STRAT'&lt;/P&gt;&lt;P&gt;                              T_ITAB-STRAT.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-ISTRU'&lt;/P&gt;&lt;P&gt;                              ''.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'IA05'.&lt;/P&gt;&lt;P&gt;At NeW PLNNR.&lt;/P&gt;&lt;P&gt;I = I + 1.&lt;/P&gt;&lt;P&gt;s = 1.&lt;/P&gt;&lt;P&gt;  ENDAT.&lt;/P&gt;&lt;P&gt;  AT END OF PLNNR.&lt;/P&gt;&lt;P&gt;    I = 0.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Sep 2009 07:19:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-22T07:19:21Z</dc:date>
    <item>
      <title>Regarding Genera task list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-genera-task-list/m-p/6241328#M1382177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guri ji,&lt;/P&gt;&lt;P&gt;we create one bdc for tcode (IA05). Under this tcode we create one  general task list.but when we are going further to create subtask list under this general task list that is not happened.Plz give solution to me .this is urgend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eport Z_IA05_CREATE_GENERAL_TAST&lt;/P&gt;&lt;P&gt;       no standard page heading line-size 255.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TT_ITAB,&lt;/P&gt;&lt;P&gt;        PLNNR TYPE MAPL-PLNNR,&lt;/P&gt;&lt;P&gt;        STTAG(10),&lt;/P&gt;&lt;P&gt;        KTEXT TYPE PLKO-KTEXT,&lt;/P&gt;&lt;P&gt;        WERKS TYPE MAPL-WERKS,&lt;/P&gt;&lt;P&gt;        ARBPL(8),&lt;/P&gt;&lt;P&gt;        VERWE TYPE PLKO-VERWE,&lt;/P&gt;&lt;P&gt;        VAGRP TYPE PLKO-VAGRP,&lt;/P&gt;&lt;P&gt;        STATU TYPE PLKO-STATU,&lt;/P&gt;&lt;P&gt;        STRAT type PLKO-STRAT,&lt;/P&gt;&lt;P&gt;        END OF TT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : T_ITAB TYPE STANDARD TABLE OF TT_ITAB WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       W_ITAB TYPE STANDARD TABLE OF TT_ITAB WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : FLAG TYPE C,&lt;/P&gt;&lt;P&gt;        i type i,&lt;/P&gt;&lt;P&gt;        s type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include bdcrecx1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                      = 'C:\FRom NK Singh\task_list.txt'&lt;/P&gt;&lt;P&gt;   FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt;   HAS_FIELD_SEPARATOR           = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                      = T_ITAB&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;LOOP AT T_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDI' '3001'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RC271-PLNNR'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RC271-PLNNR'&lt;/P&gt;&lt;P&gt;                             T_ITAB-PLNNR.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RC271-STTAG'&lt;/P&gt;&lt;P&gt;                              T_ITAB-STTAG.&lt;/P&gt;&lt;P&gt;case i.&lt;/P&gt;&lt;P&gt;  when 1.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDI' '3200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'PLKOD-PLNAL(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=ANLG'.&lt;/P&gt;&lt;P&gt;when 2.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDI' '3200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'PLKOD-PLNAL(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=ANLG'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLCPDA' '3010'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'PLKOD-STRAT'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=BU'.&lt;/P&gt;&lt;P&gt;s = s + i.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-PLNAL'&lt;/P&gt;&lt;P&gt;                              s.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-KTEXT'&lt;/P&gt;&lt;P&gt;                              T_ITAB-KTEXT.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-WERKS'&lt;/P&gt;&lt;P&gt;                              T_ITAB-WERKS.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RCR01-ARBPL'&lt;/P&gt;&lt;P&gt;                              T_ITAB-ARBPL.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RCR01-WERKS'&lt;/P&gt;&lt;P&gt;                              T_ITAB-WERKS.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-VERWE'&lt;/P&gt;&lt;P&gt;                              T_ITAB-VERWE.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-VAGRP'&lt;/P&gt;&lt;P&gt;                              T_ITAB-VAGRP.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-STATU'&lt;/P&gt;&lt;P&gt;                              T_ITAB-STATU.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-ANLZU'&lt;/P&gt;&lt;P&gt;                              '0'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-STRAT'&lt;/P&gt;&lt;P&gt;                              T_ITAB-STRAT.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'PLKOD-ISTRU'&lt;/P&gt;&lt;P&gt;                              ''.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'IA05'.&lt;/P&gt;&lt;P&gt;At NeW PLNNR.&lt;/P&gt;&lt;P&gt;I = I + 1.&lt;/P&gt;&lt;P&gt;s = 1.&lt;/P&gt;&lt;P&gt;  ENDAT.&lt;/P&gt;&lt;P&gt;  AT END OF PLNNR.&lt;/P&gt;&lt;P&gt;    I = 0.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 07:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-genera-task-list/m-p/6241328#M1382177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T07:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Genera task list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-genera-task-list/m-p/6241329#M1382178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz tell me how we can send abap code in sdn in more redable format.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Oct 2009 12:17:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-genera-task-list/m-p/6241329#M1382178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-28T12:17:11Z</dc:date>
    </item>
  </channel>
</rss>

