<?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: regarding alpha numeric check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947909#M64641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF fname CO alphanumeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jun 2005 06:34:12 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2005-06-27T06:34:12Z</dc:date>
    <item>
      <title>regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947908#M64640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey i used below code to check my input file name has&lt;/P&gt;&lt;P&gt;alpha numric check (0-9,A-Z,-) or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.&lt;/P&gt;&lt;P&gt;if fname CA alphanumeric.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;MESSAGE E002.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;was my check is correct...i guess i am lacking something here...&lt;/P&gt;&lt;P&gt;if i enter other than this(0-9,A-Z,-) it should give me error..&lt;/P&gt;&lt;P&gt;how to do this..ppls correct me..&lt;/P&gt;&lt;P&gt;ambichan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 06:08:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947908#M64640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T06:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947909#M64641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF fname CO alphanumeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 06:34:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947909#M64641</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-06-27T06:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947910#M64642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey sorry for my poor explanation.&lt;/P&gt;&lt;P&gt;actually my requirement is..if user input&lt;/P&gt;&lt;P&gt;other than number,Alphabets,and hyphen it should display me error.&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.&lt;/P&gt;&lt;P&gt;if fname CO alphanumeric.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;MESSAGE E002.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ABove code allows ABC$% input without displaying error.&lt;/P&gt;&lt;P&gt;(Except Alphanumeric, even if you enter 1 special character also it should display me error..)&lt;/P&gt;&lt;P&gt;ambichan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: ambi chan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 06:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947910#M64642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T06:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947911#M64643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: fname(50) .&lt;/P&gt;&lt;P&gt;data: an(50) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde '_' INTO an.&lt;/P&gt;&lt;P&gt;if fname Co an.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;MESSAGE i398(00) with 'error' .&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 07:10:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947911#M64643</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-06-27T07:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947912#M64644</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;  Try the option CS(Contains String) as this is not case sensitive,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if fname cs alphanumeric.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 07:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947912#M64644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T07:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947913#M64645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry , i don't understand ?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you mean s.th like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON fname.
  CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.
  IF fname CN alphanumeric.
    MESSAGE e001(00) WITH 'error'.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 07:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947913#M64645</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-06-27T07:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947914#M64646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;I am really confused with all tests.&lt;/P&gt;&lt;P&gt;First let me try to put the question properly here.&lt;/P&gt;&lt;P&gt;I have parameter taking Input as Fname.ie FILE NAME.&lt;/P&gt;&lt;P&gt;Here if i wrongly enter input Fname as any special character,say ( !@#$%^&amp;amp;*()_+.)it should throw me error.&lt;/P&gt;&lt;P&gt;Wrong input options can be for example as below.&lt;/P&gt;&lt;P&gt;1-ABC*%&lt;/P&gt;&lt;P&gt;2-*123'(&lt;/P&gt;&lt;P&gt;3- "#123ABC&lt;/P&gt;&lt;P&gt;Correct inputs are&lt;/P&gt;&lt;P&gt;1-ABC123&lt;/P&gt;&lt;P&gt;2-123ABC_&lt;/P&gt;&lt;P&gt;3-ABC_123&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;i hope now i am clear with my question explaining what i want...does all answer posted here matches my question.?.pls correct me..&lt;/P&gt;&lt;P&gt;ambichan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: ambi chan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 07:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947914#M64646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T07:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947915#M64647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ambi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you test the solution provided by Andreas, it seems to work fine, no ?&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;Erwan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 07:53:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947915#M64647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T07:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947916#M64648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.its not working.&lt;/P&gt;&lt;P&gt;First i checked this&lt;/P&gt;&lt;P&gt;CASE-1&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON fname.&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.&lt;/P&gt;&lt;P&gt;if fname CN alphanumeric.&lt;/P&gt;&lt;P&gt;MESSAGE E002.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;Above code allows me to input both 'ABC' and 'ABC&amp;amp;('.&lt;/P&gt;&lt;P&gt;CASE-2&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON fname.&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.&lt;/P&gt;&lt;P&gt;if fname CN alphanumeric.&lt;/P&gt;&lt;P&gt;MESSAGE E002.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;here it gives error even if i Enter only alphabets..&lt;/P&gt;&lt;P&gt;what to do...&lt;/P&gt;&lt;P&gt;just struck up..here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 08:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947916#M64648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T08:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947917#M64649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've checked the following code and it works fine :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST_3                                 .

