<?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: CONSTANT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757441#M328029</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. CONSTANTS c. ... VALUE [ val | IS INITIAL ]. &lt;/P&gt;&lt;P&gt;2. CONSTANTS c(len) ... VALUE [ val | IS INITIAL ]. &lt;/P&gt;&lt;P&gt;3. CONSTANTS: BEGIN OF crec, &lt;/P&gt;&lt;P&gt;    END OF crec. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants are been used as holders. Say, in a program 'ABCD' needs to be used at about 20 places, then u can declare it as a constant and use it. It if good program effieciency.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Dec 2006 09:58:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-27T09:58:54Z</dc:date>
    <item>
      <title>CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757435#M328023</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;What is the use of Constant,could you give me any example coding?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757435#M328023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757436#M328024</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;&lt;/P&gt;&lt;P&gt;1. CONSTANTS c.     ... VALUE [ val | IS INITIAL ]. &lt;/P&gt;&lt;P&gt;2. CONSTANTS c(len) ... VALUE [ val | IS INITIAL ]. &lt;/P&gt;&lt;P&gt;3. CONSTANTS: BEGIN OF crec, &lt;/P&gt;&lt;P&gt;                ... &lt;/P&gt;&lt;P&gt;              END   OF crec. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The CONSTANTS statement defines global and local constants. By using constants, you can read statically declared data objects, since they always have a particular data type. You can use constants in any position where fields are allowed, and also in the following positions: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To specify length in a DATA STATICS, CONSTANTS, PARAMETERS, or TYPES statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a DECIMALS value in a DATA, STATICS, CONSTANTS, PARAMETERS, or TYPES statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an OCCURS value in a DATA, STATICS, RANGES, or TYPES statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the VALUE addition of a DATA, STATICS, or CONSTANTS statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an offset or length specification in a field specification. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a value for an exception (EXCEPTIONS) in the CALL FUNCTION statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants always have a defined data type. Data types and data objects are integral parts of the ABAP type concept. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In contrast to variables defined with the DATA statement, you cannot change the value of a constant once it has been defined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from the additions ... TYPE typ OCCURS n, ... LIKE f1OCCURS n and WITH HEADER LINE, all the additions used with the DATA statement are allowed. However, in contrast to the DATA statement, the addition ... VALUE val or VALUE IS INITIAL is obligatory with variants 1 and 2. See additions with DATA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;CONSTANTS  CHAR1 VALUE 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS  INT   TYPE I VALUE 99. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: BEGIN OF CONST_REC, &lt;/P&gt;&lt;P&gt;             C(2) TYPE I VALUE 'XX', &lt;/P&gt;&lt;P&gt;             N(2) TYPE N VALUE '12', &lt;/P&gt;&lt;P&gt;             X    TYPE X VALUE 'FF', &lt;/P&gt;&lt;P&gt;             I    TYPE I VALUE 99, &lt;/P&gt;&lt;P&gt;             P    TYPE P VALUE 99, &lt;/P&gt;&lt;P&gt;             F    TYPE F VALUE '9.99E9', &lt;/P&gt;&lt;P&gt;             D    TYPE D VALUE '19950101', &lt;/P&gt;&lt;P&gt;             T    TYPE T VALUE '235959', &lt;/P&gt;&lt;P&gt;           END OF CONST_REC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757436#M328024</guid>
      <dc:creator>sourabhshah</dc:creator>
      <dc:date>2006-12-27T09:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757437#M328025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONSTANTS are used in place of hardcoded values.&lt;/P&gt;&lt;P&gt;Take for example, you are using a value '123' in a lot of places in your program.&lt;/P&gt;&lt;P&gt;Later you want to change them to '456'.&lt;/P&gt;&lt;P&gt;It is a problem for you to change each and evry occurance of '123' with '456'.&lt;/P&gt;&lt;P&gt;Hence you declare a constant which is declared globally.&lt;/P&gt;&lt;P&gt;Ther you can simply change it at definition level. It would reflect in all other locations where it is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants: c_value(5) type c value '12345'.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:53:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757437#M328025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757438#M328026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You define constants using the ABAP keyword CONSTANTS. Their type is defined similarly to the type&lt;/P&gt;&lt;P&gt;of a variable in the DATA.statement. You can assign a value using a literal, with the VALUE addition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS c_ua&lt;/P&gt;&lt;P&gt;TYPE s_carr_id&lt;/P&gt;&lt;P&gt;VALUE 'UA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab&lt;/P&gt;&lt;P&gt;INTO wa_itab&lt;/P&gt;&lt;P&gt;WITH TABLE KEY&lt;/P&gt;&lt;P&gt;carrid = c_ua.&lt;/P&gt;&lt;P&gt;IF sy-subrc ne 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Message&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;In this example, the system should read a line from internal table itab with key access. There is no line&lt;/P&gt;&lt;P&gt;with the required key at runtime. The Basis function for the READ statement is therefore terminated and&lt;/P&gt;&lt;P&gt;the value 4 is placed in field sy-subrc. Field sy-subrc is queried in the program immediately after the&lt;/P&gt;&lt;P&gt;READ statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757438#M328026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757439#M328027</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;The constant is a constant so a variable having a value can't be changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The constant are often created to became the program more clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you want to read the first 100 records of an internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANT MAX_RECORDS TYPE I VALUE 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DO.
    READ TABLE ITAB INDEX SY-INDEX.
