<?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 Length in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837724#M356347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am entereing a number whose length is 9 characters longs... The system should proceed only if the length is equal to 9 characters.. How could i check that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Jan 2007 14:09:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-31T14:09:47Z</dc:date>
    <item>
      <title>Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837724#M356347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am entereing a number whose length is 9 characters longs... The system should proceed only if the length is equal to 9 characters.. How could i check that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837724#M356347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837725#M356348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the syntax is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data w_length(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data w_field(9).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_field = '12345678'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_length = STRLEN( w_field )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway the command is STRLEN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:13:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837725#M356348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837726#M356349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;strlen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Report zex33.&lt;/P&gt;&lt;P&gt;parameter : str(9).&lt;/P&gt;&lt;P&gt;data : len type i.&lt;/P&gt;&lt;P&gt;len = STRLEN( str ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if len eq 9.&lt;/P&gt;&lt;P&gt;  write : / str.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;  write : / 'String length is not equal to 9'.&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837726#M356349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837727#M356350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi alexander,&lt;/P&gt;&lt;P&gt;   you can store the inpur number in a field defined as string&lt;/P&gt;&lt;P&gt;then you can use STRLEN keyword to get the length&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837727#M356350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837728#M356351</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;Use  &amp;lt;b&amp;gt;STRLEN&amp;lt;/b&amp;gt; to get lenth of the field. &lt;/P&gt;&lt;P&gt;&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;Balavardhan.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837728#M356351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837729#M356352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the DESCRIBE statetment to get the length of the field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837729#M356352</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-01-31T14:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837730#M356353</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;Assign the value to string &amp;amp; calculate the length of string (strlen). if it is less than 9 then throw an error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashvender&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837730#M356353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837731#M356354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: len type i.
parameters: p_fld(9) type c.


at selection-screen.

   len = strlen( p_fld ).
    if len &amp;lt;&amp;gt; 9.
      message e001(00) with 'Value does not have a length of 9'.
    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837731#M356354</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-31T14:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837732#M356355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let's say the user enters SERNR &lt;/P&gt;&lt;P&gt;What would be the statement to check whether is it 9 characters or not....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837732#M356355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837733#M356356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check V1 = &amp;lt;b&amp;gt;strlen(field).&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;if V1 = 9.&lt;/P&gt;&lt;P&gt;  do the processing.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:15:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837733#M356356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837734#M356357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the code... I have to make sure that I_SERNR  then it has to process the code... How can i do that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: I_EQUI LIKE EQUI.&lt;/P&gt;&lt;P&gt; DATA: I_SERNR LIKE EQUI-SERNR.&lt;/P&gt;&lt;P&gt; I_SERNR = SERNR.&lt;/P&gt;&lt;P&gt; SHIFT I_SERNR LEFT DELETING LEADING '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DATA: SERNR LIKE EQUI-SERNR.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DATA: MATNR TYPE MATNR.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF SY-TCODE = 'MB31'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT SINGLE * FROM EQUI INTO I_EQUI&lt;/P&gt;&lt;P&gt;                   WHERE EQTYP = 'S'&lt;/P&gt;&lt;P&gt;                   AND MATNR = MATNR&lt;/P&gt;&lt;P&gt;                   AND SERNR = SERNR.&lt;/P&gt;&lt;P&gt;   IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;     MESSAGE E398(00) WITH 'SERIAL NUMBER ALREADY EXISTS'.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     IF I_SERNR&lt;EM&gt;0(1) = '2' OR I_SERNR&lt;/EM&gt;0(1) = '3' OR I_SERNR+0(1) = '6'.&lt;/P&gt;&lt;P&gt;       IF I_SERNR&lt;EM&gt;1(2) = SY-DATUM&lt;/EM&gt;2(2).&lt;/P&gt;&lt;P&gt;         IF I_SERNR&lt;EM&gt;3(2) LE SY-DATUM&lt;/EM&gt;4(2).&lt;/P&gt;&lt;P&gt;           IF I_SERNR&lt;EM&gt;5(4) GT '0000' AND I_SERNR&lt;/EM&gt;5(4) LT '9999'.&lt;/P&gt;&lt;P&gt;           ELSE.&lt;/P&gt;&lt;P&gt;             MESSAGE E398(00) WITH 'PLEASE ENTER RANGE WITHIN 0000 AND 9999'.&lt;/P&gt;&lt;P&gt;           ENDIF.&lt;/P&gt;&lt;P&gt;         ELSE.&lt;/P&gt;&lt;P&gt;           MESSAGE E398(00) WITH 'PLEASE ENTER A DATE IN THE PAST'.&lt;/P&gt;&lt;P&gt;         ENDIF.&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;         IF I_SERNR&lt;EM&gt;1(2) LT SY-DATUM&lt;/EM&gt;2(2).&lt;/P&gt;&lt;P&gt;           IF I_SERNR&lt;EM&gt;5(4) GT '0000' AND I_SERNR&lt;/EM&gt;5(4) LT '9999'.&lt;/P&gt;&lt;P&gt;           ELSE.&lt;/P&gt;&lt;P&gt;             MESSAGE E398(00) WITH 'PLEASE ENTER RANGE WITHIN 0000 AND 9999'.&lt;/P&gt;&lt;P&gt;           ENDIF.&lt;/P&gt;&lt;P&gt;         ELSE.&lt;/P&gt;&lt;P&gt;           MESSAGE E398(00) WITH 'PLEASE ENTER A DATE IN THE PAST'.&lt;/P&gt;&lt;P&gt;         ENDIF.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         MESSAGE E398(00) WITH 'INVALID MANUFACTURING SITE'.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;     SELECT SINGLE * FROM EQUI INTO I_EQUI&lt;/P&gt;&lt;P&gt;                     WHERE EQTYP = 'S'&lt;/P&gt;&lt;P&gt;                     AND MATNR = MATNR&lt;/P&gt;&lt;P&gt;                     AND SERNR = SERNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;       MESSAGE E398(00) WITH 'PLEASE ENTER A VALID SERIAL NUMBER'.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837734#M356357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837735#M356358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I_SERNR has to be 9 characters long..How can do that..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:22:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837735#M356358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837736#M356359</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;Do like this:&lt;/P&gt;&lt;P&gt;data: length type i.&lt;/P&gt;&lt;P&gt;data: v_string type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; v_string = I_SERNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write this code before IF statement(SY-TCODE = 'MB31'). &lt;/P&gt;&lt;P&gt;   length  = strlen( v_string ).&lt;/P&gt;&lt;P&gt;    if length &amp;lt;&amp;gt; 9.&lt;/P&gt;&lt;P&gt;      message e000(0) with 'Value length is not = 9'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashvender&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837736#M356359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837737#M356360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: I_EQUI LIKE EQUI.
