<?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: getting syntax error ...why ?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063417#M92534</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have defined IMTG-JAN as RKPLN-WKG which is data type CURR. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please define IMTG-JAN as JAN CHAR(Length 21).&lt;/P&gt;&lt;P&gt;Data : Table IMTG....&lt;/P&gt;&lt;P&gt;JAN(21),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Dec 2005 22:53:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-08T22:53:44Z</dc:date>
    <item>
      <title>getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063414#M92531</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 getting the following syntax error... Can anyone please help !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'IMTGP-JAN' must be a character type data object (datatype C,N,D,T or String)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZBDC_BUDGET_UPLOAD&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZBDC_BUDGET_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include bdcrecx1.&lt;/P&gt;&lt;P&gt;*Tables: CCSS , RKPLN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of tdata,&lt;/P&gt;&lt;P&gt;         rec(150) type c,&lt;/P&gt;&lt;P&gt;       end of tdata,&lt;/P&gt;&lt;P&gt;       begin of tmtgp,&lt;/P&gt;&lt;P&gt;         costcent LIKE CCSS-KOSTL,&lt;/P&gt;&lt;P&gt;         costelem LIKE CCSS-KSTAR,&lt;/P&gt;&lt;P&gt;         fisyear LIKE CCSS-GJAHR,&lt;/P&gt;&lt;P&gt;         jan LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         feb LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         mar LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         apr LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         may LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         jun LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         jul LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         aug LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         sep LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         oct LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         nov LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;         dec LIKE RKPLN-WKG,&lt;/P&gt;&lt;P&gt;       end of tmtgp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: idata type table of tdata with header line.&lt;/P&gt;&lt;P&gt;data: imtgp type table of tmtgp with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_file type localfile default 'C:\budget_data_csv.csv'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.at selection-screen on value-request&lt;/P&gt;&lt;P&gt;for p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'KD_GET_FILENAME_ON_F4'&lt;/P&gt;&lt;P&gt;        exporting            static    = 'X'&lt;/P&gt;&lt;P&gt;        changing            file_name = p_file.&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform upload_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at imtgp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform open_group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP0' '1000'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'KPP0B-VALUE(04)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=CSPB'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(01)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(01)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(02)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(02)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(03)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(03)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(04)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(05)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(05)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(06)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(06)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(07)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(07)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(08)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(08)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(09)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(09)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(10)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(10)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(11)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(11)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(12)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'Z-BDC03(12)'&lt;/P&gt;&lt;P&gt;                              '10000'.&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPLKPP2' '0110'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'Z-BDC03(12)'.&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=CBUC'.&lt;/P&gt;&lt;P&gt;perform bdc_transaction using 'KP06'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform close_group.&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;form upload_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: filename type string.&lt;/P&gt;&lt;P&gt;clear idata.&lt;/P&gt;&lt;P&gt;refresh idata.&lt;/P&gt;&lt;P&gt;filename = p_file.&lt;/P&gt;&lt;P&gt;call function 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;    exporting            filename        = filename&lt;/P&gt;&lt;P&gt;    filetype        = 'ASC'&lt;/P&gt;&lt;P&gt;    tables            data_tab        = idata&lt;/P&gt;&lt;P&gt;    exceptions            file_open_error = 1&lt;/P&gt;&lt;P&gt;    file_read_error = 2&lt;/P&gt;&lt;P&gt;    no_authority    = 6&lt;/P&gt;&lt;P&gt;    others          = 17.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    check sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    loop at idata.&lt;/P&gt;&lt;P&gt;    clear imtgp.&lt;/P&gt;&lt;P&gt;    split idata at ',' into imtgp-costcent imtgp-costelem imtgp-fisyear&lt;/P&gt;&lt;P&gt;imtgp-jan imtgp-feb imtgp-mar imtgp-apr imtgp-may imtgp-jun imtgp-jul&lt;/P&gt;&lt;P&gt;imtgp-aug imtgp-sep imtgp-oct imtgp-nov imtgp-dec.&lt;/P&gt;&lt;P&gt;    append imtgp.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 22:42:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063414#M92531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T22:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063415#M92532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PL declare your temp table IMTGP with CHAR type fields instaed of LIKE dictionary fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 22:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063415#M92532</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-12-08T22:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063416#M92533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi split behaves like commands used for string.Like all string processsing statements, you can only use character-type operands here. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to change the data type of all the fields in the table imtgp  to 'C'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 22:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063416#M92533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T22:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063417#M92534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have defined IMTG-JAN as RKPLN-WKG which is data type CURR. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please define IMTG-JAN as JAN CHAR(Length 21).&lt;/P&gt;&lt;P&gt;Data : Table IMTG....&lt;/P&gt;&lt;P&gt;JAN(21),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2005 22:53:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063417#M92534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-08T22:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063418#M92535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DECLARE THIS:&lt;/P&gt;&lt;P&gt;................&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;begin of WORK,&lt;/P&gt;&lt;P&gt;costcent LIKE CCSS-KOSTL,&lt;/P&gt;&lt;P&gt;costelem LIKE CCSS-KSTAR,&lt;/P&gt;&lt;P&gt;fisyear LIKE CCSS-GJAHR,&lt;/P&gt;&lt;P&gt;jan(12),&lt;/P&gt;&lt;P&gt;feb(12),&lt;/P&gt;&lt;P&gt;mar(12),&lt;/P&gt;&lt;P&gt;apr(12),&lt;/P&gt;&lt;P&gt;may(12),&lt;/P&gt;&lt;P&gt;jun(12),&lt;/P&gt;&lt;P&gt;jul(12),&lt;/P&gt;&lt;P&gt;aug(12),&lt;/P&gt;&lt;P&gt;sep(12),&lt;/P&gt;&lt;P&gt;oct(12),&lt;/P&gt;&lt;P&gt;nov(12),&lt;/P&gt;&lt;P&gt;dec(12),&lt;/P&gt;&lt;P&gt;end of WORK.&lt;/P&gt;&lt;P&gt;...............&lt;/P&gt;&lt;P&gt;and change your loop:&lt;/P&gt;&lt;P&gt;loop at idata.&lt;/P&gt;&lt;P&gt;clear imtgp.&lt;/P&gt;&lt;P&gt;split idata at ',' into WORK-costcent WORK-costelem WORK-fisyear&lt;/P&gt;&lt;P&gt;WORK-jan WORK-feb WORK-mar WORK-apr WORK-may WORK-jun WORK-jul&lt;/P&gt;&lt;P&gt;WORK-aug WORK-sep WORK-oct WORK-nov WORK-dec.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING WORK TO IMTGP.&lt;/P&gt;&lt;P&gt;append imtgp.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 02:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063418#M92535</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2005-12-09T02:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063419#M92536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Murthy.. Now I understood the issue. Can u please tell me which function to use to convert character data to CURR type as when i have to give that data as input to the BDC, i need to convert to CURR, right ?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 02:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063419#M92536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T02:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: getting syntax error ...why ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063420#M92537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can pass Char Value to bdc_field. No need for conversion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For formatiing to currency format :&lt;/P&gt;&lt;P&gt;WRITE SALES CURRENCY 'CURRENCYKEY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; currency key for the table TCURX like 'USD' or 'CAD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lanka Murthy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2005 02:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-syntax-error-why/m-p/1063420#M92537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-09T02:43:04Z</dc:date>
    </item>
  </channel>
</rss>

