<?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: Syntax error..How to resolve this in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405951#M1047180</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;You can Use "CONCATENATE" on the fileds which are of type (C,N,D,T or STRING).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But PLIFZ is of type Decimal , so you are getting the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare a temporary variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: w_temp type char3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE wa_plifz to w_temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use w_temp in CONCATENATE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 06:23:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-25T06:23:14Z</dc:date>
    <item>
      <title>Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405946#M1047175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, I am getting error in the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;TABLES: lfa1,&lt;/P&gt;&lt;P&gt;        adr6,&lt;/P&gt;&lt;P&gt;        lfb1,&lt;/P&gt;&lt;P&gt;        lfm1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;------- TYPES Declarations&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF it_lfa1 ,&lt;/P&gt;&lt;P&gt;            lifnr  TYPE lfa1-lifnr,        "Account Number of Vendor or Creditor&lt;/P&gt;&lt;P&gt;            ktokk TYPE lfa1-ktokk,         "Vendor Account Group&lt;/P&gt;&lt;P&gt;            anred TYPE lfa1-anred,         "Title&lt;/P&gt;&lt;P&gt;            name1 TYPE lfa1-name1,          "Name1&lt;/P&gt;&lt;P&gt;            sortl TYPE lfa1-sortl,         "Sort Field&lt;/P&gt;&lt;P&gt;            stras TYPE lfa1-stras,         "House #, Street&lt;/P&gt;&lt;P&gt;            pstlz TYPE lfa1-pstlz,         "Postal Code&lt;/P&gt;&lt;P&gt;            ort01 TYPE lfa1-ort01,         "City&lt;/P&gt;&lt;P&gt;            land1 TYPE lfa1-land1,         "Country key&lt;/P&gt;&lt;P&gt;            regio TYPE lfa1-regio,         "Region(State, Province, Country)&lt;/P&gt;&lt;P&gt;            telf1 TYPE lfa1-telf1,         "First Telephone Number&lt;/P&gt;&lt;P&gt;            telfx TYPE lfa1-telfx,         "Fax Number&lt;/P&gt;&lt;P&gt;            stenr TYPE lfa1-stenr,         "Tax Number at Responsible Authority&lt;/P&gt;&lt;P&gt;            akont TYPE lfb1-akont,         "Reconciliation Account in General Ledger&lt;/P&gt;&lt;P&gt;            zterm TYPE lfb1-zterm,         "Terms of Payment Key&lt;/P&gt;&lt;P&gt;            qsskz TYPE lfb1-qsskz,         "Witholding Tax&lt;/P&gt;&lt;P&gt;            zwels TYPE lfb1-zwels,         "List of Payment Methods to be Considered&lt;/P&gt;&lt;P&gt;            inco1 TYPE lfm1-inco1,         "Incoterms (part 1)&lt;/P&gt;&lt;P&gt;            inco2 TYPE lfm1-inco2,         "Incoterms (part 2)&lt;/P&gt;&lt;P&gt;            plifz type lfm1-plifz,               "Planned delivery Time in Days&lt;/P&gt;&lt;P&gt;            kraus TYPE lfa1-kraus,         "Credit Info No&lt;/P&gt;&lt;P&gt;            brsch TYPE lfa1-brsch,         "Industry&lt;/P&gt;&lt;P&gt;       END OF it_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;------- internal Table Declarations&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE TABLE OF it_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal Table for taking all fields of the above table in one line separated by ; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF it_text OCCURS 0,&lt;/P&gt;&lt;P&gt;             text(150),&lt;/P&gt;&lt;P&gt;         END OF it_text.&lt;/P&gt;&lt;P&gt;*&amp;amp;------- Line Structure Declarations&lt;/P&gt;&lt;P&gt;DATA: wa TYPE it_lfa1.&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;*To fetch the data records from the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT a&lt;SUB&gt;lifnr a&lt;/SUB&gt;ktokk a&lt;SUB&gt;anred a&lt;/SUB&gt;name1&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;sortl a&lt;/SUB&gt;stras a&lt;SUB&gt;pstlz a&lt;/SUB&gt;ort01&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;land1 a&lt;/SUB&gt;regio a&lt;SUB&gt;telf1 a&lt;/SUB&gt;telfx&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;stenr b&lt;/SUB&gt;akont b&lt;SUB&gt;zterm b&lt;/SUB&gt;qsskz&lt;/P&gt;&lt;P&gt;         b&lt;SUB&gt;zwels c&lt;/SUB&gt;inco1 c~inco2&lt;/P&gt;&lt;P&gt;c~plifz&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;kraus a&lt;/SUB&gt;brsch&lt;/P&gt;&lt;P&gt;         FROM ( ( lfa1 AS a INNER JOIN lfb1 AS b ON a&lt;SUB&gt;lifnr = b&lt;/SUB&gt;lifnr )&lt;/P&gt;&lt;P&gt;         INNER JOIN lfm1 AS c ON  b&lt;SUB&gt;lifnr = c&lt;/SUB&gt;lifnr  )&lt;/P&gt;&lt;P&gt;         UP TO 15 ROWS&lt;/P&gt;&lt;P&gt;         INTO corresponding fields of TABLE itab.&lt;/P&gt;&lt;P&gt;*Sort the internal table by lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT itab[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SORT itab BY lifnr.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Concatenate all the fields of above internal table records in one line *separated by ; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;    CONCATENATE wa-lifnr wa-ktokk wa-anred wa-name1&lt;/P&gt;&lt;P&gt;                wa-sortl wa-stras wa-pstlz wa-ort01&lt;/P&gt;&lt;P&gt;                wa-land1 wa-regio wa-telf1 wa-telfx&lt;/P&gt;&lt;P&gt;                wa-stenr wa-akont wa-zterm wa-qsskz&lt;/P&gt;&lt;P&gt;                wa-zwels wa-inco1 wa-inco2&lt;/P&gt;&lt;P&gt; wa-plifz&lt;/P&gt;&lt;P&gt;                wa-kraus wa-brsch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTO it_text-text SEPARATED BY ';'.&lt;/P&gt;&lt;P&gt;    APPEND it_text.&lt;/P&gt;&lt;P&gt;    CLEAR it_text.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i execute the code  i am getting error message like " WA-PLIFZ" must be a character type  data object (C,N,D,T or STRING)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks&lt;/P&gt;&lt;P&gt;Krupali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405946#M1047175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405947#M1047176</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;PRE&gt;&lt;CODE&gt;When i execute the code i am getting error message like " WA-PLIFZ" must be a character type data object (C,N,D,T or STRING)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it is not of character type  you declare it as any one of teh specified data type then you can come across the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405947#M1047176</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-25T06:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405948#M1047177</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;Only character variables can be concatenated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So concatenation purpose move ur orginal variable to a char variable and concatenation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:20:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405948#M1047177</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2008-08-25T06:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405949#M1047178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: lfa1,
