Need information about SUBMIT statement

Hi,
    I am submitting program1 in program2 by using SUBMIT keyword.My  requirement  is want to pass selection screen.
  parameters of program2 to program1 without using variant bcz that parameter   
  values are not constant.
Thanks for ur information in advance..
hari...

hI
<b>SUBMIT - selscreen_parameters</b>
USING-SELECTION-SET supplies all the selection screen components by means of a Variante variant. If you specify USING-SELECTION-SETS OF PROGRAM , you can use a variant from a different program; if you specify WITH SELECTION-TABLE, values for several selection screen components are transferred as the content of an internal table rspar; WITH sel value supplies individual selection screen components sel with values value. The addition WITH FREE SELECTIONS allows you to transfer dynamic selections to the selection screen for a logical database.
<b>... USING SELECTION-SET variant</b>
If you specify this edition, the parameters and selection criteria for the selection screen are supplied with values from a variant. For variant, you must specify a character-like data object that contains the name of a variant for the program accessed when the statement is executed. If the variant does not exist, the system sends an error message. If the variant belongs to a different selection screen, it is ignored.
You can create and manage variants for every program in which selection screens are defined, either in the ABAP Workbench or during execution of the program by choosing Goto - Variants on a selection screen.
<b>... USING SELECTION-SETS OF PROGRAM prog</b>
If you specify this addition, the variants of the program prog are used in the program accessed. For prog, you must specify a character-like data object that contains the name of a program when the statement is executed. The addition has the following effect:
If a variant variant is specified with USING SELECTION-SET, the system searches for this variant in the program prog.
If the selection screen is displayed with VIA SELECTION-SCREEN, all the functions that can be accessed by means of the menu path Goto - Variants affect the variants of the program prog. However, these functions are only active if prog is an executable program.
The program prog should contain a selection screen that has the same parameters and selection criteria as the selection screen used in the program accessed.
<b>... WITH SELECTION-TABLE rspar</b>
If you specify this addition, parameters and selection criteria on the selection screen are supplied from an internal table rspar. You must specify an internal table with the row type RSPARAMS for rspar. The structured data type RSPARAMS is defined in the ABAP Dictionary and has the following components, all of which are data type CHAR:
SELNAME (length 8),
KIND (length 1),
SIGN (length 1),
OPTION (length 2),
LOW (length 45),
HIGH (length 45).
To supply parameters and selection criteria for the selection screen with specific values, the lines in the internal table rspar must contain the following values:
SELNAME must contain the name of a parameter or selection criterion for the selection screen in block capitals
KIND must contain the type of selection screen component (P for parameters, S for selection criteria)
SIGN, OPTION, LOW, and HIGH must contain the values specified for the selection table columns that have the same names as the selection criteria; in the case of parameters, the value must be specified in LOW and all other components are ignored.
If the name of a selection criterion is repeated in rspar, this defines a selection table containing several lines and passes it on to the selection criterion. If parameter names occur several times, the last value is passed on to the parameter.
The contents of the parameters or selection tables for the current program can be entered in the table by the function module RS_REFRESH_FROM_SELECTOPTIONS.
In contrast to selection tables, the data types of the components LOW and HIGH in table rspar are always of type CHAR and are converted to the type of the parameter or selection criterion during transfer, if necessary.
<b>... WITH sel1 value1 WITH sel2 value2 ...</b>
This addition supplies values to individual parameters or selection criteria sel for the selection screen. For sel, you must specify the name of a parameter or selection criterion directly. Parameters are supplied with single values and selection criteria with selection tables that overwrite values already specified in the program accessed. The selection table to be transferred is compiled from all the WITH sel additions that address the same selection criterion sel. You can specify the following statements for value:
{EQ|NE|CP|NP|GT|GE|LT|LE} dobj [SIGN sign]
Transfer of a single value.
The operators before dobj correspond to the values specified for column OPTION for selection tables. For dobj, you must specify a data object whose data type can be converted to the data type of the selection screen component sel. For sign, you can specify a character-like field that must contain 'I' or 'E'. The standard value is 'I'.
If sel is a selection criterion, the system appends a line in the selection table to be transferred, placing the operator in column OPTION, the content of dobj in column LOW, and the content of sign in column SIGN.
If sel is a parameter, it is set to the value of dobj in the program accessed. The operator and the value of sign are not taken into account.
[NOT] BETWEEN dobj1 AND dobj2 [SIGN sign]
Transfer of an interval.
In this case, sel must be a selection criterion. For dobj, you must specify data objects whose data type can be converted to that of the columns LOW and HIGH for the selection criterion sel. For sign, you can specify a character-like field that must contain 'I' or 'E'. The standard value is 'I'.
A line is appended in the selection table to be transferred. If NOT is specified, the value 'NB' is placed in column OPTION; otherwise, the value entered is 'BT'. The content of the data objects dobj and sign is placed in the columns LOW, HIGH, and SIGN.
IN rtab
Transfer of a ranges table.
In this case, sel must be a selection criterion. For rtab, you must specify an internal table that has the same structure as the selection table for selection criterion sel. You can create a table like this using the addition RANGE OF to the statements TYPES and DATA.
The lines in table rtab are appended to the selection table to be transferred.
You can also use = or INCL instead of the operator EQ.
You can specify the addition WITH sel value more than once, and you can also specify the same selection screen component more than once.
<b>Example</b> The program report1 has a stand-alone selection screen with the screen number 1100. In the program report2, an internal table with row type RSPARAMS and a ranges table are filled for this selection screen. These are transferred at SUBMIT together with a single condition.
<b>Program accessed</b>
REPORT report1.
DATA text(10) TYPE c.
SELECTION-SCREEN BEGIN OF SCREEN 1100.
  SELECT-OPTIONS: selcrit1 FOR text,
                  selcrit2 FOR text.
