<?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 in displaying the code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535447#M1264461</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess its bcoz i_pruef-VBEWERTUNG  is declared as string type while CASE statement works on char type insted use if ...else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Apr 2009 07:18:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-29T07:18:57Z</dc:date>
    <item>
      <title>Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535433#M1264447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;/SPAN&gt;Please do not have your subject in ALL CAPITALS.  Please surround any ABAP code with &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;{color}*
Hi,

I am working on a code in which i have to display the UD for a Inspection lot,the below mentioned code is working fine but i am facing a problem that there is a field 'QAVE-VBEWERTUNG' which consist of 3 types i.e. 'A' which means accepeted,'R' means rejected and '  ' means Non-Valuted.

I want to display the output  i.e. if it is 'A' then should be writtten Material us ok' and vice versa along with other data which had written in write statement.

Here's d code for it :-


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Report ZNEW32 NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: QAVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF IT_QAVE,&lt;/P&gt;&lt;P&gt;       PRUEFLOS TYPE QAVE-PRUEFLOS,&lt;/P&gt;&lt;P&gt;       VBEWERTUNG TYPE QAVE-VBEWERTUNG,&lt;/P&gt;&lt;P&gt;       VWERKS TYPE QAVE-VWERKS,&lt;/P&gt;&lt;P&gt;       VNAME TYPE QAVE-VNAME,&lt;/P&gt;&lt;P&gt;       END OF IT_QAVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  T_QAVE TYPE IT_QAVE OCCURS 0,&lt;/P&gt;&lt;P&gt;       W_QAVE TYPE IT_QAVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: VWERKS FOR QAVE-VWERKS,&lt;/P&gt;&lt;P&gt;                PRUEFLOS FOR QAVE-PRUEFLOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT PRUEFLOS VBEWERTUNG VWERKS VNAME&lt;/P&gt;&lt;P&gt;       FROM QAVE INTO TABLE T_QAVE&lt;/P&gt;&lt;P&gt;       WHERE PRUEFLOS IN PRUEFLOS AND VWERKS IN VWERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT T_QAVE BY PRUEFLOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_QAVE INTO W_QAVE.&lt;/P&gt;&lt;P&gt;  WRITE:/ W_QAVE-PRUEFLOS,W_QAVE-VBEWERTUNG,W_QAVE-VNAME.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


Plzz provide me guideleines to sove this problem.

