Use of "super" key word in abap oops...

Hi,
  Can any one explain me what is the use of ' super ' key word in abap oops. excluding super class.
With Regards,
M.S.Amirtharaj Vijay.

Vijay,
please read the sap documentation or f1 help
Thanks
Bala Duvvuri

Similar Messages

  • What is use of LOAD key word in ABAP-HR

    what is use of LOAD key word in ABAP-HR?

    Hi,
    LOAD keyword is used to load all the parameter values.
    Basic form
    LOAD REPORT prog PART part INTO itab.
    Variants
    1. LOAD REPORT prog PART 'HEAD' INTO itab.
    2. LOAD REPORT prog PART 'TRIG' INTO itab.
    3. LOAD REPORT prog PART 'CONT' INTO itab.
    4. LOAD REPORT prog PART 'DATA' INTO itab.
    5. LOAD REPORT prog PART 'DDNM' INTO itab.
    6. LOAD REPORT prog PART 'DATV' INTO itab.
    7. LOAD REPORT prog PART 'SELC' INTO itab.
    8. LOAD REPORT prog PART 'STOR' INTO itab.
    9. LOAD REPORT prog PART 'LITL' INTO itab.
    10. LOAD REPORT prog PART 'SYMB' INTO itab.
    11. LOAD REPORT prog PART 'LREF' INTO itab.
    12. LOAD REPORT prog PART 'SSCR' INTO itab.
    13. LOAD REPORT prog PART 'BASE' INTO itab.
    14. LOAD REPORT prog PART 'INIT' INTO itab.
    15. LOAD REPORT prog PART 'DATP' INTO itab.
    16. LOAD REPORT prog PART 'TXID' INTO itab.
    17. LOAD REPORT prog PART 'COMP' INTO itab.
    Effect
    Loads the specified part of the generated version of the program prog into the internal table itab (for analysis purposes only).
    The return code value is set as follows:
    SY-SUBRC = 0 The load for the program prog exists and is current.
    SY_SUBRC = 4 The load for the program prog does not exist.
    SY-SUBRC = 8 The load for the program prog exists, but is not current. In some cases, this SY-SUBRC may mean that the program load has been destroyed. You can resolve this by generating the program. With PART 'LREF' , SY-SUBRC = 8 means that the line reference table is incorrect for the program. With PART 'CONT' , it means that the reference part of the internal table is empty.
    itab has been filled only if SY-SUBRC = 0 .
    Reward points if useful.
    Regards,
    Sekhar

  • How to translate the key words in ABAp program from lower case to upper cas

    How to translate the key words in ABAp program from lower case to upper case?

    Hi Kittu,
    You need to set the Pretty Printer settings to achieve key words in ABAP program from lower case to upper case.
    Utilities -> Settings -> Pretty Printer (tab) -> Select third radio button.
    Thats all.
    <b>Reward points if this helps.
    Manish</b>

  • What is the use of Volatile Key word ??

    what is the use of Volatile Key word ??
    There is a primitive variable
    volatile int b = 10; // this is a master copy
    Locally thread A changes this int b as 5.
    Locally thread B changes this int b as 20.
    thread c want to use this int b.
    now what c will get??
    If didn't use volatile what will happen.
    Regards
    Dhinesh

    Deenu wrote:
    what is the use of Volatile Key word ??Why don't you ever reply to any of your threads? You never thank anyone for helping you, and this makes you one of the worst trolls out there.

  • SSL: How to use the same key pair for ABAP & JAVA?

    Hello,
    I want to setup an XI (3.0 on Netweaver04)installation in the way, that ABAP AS and JAVA AS use the same key pair for SSL. My problem is to define the same private key on ABAP and JAVA. With the JAVA Administrator I am able to define or import a private key. But I could not find a possibility in ABAP to manage private keys in order to use the same on as in JAVA. What is the procedure for this?
    Thanks and Regards,
    Frank Tottleben

    Hello,
    I want to setup an XI (3.0 on Netweaver04)installation in the way, that ABAP AS and JAVA AS use the same key pair for SSL. My problem is to define the same private key on ABAP and JAVA. With the JAVA Administrator I am able to define or import a private key. But I could not find a possibility in ABAP to manage private keys in order to use the same on as in JAVA. What is the procedure for this?
    Thanks and Regards,
    Frank Tottleben

  • Use of foreign key check in ABAP reports

    Hi,
    I'm trying to understand if it's possible to use a foreign key integrity check in an ABAP reports. I have understood that this kind of check is deactivated for performance reasons, is it right?
    In this case I'd like to know if it is possible to activate the foreign key check "on demand", or just for a particular table.
    As an example, I'd like to use the foreign key defined on attribute AKONT of table KNB1, that points on the related attribute of table SKB1.
    Thanks,
    Gabriele

    Welcome on SCN!
    I'm trying to understand if it's possible to use a foreign key integrity check in an ABAP reports. I have understood that this kind of check is deactivated for performance reasons, is it right?
    Most likely yes. Integrity is turned OFF for Open SQL statements but is turned ON for screen fields.
    If you just create screen parameter like
    parameters pa_akont type knb1-akont.
    ...then input help for that field will be automatically provided. This means that you will not be able to pick or enter value different that this allowed from SKB1 table (foreign key relationship will be checked).
    You can explicitly assign different input help or search help for certain screen field independently of type it is refering i.e by means of fm F4IF_FIELD_VALUE_REQUEST .
    This however still relates only to screen fields, not fields used directly in ABAP statement.
    Regards
    Marcin

  • How to use oracle rank key word

    I am trying to rank my record using oracle key work row_number() but it just gives me an error message.
    SELECT  g.csecnum "Section Number", e.iplineno "Line Number",ItemRank,
            e.eiitem  "Item Number", (i.idescrl ||'  '|| e.isupdes) "Item Description",
            i.iunits "Item Units", SUM (e.iqty) "Quantity",
            p.cprojnum "S.P. Number", p.contid, p.contid,
            p.prroute "Route Number",DECODE (TRIM (p.prroute), NULL, 'N/A',p.prroute) "Route Number",
            INITCAP (p.clocat1 || p.clocat2 || '---' || p.cdescr) "loc",
            p.cdescr "Job Description",func_get_unit_name (iunits) "Unit Name",
            (SELECT INITCAP (func_get_county_name (ccnty1))  FROM proposal  WHERE contid = '&ContractId') "County Name"
                 FROM         ( SELECT  g.csecnum "Section Number", e.iplineno "Line Number",
                                 e.eiitem  "Item Number", row_number() over (order by  e.eiitem asc) as ItemRank,
                                  (i.idescrl ||'  '|| e.isupdes) "Item Description",
                                  i.iunits "Item Units", SUM (e.iqty) "Quantity",
                                   p.cprojnum "S.P. Number", p.contid, p.contid,
                                   p.prroute "Route Number",DECODE (TRIM (p.prroute), NULL, 'N/A',p.prroute) "Route Number",
                                   INITCAP (p.clocat1 || p.clocat2 || '---' || p.cdescr) "loc",
                                   p.cdescr "Job Description",func_get_unit_name (iunits) "Unit Name",
                                (SELECT INITCAP (func_get_county_name (ccnty1))  FROM proposal  WHERE contid = '&ContractId') "County Name"
                        FROM itemlist i, estitem e, estcatg g, propproj x, proposal p
                        WHERE   p.contid = x.contid AND x.pcn = g.pcn AND e.pcn = g.pcn AND e.cn = g.cn AND i.item = e.eiitem
                                     AND i.ispecyr = p.cspecyr AND e.iplineno <> ' ' AND e.eiitem <> '2550601/01000'
                                     AND e.eiitem <> '2565601/00031' AND e.eiitem <> '2565601/00032' AND e.eiitem <> '2565601/00033'
                                     AND e.eiitem <> '2402601/01000' AND p.contid = '&ContractId'         
                                   GROUP BY g.csecnum, i.iunits,p.clocat1,p.clocat2,p.contid,p.cdescr, p.cprojnum,i.iunits,p.prroute, e.iplineno,e.eiitem, i.idescrl,e.isupdes
                                  ) ItemNumberRank

    thanks guys for the help. yes, I do not have a where clause in the query that I posted here and I do not need until I convert this query to a procedure since the value for the where clause is passing from the .net page. I tried to clean it up a little bit by getting rid of all the alias and still not working ....
    SELECT   ItemRank, g.csecnum , e.iplineno , e.eiitem , (i.idescrl ||'  '|| e.isupdes) ,
             SUM (e.iqty) ,  p.cprojnum , p.contid, p.prroute ,DECODE (TRIM (p.prroute), NULL, 'N/A',p.prroute) ,
             INITCAP (p.clocat1 || p.clocat2 || '---' || p.cdescr) , p.cdescr ,func_get_unit_name (iunits) ,
             (SELECT INITCAP (func_get_county_name (ccnty1))  FROM proposal  WHERE contid = '&ContractId')
    FROM           (SELECT     row_number() over (order by  e.eiitem asc) as ItemRank,g.csecnum , e.iplineno , e.eiitem ,
                                   (i.idescrl ||'  '|| e.isupdes) , SUM (e.iqty) ,  p.cprojnum , p.contid,
                                    p.prroute ,DECODE (TRIM (p.prroute), NULL, 'N/A',p.prroute),
                                    INITCAP (p.clocat1 || p.clocat2 || '---' || p.cdescr) ,
                                    p.cdescr ,func_get_unit_name (iunits) ,
                                 (SELECT INITCAP (func_get_county_name (ccnty1))  FROM proposal  WHERE contid = '&ContractId')
                        FROM itemlist i, estitem e, estcatg g, propproj x, proposal p
                        WHERE    p.contid = x.contid AND x.pcn = g.pcn AND e.pcn = g.pcn AND e.cn = g.cn AND i.item = e.eiitem
                                     AND i.ispecyr = p.cspecyr AND e.iplineno <> ' ' AND e.eiitem <> '2550601/01000'
                                     AND e.eiitem <> '2565601/00031' AND e.eiitem <> '2565601/00032' AND e.eiitem <> '2565601/00033'
                                     AND e.eiitem <> '2402601/01000' AND p.contid = '&ContractId'         
                                   GROUP BY g.csecnum, i.iunits,p.clocat1,p.clocat2,p.contid,p.cdescr, p.cprojnum,i.iunits,p.prroute, e.iplineno,e.eiitem, i.idescrl,e.isupdes
                                  ) ItemNumberRank

  • Can someone explain the super key word

    i am using this good from Adobe Training from the Source
    public class ProductEvent extends Event
    public var product:Product;
    public function ProductEvent(prod:Product,type:String)
    super(type);
    this.product = prod;
    public override function clone():Event
    return new ProductEvent(product,type);
    Why type is super but not prod. Thanks

    The super(type) statement is a call to the constructor of
    ProductEvent's super-class, i.e. Event.

  • Find files with key words

    trying to find files using key words is not working using bridge with cs3 and windowsxp.
    when key words are attached to a file they are evident when the image is open. when i try to search for the file using the selected key word i get a no results found response.
    any suggestions

    Lots of posts on this subject in the Bridge forum. Check there, and if you still have problems post question.

  • About key word return

    Hi;
    Iam very confused about the use of the key word return. I understand its functionality when it returns some value.But what's the case when we use it in the following way:
    if(some testcase)
    return;
    Also where will return leads to when we use only return in a method that has void return type.

    Hi;
    Iam very confused about the use of the key
    word return. I understand its functionality when it
    returns some value.But what's the case when we use
    it in the following way:
    if(some testcase)
    return;:eek:
    IMO a ``test case'' is not a language construct.
    http://en.wikipedia.org/wiki/Test_case

  • Imovie 08 / key word box is missing

    hi, i am currently working for a professional football club in spain and i am using imovie to edit videos for the coaches. unfortunately on my mac the screen is difficult to see and so i have linked my mac book to a friends computer screen. i have then moved across the key words box onto his screen. the next time i went to use imovie 08 on my macbook without the external screen, the key word box was gone, and when i try to use the screen which i used previously, the key word box still isnt there. how can i get it back? this is becoming a very annoying problem for labelling the movie as i clip the videos for many different things. <such as
    winning possession, losing, shots, corners, throw ins, free kicks, attacks, defence, counter attcks, as well as different actions by each player.>
    therefor opening up the projects list, selecting the project i want, then dragging the clip and then reclosing the projects list to increase the viewer size is time consuming and also a little irritating when you have to do it hundreds of times for 1 match
    please help me find the key word box and save me hours of my life

    If the above methods don't work you can also try trashing your preference files by holding down the ctrl+alt+shift keys immediately after launching Photoshop.
    When asked if you want to delete your Photoshop settings file, say yes. This will reset Photoshop to its factory defaults.

  • ABAP key word documentation  not appearing

    Hi every one
    when i press F1 on a keyword in ABAP editor it displaying ABAP keyword documentation with blank page.
    i am using vista OS and SAPGUI 6.0 and Internet explorer 7.0
    Please suggest me what to do to get the Key word help.
    Most useful answer will be awarded
    Thank you
    Kiran

    Check transaction ABAPDOCU. This shouldn't be dependent on which version of SAPGUI you have (assuming your sap rel is 4.6 or greater).
    Also look in table tstct for transaction abapdocu.
    If it doesn't exist then you need to re-install it. Should be part of standard SAP however.
    VISTA is irelevant in this regard - however you might need to access the SAP help files via a browser and a manual link as the automatic link doesn't work properly under VISTA unless SAPGUI 7.0 is installed -- as the previous poster has said.
    For the SAP library you can always use a manual link to the sap help data files but of course it won't work via F1.
    Cheers
    jimbo

  • Is there a way to identify the key words being used for SEO when I'm visiting a web site?

    When I am on a web site, looking at a product for sale, is there an app or add on I can use to see what that site has for key words, meta tags etc? It would be helpful when adding products to my own site to see what works elsewhere.

    Do search engines even look at those anymore? URL, title and page content are what's relevant.
    * http://www.metatags.org/google_ignores_meta_tags_in_ranking
    In any case, you can look at the source code. Click the Firefox button, then Web Developer, then View Source. You can also press Ctrl+U.
    All 'SEO' add-ons:
    * https://addons.mozilla.org/firefox/search/?q=seo&sort=users

  • Super key to open panel menu while using compiz

    Hi, I am new to Arch, I have tried a few times to install before but actually sat down today and got this masterpiece set up . All I was wondering now is how do I set up Compiz so that I can use just the super key on my laptop to open the panel menu? I tried editing it to just super and it doesn't seem to like it for whatever reason. This is probably the one Windows feature I could not live without.. I so wish I'd started out my computing days on Linux, then alt+F1 would be the norm thanks in advance

    I have no experience with xmodmap and after using Google to search around I can't seem to get my head around it (the arch wiki also left me feeling somewhat confused too). How do I go about setting it up correctly? This is the final thing that I can't seem to get sorted, and the only thing I have been unsuccessful in Googling a solution.
    Arch has shown me just how much I really don't know! I like learning though otherwise I'd still be like all the other sheep and using Windows like we have all been brainwashed to believe is good (well obviously not the Linux community) I would also like to take this opportunity to say thanks to everyone who has given their time to provide me with support and I hope I have not annoyed you too much with my questions.

  • Is it possible to download  abap key word documentation

    hi experts,
    i want to download all the abap key word documentation.
    i know that if we press f1 on keyword we will get that particuler key word help, but i want all the words document download or copy once.

    I dont think there is a way to download it in that form.
    You can however get the PDF version from here -
    http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
    SAP Library -> Basis Components -> Abap programmng & Runtime Env -> ABAP Programming.
    You can save this PDF on your PC .
    Cheers.