SELECTION-SCREEN END OF SCREEN 1100.
<b>Calling program</b>
REPORT report2.
DATA: text(10)   TYPE c,
      rspar_tab  TYPE TABLE OF rsparams,
      rspar_line LIKE LINE OF rspar_tab,
      range_tab  LIKE RANGE OF text,
      range_line LIKE LINE OF range_tab.
rspar_line-selname = 'SELCRIT1'.
rspar_line-kind    = 'S'.
rspar_line-sign    = 'I'.
rspar_line-option  = 'EQ'.
rspar_line-low     = 'ABAP'.
APPEND rspar_line TO rspar_tab.
range_line-sign   = 'E'.
range_line-option = 'EQ'.
range_line-low    = 'H'.
APPEND range_line TO range_tab.
range_line-sign   = 'E'.
range_line-option = 'EQ'.
range_line-low    = 'K'.
APPEND range_line TO range_tab.
SUBMIT report1 USING SELECTION-SCREEN '1100'
               WITH SELECTION-TABLE rspar_tab
               WITH selcrit2 BETWEEN 'H' AND 'K'
               WITH selcrit2 IN range_tab
               AND RETURN.
<b>Result</b>
After report1 has been accessed by report2, the selection tables for the selection criteria selcrit1 and selcrit2 in the program accessed contain the following entries:
  SIGN OPTION LOW HIGH
selcrit1 I EQ ABAP 
selcrit2 I BT H K
selcrit2 E EQ H 
selcrit2 E EQ K 
<b>... WITH FREE SELECTIONS texpr</b>
This addition supplies values to the dynamic selections for the selection screen for a logical database. The program accessed must be linked to a logical database that supports dynamic selections. texpr must be an internal table of the type RSDS_TEXPR from type group RSDS.
In texpr, the selections for the dynamic selections are specified in an internal format (stack formula). You can use the function modules FREE_SELECTIONS_INIT, FREE_SELECTIONS_DIALOG, and FREE_SELECTIONS_RANGE_2_EX from the function group SSEL to fill texpr in the calling program. While the first two function modules execute a user dialog, you can transfer ranges tables to FREE_SELECTIONS_RANGE_2_EX for each node in the dynamic selection in an internal table of the type RSDS_TRANGE. These are then converted to a table of the row type RSDS_TEXPR. If the calling program contains a selection screen with the same dynamic selections, you can transfer its content beforehand to a table of the type RSDS_TRANGE using the function module RS_REFRESH_FROM_DYNAMICAL_SEL.
The lines in the internal table type RSDS_TRANGE contain a flat component TABLENAME for each node and a table-like component FRANGE_T of the type RSDS_FRANGE_T for the fields in the node. The lines in RSDS_FRANGE_T contain a flat component FIELDNAME for each field and a table-like component SELOPT_T of the row type RSDSSELOPT from the ABAP Dictionary. RSDSSELOPT contains the four components SIGN, OPTION, LOW, and HIGH and can include the ranges table.
<b>Example</b> Program report1 is linked to the logical database F1S, which supports dynamic selections for the node SPFLI. Program report2 enters conditions in a nested internal table of the type rsds_trange with selection conditions for field CONNID in node SPFLI; this is then converted to a table of the type rsds_texpr, which is transferred at SUBMIT.
<b>Program accessed</b>
REPORT report1.
NODES: spfli, sflight, sbook.
<b>Calling program</b>
REPORT report2.
TYPE-POOLS rsds.
DATA: trange TYPE rsds_trange,
      trange_line
        LIKE LINE OF trange,
      trange_frange_t_line
        LIKE LINE OF trange_line-frange_t,
      trange_frange_t_selopt_t_line
        LIKE LINE OF trange_frange_t_line-selopt_t,
      texpr TYPE rsds_texpr.
