<?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 message class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336358#M514447</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;  i need to print the information message of long text of say 90 characters is it possible? how? r else if so is there any FM for pop-up a window to have the text of 98 characters...&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; reply soon urgent.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; advance thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 10:36:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T10:36:40Z</dc:date>
    <item>
      <title>message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336358#M514447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;  i need to print the information message of long text of say 90 characters is it possible? how? r else if so is there any FM for pop-up a window to have the text of 98 characters...&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; reply soon urgent.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; advance thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336358#M514447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336359#M514448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF LT_SVAL.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE SVAL.&lt;/P&gt;&lt;P&gt;  TYPES: END OF LT_SVAL.&lt;/P&gt;&lt;P&gt;  TYPES: T_IT_SVAL TYPE STANDARD TABLE OF LT_SVAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: LIT_SVAL TYPE T_IT_SVAL.&lt;/P&gt;&lt;P&gt;  DATA: LWA_SVAL TYPE LT_SVAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'POPUP_GET_VALUES'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   NO_VALUE_CHECK        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            POPUP_TITLE           = 'RETURN VALUES FROM EAI'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   START_COLUMN          = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   START_ROW             = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   RETURNCODE            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;            FIELDS                = LIT_SVAL&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;           ERROR_IN_FIELDS       = 1&lt;/P&gt;&lt;P&gt;           OTHERS                = 2&lt;/P&gt;&lt;P&gt;                  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&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;venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:39:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336359#M514448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336360#M514449</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 the following FMs&lt;/P&gt;&lt;P&gt;BAPI_MESSAGE_GETDETAIL &lt;/P&gt;&lt;P&gt;WRITE_MESSAGE_NEW &lt;/P&gt;&lt;P&gt;MESSAGE_TEXT_BUILD &lt;/P&gt;&lt;P&gt;K_MESSAGE_TRANSFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or even easier to use the following statement:&lt;/P&gt;&lt;P&gt;message .. into. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you can move the long text to a text98 field....of course it will be truncated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336360#M514449</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2007-06-11T10:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336361#M514450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;U CAN CREATE A MESSAGE CLASS AnD In DAT CLICK LONG TEXT BUTTO AD GIVE UR TEXT IN THAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RGDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        abapuser&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336361#M514450</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-06-11T10:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336362#M514451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Purna , &lt;/P&gt;&lt;P&gt;  You can use the FM , but you will have to split the text into 2 parts and pass it to the parameters TEXTLINE1 and TEXTLINE2 of the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regadrs&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;P&gt;*Assign point if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:42:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336362#M514451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336363#M514452</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 simply write s001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you will double click it will ask to create a text elemnt. you can create here maximum of 132 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;direct path is goto-text element-text symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s is message type, like this you can also use e for error and i for information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful...........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:42:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336363#M514452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336364#M514453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;friend,&lt;/P&gt;&lt;P&gt;  this message is no way related to the tables to retrieve, just in a program using standard message class can i print the text of 90 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u friend do this for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336364#M514453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: message class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336365#M514454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can do this using message clas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just create a class using se91 and specify it in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in message class for messages maximum length could be 132 chars.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ruchika&lt;/P&gt;&lt;P&gt;Reward if useful.........................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:55:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-class/m-p/2336365#M514454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:55:10Z</dc:date>
    </item>
  </channel>
</rss>