adr6,
lfb1,
lfm1.

*&amp;amp;------- TYPES Declarations
TYPES: BEGIN OF it_lfa1 ,
lifnr TYPE lfa1-lifnr, "Account Number of Vendor or Creditor
ktokk TYPE lfa1-ktokk, "Vendor Account Group
anred TYPE lfa1-anred, "Title
name1 TYPE lfa1-name1,                                      "Name1
sortl TYPE lfa1-sortl, "Sort Field
stras TYPE lfa1-stras, "House #, Street
pstlz TYPE lfa1-pstlz, "Postal Code
ort01 TYPE lfa1-ort01, "City
land1 TYPE lfa1-land1, "Country key
regio TYPE lfa1-regio, "Region(State, Province, Country)
telf1 TYPE lfa1-telf1, "First Telephone Number
telfx TYPE lfa1-telfx, "Fax Number
stenr TYPE lfa1-stenr, "Tax Number at Responsible Authority
akont TYPE lfb1-akont, "Reconciliation Account in General Ledger
zterm TYPE lfb1-zterm, "Terms of Payment Key
qsskz TYPE lfb1-qsskz, "Witholding Tax
zwels TYPE lfb1-zwels, "List of Payment Methods to be Considered
inco1 TYPE lfm1-inco1, "Incoterms (part 1)
inco2 TYPE lfm1-inco2, "Incoterms (part 2)
plifz TYPE lfm1-plifz, "Planned delivery Time in Days
kraus TYPE lfa1-kraus, "Credit Info No
brsch TYPE lfa1-brsch, "Industry
END OF it_lfa1.

*&amp;amp;------- internal Table Declarations

DATA: itab TYPE TABLE OF it_lfa1.

*Internal Table for taking all fields of the above table in one line separated by ; .

DATA: BEGIN OF it_text OCCURS 0,
text(150),
END OF it_text.
*&amp;amp;------- Line Structure Declarations
DATA: wa TYPE it_lfa1.

START-OF-SELECTION.

*To fetch the data records from the tables.

  SELECT a~lifnr a~ktokk a~anred a~name1
  a~sortl a~stras a~pstlz a~ort01
  a~land1 a~regio a~telf1 a~telfx
  a~stenr b~akont b~zterm b~qsskz
  b~zwels c~inco1 c~inco2
  c~plifz
  a~kraus a~brsch
  FROM ( ( lfa1 AS a INNER JOIN lfb1 AS b ON a~lifnr = b~lifnr )
  INNER JOIN lfm1 AS c ON b~lifnr = c~lifnr )
  UP TO 15 ROWS
  INTO CORRESPONDING FIELDS OF TABLE itab.