trange_line-tablename = 'SPFLI'.
trange_frange_t_line-fieldname = 'CONNID'.
trange_frange_t_selopt_t_line-sign   = 'I'.
trange_frange_t_selopt_t_line-option = 'BT'.
trange_frange_t_selopt_t_line-low    = '0200'.
trange_frange_t_selopt_t_line-high   = '0800'.
APPEND trange_frange_t_selopt_t_line
  TO trange_frange_t_line-selopt_t.
trange_frange_t_selopt_t_line-sign   = 'I'.
trange_frange_t_selopt_t_line-option = 'NE'.
trange_frange_t_selopt_t_line-low    = '0400'.
APPEND trange_frange_t_selopt_t_line
  TO trange_frange_t_line-selopt_t.
APPEND trange_frange_t_line TO trange_line-frange_t.
APPEND trange_line TO trange.
CALL FUNCTION 'FREE_SELECTIONS_RANGE_2_EX'
  EXPORTING
    field_ranges = trange
  IMPORTING
    expressions  = texpr.
SUBMIT report1 VIA SELECTION-SCREEN
               WITH FREE SELECTIONS texpr.
<b>SUBMIT - selscreen_options</b>
... [USING SELECTION-SCREEN dynnr]
    [VIA SELECTION-SCREEN]
    [selscreen_parameters] ... .
1. ... USING SELECTION-SCREEN dynnr
2. ... VIA SELECTION-SCREEN
The addition USING SELECTION-SCREEN specifies the selection screen, VIA SELECTION-SCREEN specifies whether it is displayed. The additions selscreen_parameters provide values for the parameters, selection criteria, and the free selection of the called selection screen.
The values are transferred to the selection screen between the events INITIALIZATION and AT SELECTION-SCREEN OUTPUT The following hierarchy applies for transferring values:
First, the variant of the addition USING SELECTION-SET is transferred, which sets all parameters and selection criteria to the values of the variant. The values previously set in the called program are overwritten.
The values are then transferred to the table of the addition WITH SELECTION-TABLE. All parameters and selection criteria specified there are overwritten accordingly.
Finally, the values of the additions WITH sel value are transferred. All parameters and selection criteria are overwritten accordingly. If the addition WITH sel value is used more than once for the same parameter, this is overwritten with the last specified value. If the addition WITH sel value is used more than once for the same selection criterion, a selection table with the corresponding number of lines is transferred.
Providing values for free selections is independent of this hierarchy.
The options for parameter transfer enable a selection screen to be viewed as a parameter interface of an executable program. This applies particularly for background selection screen processing and for parameters and selection criteria that are defined without screen elements using the addition NO-DISPLAY.
The additions selscreen_parameters only work the first time the called program is executed. If a selection screen is displayed in the called program, the runtime environment calls the program again after it is finished, thereby replacing the values specified in selscreen_parameters with the previous input values.
<b>... USING SELECTION-SCREEN dynnr</b>
This addition specifies which selection screen is called. dynnr is a data object that must contain the screen number of a selection screen defined in the called program when the SUBMIT statement is called.
If the addition USING SELECTION-SCREEN is omitted or the screen number 1000 is entered, the standard selection screen is called. If no standard selection screen is defined in the called program, no selection screen is called.
If a screen number that is not 1000 is entered in the addition USING SELECTION-SCREEN, the corresponding independent selection screen is called. If no selection screen with this screen number is defined in the called program, this leads to an untreatable exception.
<b>... VIA SELECTION-SCREEN</b>
If this addition is specified, the selection screen is displayed on the screen. Otherwise, background selection screen processing takes place. In background selection screen processing, the selection screen events are triggered without the selection screen being displayed.
<b>Reward if usefull</b>