data : alphanumeric(70).

parameters: fname(50) .


AT SELECTION-SCREEN ON fname.
  CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.
  IF fname CN alphanumeric.
    MESSAGE e001(00) WITH 'error'.
  ENDIF.


  start-of-selection.

  write:/ 'OK'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABC is OK, but not ABC&amp;amp; .&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;Erwan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 08:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947917#M64649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T08:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947918#M64650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well. I accept it works with your program.&lt;/P&gt;&lt;P&gt;Could you pls check out my code..where the bug is..&lt;/P&gt;&lt;P&gt;TYPES: MSGTEXT_T(700).&lt;/P&gt;&lt;P&gt;DATA REC(400) type c.&lt;/P&gt;&lt;P&gt;DATA FOUT(90) type C.&lt;/P&gt;&lt;P&gt;DATA FPATH(200) TYPE C.&lt;/P&gt;&lt;P&gt;DATA FORMAT LIKE FILENAME-FILEFORMAT.&lt;/P&gt;&lt;P&gt;DATA FLAG(20) TYPE C.&lt;/P&gt;&lt;P&gt;CONSTANTS: VAR_PART_LG TYPE I VALUE 64.&lt;/P&gt;&lt;P&gt;CONSTANTS: ZCLIENT LIKE SY-MANDT VALUE '800'.&lt;/P&gt;&lt;P&gt;CONSTANTS: ZENV LIKE SY-OPSYS VALUE 'NT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ENTRIESTAB OCCURS 2000.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE RSLGETAB.&lt;/P&gt;&lt;P&gt;DATA : END OF ENTRIESTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF AUX_slgproc. " LIKE rslgpid&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE RSLGPID.&lt;/P&gt;&lt;P&gt;DATA  END OF AUX_slgproc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF GEN_OUTLINE          "generic&lt;/P&gt;&lt;P&gt;    ,   TSKNA(3)        "new taskname&lt;/P&gt;&lt;P&gt;    ,   TSKNU(2).        "tasknumber&lt;/P&gt;&lt;P&gt;DATA: END OF GEN_OUTLINE.&lt;/P&gt;&lt;P&gt;DATA : HIDE_PARAMS      LIKE RSLGTYPE-PARAMARRAY.   " C(620)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF DISPLAY_TAB occurs 0&lt;/P&gt;&lt;P&gt;     ,DIS_DATE(10) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_TIME(8) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_TSKNA(3) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_TSKNU(2) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGMAND(3) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGLTRM(8) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGUSER(12) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGTC(10) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_MSGID(4) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_MSGTXT(316) TYPE C.&lt;/P&gt;&lt;P&gt;DATA : END OF DISPLAY_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : alphanumeric(37) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF CUR_SYSLOGTAB.          " struct, not table ! !&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE RSLGTCACHE.&lt;/P&gt;&lt;P&gt;DATA: END OF CUR_SYSLOGTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : BEGIN OF TA.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE RSLGSEL.&lt;/P&gt;&lt;P&gt;Data : END OF TA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : BEGIN OF INFO_AFTERFILE.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE RSLGFINFO.&lt;/P&gt;&lt;P&gt;Data : END OF INFO_AFTERFILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  L11_CATCHED_ERRNO(6)&lt;/P&gt;&lt;P&gt;      , L11_CATCHED_T100(5)&lt;/P&gt;&lt;P&gt;      , HIDE_TEXT    TYPE MSGTEXT_T        " Long.&lt;/P&gt;&lt;P&gt;      , HIDE_TEXT_LG TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF AN_ENTRY. " LIKE RSLGENTR.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE RSLGENTR.&lt;/P&gt;&lt;P&gt;DATA: END OF AN_ENTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTIOn-SCREEN BEGIN OF BLOCK BLK1 with FRAME TITLE text-ex0.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex1.&lt;/P&gt;&lt;P&gt;PARAMETERS : SDATE LIKE SY-DATUM OBLIGATORY.&lt;/P&gt;&lt;P&gt;selection-screen comment 35(10) text-ex2.&lt;/P&gt;&lt;P&gt;PARAMETERS : STIME LIKE SY-UZEIT OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex3.&lt;/P&gt;&lt;P&gt;PARAMETERS : EDATE LIKE SY-DATUM.&lt;/P&gt;&lt;P&gt;selection-screen comment 35(10) text-ex4.&lt;/P&gt;&lt;P&gt;PARAMETERS : ETIME LIKE SY-UZEIT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex8.&lt;/P&gt;&lt;P&gt;PARAMETERS : E_FILE LIKE FILENAME-FILEINTERN DEFAULT 'ZLOGICFILE'&lt;/P&gt;&lt;P&gt;OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex5.&lt;/P&gt;&lt;P&gt;PARAMETERS : FNAME(36) TYPE C OBLIGATORY.&lt;/P&gt;&lt;P&gt;PARAMETERS : FTXT(3) TYPE C DEFAULT 'TXT'.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BLK1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: MSGTEXT_T(700).&lt;/P&gt;&lt;P&gt;DATA REC(400) type c.&lt;/P&gt;&lt;P&gt;DATA FOUT(90) type C.&lt;/P&gt;&lt;P&gt;DATA FPATH(200) TYPE C.&lt;/P&gt;&lt;P&gt;DATA FORMAT LIKE FILENAME-FILEFORMAT.&lt;/P&gt;&lt;P&gt;DATA FLAG(20) TYPE C.&lt;/P&gt;&lt;P&gt;CONSTANTS: VAR_PART_LG TYPE I VALUE 64.&lt;/P&gt;&lt;P&gt;CONSTANTS: ZCLIENT LIKE SY-MANDT VALUE '800'.&lt;/P&gt;&lt;P&gt;CONSTANTS: ZENV LIKE SY-OPSYS VALUE 'NT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ENTRIESTAB OCCURS 2000.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE RSLGETAB.&lt;/P&gt;&lt;P&gt;DATA : END OF ENTRIESTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF AUX_slgproc. " LIKE rslgpid&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE RSLGPID.&lt;/P&gt;&lt;P&gt;DATA  END OF AUX_slgproc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF GEN_OUTLINE          "generic&lt;/P&gt;&lt;P&gt;    ,   TSKNA(3)        "new taskname&lt;/P&gt;&lt;P&gt;    ,   TSKNU(2).        "tasknumber&lt;/P&gt;&lt;P&gt;DATA: END OF GEN_OUTLINE.&lt;/P&gt;&lt;P&gt;DATA : HIDE_PARAMS      LIKE RSLGTYPE-PARAMARRAY.   " C(620)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF DISPLAY_TAB occurs 0&lt;/P&gt;&lt;P&gt;     ,DIS_DATE(10) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_TIME(8) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_TSKNA(3) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_TSKNU(2) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGMAND(3) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGLTRM(8) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGUSER(12) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_SLGTC(10) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_MSGID(4) TYPE C&lt;/P&gt;&lt;P&gt;     ,DIS_MSGTXT(316) TYPE C.&lt;/P&gt;&lt;P&gt;DATA : END OF DISPLAY_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : alphanumeric(37) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF CUR_SYSLOGTAB.          " struct, not table ! !&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE RSLGTCACHE.&lt;/P&gt;&lt;P&gt;DATA: END OF CUR_SYSLOGTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : BEGIN OF TA.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE RSLGSEL.&lt;/P&gt;&lt;P&gt;Data : END OF TA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : BEGIN OF INFO_AFTERFILE.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE RSLGFINFO.&lt;/P&gt;&lt;P&gt;Data : END OF INFO_AFTERFILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  L11_CATCHED_ERRNO(6)&lt;/P&gt;&lt;P&gt;      , L11_CATCHED_T100(5)&lt;/P&gt;&lt;P&gt;      , HIDE_TEXT    TYPE MSGTEXT_T        " Long.&lt;/P&gt;&lt;P&gt;      , HIDE_TEXT_LG TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF AN_ENTRY. " LIKE RSLGENTR.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE RSLGENTR.&lt;/P&gt;&lt;P&gt;DATA: END OF AN_ENTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTIOn-SCREEN BEGIN OF BLOCK BLK1 with FRAME TITLE text-ex0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex1.&lt;/P&gt;&lt;P&gt;PARAMETERS : SDATE LIKE SY-DATUM OBLIGATORY.&lt;/P&gt;&lt;P&gt;selection-screen comment 35(10) text-ex2.&lt;/P&gt;&lt;P&gt;PARAMETERS : STIME LIKE SY-UZEIT OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex3.&lt;/P&gt;&lt;P&gt;PARAMETERS : EDATE LIKE SY-DATUM.&lt;/P&gt;&lt;P&gt;selection-screen comment 35(10) text-ex4.&lt;/P&gt;&lt;P&gt;PARAMETERS : ETIME LIKE SY-UZEIT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex8.&lt;/P&gt;&lt;P&gt;PARAMETERS : E_FILE LIKE FILENAME-FILEINTERN DEFAULT 'ZLOGICFILE'&lt;/P&gt;&lt;P&gt;OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;*&amp;amp;#12501;&amp;amp;#12449;&amp;amp;#12452;&amp;amp;#12523;&amp;amp;#21517;&amp;amp;#35373;&amp;amp;#23450;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;selection-screen comment 5(15) text-ex5.&lt;/P&gt;&lt;P&gt;PARAMETERS : FNAME(36) TYPE C OBLIGATORY.&lt;/P&gt;&lt;P&gt;PARAMETERS : FTXT(3) TYPE C DEFAULT 'TXT'.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BLK1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE sdate(4) sdate&lt;EM&gt;4(2) sdate&lt;/EM&gt;6(2) stime(2) stime+2(2)&lt;/P&gt;&lt;P&gt;stime+4(2) '00' INTO TA-STARTDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Edate = '00000000'.&lt;/P&gt;&lt;P&gt;CONCATENATE sy-datum(4) sy-datum&lt;EM&gt;4(2) sy-datum&lt;/EM&gt;6(2) sy-uzeit(2)&lt;/P&gt;&lt;P&gt;sy-uzeit&lt;EM&gt;2(2) sy-uzeit&lt;/EM&gt;4(2) '00' INTO TA-STOP_DATE.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;CONCATENATE edate(4) edate&lt;EM&gt;4(2) edate&lt;/EM&gt;6(2) etime(2) etime+2(2)&lt;/P&gt;&lt;P&gt;etime+4(2) '00' INTO TA-STOP_DATE.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF  SDATE &amp;gt;&amp;lt; '        ' AND SDATE &amp;gt;&amp;lt; '00000000'&lt;/P&gt;&lt;P&gt;  AND STIME &amp;gt;&amp;lt; '      '   AND STIME &amp;gt;&amp;lt; '000000'&lt;/P&gt;&lt;P&gt;  AND EDATE   &amp;gt;&amp;lt; '        ' AND EDATE   &amp;gt;&amp;lt; '00000000'&lt;/P&gt;&lt;P&gt;  AND ETIME   &amp;gt;&amp;lt; '      '   AND ETIME   &amp;gt;&amp;lt; '000000' .&lt;/P&gt;&lt;P&gt;    "All four fields given.&lt;/P&gt;&lt;P&gt;    IF SDATE &amp;gt; EDATE.&lt;/P&gt;&lt;P&gt;      MESSAGE E001.&lt;/P&gt;&lt;P&gt;    ELSEIF SDATE = EDATE&lt;/P&gt;&lt;P&gt;    AND    STIME &amp;gt; ETIME.&lt;/P&gt;&lt;P&gt;      MESSAGE E001.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ELSEIF  SDATE &amp;gt;&amp;lt; '        ' AND SDATE &amp;gt;&amp;lt; '00000000'&lt;/P&gt;&lt;P&gt;  AND     EDATE   &amp;gt;&amp;lt; '        ' AND EDATE   &amp;gt;&amp;lt; '00000000'&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;    "Two date fields given.&lt;/P&gt;&lt;P&gt;    IF SDATE &amp;gt; EDATE.&lt;/P&gt;&lt;P&gt;      MESSAGE E001.&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;&amp;lt;b&amp;gt;AT SELECTION-SCREEN ON fname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric.&lt;/P&gt;&lt;P&gt;if fname CN alphanumeric.&lt;/P&gt;&lt;P&gt;MESSAGE E002.&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM GETFPATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM GETFPATH.&lt;/P&gt;&lt;P&gt;CONCATENATE FNAME FTXT INTO FOUT SEPARATED BY '.'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FILE_GET_NAME'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   CLIENT                        = ZCLIENT&lt;/P&gt;&lt;P&gt;   LOGICAL_FILENAME              = E_FILE&lt;/P&gt;&lt;P&gt;   OPERATING_SYSTEM              = ZENV&lt;/P&gt;&lt;P&gt;   PARAMETER_1                   = FOUT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_2                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_3                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USE_PRESENTATION_SERVER       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITH_FILE_EXTENSION           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USE_BUFFER                    = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   EMERGENCY_FLAG                = FLAG&lt;/P&gt;&lt;P&gt;   FILE_FORMAT                   = FORMAT&lt;/P&gt;&lt;P&gt;   FILE_NAME                     = FPATH&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FILE_NOT_FOUND                = 1&lt;/P&gt;&lt;P&gt;   OTHERS                        = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE E004.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 08:40:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947918#M64650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T08:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947919#M64651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ambichan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know why your code doesn't work. but can you just try to do something like this - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_test(100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: len          type i,
      alphanumeric type string.


