<?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: ThUsrInfo - Documentation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813363#M1313648</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;This is fine, i know this, but can i get documentation as to how many ids and fields i can pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually my requrirement is that i want to send message to particular terminal. Is there any field like TERMINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jun 2009 05:00:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-30T05:00:17Z</dc:date>
    <item>
      <title>ThUsrInfo - Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813361#M1313646</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 have one function &lt;STRONG&gt;ThUsrInfo&lt;/STRONG&gt;, how can i know how many and what ids and field combination i can pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call 'ThUsrInfo' id 'OPCODE' field opcode_send_pop_up&lt;/P&gt;&lt;P&gt;                 id 'CLIENT' field client&lt;/P&gt;&lt;P&gt;                 id 'USR' field user&lt;/P&gt;&lt;P&gt;                  id 'MSG' field message&lt;/P&gt;&lt;P&gt;                  id 'MSG_LEN' field message_len&lt;/P&gt;&lt;P&gt;                  id 'CUT_BLANKS' field loc_cut_blanks&lt;/P&gt;&lt;P&gt;                  id 'TAB' field usr_tabl-&lt;STRONG&gt;sys&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                  id 'TID' field tid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no documentation available neither on net nor in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help in this matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2009 04:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813361#M1313646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-30T04:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: ThUsrInfo - Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813362#M1313647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

PARAMETERS: P_CLIENT LIKE SY-MANDT DEFAULT SY-MANDT ,
 P_USER LIKE USR02-BNAME DEFAULT SY-UNAME,
            P_MSG(128) DEFAULT 'Type your message...' LOWER CASE.
        DATA: OPCODE_SEND_POP_UP(1) TYPE X VALUE 31,
              MSG_LENGTH LIKE SY-INDEX,
              LOC_CUT_BLANKS TYPE X VALUE 1.

        DESCRIBE FIELD P_MSG LENGTH MSG_LENGTH IN CHARACTER MODE.
        CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_SEND_POP_UP
            ID 'CLIENT'     FIELD P_CLIENT
            ID 'USR'        FIELD P_USER
            ID 'MSG'        FIELD P_MSG
            ID 'MSG_LEN'    FIELD MSG_LENGTH
            ID 'CUT_BLANKS' FIELD LOC_CUT_BLANKS.

  IF SY-SUBRC = 0.
    WRITE:/ 'Sent to the user ', P_USER, ' successfully.'.
    ELSE.
    WRITE:/ 'User is not active at present, try later!'.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2009 04:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813362#M1313647</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-06-30T04:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: ThUsrInfo - Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813363#M1313648</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;This is fine, i know this, but can i get documentation as to how many ids and fields i can pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually my requrirement is that i want to send message to particular terminal. Is there any field like TERMINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2009 05:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813363#M1313648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-30T05:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: ThUsrInfo - Documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813364#M1313649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;            The Ids we can get from the tranaction SM04.In this transaction it will show the logon ids which you can use here in this function module.These ids is to be created then released when it is created or released then only it will be appearing in sm04.Hope it resolves your query.Have a great day ahead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2009 05:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/thusrinfo-documentation/m-p/5813364#M1313649</guid>
      <dc:creator>gaursri</dc:creator>
      <dc:date>2009-06-30T05:01:38Z</dc:date>
    </item>
  </channel>
</rss>