Similar Messages

  • HT1849 my songs cut.. some of them playing only 45 seconds Why?  i need information about it..

    some of my songs playing only 45 seconds Why? i need information about it..

    Other people have been having similar problems over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting them from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link

  • Need information about retail project

    hi all
    tommorow i had a interview with my client.
    i need information about retail  project.
    like terms and business process overview .
    documentaiton can be sent to:   [email protected]
    points will awarded for sure.
    kiran

    Hi Rama
    Retailing consists of the sale of goods or merchandise, from a fixed location such as a department store or kiosk, in small or individual lots for direct consumption by the purchaser.[1] Retailing may include subordinated services, such as delivery. Purchasers may be individuals or businesses. In commerce, a retailer buys goods or products in large quantities from manufacturers or importers, either directly or through a wholesaler, and then sells smaller quantities to the end-user. Retail establishments are often called shops or stores. Retailers are at the end of the supply chain. Manufacturing marketers see the process of retailing as a necessary part of their overall distribution strategy.
    Shops may be on residential streets, shopping streets with few or no houses, or in a shopping center or mall, but are mostly found in the central business district. Shopping streets may be for pedestrians only. Sometimes a shopping street has a partial or full roof to protect customers from precipitation. Retailers often provided boardwalks in front of their stores to protect customers from the mud. Online retailing, also known as e-commerce is the latest form of non-shop retailing (cf. mail order).
    Shopping generally refers to the act of buying products. Sometimes this is done to obtain necessities such as food and clothing; sometimes it is done as a recreational activity. Recreational shopping often involves window shopping (just looking, not buying) and browsing and does not always result in a purchase.
    Most retailers have employees learn facing, a hyperreal tool used to create the look of a perfectly-stocked store even when it is not.
    Contents [hide]
    1 Retail pricing
    2 Retail Industry
    3 Etymology
    4 Retail types
    5 See also
    6 Notes
    7 References
    [edit] Retail pricing
    The pricing technique used by most retailers is cost-plus pricing. This involves adding a markup amount (or percentage) to the retailers cost. Another common technique is suggested retail pricing. This simply involves charging the amount suggested by the manufacturer and usually printed on the product bize the manufacturer.
    In Western countries, retail prices are often so-called psychological prices or odd prices: a little less than a round number, e.g. $6.95. In Chinese societies, prices are generally either a round number or sometimes a lucky number. This creates price points.
    Often prices are fixed and displayed on signs or labels. Alternatively, there can be price discrimination for a variety of reasons, where the retailer charges higher prices to some customers and lower prices to others. For example, a customer may have to pay more if the seller determines that he or she is willing to. The retailer may conclude this due to the customer's wealth, carelessness, lack of knowledge, or eagerness to buy. Another example is the practice of discounting for youths or students. Price discrimination can lead to a bargaining situation often called haggling, in which the parties negotiate about the price. Economists see this as determining how the transaction's total surplus will be divided into consumer and producer surplus. Neither party has a clear advantage, because of the threat of no sale, in which case the surplus vanishes for both.
    Retailers who are overstocked, or need to raise cash to renew stocks may resort to "Sales", where prices are "marked down", often by advertised percentages - "50% off" for example."Sales" are often held at fixed times of the year, for example January sales, or end-of-season sales, or Blue Cross Sale
    [edit] Retail Industry
    Retail Industry has brought in phenomenal changes in the whole process of production, distribution and consumption of Consumer Goods all over the world. In the present world most of the developed economies are using the Retail Industry as their vital growth instrument. At present, among all the industries of U.S.A the Retail Industry holds the second place in terms of Employment Generation. In fact, the strength of the Retail Industry lies in its ability to generate large volume of employment.
    Not only U.S but also the other developed countries like U.K, Canada, France, Germany are experiencing tremendous growth in their Retail Sectors. This boom in the Global Retail Industry was in many ways accelerated by the Liberalization of Retail Sector.
    Observing this global upward trend of Retail Industry, now the developing countries like India are also planning to tap the enormous potential of the retail sector. Wal-Mart,the world's largest Retailer has been invited to India. Other popular Brands like Pantaloons, Big Bazar, Archies are rapidly increasing their market share in the retail sector. According to a survey, within 5 years, the Indian Retail Industry is expected to generate 10 to 15 million jobs by direct and indirect effects. This huge employment generation can be possible because of the fact that being dependent on the the Retail Sector shares a lot of Forward and Backward Linkages.
    Emergence of a strong Retail Sector can contribute immensely to the economic development of any country. With a dominant retail sector, the farmers and other suppliers can sell their produce directly to the major retail companies and can ensure stable profit. On the other hand, to ensure steady supply of goods, the Retail Companies can inject cash into the production system. This whole process can result into a more efficient production and distribution system for the economy as a whole.
    [edit] Etymology
    Retail comes from the French word retaillier which refers to "cutting off, clip and divide" in terms of tailoring (1365). It first was recorded as a noun with the meaning of a "sale in small quantities" in 1433 (French). Its literal meaning for retail was to "cut off, shred, paring". Like the French, the word retail in both Dutch and German (detailhandel and Einzelhandel respectively) also refer to sale of small quantities or items.[citation needed]
    [edit] Retail types
    According to Jim there are three major types of retailing. The first is the market, a physical location where buyers and sellers converge. Usually this is done in town squares, sidewalks or designated streets and may involve the construction of temporary structures (market stalls). The second form is shop or store trading. Some shops use counter-service, where goods are out of reach of buyers, and must be obtained from the seller. This type of retail is common for small expensive items (e.g. jewelry) and controlled items like medicine and liquor. Self-service, where goods may be handled and examined prior to purchase, has become more common since the Twentieth Century. A third form of retail is virtual retail, where products are ordered via mail, telephone or online without having been examined physically but instead in a catalog, on television or on a website. Sometimes this kind of retailing replicates existing retail types such as online shops or virtual marketplaces such as futurebazaar.com or Amazon.[2].
    Buildings for retail have changed considerably over time. Market halls were constructed in the Middle Ages, which were essentially just covered marketplaces. The first shops in the modern sense used to deal with just one type of article, and usually adjoined the producer (baker, tailor, cobbler). In the nineteenth century, in France, arcades were invented, which were a street of several different shops, roofed over. counters, each dealing with a different kind of article was invented; it was called a department store. One of the novelties of the department store was the introduction of fixed prices, making haggling unnecessary, and browsing more enjoyable. This is commonly considered the birth of consumerism [3]. In cities, these were multi-story buildings which pioneered the escalator.
    In the 1920s the first supermarket opened in the United States, heralding in a new era of retail: self-service. Around the same time the first shopping mall was constructed [4] which incorporated elements from both the arcade and the department store. A mall consists of several department stores linked by arcades (many of whose shops are owned by the same firm under different names). The design was perfected by the Austrian architecht Victor Gruen[5]. All the stores rent their space from the mall owner. By mid-century, most of these were being developed as single enclosed, climate-controlled, projects in suburban areas. The mall has had a considerable impact on the retail structure and urban development in the United States. [6]
    In addition to the enclosed malls, there are also strip malls which are 'outside' malls (in Britain they are called retail parks. These are often comprised of one or more big box stores or superstores.
    Non-traditional exterior of a SuperTarget, JacksonvilleLocal shops can be known as brick and mortar stores in the United States. Many shops are part of a chain: a number of similar shops with the same name selling the same products in different locations. The shops may be owned by one company, or there may be a franchising company that has franchising agreements with the shop owners (see also restaurant chain).
    Some shops sell second-hand goods. Often the public can also sell goods to such shops, sometimes called 'pawn' shops. In other cases, especially in the case of a nonprofit shop, the public donates goods to the shop to be sold (see also thrift store). In give-away shops goods can be taken for free.
    There are also 'consignment' shops, which is where a person can place an item in a store, and if it sells the person gives the shop owner a percentage of the sale price. The advantage of selling an item this way is that the established shop give the item exposure to more potential buyers.
    The term retailer is also applied where a service provider services the needs of a large number of individuals, such as with telephone or electric power.
    IS Retail was original develop to meet specific needs of Retail industry where standard SD/MM cannot.
    - Significant functionality difference are:
    - Store specific features are built into IS Retail where as it is not in
    standard SD/MM.
    - Mass processing of pricing (some of the retail features were
    included as standard SAP as of 4.6)
    - Assortment handling is not in standard SAP
    There are other differences in inventory costing/valuation etc.
    Retail valuation only available in SAP Retail.
    What is known in the trade as the "retail inventory method" or the "retail method" involves valuating stocks at retail, often aggregated at merchandise category or departmental level.
    Both the cost method and the retail method can be used in SAP Retail.
    Actually IS-Retail is a combination of MM and SD plus other funtionalities speacially developed for the retail industry such as:
    Promotions
    Pricing
    Assortments
    Clasification
    Merchandise category
    Seasons
    Is important to mention that all the funtionality of MM and SD is avialable in SAP IS-Retail with some diferences in some transactions:
    Material master data (article in retail) has some diferences.
    Vendor master data.
    Site master data.
    Reward if useful to u

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi,
    I need information about actionscript interfaces and
    namespaces, I'm preparing for ACE for Flash CS3 and I need to learn
    about this subjects and I can not find resources or simple examples
    that make these subjects understandable.
    Anybody can help me!
    Thanks a lot.

    Interfaces (cont.)
    Perhaps the most useful feature of interfaces is that you not
    only can define the data type but also method signature of the
    class that implements this interface. In other words, interface can
    define and enforce what methods class MUST implement. This is very
    useful when classes are branching in packages and team of
    developers works on a large application among others.
    The general syntax for an Interface with method signatures is
    written the following way:
    package{
    public interface InterfaceName {
    // here we specify the methods that will heave to be
    implemented
    function method1 (var1:dataType,
    var2:datType,…):returnType;
    function method2 (var1:dataType,
    var2:datType,…):returnType;
    To the previous example:
    package{
    public interface IQualified {
    function method1 ():void;
    function method2 ():int;
    Let’s write a class that implements it.
    If I just write:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    public function ClassOne(){}
    I will get a compilation error that states that I did not
    implement required by the interface methods.
    Now let’s implement only one method:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    public function ClassOne(){}
    I will get the error again because I implemented only one out
    of two required methods.
    Now let’s implement all of them:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    private function method2():int{
    return 4;
    public function ClassOne(){}
    Now everything works OK.
    Now let’s screw with return datatypes. I attempt to
    return String instead of void in method1 in ClassOne:
    private function method1():String{
    return “blah”;
    I am getting an error again – Interface requires that
    the method1 returns void.
    Now let’s attempt to pass something into the method1:
    private function method1(obj:MovieClip):void{
    return;
    Oops! An error again. Interface specified that the function
    doesn’t accept any parameters.
    Now rewrite the interface:
    package{
    public interface IQualified {
    function method1 (obj:MovieClip):void;
    function method2 ():int;
    Now compiler stops complaining.
    But, if we revert the class back to:
    private function method1():void{
    return;
    compiler starts complaining again because we don’t pass
    any parameters into the function.
    The point is that interface is sort of a set of rules. In a
    simple language, if it is stated:
    public class ClassOne implements IQualified
    it says: “I, class ClassOne, pledge to abide by all the
    rules that IQualified has established and I will not function
    correctly if I fail to do so in any way. (IMPORTANT) I can do more,
    of course, but NOT LESS.”
    Of course the class that implements an interface can have
    more that number of methods the corresponding interface requires
    – but never less.
    MORE means that in addition to any number of functions it can
    implement as many interfaces as it is desired.
    For instance, I have three interfaces:
    package{
    public interface InterfaceOne {
    function method1 ():void;
    function method2 ():int;
    package{
    public interface InterfaceTwo {
    function method3 ():void;
    package{
    public interface InterfaceThree{
    function method4 ():void;
    If our class promises to implement all three interface it
    must have all four classes in it’s signature:
    package{
    public class ClassOne extends DisplayObject implements
    InterfaceOne, InterfaceTwi, InterfaceThree{
    private function method1():void{return;}
    private function method2():int{return 4;}
    private function method3():void{return;}
    private function method4():void{return;}
    public function ClassOne(){}
    Hope it helps.

  • I need information about personal experience with DFS-R: shortcomings and limitaions of DFS-R

    Hello,
    We plan to install DFS-R in our organization.
    I need information about personal experience with DFS-R: shortcomings and limitations of DFS-R.
    Thank you for any info. 

    Hi,
    You could refer to the articles below to see some limits about DFSR and some DFSR configuration mistakes which will cause DFSR problems:
    Understanding DFS Replication "limits"
    http://blogs.technet.com/b/filecab/archive/2005/12/12/understanding-dfs-replication-_2200_limits_2200_.aspx
    Common DFSR Configuration Mistakes and Oversights
    http://blogs.technet.com/b/askds/archive/2010/11/01/common-dfsr-configuration-mistakes-and-oversights.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I need information about reports

    hi gurus,
      i need information about Trending reports and Management reports. Can any body provide me the scenario regarding this issues:

    Hi
    Trend reports are the reports which show a certain trend all over the years
    Say, Sales revenue for the year compared to all the previous years...This show what is the trend in the last few years
    Management reports high level reports with summarized data which helps in decision making. Say, Vendor performance report...this report shows list of default vendors by ranking them and management can decide to continue or not to continue with certain vendors
    Regards
    N Ganesh

  • I need  information  about  oops  concept  programming  in abap

    Hi  ,
    I need  information  about  oops  concept  programming  in abap
    Thanks,
    Asha

    Of course, the best place to start is help.sap.com.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    There are a couple good books out there as well.  You can get them at www.amazon.com
    Regards,
    Rich Heilman

  • I need information about Web dynpro ABAP Exception : ICF Service Node

    I need information about Web dynpro ABAP Exception :
    ICF Service Node "/sap/bc/webdynpro/sap/abcd/undefined" does not exist.
    Here abcd is application name.
    ICF Service Node exists and activated but kindly let me know from where "undefined" is coming .
    Please let me know your comments /views about  this.

    Hi,
    I think ur webdynpro service is not active after upgradation.
    You have manually activate it.
    Go go Tcode SICF,Execute the Initial screen,
    and in this new screen give service  as your application name and click on filter.
    You will get your service below which will be ur application name .
    right-Click on the deactivate and activate it or just activate it,.
    This shd work

  • I need information about ESS and Training and Work Experience

    I need information about ESS and Training and Work Experience.
    Anyone know if  there is something inside of the component ESS about Training and Work Experience (infotypes 22 and 23)?
    I appreciate information.
    Thanks.

    Marciano,
    check this documentation
    http://help.sap.com/saphelp_erp2005/helpdata/en/4d/c19ce6ef2842258283afc35a54172a/frameset.htm
    Thanks
    Bala Duvvuri

  • Need information about "Activation Task"

    Hi at all
    I need information about "HOW" the activation task work. I try to found information on Metalink and I can't found anything. Who anyone show me where I can find this information?
    The information from Design Studio are not enough.
    Thanks in advice
    Luis
    Edited by: Luis_ITA on 9-giu-2011 10.35

    Hi Luis,
    Following are the resources you can use to seek information about Activation Tasks:
    1. Following link is from OU that provides an overview of the Activation Task:
    http://ilearning.oracle.com/ilearn/en/learner/jsp/rco_details_find.jsp?srchfor=1&rcoid=920335765
    2. Design Studio Online Help provides comprehensive description about the task – what is it, how to use it, different compensation modes etc.
    Thanks,
    Deepankar (Deep) Dey
    OSM- Product Management

  • NEED INFORMATION ABOUT "MAX_TEST" FUNCTION MODULE

    HI ABAPERS,
                      I need information about "MAX_TEST" function module . this function module is used in 4.6 version , now system have been shifted to 6.0.....here in 6.0 version this function module is not prasent.can any one tell me which new function module we can use in place of this function module, without changing the functionality........
             Thanks in advance
    regards,
    SUNIL

    The module is not very sophisticated. Profficiency in Java or ABAP will be a great bonus here. There are plenty of good materials regarding XI on SDN. I suggest to start with step-by-step guides and master all basic integration scenarios
    http://wiki.sdn.sap.com/wiki/display/XI/Step-by-Step+Guides
    Opportunities in industry are not bad also, cause PI is rather popular among customers. The best thing is that it fits any type of customer's business. Integration is demanded almost everywhere.

  • I also need information about use the ProConnect(r) Integ...

    I also need information about use the ProConnect(r) Integrated KVM 2-Port Switch to connect a Mac G4 and a PC anyone help
    software reviews editor

    I suggest you to go to linksys website & it will give all required information ,,,
    Or you can try this link ....

  • Need information about WebLogic Server API

    Hi All,
    Can anyone please tell me what API does Oracle Weblogic Server call. I want to ask by calling which API I can get information about the state of a weblogic server and which jar contains those APIs.
    Thanks in Advance!!

    Hi Roshni,
    For List of MBean's You can follow the below Oracle link
    http://docs.oracle.com/cd/E12839_01/apirefs.1111/e13951/core/index.html
    can you pls tell me how can I retrieve of a weblogic server through a java code,
    You can follow the below link,it will be helpful
    http://middlewaremagic.com/weblogic/?p=7505
    Regards
    Fabian

  • Need Information About Java Platform Overview For Manager (WJTB-310)

    Hi, My name is Jeffry. I need information about Java Platform Overview For Manager (WJTB-310).
    I need Information about table of contents, how long it takes to study that training (approximately), how many chapters are in that training, minimum Internet connection speed to access that training, and everything you know about WJTB-310.
    Is there a synchronized audio in WJTB-310 ?
    Is there a video streaming in WJTB-310 ?
    Can I receive a certificate for any web-based training ? especially in WJTB-310 ?
    Is there a programming language material in WJTB-310 or just an overview ?
    Sorry for asking to many question
    Thanks
    Jeffry Kristianto Yanuar

    I thought I'd give you a response even if I can't answer your question completely. (I think we ought to start a separate thread entitled "How do you get any replies on this forum???") Here is what I have been forced to do. I introduced some JavaScript on the web page that contains the applet I want to be run. The sole purpose of the JavaScript is to detect which platform the client is on. If it's not MacIntosh, then I have JavaScript write the <object><embed> tag used by the Java plug-in. It it is MachIntosh, then I have JavaScript write the regular <applet> tag and let the Mac browsers do as best they can. With mixed and disappointing results. Netscape 6.2 crashes with a lot of applets. IE 5 brings up the applet okay but certain Swing components aren't displaying properly. The MacIntosh I've been testing on is version 9.1. I'm trying OS X tomorrow.
    Why don't you send a reply to my query under the Java Plug-in Forum--from aronsz, dated 06/11/02--if you have some more info by now. I sure would appreciate it.

  • Need information about t-code SCAT

    Hi All,
             I need information about t-code *SCAT.*
             I dont know any thing about this transaction. I need information about how to use. What for we will use. Basis people how they can use this SCAT t-code.
             Try to help me out in solving this issue.
    Regards,
    Sateesh J

    SCAT is used to upload the data with the transaction.The use of CATT is for bulk uploading of data. Although CATT is primarily a testing tool, it can be used for the mass upload of data. The way CATT works is like a real user actually inputting on the SAP screen.
    The over-all procedure to upload data using CATT is as follows:
    · Creation of the CATT test case & recording the sample data input.
    · Download of the source file template.
    · Modification of the source file.
    · Upload of the data from the source file.
    Refer the links:-
    http://sap.ittoolbox.com/documents/popular-q-and-a/catt-procedure-1795
    http://www.thespot4sap.com/Articles/CATT.asp

Maybe you are looking for

  • Transient persestant memory-begin abort transaction-arraycopynonatomic

    If array defined as transient, then abort doesnt make any sense, chages are not rolled back.(Both for arrayCopy and arraycopyNonAtomic functions)      public void AtomicNonatomic() byte hello[] = {'H','E','L','L','O'};           byte[] key_buffer = J

  • Subcontracting b/n two company codes

    Hi friends i have caome across the subcontracting scenario which takes place between two company code with their respective plants, Please Provide best way to map the scenario Thanks Regards Deepak.Goura SAP-Consultant

  • Settings to  BWOM_SETTINGS  table in R/3 for deltas

    Hi my requirment is to change a Parameter value in BWOM_SETTINGS table in R/3 for deltas.. I made the change in ore R/3 customizing client...but the setting is not updated in other clients Please update me how to proceed Thanks

  • XSL Extension Functions

    Is it possible to write our own xsl Extension Functions in Java using the oracle 9i xsl translator? If yes, how would I write the namespace to point to my class? I was able to do it with xalan, but unable so far with the oracle xslt. TIA.

  • Desktop App Screen Goes 'Off-screen'

    The app starts up but then in the wink of an eye it's gone. Using Expose I can see it but although it will drag in Expose that changes nothing. Clicking on it's Spaces Options I made sure it's suppose to show on All screens. I've reset PRAM and NVRAM