ABAP key word documentation

Hi every one
I installed windows vista OS from then onwards i am not getting ABAP keyword documentation in F1 help.
please tell me how would i get this feature back.
Regards
Rajesh

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

Similar Messages

  • 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.

  • 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

  • Accessing ABAP key word DB through program

    hello,
    Is it possible to acccess and search ABAP keyword database from within the program usikng any FM etc?
    Thanks in advance

    Sam m wrote:
    I want to scan programs through another program.
    Hi Sam,
    Are you looking to get the whole source code of a program?
    You can have all code of a program into an internal table using READ REPORT.
    ABAP Keyword Documentation
    Regards
    Sreekanth
    Message was edited by: Matthew Billingham

  • ABAP key word puzzle (Help)

    Hi, everyone.
    I have read the following code:
    CALL METHOD  LR_COLUMNS->SET_COLUMN_POSITION
                                 EXPORTING :
                 !COLUMNNAME = 'VKORG'
                 !POSITION   = 01,
                 !COLUMNNAME = 'AUART'
                 !POSITION   = 02.
    So what does '!' mean? I have try to find something in Help, but it has nothing about '!'.
    Welcome any suggestions!
    Thanks very much.

    Hello James,
    the exclamation mark is nothing more than a hint to the ABAP compiler. It is required when you want use keywords like export, exceptions and so on as formal / actual argument.
    In the given scenario it is no must. But maybe the code is produced by some generator. For a generator not smart enough to no all rules, it is good advice to use exclamation marks for any parameter.
    Regards,
      Klaus

  • 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

  • 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>

  • Free key word Function

    hi experts,
    i am confusing with free key word usage.
    right now i have not used FREE in my abap programs.
    i read documentation it is saying
    FREE:-Releases the memory space needed to process the internal table itab.
    My doubt is why i need to Release the internal table memory. if i am not using what is the problem.
    Please help me

    When you execute a program it occupies certain memory space on apllication server . If your internal tables are huge ( large no of rows ) and you do not need them further in your program it is good to use Free itab so that memory is released and can be used by other programs ( this will increase the performance of your application server ). Otherwise this memory is only freed up when your program ends. If your internal table is expected to have not many rows then free itab does not have much significance.
    Cheers.

  • What are all the key words are not recommented in User Exit or Enhancement

    Dear Experts,
    Can any of one tell me, what are all the key words not recommended to use any of the User exit or Enhancement spots?
    Regards,
    Mohana
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Feb 22, 2011 4:10 PM

    No Icon:Visitor
    Student
    Honor Student
    Top Student
    Tutor
    Intern
    Teacher
    Grad Student
    Master’s Graduate
    PhD Student
    Associate Professor
    Professor
    Distinguished Professor
    Regents Professor
    Associate Dean
    Dean
    Provost
    FONDA X. COX, PhD

  • How usnig manuplate the Import and export Key word.

    How usnig manuplate the Import and export Key word? and
    how do the clear of those variable?

    HI ,
    For IMPORT Keyword :---
    To retrieve data from the global memory area, use the IMPORT statement.  The most basic form of the IMPORT statement is:
    IMPORT <variable> FROM MEMORY.
    To give the variable a different name in your program from what it is called in the global memory area, use the TO clause.  You must define the local variable name with a DATA statement in your program.  The format is:
    IMPORT <global var> TO <program var> FROM MEMORY.
    As with the EXPORT statement, you can specify multiple variables per statement, and you have the option of specifying which cluster ID you wish to import from.
    After each IMPORT statement, SY-SUBRC is set to indicate whether or not the cluster ID you specified exists (but not whether specific variables were imported specifically).  SY-SUBRC is zero if the cluster exists.
    It is also possible to IMPORT and EXPORT to database tables .
    ABAP memory that is used to store exported data is user and transaction specific, so when passing data between programs in this manner you must make sure that transaction boundaries are not crossed. Otherwise the contents of this memory will get destroyed and will not be available to the importing program.
    For Export Keyword :---
    The EXPORT statement moves data from your program into a global memory area.  The most basic form of the EXPORT statement is:
    EXPORT <variable> TO MEMORY.
    This places the specified variable into a global memory area that another program can later read using the IMPORT statement.
    You may specify multiple fields in the same EXPORT statement.  For example:
    EXPORT KNA1-KUNNR KNA1-BUKRS TO MEMORY.
    You can give variables a different name in the global memory area using the FROM clause.  For example, the following code exports SY-SUBRC and gives it the name RETVAL in the global memory area:
    EXPORT RETVAL FROM SY-SUBRC TO MEMORY.
    You can specify a cluster ID when exporting data to memory.  You can freely choose the name of the cluster ID, which can be up to 32 characters long.  Each cluster ID specifies a particular area in memory.  Each time you EXPORT data to the same cluster ID, all data previously written to that ID is erased.  For example:
    EXPORT SY-SUBRC TO MEMORY ID u2018LJS1u2019.
    Hope u understand
    Thanks
    Shambhu

  • Regarding key word "Table_line"

    Hi abapers,
    I came across a key word "TABLE_LINE".
    I am able to understand that it is a pseudo component but unable to understand anything more about it.
    Can u people explain me about its use with a sample code.
    Also I came across standard, sorted and hashed table and their syntax. i saw keywords such as "ANY TABLE" and "INDEX TABLE". please give a code snippet about their usage and importance also their purpose.

    Hi Lucky,
    TABLE_LINE:
    In internal tables, you can generally address the entire table row in a key specification by using the pseudo component TABLE_LINE. This is particularly useful for tables whose line type does not have a structure.
    You can, for example, define a
    sorted table of integers as follows and process it in a loop with a WHERE condition:
    DATA: wa   TYPE i,
          itab TYPE SORTED TABLE OF i WITH UNIQUE KEY TABLE_LINE.
    LOOP AT itab INTO wa WHERE KEY table_line > 5.
    ENDLOOP.
    As TABLE_LINE is similar to a row component, the underlying row structure should not contain a component of the same name.
    The old form TABLE LINE (without the underscore) is obsolete. SAP was unable to provide continued support since this form does not allow you to use references in tables to access attributes of the object referenced.
    In ABAP Objects, that is, classes and class pools, a stricter syntax check is performed.
    In the following example, ITAB is a table of object references. The associated class has an attribute NAME. You can access this attribute by specifying TABLE_LINE->NAME in a LOOP statement.
    CLASS my_class DEFINITION.
      PUBLIC SECTION.
      DATA: name TYPE string.
    ENDCLASS.
    DATA: wa   TYPE REF TO my_class,
          itab TYPE TABLE OF REF TO my_class.
    CREATE OBJECT wa. wa->name = 'Hugo'.  INSERT wa INTO TABLE itab.
    CREATE OBJECT wa. wa->name = 'Nora'.  INSERT wa INTO TABLE itab.
    CREATE OBJECT wa. wa->name = 'Jimmy'. INSERT wa INTO TABLE itab.
    CREATE OBJECT wa. wa->name = 'Nora'.  INSERT wa INTO TABLE itab.
    LOOP AT itab INTO wa WHERE table_line->name = 'Nora'.
    ENDLOOP.
    For the remaining things check the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Creating Materialized View with the Distinct key word

    Hi
    I need help to create Materialized View with the Distinct key word.
    my query is
    select distinct col1, col2 from t1;
    is there any alternate of DISTINCT because I can not refresh the MV as fast on demand if I am using it and Fast on Demand is a must for me.

    hi
    check out this link
    http://download-west.oracle.com/docs/cd/B12037_01/server.101/b10736/basicmv.htm#i1007299
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/intro.htm#sthref183
    hope this helps
    CHeers

  • Help on web.xml file, what if the parameters contains key words ?

    Hi:
    I am just wondering what should I do if I want to include key words suchs
    as <param> in web.xml file for a servlet config.
    Example:
    <servlet>
    <servlet-name>testServlet</servlet-name>
    <parameter>
    <param-name>some name</param-name>
    <param-value>some value</param-value>
    </parameter>
    </servlet>
    What should I do if I want to repleace 'some value' with '</param-value>some
    value' and still to prevent the engine to terminate parsing the param-value
    at the fake ending? Is there a standard way in XML to distanguish that?
    (in URL format it can be replaced %xx for some chars).
    ie,
    <param-value> </param-value>some value</param-value>
    where the second </param-value> is the real ending.
    Thank you!
    Gang

    Hi!
    You can use "& lt ;" and "& gt ;" xml entities for that. Or wrap text element in <![CDATA[...]]> section.
    Regards,
    Ignat.

  • 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

Maybe you are looking for

  • Firefox crashes as soon as I open it--I cannot even submit a crash report

    Firefox crashes as soon as I open it. As far as I know, I haven't been able to submit crash report. I was playing Farmville when it crashed, about a month or two ago, and did submit a crash report then, all this in suppost has been no help, since I c

  • I would like to see how can I connect my HP computer to my apple tv box

    I would like to see how can I connect my HP computer to my apple tv box

  • How to get each frame Info in SWF ?

    Hi,all. I met a problem with SWF decomplie. If you have edited the fla files, store lots of frames which contains some shape information like pixels color, position and ect When you want to get that information in SWF, or rather, each frame informati

  • PL/SQL help in Package

    Hi all, I have a block of code in a package that runs 3 times to spit out a Total. I want to capture the 3 Totals and return the highest total.. so whats the best way to store those three values and select the highest Total from the same package....

  • Value Mapping Replication for Mass Data - Performance Issues

    Hi All, We are looking into Value Mapping Replication for Mass Data. We have done this for less number of fields. Now we might have to have 15,000 records in the cache for the Value Mapping. I am not sure how this would effect the Java Cache and Java