<?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: QCE1_CONVERT and language validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602773#M1568543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;IF NOT form_name IS INITIAL.
SELECT SINGLE langu FROM stxfadmt INTO (st_langu) WHERE langu = p_spras
AND formname = form_name.

IF sy-subrc NE 0.
MESSAGE e000 WITH 'Language selected is not available for form' form_name. &amp;lt;&amp;lt;-Add here
STOP.
ENDIF.
ENDIF&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Dec 2010 10:10:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-27T10:10:35Z</dc:date>
    <item>
      <title>QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602770#M1568540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my report selection-screen i have a field language. Through that report i call a smartform. my smartform is available in multiple languages. if user enters any other language besides the one maintained it should throw an error. please advice.&lt;/P&gt;&lt;P&gt;1)  which table should i check for languages maintained for respective smartforms.&lt;/P&gt;&lt;P&gt;2) I need to set the message as 'Language selected is not available for form' and then Smartform name should display.&lt;/P&gt;&lt;P&gt;3) Function module which will store the spool requests which i send further to PDF conversion.&lt;/P&gt;&lt;P&gt;4) I'm using fm QCE1_CONVERT to convert my line to 255 char format. what should i pass in the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help. Tried searching but couldn't find relevant threads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou in advance for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 09:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602770#M1568540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T09:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602771#M1568541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can check table &lt;STRONG&gt;stxfadmt&lt;/STRONG&gt; for language validation in your smartform. Fetch language and smartform name form this table.&lt;/P&gt;&lt;P&gt;If sy-subrc = 0. Then after the message text write the variable which holds the form name.&lt;/P&gt;&lt;P&gt;For spool check FM &lt;STRONG&gt;RSPO_FIND_SPOOL_REQUESTS&lt;/STRONG&gt; and for further info check table &lt;STRONG&gt;TSP01&lt;/STRONG&gt;, field &lt;STRONG&gt;rqident = spoolno&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 09:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602771#M1568541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T09:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602772#M1568542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF NOT form_name IS INITIAL.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE langu FROM stxfadmt INTO (st_langu) WHERE langu = p_spras&lt;/P&gt;&lt;P&gt;                                                        AND   formname = form_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;        MESSAGE e000 WITH 'Language selected is not available for form' .&lt;/P&gt;&lt;P&gt;        STOP.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF&lt;/P&gt;&lt;P&gt; What should i maintain in my message here so that i can get smartform name after my message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 10:06:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602772#M1568542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T10:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602773#M1568543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;IF NOT form_name IS INITIAL.
SELECT SINGLE langu FROM stxfadmt INTO (st_langu) WHERE langu = p_spras
AND formname = form_name.

IF sy-subrc NE 0.
MESSAGE e000 WITH 'Language selected is not available for form' form_name. &amp;lt;&amp;lt;-Add here
STOP.
ENDIF.
ENDIF&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 10:10:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602773#M1568543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T10:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602774#M1568544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou a lot. Can you please suggest me what to pass in RSPO fm and in qce1_convert . what parameters should i use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 10:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602774#M1568544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T10:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602775#M1568545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pass your required parameters in &lt;STRONG&gt;EXPORTING&lt;/STRONG&gt; and in tables use: &lt;STRONG&gt;spoolreq LIKE rsporq&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: pdf LIKE tline OCCURS 0 WITH HEADER LINE.
DATA: objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE.
CALL FUNCTION 'QCE1_CONVERT'
    TABLES
      t_source_tab         = pdf
      t_target_tab         = objbin
    EXCEPTIONS
      convert_not_possible = 1
      OTHERS               = 2&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 10:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602775#M1568545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T10:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: QCE1_CONVERT and language validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602776#M1568546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou a lot for your time sir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 10:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qce1-convert-and-language-validation/m-p/7602776#M1568546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-27T10:50:49Z</dc:date>
    </item>
  </channel>
</rss>