DATA: I_SERNR LIKE EQUI-SERNR.
I_SERNR = SERNR.
SHIFT I_SERNR LEFT DELETING LEADING '0'.

* DATA: SERNR LIKE EQUI-SERNR.
* DATA: MATNR TYPE MATNR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: len type i.
len = strlen( i_sernr ).
if len &amp;lt;&amp;gt; 9.
message e001(00) with 'SERNR value not = 9'.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF SY-TCODE = 'MB31'.

SELECT SINGLE * FROM EQUI INTO I_EQUI
WHERE EQTYP = 'S'
AND MATNR = MATNR
AND SERNR = SERNR.
IF SY-SUBRC EQ 0.
MESSAGE E398(00) WITH 'SERIAL NUMBER ALREADY EXISTS'.
ELSE.
........

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:50:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837737#M356360</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-31T14:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837738#M356361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this current the serial number 2,3 digits are validated against year, 4,5 digits are validated against month.  When I enter 13 for the month it is accepting and validating. Also I have to make to sure the valid years are current year and past year, valid months are current month and past month... how to achieve it .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 15:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837738#M356361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T15:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: Length</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837739#M356362</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 hope following code will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA  : v_len TYPE i.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_num(9) TYPE n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON p_num.&lt;/P&gt;&lt;P&gt;v_len = STRLEN( p_num ).&lt;/P&gt;&lt;P&gt;IF v_len &amp;lt;&amp;gt; 9.&lt;/P&gt;&lt;P&gt;IF v_len &amp;lt; 9.&lt;/P&gt;&lt;P&gt;MESSAGE 'Length of p_num is Less Than 9' TYPE 'E'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;MESSAGE 'Length of p_num is Greater Than 9' TYPE 'E'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 17:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/length/m-p/1837739#M356362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T17:37:11Z</dc:date>
    </item>
  </channel>
</rss>