Edited by: Matt on Apr 29, 2009 8:55 AM Added &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; tags, changed title from ALL CAPITALS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Apr 29, 2009 8:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:13:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535433#M1264447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535434#M1264448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In ur loop statement :-&lt;/P&gt;&lt;P&gt;LOOP AT T_QAVE INTO W_QAVE.&lt;/P&gt;&lt;P&gt;if  W_QAVE-VBEWERTUNG = 'A'.&lt;/P&gt;&lt;P&gt;WRITE:/ 'ur text for accepted' ,W_QAVE-PRUEFLOS,W_QAVE-VBEWERTUNG,W_QAVE-VNAME.&lt;/P&gt;&lt;P&gt;else if  W_QAVE-VBEWERTUNG = 'R'.&lt;/P&gt;&lt;P&gt;WRITE:/ 'ur text for rejected' ,W_QAVE-PRUEFLOS,W_QAVE-VBEWERTUNG,W_QAVE-VNAME.&lt;/P&gt;&lt;P&gt;else if W_QAVE-VBEWERTUNG = ' '.&lt;/P&gt;&lt;P&gt;WRITE:/ 'ur text ,W_QAVE-PRUEFLOS,W_QAVE-VBEWERTUNG,W_QAVE-VNAME.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535434#M1264448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535435#M1264449</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;The values for this QAVE-VBEWERTUNG field are stored in the domain level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can hard code these values ....&lt;/P&gt;&lt;P&gt;like when ever A is coming &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;case QAVE-VBEWERTUNG .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'A'.&lt;/P&gt;&lt;P&gt;write:/ QAVE-VBEWERTUNG, 'Accepted (OK)' , W_QAVE-PRUEFLOS,W_QAVE-VNAME.&lt;/P&gt;&lt;P&gt;when 'R'.&lt;/P&gt;&lt;P&gt;write:/ QAVE-VBEWERTUNG,  ' Rejected (not OK)' , W_QAVE-PRUEFLOS,W_QAVE-VNAME..&lt;/P&gt;&lt;P&gt;when others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ QAVE-VBEWERTUNG, 'Not valuated' , W_QAVE-PRUEFLOS,W_QAVE-VNAME..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&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;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535435#M1264449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535436#M1264450</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;Thanks for your reply ,problem is solved. but 1 thing is there is it possible to the value of text in a variable bcoz i have to move further it to the SAPSCRIPT where i was displaying the only value in the script but not the text .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz provide me guidelines to solve this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535436#M1264450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535437#M1264451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text for variable:&lt;/P&gt;&lt;P&gt;Table DD07T with DOMNAME = 'QBEWERTUNG'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535437#M1264451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535438#M1264452</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 tried to work  on the program of sap script where the data about A,R and ' ' is be differentiated .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's d code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: AA type string ,&lt;/P&gt;&lt;P&gt;      BB type string,&lt;/P&gt;&lt;P&gt;      CC type string,&lt;/P&gt;&lt;P&gt;      i_pruef-vbewertung type string,&lt;/P&gt;&lt;P&gt;      i_final2-vbewertung type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AA = 'This material is Accepted and good for consumption'.&lt;/P&gt;&lt;P&gt;BB = 'This material is Rejected and not good for consumption'.&lt;/P&gt;&lt;P&gt;CC = 'This material is Not valuated'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_pruef.&lt;/P&gt;&lt;P&gt;    i_final2-werk = i_pruef-werk.&lt;/P&gt;&lt;P&gt;    i_final2-art  = i_pruef-art.&lt;/P&gt;&lt;P&gt;    i_final2-matnr = i_pruef-matnr.&lt;/P&gt;&lt;P&gt;    i_final2-charg = i_pruef-charg.&lt;/P&gt;&lt;P&gt;    i_final2-prueflos = i_pruef-prueflos.&lt;/P&gt;&lt;P&gt;    i_final2-aufnr = i_pruef-aufnr.&lt;/P&gt;&lt;P&gt;    i_final2-gesstichpr = i_pruef-gesstichpr.&lt;/P&gt;&lt;P&gt;    i_final2-losmenge  =  i_pruef-losmenge.&lt;/P&gt;&lt;P&gt;**********************************************************************&lt;/P&gt;&lt;P&gt;case i_pruef-VBEWERTUNG.&lt;/P&gt;&lt;P&gt;when 'A'.&lt;/P&gt;&lt;P&gt;i_pruef-vbewertung = AA.   "New Field Added&lt;/P&gt;&lt;P&gt;when 'R'.&lt;/P&gt;&lt;P&gt;i_pruef-vbewertung = BB.   "New Field Added&lt;/P&gt;&lt;P&gt;when ''.&lt;/P&gt;&lt;P&gt;i_pruef-vbewertung = CC.   "New Field Added&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;**********************************************************************&lt;/P&gt;&lt;P&gt;    i_final2-vbewertung = i_pruef-vbewertung.   "New Field Added&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT i_final1 WHERE prueflos = i_pruef-prueflos.&lt;/P&gt;&lt;P&gt;      i_final2-vorglfnr = i_final1-vorglfnr.&lt;/P&gt;&lt;P&gt;      i_final2-merknr   = i_final1-merknr.&lt;/P&gt;&lt;P&gt;      i_final2-pruefbemkt = i_final1-pruefbemkt.&lt;/P&gt;&lt;P&gt;      i_final2-anzfehleh  = i_final1-anzfehleh.&lt;/P&gt;&lt;P&gt;      i_final2-original_input = i_final1-original_input.&lt;/P&gt;&lt;P&gt;      i_final2-verwmerkm = i_final1-verwmerkm.&lt;/P&gt;&lt;P&gt;      i_final2-kurztext  = i_final1-kurztext.&lt;/P&gt;&lt;P&gt;      i_final2-merkgew   = i_final1-merkgew.&lt;/P&gt;&lt;P&gt;      APPEND i_final2.&lt;/P&gt;&lt;P&gt;      flag = 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;The problem is when i debugg the code in this the inspection lot UD Decision is going to the last statement of the CASE where as in reality it should store the first value of the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz provide me guidelines to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ricx .s on Apr 29, 2009 8:35 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 05:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535438#M1264452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T05:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535439#M1264453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the value in  i_pruef-VBEWERTUNG while debugging.&lt;/P&gt;&lt;P&gt;And in when clause give when ' '  . (instead of when '' , u need to give a space in between.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535439#M1264453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535440#M1264454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Please do not have your subject in ALL CAPITALS.  Please surround any ABAP code with &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:56:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535440#M1264454</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-29T06:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535441#M1264455</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 tried to give spce there where you had mentioned but still moving to the  CC.&lt;/P&gt;&lt;P&gt;The real value which should be A as that inspection lot is being accepted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535441#M1264455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535442#M1264456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the value in  i_pruef-VBEWERTUNG while debugging before u assign it to 'CC'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 06:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535442#M1264456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T06:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535443#M1264457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok,next time i will.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 07:00:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535443#M1264457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T07:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535444#M1264458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is &lt;STRONG&gt;A&lt;/STRONG&gt; which means the lot has been accepted, but when i execute case the problem arises.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 07:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535444#M1264458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T07:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535445#M1264459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try commenting the last WHEN statement corresponding to 'CC' value and see what happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 07:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535445#M1264459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T07:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535446#M1264460</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 solved the problem by making the change in the code myself. thanks for ur help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ricx .s on Apr 29, 2009 9:16 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 07:12:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535446#M1264460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T07:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in displaying the code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535447#M1264461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess its bcoz i_pruef-VBEWERTUNG  is declared as string type while CASE statement works on char type insted use if ...else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2009 07:18:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-displaying-the-code/m-p/5535447#M1264461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-29T07:18:57Z</dc:date>
    </item>
  </channel>
</rss>

