RS_TREE_LIST_DISPLAY and tabstrip

Hi,
I have an HR function which uses RS_TREE_LIST_DISPLAY to display some data in a list tree. I would like to incorporate this into a tabstrip that I have built, but when I try to run this function in the PBO of the subscreen of the tab in the tabstrip, the tree isn't displayed in the subscreen area of the tabstrip. Instead it simply displays the data in a standard list screen. When I back out of this list screen I am then returned to my tabstrip (and the tab is empty). Can RS_TREE_LIST_DISPLAY be used to display data in a tabstrip or is there an alternate function that can do this? What is the best way to show a tree list in a tabstrip?
Thank you,
Lee

Hi,
I don't understand
then I don't think it's worth doing this complex solution! :-p
The other solution is to use a SAPscript form or Smart form (and probably Adobe forms as it is more recent but I don't know), there are embedded mechanisms to setup the number of pages at the end of the generation on every page.
The last solution is to ask people to look at the number of pages of the spool if they want to have the information.
About what I said previously, I think I was incorrect because as it is a background process, there's no list buffer we could operate on, and I think the only solution is to operate on the spool after it has been generated. It's really much more complex than what I thought!
Sandra

Similar Messages

  • What are the uses of table control and tabstrip control

    can anyone tell me the uses of table control and tabstrip control

    Hi,
    table control is more comfortable for customizing.scroll bars all possible in this.where as it is not possible in step loops.
    check this example.
    PROGRAM ZBHTCTRL.
    TABLES: LFA1, EKKO.
    DATA: OKCODE1 LIKE SY-UCOMM,
    OKCODE2 LIKE SY-UCOMM.
    CONTROLS TABC TYPE TABLEVIEW USING SCREEN 1001.
    DATA: BEGIN OF ITAB OCCURS 0,
    MANDT LIKE EKKO-MANDT,
    EBELN LIKE EKKO-EBELN,
    BSTYP LIKE EKKO-BSTYP,
    BSART LIKE EKKO-BSART,
    END OF ITAB.
    MODULE USER_COMMAND_1000 INPUT.
    CASE OKCODE1.
    WHEN 'BACK'.
    SET SCREEN 0.
    WHEN 'NEXT'.
    SET SCREEN 1001.
    SELECT * FROM EKKO INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE
    LIFNR = LFA1-LIFNR.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_1001 INPUT
    MODULE MOVE_DATA OUTPUT.
    EKKO-MANDT = ITAB-MANDT.
    EKKO-EBELN = ITAB-EBELN.
    EKKO-BSTYP = ITAB-BSTYP.
    EKKO-BSART = ITAB-BSART.
    ENDMODULE. " MOVE_DATA OUTPUT
    MODULE USER_COMMAND_1001 INPUT.
    CASE OKCODE2.
    WHEN 'BACK'.
    SET SCREEN 1000.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_1001 OUTPUT
    MODULE STATUS_1001 OUTPUT.
    SET PF-STATUS 'MENU'.
    SET TITLEBAR 'TIT'.
    ENDMODULE. " STATUS_1001 OUTPUT
    MODULE STATUS_1000 OUTPUT.
    SET PF-STATUS 'DMENU'.
    SET TITLEBAR 'xxx'.
    ENDMODULE. " STATUS_1000 OUTPUT
    FORM ON_CTMENU_FORM1 USING CMENU TYPE REF TO CL_CTMENU.
    CALL METHOD CMENU->LOAD_GUI_STATUS
    EXPORTING
    PROGRAM = ' ZBHTCTRL'
    STATUS = 'CMENU'
    MENU = CMENU.
    CALL METHOD CMENU->ADD_FUNCTION
    EXPORTING
    FCODE = 'RX'
    TEXT = 'RECIEVE'.
    ENDFORM.
    FLOW LOGIC:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_1000.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_1000.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_1001.
    LOOP AT ITAB WITH CONTROL TABC CURSOR TABC-TOP_LINE.
    MODULE MOVE_DATA.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_1001.
    LOOP AT ITAB.
    ENDLOOP.
    for more info check this link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/content.htm
    thanks
    Ashu.

  • ALV and TABSTRIP

    Hi,
    I have an alv and tabstrip on the same page. When i click one field( hotspot ) i wanna change the selected tab of tabstrip. Is there any way to do this ?

    Hi ,
    First of all you need to set 'X' to i_appl_events parameter when creating your alv object. It will trigger PAI after , ALV related event. Maybe you can use a global variable to set which indicates hotspot event was triggered to cahnge tabstrip and than in a module at the pai for example module go_to_tabstrip.
    i_parent = gv_custom_container
    i_appl_events = 'X'
    module go_to_tabstrip.
    CHECK gv_hotsp_clicked = 'X'.
    *** Your Action
    *** Set initial on exit
    gv_hotsp_clicked = space.
    endmodule.

  • Subscreen and tabstrip

    Dear All
    I have used tabstrip with two taps. In the first tap, I used input controls to get two inputs. In the second tab, the addition of two inputs.from the first tap.
    I have placed a sub screen(first). I called another one sub screen(second) from this sub screen. Two fileds available in the second sub screen. The above is same for tab2.
    Second sub screen didn't called when i execute.
    How to solve this....?????
    Refer the following link
    http://www.4shared.com/dir/7546404/59f81067/sharing.html
    Thanks And Regards
    Suresh

    hi,
      Refer the followind example programs for triggering the tab strips.
    demo_dynpro_tabstrip_server
    demo_dynpro_tabstrip_local
    Regards,
    Veeresh

  • Tablecontrol and Tabstrip

    Hi,
    I created a dynpro as tabstrib. The tabstrip with 3 subscreen which contains tablecontrols. On tabstrip is possible to delete, insert, scoll etc...without problems. To the dynpro I added a Gui status with 2 function codes. My problem is, if I make double click on table control, programm prozess first function code from Gui status. Clearing of function codes save_ok doesn't help.
    Thanks for helping tips  and with kind regards

    Hallo,
    in Application Toolbar is Text as function code and icon "ICON_EXECUTE_OBJECT" embedded.
    Regards,
    Hüsniye

  • Top Of Page event in RS_TREE_LIST_DISPLAY

    Hi ,
       I am using the FM "RS_TREE_LIST_DISPLAY" and i am passing the form routine name in the importing parameter CALLBACK_TOP_OF_PAGE . But the Sub routine is not triggered.
    Can anyone help me how to display top of page for a tree display.

    Hi Mohan
    I wrote a dummy and tried why TOP_OF_PAGE is not working.
    Form top_of_page.
    *put your code here
    Endform.
    See in my case :
    CALL FUNCTION 'RS_TREE_LIST_DISPLAY'
    EXPORTING
    CALLBACK_TOP_OF_PAGE   =  'top_of_page' .
    It`s not calling the subroutine top_of_page.
    now i changed it:
    CALL FUNCTION 'RS_TREE_LIST_DISPLAY'
    EXPORTING
    CALLBACK_TOP_OF_PAGE   =  'TOP_OF_PAGE' .
    Now it is calling the subroutine.
    See although while writing in code i am using the small letters but while passing the parameter I am using capital letters.
    Hope it is helpful.
    Regards
    Neha

  • ABAP Certification and Course

    Hi Friends ,
    I want to do ABAP Certification and want to learn ABAP .
    I am a BE Computer Engg. (Fresher) having good core knowledge in Core JAVA.
    Can anybody give me contacts (Names , number ect. ) of Instituts offering the ABAP course.
    If Possible in Pune , Mumbai and Haydarabad .
    Thanks and Regards,
    Nikhil

    <b>Here are the details u asked for</b>
    SAP Consultant Certification
    Development Consultant SAP NetWeaver 2004 – Application Development Focus ABAP
    Software components: SAP Web Application Server 6.40
    Certification exam is included in course TAW12 and is also offered separately at many SAP locations.
    Certification ID (Booking code): C_TAW12_04
    Certification duration: 3 hours
    Number of certification questions: 80
    Courses for certification preparation: TAW10 (ABAP Workbench Fundamentals); TAW12 (ABAP Workbench Concepts)
    Please note that you are not allowed to use any reference materials during the certification test (no access to online documentation or to any SAP system).
    The certification test Development Consultant SAP NetWeaver 2004– Application Development Focus ABAP verifies the knowledge in the area of the SAP NetWeaver for the consultant profile Application Development Focus ABAP. This certificate proves that the candidate has a basic understanding within this consultant profile, and can implement this knowledge practically in projects.
    The certification test consists of questions from the areas specified below:
    Topic Areas
    1.     SAP Technologies
    &#61607;     SAP systems (mySAP Business Suite and SAP NetWeaver)
    &#61607;     Technical structure of an SAP Web Application Server
    2.     ABAP Workbench Basics (++)
    &#61607;     Data types and data objects (declaration)
    &#61607;     Internal tables
    &#61607;     Data retrieval (authorization check)
    &#61607;     Subroutines
    &#61607;     Function groups and function modules
    &#61607;     Program calls and memory management
    3.     Advanced ABAP (++)
    &#61607;     ABAP runtime
    &#61607;     Data types and data objects (usage)
    &#61607;     Open SQL (high-performance programming)
    &#61607;     Dynamic programming
    4.     ABAP Objects (++)
    &#61607;     Classes and objects
    &#61607;     Inheritance
    &#61607;     Polymorphism (casting)
    &#61607;     Interfaces
    &#61607;     Events
    &#61607;     Global classes and interfaces
    &#61607;     Exception handling
    &#61607;     Shared objects
    5.     ABAP Dictionary (++)
    &#61607;     Database tables
    &#61607;     Performance for table accesses
    &#61607;     Consistency by means of input check (foreign key dependency)
    &#61607;     Dependency for ABAP Dictionary objects
    &#61607;     Views
    &#61607;     Search helps
    6.     List Creation Techniques (++)
    &#61607;     Data output in lists
    &#61607;     Selection screen
    &#61607;     Logical database
    &#61607;     Interactive lists
    &#61607;     List creation with the ALV grid control:
            - Simple lists 
            - Field catalog
            - Layout
            - Event handling
    7.     Dialog Programming (++)
    &#61607;     Screen (basics)
    &#61607;     Program interface (GUI title, GUI status)
    &#61607;     Screen elements for output (text fields, status icons, and group boxes)
    &#61607;     Screen elements for input/output
    &#61607;     Subscreen and tabstrip control
    &#61607;     Table control
    &#61607;     Context menu
    &#61607;     Lists in dialog programming
    8.     Database Changes
    &#61607;     Database updates with open SQL
    &#61607;     LUWs and client/server architecture
    &#61607;     SAP locking concept
    &#61607;     Organize database changes
    &#61607;     Complex LUW processing
    &#61607;     Number assignment
    &#61607;     Change document creation
    9.     Enhancements and Modifications
    &#61607;     Changes to the standard SAP system
    &#61607;     Personalization    
    &#61607;     Enhancements to ABAP Dictionary elements
    &#61607;     Enhancements via customer exits
    &#61607;     Business Transaction Events
    &#61607;     Business Add-Ins
    &#61607;     Modifications
    Amount of questions by topic (as percentage of test):
    +              = 1 - 10%
    ++            = 11 - 20%
    +++          = over 20%
    <b>GENEVOTE and SEIMENS</b>... these are two companies in INDIA which provide sap certification
    This link will give you the schedule of training at various locations in india along with course fee's.
    http://www.sap.com/asia/services/education/schedule/schedule_IN.htm
    Further information can be had from the SAP Education Centre, SAP India Labs, Thapar Niketan, 7/4, Brunton Road, Bangalore-560 025. Ph: 25593554. E-mail: [email protected]
    The SAP training partner in Bangalore is Siemens Information Systems Limited, Du Parc, 3rd Floor, Trinity 17, Mahatma Gandhi Road. Ph: 57700001, 98459 94380. Contact persons: Vani Mittal / Sonia Nalini. E-mail: [email protected]
    <b>Hope this is helpful</b>

  • ABAP ECC6.0 Certification Exam Syallabus and which PDF files

    Hi
    Im Planning to write the ABAP-ECC6.0 certification exam . Can anyone tell which tabs i should read and what is the syallabus for this one
    kumar

    Hi
    certification ..
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    This is link from SAP about ABAP certification
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    http://www.sapteched.com/india/confactivities/certexam.htm
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    There is a pdf called ABAP certification.
    http://www.esnips.com/web/SAP-ABAP?
    You can try www.sapdoamin.com
    They provide Certification simulation questions which are very useful and a must try site.
    Have a look at below link for mySAP Technology - ABAP Workbench
    https://websmp206.sap-ag.de/~sapidp/011000358700000746472003E
    Have a look at below link for SAP NetWeaver - ABAP Workbench
    http://www30.sap.com/hk/services/education/pdf/cert/ABAPWB.pdf
    The certification test consists of questions from the areas specified below:
    Topic Areas
    1. mySAP.com Technologies
    - mySAP.com
    - Navigation (system handling)
    - Technical setup of an SAP system
    - System-wide concepts
    2. ABAP Workbench Basics (++)
    - Data types and data objects
    - Internal tables
    - Data retrieval (authorization check)
    - Subroutines
    - The ABAP Runtime System
    - Function groups and function modules
    - Program calls and data transfer
    3. ABAP Objects (++)
    - Classes and objects
    - Inheritance
    - Casting
    - Interfaces
    - Events
    - Global classes and interfaces
    - Exception handling
    - Dynamic programming
    4. ABAP Dictionary (++)
    - Database tables
    - Performance for table access
    - Consistency through input check (foreigh key dependency)
    - Dependency of ABAP Dictionary objects
    - Views
    - Search help
    5. Techniqes for List Generation (++)
    - Data output to lists
    - Selection screen
    - Logical database
    - Program-specific data retrieval
    - Data formatting and control level processing
    - Storage of lists and background processing
    - Interactive lists
    6. Dialog Programming (++)
    - Screen (basics)
    - User interface (GUI title, GUI status)
    - Screen elements for output (text fields, status icons, and group boxes)
    - Screen elements for input/output
    - Subscreen and tabstrip control
    - Table control
    - Context menu
    - Dialog programming lists
    7. Database Changes
    - Database updates with Open SQL
    - LUWs and Client/Server Architecture
    - SAP locking concept
    - Organizing database changes
    - Complex LUW processing
    - Number assignment
    - Change-document creation
    8. Enhancements and Modifications
    - Changes in SAP Standards
    - Personalization
    - Enhancements to Dictionary elements
    - Enhancements using customer exits
    - Business Transaction Events
    - Business Add-Ins
    - Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    +++ = over 20%
    Reward points for useful Answers
    Regards
    Anji

  • -----and I am undergoing a training on ABAP

    I am a 31 old guy  and previously I was doing tutions on mathematics to earn my living though I do have a background on computer science-----and I am undergoing a training on ABAP -
    do you thi9nk I have a fair chance of a career in SAP?

    Hi
    u want to take up sap its good .
    it isa booming field.but the exam is tough and moreover the training should be good
    the initial phases are difficult to handle because there are less paying jobs for certified freshers but aftre 2 years evertyng wud be fine
    plus ur current profile is also no good so it is a good career move
    take up good trainig and get certified and afterwards u d definitely get a good job
    here are some tips about the exam and the pass % as well as whr u can get the material and all
    happy learning and best of luck
    address
    find below Siemens Hyderabad address and phone numbers... just
    call them up and find out. I don’t think it will cost you
    more than Rs.3.10 lacs for FI.
    Siemens
    Opposite Secretariat
    Saifabad, Hyderabad
    040 23243146
    040 23482500
    040 23482534
    040 23482578
    040 23482800
    Before you burn your cash for certification course…..
    What I suggest you … ... first thing you
    need to do is to join a course in any small institute in
    “UNIVERSITY OF AMEERPET”… …..wondering …. from where
    this university has born???????…. don’t worry... This is
    NOT really a university… just kidding…
    There is a place called “AMEERPET” in “HYDERABAD”
    “happening city of India”. This a HUB for all computer
    courses to do ….any DAM course and you know what! You will
    really find “mushrooms” like institutes offering different
    courses in this place.
    There is a guy called.. Satyanara. He teaches SAP in
    institutes like Compulearn and iLogic in Ameerpet. He took
    around 500 batches and has implementation experience. I
    would say you should try this place and go for certification and
    it will really help you. It will not cost you more then
    9k…..Trust me.
    All the best… dude
    How can I take up ABAP Certification exam?
    You will have to get in touch with sap education or any institute that is sap education partner, currently siemens and genaovate are the ones which conduct exams.
    What all I need to know in ABAP?
    Training institute will provide you with relevant study material for the exam, Just stick to it and practice your concept with any of the online test websites, like www.sapdomian.com.
    Here are links for the e-books that is provided for ABAP certification.
    http://www.esnips.com/web/SAPAbapCertificationDocs/
    http://www.esnips.com/web/SAPABAP
    http://www.esnips.com/web/saparun-ebooks
    http://www.esnips.com/doc/2a4c274b-b5b9-46b7-8ab5-5af47700a6c7/Command-List
    http://www.esnips.com/doc/6bdb820f-f533-4517-a043-b64641b00490/TABC43-
    How can I prepare for the exams?
    Concept is tested. If you understand the concept, you have a better chance of answering the question than trying to remember the actual bullet points in the academy course material.
    Use the online help to find and review the concepts covered in the certification course material. The information in the online help is presented in a different format to the course material and will therefore solidify the concepts presented. You will be much better prepared to answer the questions regardless of how the question may be worded. This really works.
    How many levels will the exam will be conducted?
    The certification exam is conducted in three levels, associate, principal and master. If you are a first timer then go with associate level, and there aftre gaining experience you can enhance your career with other levels of exam.
    the pass %age is 70
    Certification duration: 3 hours
    Number of certification questions: 80
    You cannot go for all three levels at the same time.It depends upon your work experience, which one will be suitable for you.
    You can contact genovate or siemens which are SAP education parteners, and they are based throughout the country(India).
    Concept is tested. If you understand the concept, you have a better chance of answering the question than trying to remember the actual bullet points in the academy course material.
    Use the online help to find and review the concepts covered in the certification course material. The information in the online help is presented in a different format to the course material and will therefore solidify the concepts presented. You will be much better prepared to answer the questions regardless of how the question may be worded. This really works.
    u can have look ate the detailed course line
    You can contact genovate or siemens which are SAP education parteners, and they are based throughout the country(India).
    1. mySAP.com Technologies
    mySAP.com
    Navigation (system handling)
    Technical setup of an SAP system
    System-wide concepts
    2. ABAP Workbench Basics (++)
    Data types and data objects
    Internal tables
    14/02/2008
    http://****************/Tutorials/Smartforms/OTF2PDF.htm
    http://www.sap-img.com/abap/function-list.htm
    Data retrieval (authorization check)
    Subroutines
    The ABAP Runtime System
    Function groups and function modules
    Program calls and data transfer
    3. ABAP Objects (++)
    Classes and objects
    Inheritance
    Casting
    Interfaces
    Events
    Global classes and interfaces
    Exception handling
    Dynamic programming
    4. ABAP Dictionary (++)
    Database tables
    Performance for table access
    Consistency through input check (foreigh key dependency)
    Dependency of ABAP Dictionary objects
    Views
    Search help
    5. Techniqes for List Generation (++)
    Data output to lists
    Selection screen
    Logical database
    Program-specific data retrieval
    Data formatting and control level processing
    Storage of lists and background processing
    Interactive lists
    6. Dialog Programming (++)
    Screen (basics)
    User interface (GUI title, GUI status)
    Screen elements for output (text fields, status icons, and group boxes)
    Screen elements for input/output
    Subscreen and tabstrip control
    Table control
    Context menu
    Dialog programming lists
    7. Database Changes
    Database updates with Open SQL
    LUWs and Client/Server Architecture
    SAP locking concept
    Organizing database changes
    Complex LUW processing
    Number assignment
    Change-document creation
    8. Enhancements and Modifications
    Changes in SAP Standards
    Personalization
    Enhancements to Dictionary elements
    Enhancements using customer exits
    Business Transaction Events
    Business Add-Ins
    Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    + = over 20%
    Topic Areas
    1. mySAP.com Technologies
    mySAP.com
    Navigation (system handling)
    Technical setup of an SAP system
    System-wide concepts
    2. ABAP Workbench Basics (++)
    Data types and data objects
    Internal tables
    Data retrieval (authorization check)
    Subroutines
    The ABAP Runtime System
    Function groups and function modules
    Program calls and data transfer
    3. ABAP Objects (++)
    Classes and objects
    Inheritance
    Casting
    Interfaces
    Events
    Global classes and interfaces
    Exception handling
    Dynamic programming
    4. ABAP Dictionary (++)
    Database tables
    Performance for table access
    Consistency through input check (foreigh key dependency)
    Dependency of ABAP Dictionary objects
    Views
    Search help
    5. Techniqes for List Generation (++)
    Data output to lists
    Selection screen
    Logical database
    Program-specific data retrieval
    Data formatting and control level processing
    Storage of lists and background processing
    Interactive lists
    6. Dialog Programming (++)
    Screen (basics)
    User interface (GUI title, GUI status)
    Screen elements for output (text fields, status icons, and group boxes)
    Screen elements for input/output
    Subscreen and tabstrip control
    Table control
    Context menu
    Dialog programming lists
    7. Database Changes
    Database updates with Open SQL
    LUWs and Client/Server Architecture
    SAP locking concept
    Organizing database changes
    Complex LUW processing
    Number assignment
    Change-document creation
    8. Enhancements and Modifications
    Changes in SAP Standards
    Personalization
    Enhancements to Dictionary elements
    Enhancements using customer exits
    Business Transaction Events
    Business Add-Ins
    Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    + = over 20%
    do reward if useful
    Edited by: sharad narayan on Mar 11, 2008 7:18 AM

  • Is it possible to Display BW Bex report iviews in Tabbed Interface?

    Hi,
      Is their a way to display BW BEx Report Iviews in Tabbed Interface?
      My requirement is to show four BEx Reports using 4 tabs on a page. Can we achieve this functionality in portal? If yes can some one guide me how to proceed?
    Regards
    Sai Krishna Reddy

    why not have a webtemplate with tabbed interace and use that webtemplate to create BWP iview?
    check out the following how to document on this subjec.
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5074a890-0201-0010-a489-dd05902a28c8">How to Create Buttons and TabStrips in BI Web Applications</a>
    Regards
    Raja

  • ABAP CERTIFICATION

    Hi
    can any one give me the certification questions on abap
    thanks,
    kiran

    Hi
    Pls go through the following link hope it will help u out
    http://www.sap-img.com/abap/important-abap-faq.htm
    http://www.sap-basis-abap.com/
    http://www.sap-img.com/bdc.htm
    http://sapdomain.com/certification.php
    http://www.techinterviews.com/?p=198
    ABAP Workbench Fundamentals (For course BC400)
    Create ABAP programs and the most important Repository objects using appropriate ABAP Workbench tools
    Navigate in the Workbench and use the syntax help
    Process source text with the ABAP Editor
    Test programs using the Debugger
    Define elementary and structured data objects
    Overview of important ABAP statements
    Use internal tables (introduction)
    Use modularization techniques local in the program
    Database dialogs: information about database tables in the ABAP Dictionary, read database tables
    User dialogs: list, selection screen, screens
    Overview of ABAP Web Dynpro (from SAP NetWeaver 2004s)
    Use function groups and function modules, classes and methods, BAPIs
    Project-oriented development using the Transport Organizer
    Overview of the different options for adapting software
    Advanced ABAP (For course BC402)
    ABAP runtime environment
    ABAP types and data objects
    Unicode
    Analysis tools for programs
    Work with internal tables
    Program modularization with function modules
    Performance of complex Open SQL statements
    Dynamic programming with field symbols and references
    Runtime type information, runtime type creation
    Program calls and memory management
    ABAP Objects : Object Oriented Programming in R/3 (For BC404)
    Introduction
    Analysis and Design
    Principles
    Generalization/Specialization
    Events
    Global Classes/Interfaces
    Summary and Outlook
    Developing User Dialogs (For BC410)
    Course Overview
    Basics for Interactive Lists
    The Program Interface
    Interactive List Techniques
    Introduction to Screen Programming
    Screen Elements for Output
    Screen Elements for Input/Output
    Screen Elements: Subscreens and Tabstrip Controls
    Screen Elements: Table Controls
    Context Menus
    Lists in Screen Programming
    Preview: Control Framework
    Enhancements and Modification (For course BC425)
    Overview of the options for making customer-specific adjustments to the SAP standard system
    Personalization (transaction variants)
    Enhancements to:
    - Elements of the ABAP Dictionary
    - SAP programs
    - SAP screen menus
    - SAP screens
    Enhancement techniques:
    - Enhancements to elements of the Dictionary
    - Enhancements via customer exits
    - Business Transaction Events (BTEs)
    - Business Add Ins (BAdIs)
    - User Exits
    Modifications:
    - Procedure
    - Utilities (Modification Assistant, Modification Browser)
    - Modification adjustment
    SAP Note Assistant (tool for SAP Note implementation)
    ABAP Dictionary (For course BC430)
    Introduction
    Tables in the ABAP Dictionary
    Performance in Table Accesses
    Consistency through Input Checks
    Dependencies of ABAP Dictionary Objects
    Changes to Tables
    Views
    Search Helps
    Developing Internet Application Components (For course BC440)
    Course Overview
    Introduction
    Internet,Intranet & WWW
    HTML,CSS and JavaScript
    Internet Transaction Server
    ABAP Workbench Basics
    SAP GUI for HTML
    Easy Web Transactions
    ITS Flow Logic
    HTML Business
    Summary and Outlook
    Form Printing Using SAPSmart Forms (for course BC470)
    Overview of SAP Smart Forms
    General concepts in form printing
    - Windows and pages, main and secondary windows, text and data
    Creating and adjusting an SAP Smart Form
    - Form Builder, Form Painter, form logic, node types (texts, graphics, addresses, and so on), text modules
    Variables
    - Form interface, global data
    Tables
    - Table Painter, dynamic tables, headers and footers
    Smart Styles
    - Style Builder, paragraph formats, and character formats
    Including graphics
    Change forms and application programs
    Developing BAPI enabled Web Applications with Java (For course CA926)
    For course TABC41, 42 and 43
    Basis technology overview
    ABAP Workbench
    ABAP Dictionary
    ABAP Development Projects
    Advanced Programming in ABAP Development Workbench (week 3 - 4 „TABC42")
    Techniques of List Processing
    Transaction Programming
    Database Updates
    Enhancements and Modifications
    Interfaces for Data Transfer

  • Create a select option in a screen

    Is it possible to create a select option in a screen?
    I can easily create the 2 input boxes, but not with the little button on the right like when we create a select option in a report.
    Is the any other simple way to create a select option without creating a report? (the reason is because I want to have everything in the same module pool)

    Hi,
    Please refer to SAP's documentation here: http://help.sap.com/saphelp_nw70/helpdata/en/e4/2adbec449911d1949c0000e8353423/frameset.htm.
    Especially Part 'Subscreens and Tabstrips for Selection Screens', there go to 'Selection Screens as Subscreens'.
    HTH, Gerd Rother

  • ABAP Certification - Regd

    Hi All,
    I am currently preparing for certification this tech ed.
    I got the syllabus fom SDN and sap website.
    i found the following is <b>missing</b> from the syllabus.
    <b>ALE / IDOC/ EDI
    Smart forms
    SAP Script
    LSMW
    ALV Reporting
    ABAP Query
    RFC
    BAPI</b>
    Some certified consultant can clear my doubt, whether questions from the above areas will be asked or not.
    Thanks in Advance.
    Regards,
    Senthil

    Hi laxmi,
    syllabus:
    Certificate name : SAP NetWeaver - ABAP Workbench (2003) (C_TAW12) 3 / 80 SAP WebAS 6.20
    The certification test consists of questions from the areas specified below:
    Topic Areas
    1. mySAP.com Technologies
    - mySAP.com
    - Navigation (system handling)
    - Technical setup of an SAP system
    - System-wide concepts
    2. ABAP Workbench Basics (++)
    - Data types and data objects
    - Internal tables
    - Data retrieval (authorization check)
    - Subroutines
    - The ABAP Runtime System
    - Function groups and function modules
    - Program calls and data transfer
    3. ABAP Objects (++)
    - Classes and objects
    - Inheritance
    - Casting
    - Interfaces
    - Events
    - Global classes and interfaces
    - Exception handling
    - Dynamic programming
    4. ABAP Dictionary (++)
    - Database tables
    - Performance for table access
    - Consistency through input check (foreigh key dependency)
    - Dependency of ABAP Dictionary objects
    - Views
    - Search help
    5. Techniqes for List Generation (++)
    - Data output to lists
    - Selection screen
    - Logical database
    - Program-specific data retrieval
    - Data formatting and control level processing
    - Storage of lists and background processing
    - Interactive lists
    6. Dialog Programming (++)
    - Screen (basics)
    - User interface (GUI title, GUI status)
    - Screen elements for output (text fields, status icons, and group boxes)
    - Screen elements for input/output
    - Subscreen and tabstrip control
    - Table control
    - Context menu
    - Dialog programming lists
    7. Database Changes
    - Database updates with Open SQL
    - LUWs and Client/Server Architecture
    - SAP locking concept
    - Organizing database changes
    - Complex LUW processing
    - Number assignment
    - Change-document creation
    8. Enhancements and Modifications
    - Changes in SAP Standards
    - Personalization
    - Enhancements to Dictionary elements
    - Enhancements using customer exits
    - Business Transaction Events
    - Business Add-Ins
    - Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    +++ = over 20%
    Regards,
    Senthil

  • Urgent Help for ABAP Certification

    Hi everyone,
    I am planning to do certification in ABAP by Jan.
    Can anyone provide me the proper materials for preparing for certification.
    I would be grateful if anyone can help.
    Thanks in advance,
    Nitin

    Hi Nitin,
    All About ABAP Certification
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    This is link from SAP about ABAP certification
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    http://www.sapteched.com/india/confactivities/certexam.htm
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    There is a pdf called ABAP certification.
    http://www.esnips.com/web/SAP-ABAP?
    You can try www.sapdoamin.com
    They provide Certification simulation questions which are very useful and a must try site.
    Have a look at below link for mySAP Technology - ABAP Workbench
    https://websmp206.sap-ag.de/~sapidp/011000358700000746472003E
    Have a look at below link for SAP NetWeaver - ABAP Workbench
    http://www30.sap.com/hk/services/education/pdf/cert/ABAPWB.pdf
    The certification test consists of questions from the areas specified below:
    Topic Areas
    1. mySAP.com Technologies
    - mySAP.com
    - Navigation (system handling)
    - Technical setup of an SAP system
    - System-wide concepts
    2. ABAP Workbench Basics (++)
    - Data types and data objects
    - Internal tables
    - Data retrieval (authorization check)
    - Subroutines
    - The ABAP Runtime System
    - Function groups and function modules
    - Program calls and data transfer
    3. ABAP Objects (++)
    - Classes and objects
    - Inheritance
    - Casting
    - Interfaces
    - Events
    - Global classes and interfaces
    - Exception handling
    - Dynamic programming
    4. ABAP Dictionary (++)
    - Database tables
    - Performance for table access
    - Consistency through input check (foreigh key dependency)
    - Dependency of ABAP Dictionary objects
    - Views
    - Search help
    5. Techniqes for List Generation (++)
    - Data output to lists
    - Selection screen
    - Logical database
    - Program-specific data retrieval
    - Data formatting and control level processing
    - Storage of lists and background processing
    - Interactive lists
    6. Dialog Programming (++)
    - Screen (basics)
    - User interface (GUI title, GUI status)
    - Screen elements for output (text fields, status icons, and group boxes)
    - Screen elements for input/output
    - Subscreen and tabstrip control
    - Table control
    - Context menu
    - Dialog programming lists
    7. Database Changes
    - Database updates with Open SQL
    - LUWs and Client/Server Architecture
    - SAP locking concept
    - Organizing database changes
    - Complex LUW processing
    - Number assignment
    - Change-document creation
    8. Enhancements and Modifications
    - Changes in SAP Standards
    - Personalization
    - Enhancements to Dictionary elements
    - Enhancements using customer exits
    - Business Transaction Events
    - Business Add-Ins
    - Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    +++ = over 20%
    Regards,
    Satish

  • Table control in Selection Screen

    Hi,
      Is it possible to keep table control and tabstrip control in selection screen without using dialog programming? I mean , using coding from program itself, have to get table in the selection screen,like how we are keeping checkbox and radio button from program itself . 
    by
    Mohan Ram
    Moderator Message: Search before posting.
    Edited by: kishan P on Sep 16, 2010 11:04 AM

    Hi, Mohan
    Please Always do a little Search Before Posting => [Search Results|http://forums.sdn.sap.com/search.jspa?threadID=&q=TablecontrolinSelectionScreen&objID=&dateRange=all&numResults=30&rankBy=10001]
    Hope you will get the answer from the First Few Threads From Search Result.
    Thanks and Regards,
    Faisal

Maybe you are looking for