<?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: Problem while checking code in debug mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146950#M991531</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check Data type of TOT_QTY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jul 2008 08:59:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-22T08:59:59Z</dc:date>
    <item>
      <title>Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146946#M991527</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;I had developed a code in which is working gud as it is displaying the correct data but when i check it in the debug mode at the end of code where write statement is written it moves to some error which is not understandable to me.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's d code in which i am facing the problem:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: VBAK,VBAP,MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************&lt;STRONG&gt;BEGIN - DATA DECLARATION IN ITAB&lt;/STRONG&gt;*****************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;      MATNR LIKE VBAP-MATNR,      "Material Number&lt;/P&gt;&lt;P&gt;      VBELN LIKE VBAK-VBELN,      "Sales Document&lt;/P&gt;&lt;P&gt;      ERDAT LIKE VBAK-ERDAT,      "Date on Which Record Was Created&lt;/P&gt;&lt;P&gt;      WERKS LIKE VBAP-WERKS,      "Plant (Own or External)&lt;/P&gt;&lt;P&gt;      POSNR LIKE VBAP-POSNR,      "Sales Document Item&lt;/P&gt;&lt;P&gt;      SPART LIKE MARA-SPART,      "Division&lt;/P&gt;&lt;P&gt;      MEINS LIKE MARA-MEINS,      "Unit Of Measurment&lt;/P&gt;&lt;P&gt;      MTART LIKE MARA-MTART,      "Material Type&lt;/P&gt;&lt;P&gt;      NTGEW LIKE MARA-NTGEW,      "Net Weight&lt;/P&gt;&lt;P&gt;      GEWEI LIKE MARA-GEWEI,      "Weight Unit&lt;/P&gt;&lt;P&gt;      PLNUM LIKE PLAF-PLNUM,      "Planned order number&lt;/P&gt;&lt;P&gt;      GSMNG LIKE PLAF-GSMNG,      "Total planned order quantity&lt;/P&gt;&lt;P&gt;      KDAUF LIKE PLAF-KDAUF,      "Sales Order Number&lt;/P&gt;&lt;P&gt;      KDPOS LIKE PLAF-KDPOS,      "Item Number in Sales Order&lt;/P&gt;&lt;P&gt;      AUFNR LIKE AFPO-AUFNR,      "Order Number&lt;/P&gt;&lt;P&gt;      PSMNG LIKE AFPO-PSMNG,      "Order item quantity&lt;/P&gt;&lt;P&gt;      ITEMDESC LIKE MAKT-MAKTX,   "Item Description&lt;/P&gt;&lt;P&gt;      TOTWT1 LIKE PLAF-GSMNG,     "Calculation 1&lt;/P&gt;&lt;P&gt;      TOTWT2 LIKE AFPO-PSMNG,     "Calculation 2&lt;/P&gt;&lt;P&gt;      WTKG LIKE MARA-NTGEW,       "Net Weight&lt;/P&gt;&lt;P&gt;      TOT   LIKE PLAF-GSMNG,      "&lt;/P&gt;&lt;P&gt;      END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB1 OCCURS 0,&lt;/P&gt;&lt;P&gt;      MATNR LIKE VBAP-MATNR,      "Material Number&lt;/P&gt;&lt;P&gt;      VBELN LIKE VBAK-VBELN,      "Sales Document&lt;/P&gt;&lt;P&gt;      ERDAT LIKE VBAK-ERDAT,      "Date on Which Record Was Created&lt;/P&gt;&lt;P&gt;      WERKS LIKE VBAP-WERKS,      "Plant (Own or External)&lt;/P&gt;&lt;P&gt;      POSNR LIKE VBAP-POSNR,      "Sales Document Item&lt;/P&gt;&lt;P&gt;      SPART LIKE MARA-SPART,      "Division&lt;/P&gt;&lt;P&gt;      MEINS LIKE MARA-MEINS,      "Unit Of Measurment&lt;/P&gt;&lt;P&gt;      MTART LIKE MARA-MTART,      "Material Type&lt;/P&gt;&lt;P&gt;      NTGEW LIKE MARA-NTGEW,      "Net Weight&lt;/P&gt;&lt;P&gt;      GEWEI LIKE MARA-GEWEI,      "Weight Unit&lt;/P&gt;&lt;P&gt;      PLNUM LIKE PLAF-PLNUM,      "Planned order number&lt;/P&gt;&lt;P&gt;      GSMNG LIKE PLAF-GSMNG,      "Total planned order quantity&lt;/P&gt;&lt;P&gt;      KDAUF LIKE PLAF-KDAUF,      "Sales Order Number&lt;/P&gt;&lt;P&gt;      KDPOS LIKE PLAF-KDPOS,      "Item Number in Sales Order&lt;/P&gt;&lt;P&gt;      AUFNR LIKE AFPO-AUFNR,      "Order Number&lt;/P&gt;&lt;P&gt;      PSMNG LIKE AFPO-PSMNG,      "Order item quantity&lt;/P&gt;&lt;P&gt;      ITEMDESC LIKE MAKT-MAKTX,   "Item Description&lt;/P&gt;&lt;P&gt;      TOTWT1 LIKE PLAF-GSMNG,     "Calculation 1&lt;/P&gt;&lt;P&gt;      TOTWT2 LIKE AFPO-PSMNG,     "Calculation 2&lt;/P&gt;&lt;P&gt;      WTKG LIKE MARA-NTGEW,       "Net Weight&lt;/P&gt;&lt;P&gt;      TOT   LIKE PLAF-GSMNG,      "&lt;/P&gt;&lt;P&gt;      END OF ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;END - DATA DECLARATION IN ITAB&lt;/STRONG&gt;*****************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************&lt;STRONG&gt;BEGIN - ITAB FOR PL.ORDR&lt;/STRONG&gt;********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITPL OCCURS 0,&lt;/P&gt;&lt;P&gt;      MATNR LIKE PLAF-MATNR,      "Material Number&lt;/P&gt;&lt;P&gt;      KDAUF LIKE PLAF-KDAUF,      "Sales Order Number&lt;/P&gt;&lt;P&gt;      KDPOS LIKE PLAF-KDPOS,      "Item Number in Sales Order&lt;/P&gt;&lt;P&gt;      PLNUM LIKE PLAF-PLNUM,      "Planned order number&lt;/P&gt;&lt;P&gt;      GSMNG LIKE PLAF-GSMNG,      "Total planned order quantity&lt;/P&gt;&lt;P&gt;      AUFNR LIKE PLAF-AUFNR,      "Order Number&lt;/P&gt;&lt;P&gt;      VQTY  LIKE PLAF-GSMNG,&lt;/P&gt;&lt;P&gt;      END OF ITPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************&lt;STRONG&gt;END - ITAB FOR PL.ORDR&lt;/STRONG&gt;***********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;BEGIN - ITAB FOR PRD.ORDR&lt;/STRONG&gt;********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITPO OCCURS 0,&lt;/P&gt;&lt;P&gt;      MATNR LIKE AFPO-MATNR,      "Material Number&lt;/P&gt;&lt;P&gt;      KDAUF LIKE AFPO-KDAUF,      "Sales Order Number&lt;/P&gt;&lt;P&gt;      KDPOS LIKE AFPO-KDPOS,      "Item Number in Sales Order&lt;/P&gt;&lt;P&gt;      PLNUM LIKE AFPO-PLNUM,      "Planned order number&lt;/P&gt;&lt;P&gt;      PSMNG LIKE AFPO-PSMNG,      "Order item quantity&lt;/P&gt;&lt;P&gt;      AUFNR LIKE AFPO-AUFNR,      "Order Number&lt;/P&gt;&lt;P&gt;      VQTY  LIKE PLAF-GSMNG,&lt;/P&gt;&lt;P&gt;      END OF ITPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TOT_QTY LIKE PLAF-GSMNG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;END - ITAB FOR PRD.ORDR&lt;/STRONG&gt;********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;BEGIN - SELECTION SCREEN AND PARAMETERS AND VARIABLES&lt;/STRONG&gt;**********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : PLANT LIKE VBAP-WERKS OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: SO_ORD  FOR VBAK-VBELN,&lt;/P&gt;&lt;P&gt;                DIV FOR MARA-SPART,&lt;/P&gt;&lt;P&gt;                SO_DATE FOR VBAK-ERDAT,&lt;/P&gt;&lt;P&gt;                P_MATNR FOR VBAP-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;END - SELECTION SCREEN AND PARAMETERS&lt;/STRONG&gt;******&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****&lt;STRONG&gt;BEGIN - DATA RETERIVAL FROM TABLES&lt;/STRONG&gt;**********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT B&lt;SUB&gt;MATNR A&lt;/SUB&gt;VBELN A&lt;SUB&gt;ERDAT B&lt;/SUB&gt;WERKS  B&lt;SUB&gt;POSNR C&lt;/SUB&gt;SPART C&lt;SUB&gt;MEINS C&lt;/SUB&gt;MTART C&lt;SUB&gt;NTGEW C&lt;/SUB&gt;GEWEI&lt;/P&gt;&lt;P&gt;      FROM VBAK AS A&lt;/P&gt;&lt;P&gt;      INNER JOIN VBAP AS B ON B&lt;SUB&gt;VBELN = A&lt;/SUB&gt;VBELN&lt;/P&gt;&lt;P&gt;      INNER JOIN MARA AS C ON C&lt;SUB&gt;MATNR = B&lt;/SUB&gt;MATNR AND C&lt;SUB&gt;SPART = B&lt;/SUB&gt;SPART&lt;/P&gt;&lt;P&gt;      INTO TABLE ITAB WHERE C&lt;SUB&gt;MTART = 'FERT' AND B&lt;/SUB&gt;WERKS = PLANT AND A&lt;SUB&gt;VBELN IN SO_ORD AND C&lt;/SUB&gt;SPART IN DIV AND A&lt;SUB&gt;ERDAT IN SO_DATE AND B&lt;/SUB&gt;MATNR IN P_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;END - DATA RETERIVAL FROM TABLES&lt;/STRONG&gt;**********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******&lt;STRONG&gt;BEGIN - TAKING DATA FROM TABLE  ITPL AND ITPO TO ITAB&lt;/STRONG&gt;********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      REFRESH ITPL.&lt;/P&gt;&lt;P&gt;      SELECT MATNR KDAUF KDPOS PLNUM GSMNG AUFNR FROM PLAF INTO TABLE ITPL WHERE&lt;/P&gt;&lt;P&gt;      KDAUF = ITAB-VBELN AND&lt;/P&gt;&lt;P&gt;      KDPOS = ITAB-POSNR AND&lt;/P&gt;&lt;P&gt;      MATNR = ITAB-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      REFRESH ITPO.&lt;/P&gt;&lt;P&gt;      SELECT MATNR KDAUF KDPOS PLNUM PSMNG AUFNR FROM AFPO INTO TABLE ITPO WHERE&lt;/P&gt;&lt;P&gt;      KDAUF = ITAB-VBELN AND&lt;/P&gt;&lt;P&gt;      KDPOS = ITAB-POSNR AND&lt;/P&gt;&lt;P&gt;      MATNR = ITAB-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT ITPL.&lt;/P&gt;&lt;P&gt;        ITAB-GSMNG = ITAB-GSMNG + ITPL-GSMNG.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT ITPO.&lt;/P&gt;&lt;P&gt;        ITAB-PSMNG = ITAB-PSMNG + ITPO-PSMNG.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MODIFY ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SORT ITAB BY VBELN POSNR.&lt;/P&gt;&lt;P&gt;      ITAB1[] = ITAB[].&lt;/P&gt;&lt;P&gt;      SORT ITAB1 BY VBELN POSNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      TOT_QTY = ITAB1-GSMNG + ITAB1-PSMNG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE: / ITAB1-VBELN,ITAB1-MATNR,ITAB1-GSMNG,ITAB1-PSMNG,TOT_QTY,ITAB1-SPART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZZ tell me why the error is occurring?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ricx .s on Jul 22, 2008 10:51 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 08:51:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146946#M991527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T08:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146947#M991528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the error you are getting?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We aren't psychic!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 08:54:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146947#M991528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T08:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146948#M991529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ricx,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You posted your code not the problem, Can you please tell us the error that you are getting. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 08:54:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146948#M991529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T08:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146949#M991530</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;I am sorry for not highlighting the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here it is in the &lt;STRONG&gt;write&lt;/STRONG&gt; statement  :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      TOT_QTY = ITAB1-GSMNG + ITAB1-PSMNG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: / ITAB1-VBELN,ITAB1-MATNR,ITAB1-GSMNG,ITAB1-PSMNG,TOT_QTY,ITAB1-SPART.*&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ricx .s on Jul 22, 2008 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 08:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146949#M991530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T08:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146950#M991531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check Data type of TOT_QTY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 08:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146950#M991531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T08:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146951#M991532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have executed your report its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 09:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146951#M991532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T09:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146952#M991533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You still haven't told us what error you are getting!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 09:08:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146952#M991533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T09:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146953#M991534</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;I had told you my friend that i got error in the in the debug mode... more over i had changed the data type of TOT_QTY and then stored in ITAB1-TOT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the write statement:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WRITE: / ITAB1-VBELN,ITAB1-ITEMID,ITAB1-GSMNG,ITAB1-PSMNG,TOT_QTY,ITAB1-TOT,ITAB1-SPART.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the description of error in the debug mode is:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                   	1	FUNCTION CONVERSION_EXIT_ISOLA_OUTPUT.&lt;/P&gt;&lt;P&gt;                                                   	2	*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;                                                   	3	&lt;STRONG&gt;"&lt;/STRONG&gt;"Lokale Schnittstelle:&lt;/P&gt;&lt;P&gt;                                                   	4	*"       IMPORTING&lt;/P&gt;&lt;P&gt;                                                   	5	*"             VALUE(INPUT)&lt;/P&gt;&lt;P&gt;                                                   	6	*"       EXPORTING&lt;/P&gt;&lt;P&gt;                                                   	7	*"             VALUE(OUTPUT)&lt;/P&gt;&lt;P&gt;                                                   	8	*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;	9	  OUTPUT = SAVE_INPUT(1) = INPUT.&lt;/P&gt;&lt;P&gt;                                                   	10	  CHECK SAVE_INPUT(1) NA ' *'.&lt;/P&gt;&lt;P&gt;                                                   	11	  SELECT SINGLE * FROM T002 WHERE SPRAS = INPUT.&lt;/P&gt;&lt;P&gt;                                                   	12	  CHECK SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;                                                   	13	  OUTPUT = T002-LAISO.&lt;/P&gt;&lt;P&gt;                                                   	14	ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ricx .s on Jul 22, 2008 11:14 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 09:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146953#M991534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T09:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while checking code in debug mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146954#M991535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am closing as solved the problem myself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 04:34:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-checking-code-in-debug-mode/m-p/4146954#M991535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T04:34:44Z</dc:date>
    </item>
  </channel>
</rss>