initialization.
  concatenate sy-abcde
              '0123456789'
              '_'
         into alphanumeric.

at selection-screen.
  len = strlen( p_test ).
  if ( p_test cn alphanumeric ).
    if len ne sy-fdpos.
      message i888(bctrain) with 'Error!!'.
    endif.
  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;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 08:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947919#M64651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T08:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947920#M64652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've checked your code.&lt;/P&gt;&lt;P&gt;It is possible that it check for the "space" value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this : &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : alphanumeric(38)

AT SELECTION-SCREEN ON fname.

  CONCATENATE '0123456789' sy-abcde '_' INTO alphanumeric+1(37).
  IF fname CN alphanumeric.
    MESSAGE e002.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover, of topic but a tip, when you check for the date value :&lt;/P&gt;&lt;P&gt;Instead of using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SDATE &amp;gt;&amp;lt; ' ' AND SDATE &amp;gt;&amp;lt; '00000000'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SDATE ne space&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;&lt;/P&gt;&lt;P&gt;Erwan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Erwan LE BRUN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Erwan LE BRUN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 08:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947920#M64652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T08:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947921#M64653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erwan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't we &amp;lt;i&amp;gt;usually&amp;lt;/i&amp;gt; (not necessarily) make the date field obligatory in such cases ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 08:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947921#M64653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T08:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: regarding alpha numeric check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947922#M64654</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;Just try the following.It is meeting your requirement[allowed alphabets,letters,-].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter fname(37) type c.&lt;/P&gt;&lt;P&gt;data alphanumeric(37).&lt;/P&gt;&lt;P&gt;data ch(37).&lt;/P&gt;&lt;P&gt;data l type i.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON fname.&lt;/P&gt;&lt;P&gt;CONCATENATE '0123456789' sy-abcde INTO alphanumeric.&lt;/P&gt;&lt;P&gt;if fname CN alphanumeric .&lt;/P&gt;&lt;P&gt;l = strlen( fname ).&lt;/P&gt;&lt;P&gt;ch = fname.&lt;/P&gt;&lt;P&gt;do l times.&lt;/P&gt;&lt;P&gt;replace '-' with '0' into ch.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;if ch cn alphanumeric.&lt;/P&gt;&lt;P&gt;MESSAGE E005 with 'error'.&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>Mon, 27 Jun 2005 09:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-alpha-numeric-check/m-p/947922#M64654</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-27T09:07:31Z</dc:date>
    </item>
  </channel>
</rss>