Maybe you are looking for

  • HT5550 Locating frequently used audio in a single Event in FCPX 10.1?

    I have a bunch of audio files that I regularly use to score my podcasts. I am just starting to figure out this new 10.1 update. Instead of copying them into each new "Event" (or "Project" now that it appears the project files are contained within the

  • Error starting deployment on weblogic 10.3

    I successfullly deployed a WAR to my development WebLogic server 10.3, however upon starting up the application I get the following error. weblogic.management.DeploymentException: Error: Unresolved Webapp Library references for "ServletContext@404564

  • Extreme base station 802.11g Mystery

    Been trying to wrap my head around this for the past week. Girlfriend unplugged our perfectly working Airport express from wall outlet by mistake. She plugs it back in but no connection is detected by our two ibook G4s (both running leopard). After t

  • Custom fields from SRM PO to R/3 - missing values

    Hi, As part of the extended classic scenario  when the PO is being transferred to backend we are sending couple of custom fields ( added to append structure  CI_EKPODB in EKPO table )  in the item table . We are doing this for ECC 6.0 and 4.7 backend

  • Ebooks for oracle 10g certification exam 1z0-042

    hello could any one please get me ebooks for oracle 10g certification exam 1z0-042 since the ordered resouce is getting late to reach my hands. please help me to find success in my exam