*Sort the internal table by lifnr.

  IF NOT itab[] IS INITIAL.
    SORT itab BY lifnr.
  ENDIF.

*Concatenate all the fields of above internal table records in one line *separated by ; .
  DATA: w_plifz(3).
  LOOP AT itab INTO wa.
    w_plifz = wa-plifz.
    CONCATENATE wa-lifnr wa-ktokk wa-anred wa-name1
    wa-sortl wa-stras wa-pstlz wa-ort01
    wa-land1 wa-regio wa-telf1 wa-telfx
    wa-stenr wa-akont wa-zterm wa-qsskz
    wa-zwels wa-inco1 wa-inco2
    w_plifz
    wa-kraus wa-brsch

    INTO it_text-text SEPARATED BY ';'.
    APPEND it_text.
    CLEAR it_text.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:21:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405949#M1047178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405950#M1047179</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;If you observe in the table LFM1 it is of type DECIMALs and in the concatenate statement you can only use variables of tyep CNDT that's y it is triggering a error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:22:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405950#M1047179</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-25T06:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405951#M1047180</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;You can Use "CONCATENATE" on the fileds which are of type (C,N,D,T or STRING).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But PLIFZ is of type Decimal , so you are getting the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare a temporary variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: w_temp type char3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE wa_plifz to w_temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use w_temp in CONCATENATE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:23:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405951#M1047180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405952#M1047181</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;You are getting this error because you can not directly concatenate "DEC" type fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this :&lt;/P&gt;&lt;P&gt;data : lv_var(3) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;    lv_var = wa-plifz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE wa-lifnr wa-ktokk wa-anred wa-name1&lt;/P&gt;&lt;P&gt;    wa-sortl wa-stras wa-pstlz wa-ort01&lt;/P&gt;&lt;P&gt;    wa-land1 wa-regio wa-telf1 wa-telfx&lt;/P&gt;&lt;P&gt;    wa-stenr wa-akont wa-zterm wa-qsskz&lt;/P&gt;&lt;P&gt;    wa-zwels wa-inco1 wa-inco2&lt;/P&gt;&lt;P&gt;    lv_var&lt;/P&gt;&lt;P&gt;    wa-kraus wa-brsch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INTO it_text-text SEPARATED BY ';'.&lt;/P&gt;&lt;P&gt;    APPEND it_text.&lt;/P&gt;&lt;P&gt;    CLEAR it_text.&lt;/P&gt;&lt;P&gt;clear lv_var.&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;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:26:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405952#M1047181</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2008-08-25T06:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405953#M1047182</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;We need to make 'WA-PLIFZ' as character type , which can be done by moving WA-PLIFZ into a local char varaible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chararcter variables can be concatenated,the WA-PLIFZ s DEC so we need to make it CHAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So do this way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: LV-PLIFZ(3) TYPE C.
.....
LOOP AT ITAB INTO WA.
WA-PLIFZ = LV-PLIFZ .
....

ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&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;thanx,&lt;/P&gt;&lt;P&gt;dhanashri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dhanashri Pawar on Aug 25, 2008 8:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:28:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405953#M1047182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405954#M1047183</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;     U need to use character data type for CONCATENATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :WA-PLIFZ(15),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405954#M1047183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405955#M1047184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI KR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_plifz(3) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;l_plifz = wa-plifz.&lt;/P&gt;&lt;P&gt;CONCATENATE wa-lifnr wa-ktokk wa-anred wa-name1&lt;/P&gt;&lt;P&gt;wa-sortl wa-stras wa-pstlz wa-ort01&lt;/P&gt;&lt;P&gt;wa-land1 wa-regio wa-telf1 wa-telfx&lt;/P&gt;&lt;P&gt;wa-stenr wa-akont wa-zterm wa-qsskz&lt;/P&gt;&lt;P&gt;wa-zwels wa-inco1 wa-inco2&lt;/P&gt;&lt;P&gt;l_plifz&lt;/P&gt;&lt;P&gt;wa-kraus wa-brsch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTO it_text-text SEPARATED BY ';'.&lt;/P&gt;&lt;P&gt;APPEND it_text.&lt;/P&gt;&lt;P&gt;CLEAR it_text.&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;Ramkumar.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405955#M1047184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405956#M1047185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. Points hasbeen awarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405956#M1047185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405957#M1047186</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;most of the guys answered the question correctly..seems strange!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:36:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405957#M1047186</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2008-08-25T06:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error..How to resolve this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405958#M1047187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; most of the guys answered the question correctly..seems strange!!&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; ~Anversha&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Starange Behaviour can be Reported and it will be dealed. You have abuse button ,you can use and report. I too just found some strange behavoiur yesterday i just reported.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 06:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-how-to-resolve-this/m-p/4405958#M1047187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T06:39:49Z</dc:date>
    </item>
  </channel>
</rss>

