<?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: Get popup in Batch session in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692360#M889128</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;wat is the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Apr 2008 12:46:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-14T12:46:18Z</dc:date>
    <item>
      <title>Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692356#M889124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report ZPRG&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;include bdcrecx1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF GT_COUNT OCCURS 0,&lt;/P&gt;&lt;P&gt;        DOC_NUM TYPE IKPF-IBLNR,&lt;/P&gt;&lt;P&gt;        FI_YR TYPE IKPF-GJAHR,&lt;/P&gt;&lt;P&gt;        CNT_DATE TYPE IIKPF-ZLDAT,&lt;/P&gt;&lt;P&gt;        PER_VAR TYPE IIKPF-ABWEI,&lt;/P&gt;&lt;P&gt;        SER_NUM TYPE STRING,&lt;/P&gt;&lt;P&gt;       END OF GT_COUNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF GT_SERNUM OCCURS 0,&lt;/P&gt;&lt;P&gt;        SER_NUM TYPE GERNR,&lt;/P&gt;&lt;P&gt;       END OF GT_SERNUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : CNT TYPE N,&lt;/P&gt;&lt;P&gt;       FNAME TYPE STRING.&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:\Documents and Settings\sapuser\Desktop\TEST.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                      = GT_COUNT&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT GT_COUNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMM07I' '0701'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RM07I-IBLNR'.&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 'RM07I-IBLNR'&lt;/P&gt;&lt;P&gt;                              GT_COUNT-DOC_NUM.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RM07I-GJAHR'&lt;/P&gt;&lt;P&gt;                              GT_COUNT-FI_YR.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'RM07I-ZLDAT'&lt;/P&gt;&lt;P&gt;                              GT_COUNT-CNT_DATE.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMM07I' '0731'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'ISEG-ERFMG(01)'.&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 'ISEG-ERFMG(01)'&lt;/P&gt;&lt;P&gt;                              GT_COUNT-PER_VAR.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLIPW1' '0200'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'RIPW0-SERNR(02)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=RWS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH GT_SERNUM.&lt;/P&gt;&lt;P&gt;SPLIT GT_COUNT-SER_NUM AT ',' INTO TABLE GT_SERNUM.&lt;/P&gt;&lt;P&gt;CNT = 1.&lt;/P&gt;&lt;P&gt;LOOP AT GT_SERNUM.&lt;/P&gt;&lt;P&gt;CONCATENATE 'RIPW0-SERNR(' CNT ')' INTO FNAME.&lt;/P&gt;&lt;P&gt;PERFORM BDC_FIELD USING FNAME GT_SERNUM-SER_NUM.&lt;/P&gt;&lt;P&gt;CNT = CNT + 1.&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;*perform bdc_field       using 'RIPW0-SERNR(01)'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                             'RING08-001'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*perform bdc_field       using 'RIPW0-SERNR(02)'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                             'RING08-002'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMM07I' '0731'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'ISEG-ERFMG(01)'.&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;perform bdc_transaction using 'MI04'.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform close_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 14, 2008 1:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692356#M889124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692357#M889125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For what reason.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692357#M889125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692358#M889126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the issue with the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692358#M889126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692359#M889127</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;what problem ur facing code is working fine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692359#M889127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692360#M889128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;wat is the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692360#M889128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692361#M889129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m working with this issue for the past 1 week.&lt;/P&gt;&lt;P&gt;I ggot to data trnasfer for a tcode mi04.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i do it manually i m getting the scrremns proprrly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i m doing recording with the same tcode i m not getting the last pop up window&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the first screen&lt;/P&gt;&lt;P&gt;there is physical document no.&lt;/P&gt;&lt;P&gt;         year&lt;/P&gt;&lt;P&gt;date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the second there is quantity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if we press enter we shud get a pop up window asking for serial nno..which i m getting for recording..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i execute and see the result in sm35..the pop up window ids not comming and it has the message&lt;/P&gt;&lt;P&gt;BACKGROUNFD PROCESSING NOT POSSIBLE WITH MATERIAL WITH SERIAL NO REQUIREMNT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kINDLY SUGGEST SOME METHODS PLS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692361#M889129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692362#M889130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SRiRAM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i HAVE ADDED U IN MY GMAIL ACCOUNT (CHAT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sO that in future i can ask u doubts then and there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIncerely&lt;/P&gt;&lt;P&gt;jayaLatheesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:51:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692362#M889130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692363#M889131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m working with this issue for the past 1 week.&lt;/P&gt;&lt;P&gt;I ggot to data trnasfer for a tcode mi04.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i do it manually i m getting the scrremns proprrly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i m doing recording with the same tcode i m not getting the last pop up window&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the first screen&lt;/P&gt;&lt;P&gt;there is physical document no.&lt;/P&gt;&lt;P&gt;year&lt;/P&gt;&lt;P&gt;date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the second there is quantity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if we press enter we shud get a pop up window asking for serial nno..which i m getting for recording..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i execute and see the result in sm35..the pop up window ids not comming and it has the message&lt;/P&gt;&lt;P&gt;BACKGROUNFD PROCESSING NOT POSSIBLE WITH MATERIAL WITH SERIAL NO REQUIREMNT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kINDLY SUGGEST SOME METHODS PLS&lt;/P&gt;&lt;P&gt;Sincerely&lt;/P&gt;&lt;P&gt;JayalATHEESH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 12:52:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692363#M889131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T12:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692364#M889132</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;Pls reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may i ad u in my gmail..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 13:27:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692364#M889132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T13:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Get popup in Batch session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692365#M889133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No jaya U cant, this is no fair):&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 13:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-popup-in-batch-session/m-p/3692365#M889133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T13:57:00Z</dc:date>
    </item>
  </channel>
</rss>