* Stop the reading if the table has less than 100 record    
    IF SY-SUBRC &amp;lt;&amp;gt; 0. EXIT. ENDIF.
* Stop the reading if the record 100 was read
    IF SY-INDEX = MAX_RECORDS.
       EXIT.
    ENDIF.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way it's easier to understand the meanining of the control to exit from the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:55:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757439#M328027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757440#M328028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay,&lt;/P&gt;&lt;P&gt;Constants are named data objects that you create statically using a declarative statement. They allow you to store data under a particular name within the memory area of a program. The value of a constant must be defined when you declare it. It cannot subsequently be changed. The value of a constant cannot be changed during the execution of the program. If you try to change the value of a constant, a syntax error or runtime error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You declare them using the CONSTANTS statement. Within the program, you can also declare local variables within procedures using CONSTANTS. The same rules of visibility apply to constants as to types (see The TYPE Addition). Local constants in procedures obscure identically-named variables in the main program. Constants live for as long as the context in which they are declared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax of the CONSTANTS statement is exactly the same as that of the DATA statement, but with the following exceptions: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must use the VALUE addition in the CONSTANTS statement. The start value specified in the VALUE addition cannot be changed during the execution of the program. &lt;/P&gt;&lt;P&gt;You cannot define constants for XSTRINGS, references, internal tables, or structures containing internal tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elementary constants: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: pi TYPE P DECIMALS 10 VALUE '3.1415926536'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           ref_c1 TYPE REF TO C1 VALUE IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The last line shows how you can use the IS INITIAL argument in the VALUE addition. Since you must use the VALUE addition in the CONSTANTS statement, this is the only way to assign an initial value to a constant when you declare it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Complex constants: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: BEGIN OF myaddress,&lt;/P&gt;&lt;P&gt;           name(20)    TYPE c  VALUE 'Fred Flintstone',&lt;/P&gt;&lt;P&gt;           street(20)  TYPE c  VALUE 'Cave Avenue',&lt;/P&gt;&lt;P&gt;           number      TYPE p  VALUE  11,&lt;/P&gt;&lt;P&gt;           postcode(5) TYPE n  VALUE  98765,&lt;/P&gt;&lt;P&gt;           city(20)    TYPE c  VALUE  'Bedrock',&lt;/P&gt;&lt;P&gt;           END OF myaddress.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This declares a constant structure MYADDRESS. The components can be addressed by MYADDRESS-NAME, MYADDRESS-STREET, and so on, but they cannot be changed.&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;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757440#M328028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757441#M328029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. CONSTANTS c. ... VALUE [ val | IS INITIAL ]. &lt;/P&gt;&lt;P&gt;2. CONSTANTS c(len) ... VALUE [ val | IS INITIAL ]. &lt;/P&gt;&lt;P&gt;3. CONSTANTS: BEGIN OF crec, &lt;/P&gt;&lt;P&gt;    END OF crec. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Constants are been used as holders. Say, in a program 'ABCD' needs to be used at about 20 places, then u can declare it as a constant and use it. It if good program effieciency.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 09:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757441#M328029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T09:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757442#M328030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to the above replies , &lt;/P&gt;&lt;P&gt;whenever u want to change the value of a constant , it will be easy for u to change at one place rather than changing the value in the whole program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Say u have to use the value 'SDN' , to compare some string 100 times in your program&lt;/P&gt;&lt;P&gt;   eg : if URL eq 'SDN'. " Say u have to use th e same statement 100 times in ur program in different situaltions, if u use like this it will be difficult whenever u want change the value SDN  to SAP SDN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.If u declare a constant u can change the value from SDN to SAP SDN at one time only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757442#M328030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757443#M328031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi chandirasekhar...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give some example to me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757443#M328031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757444#M328032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1 . without using constants&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;       Say you have to Compare the name JAY 10 times &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      IF NAME EQ 'JAY'.&lt;/P&gt;&lt;P&gt;            ******&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      IF NAME EQ 'JAY'.&lt;/P&gt;&lt;P&gt;            ******&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      And so on till 10 times...............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Now you want to change the name JAY to   RICH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Now what you have to do is change the name 10 times in all the IF conditions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  Using CONSTANTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     CONSTANTS : C_NAME(10) value 'JAY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NAME EQ C_NAME.&lt;/P&gt;&lt;P&gt;            ******&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NAME EQ C_NAME.&lt;/P&gt;&lt;P&gt;            ******&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     and so on till 10 times&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Now when u want to change the name from JAY to RICH  u can change the value in constant instead of change all the IF Conditions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CONSTANTS : C_NAME(10) value 'RICH'.  " change the value here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757444#M328032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: CONSTANT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757445#M328033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We use CONSTANTS if the value of variable never changes throughout the program and will be used multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of hardcoding such values multiple times, we declare variable as CONSTANT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 21:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constant/m-p/1757445#M328033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T21:59:37Z</dc:date>
    </item>
  </channel>
</rss>

