ABAP UI element

Hi,
I need to know if there is a user element called menu so that i can get the various links based on the role of the user. If no such element is there, can any one give me an idea on how to get that functionality working.
Regards
Tenzin Wangmo

Hi,
I am pasting the code for the menu_action item.
I have a menu called India, under it two menu action items, city1 with ltext 'Guwahati' and city2 with text 'Leh'. In the onaction of city1 I have a method clickonghy and for onaction of city2 I have a method clickohleh.
These methods set a textview text to the following:
I also use a textview to display the texts 'Clicked on Guwahati' and 'Clicked on Leh' once you click on 'Guwahati' or 'Leh'.
The codes are:
method ONACTIONCLICKGHY .
    DATA lo_nd_node TYPE REF TO if_wd_context_node.
    DATA lo_el_node TYPE REF TO if_wd_context_element.
    DATA ls_node TYPE wd_this->element_node.
    DATA lv_text LIKE ls_node-text.
  navigate from <CONTEXT> to <NODE> via lead selection
    lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_node ).
  get element via lead selection
    lo_el_node = lo_nd_node->get_element(  ).
    lv_text = 'You Clicked on Guwahati'.
  get single attribute
CALL METHOD lo_el_node->set_attribute
  EXPORTING
   index  = USE_LEAD_SELECTION
    value  = lv_text
    name   = 'TEXT'
endmethod.
and....
METHOD onactionclickleh .
  DATA lo_nd_node TYPE REF TO if_wd_context_node.
  DATA lo_el_node TYPE REF TO if_wd_context_element.
  DATA ls_node TYPE wd_this->element_node.
  DATA lv_text LIKE ls_node-text.
  navigate from <CONTEXT> to <NODE> via lead selection
  lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_node ).
  get element via lead selection
  lo_el_node = lo_nd_node->get_element(  ).
  lv_text = 'You Clicked on Leh'.
CALL METHOD lo_el_node->set_attribute
  EXPORTING
   index  = USE_LEAD_SELECTION
    value  = lv_text
    name   = 'TEXT'
ENDMETHOD.
Regards,
Prosenjit.

Similar Messages

  • Shortcut keys or Hotkeys for ABAP UI Elements for Navigation

    Can we create shortcut keys or hotkeys for ABAP UI elements on an ABAP screen where the user can directly navigate to a particular UI element?
    E.g.: Screen containing 5 tabs where the user can directly navigate to a specific tab.

    Hi Margaret.,
    If u post this thread in web dynpro ABAP forum then u may get some use ful help..!! As per my concern., whatever u like go for tat, which will give u more work satisfaction.,  pls go through this link and post it there.,
    [Web DynPro ABAP Forum|Web Dynpro ABAP;
    Thanks & Regards
    Kiran

  • ABAP Proxy - elements not filled in return XML

    Hi
    I have created an ABAP proxy based on Message Types in XI.
    In DEV system it returns all values as it should. When I transported it over to the QA system, almost all XML-elements are returned empty.
    I know the communication is OK and that the proxy is accessed because one part of the XML is filled (4 out of 100 fields). What I don't understand is why the rest of the fields are returned empty.
    If I use the "Test Interface" function, the XML is filled correctly. It's when I test it with an HTTP poster that the problem arise.
    Anyone had this problem before?
    regards Ole Mugaas

    Hi Ole,
    1. Try to regenerate (Ctrl+F3) the proxy.
    2. Debugg the proxy and see when you are transfering the data what values are being filled up.
    3. Aslo make sure that you have not made any changes in the data type structure after importing it into QA system.
    Regards,
    Sarvesh

  • WD ABAP : Libraries/Elements in Adobe Form Designer

    Hello,
    Could anyone tellme how shall I get elements like 'Hide Reader Toolbar' and 'Submit to SAP' button in Adobe form Designer  when using in Web dynpro ABAP.
    I have installed adobe form designer from Gui 6.40 DVD.
    Regards,
    Ahmad

    This happened to me once.  I lost the entire WebDynpro Library Group. I went into the design and right mouse clicked in the Library Area.  I then added my own Web Dynpro Group.  This should create a directory.  You can see all of these directories in you documents and settings directory under Application Data\Adobe\Designer\<lang>\objects.  For instance mine is: C:\Documents and Settings\i809764\Application Data\Adobe\Designer\en\objects
    I then copied all the files from the WebDynpro directory into the one I had just created.  You could try changing the library Group Properties to point to the correct location.  If you are  just missing some of the elements, check the same directory and make sure their XFO files are there.

  • Web dynpro abap: UI element

    how to align the UI element in layout.
    Moderator Message: Not enough research done. Thread locked.
    Edited by: Suhas Saha on Feb 8, 2012 4:18 PM

    create frame and try to place in it

  • ABAP Container Element Hotspot Issue

    Hi Friends
    I developed a report using container element and added the HOTSPOT functionality for the field Partner Number.
    Partner number have 4, 5 fields like Sold-to-party,ship-to-party, reseller, end user.While executing this report, some time all the fields have value, some times few fields will come with blank value.In that case I need to enter the value for Blank fields.But if I activate HOTSPOT, its not allowing me to enter the value under partner function column.
    Kindly give me your suggestion to achieve this functionality.
    Thanks
    Gowrishankar

    Hi Gowrishankar,
                               Use double click event to handle the same scenario as hotspot, because hotspot are not meant for changing,
    also you have a single click event on a row, you just have to pass row, column, sender these three parameters in that event to trigger similar event such as an hotspot. There you can handle editable ALV issues.
    Best Regards,
    Tapodipta Khan.

  • Collection in ABAP

    Hello Friends,
    Is there some kind of collection or Array concept in ABAP, Like in JAVA ( Java.util.Collection)??
    In loop I want to take values 1 by 1 and store it in some kind of collection ??
    Many thanks
    Marek

    Hi Marek
    As Suekrue stated, in ABAP the closest concept to an "array" is an "internal table". You can think of them as structured and semanticly-defined matrices. They are like database tables, but are not persistent i.e their lifetime is the programs' runtime.
    You can define an internal table in various ways.
    <u><b>e.g.</b></u>
    DATA: BEGIN OF gt_itab OCCURS 0 ,
            <colmun_1> LIKE/TYPE <data_element/variable> ,
            <colmun_2> LIKE/TYPE <data_element/variable> ,
            <colmun_n> LIKE/TYPE <data_element/variable> ,
          END OF gt_itab .
    With this data declaration, you define an internal table having n columns and several rows (row number is not indicated).
    Alternatively, you can define internal table type at data dictionary and refer to them as
    DATA gt_itab TYPE <DDIC_table_type> .
    or you can refer a structure to be the row-type of an internal table as:
    DATA gt_itab LIKE <DDIC_structure> OCCURS 0 .
    However, reaching to specific records is not done directly indicating the coordinate. You read rows to a work area and reach its field by "-" operator.
    <b><u>e.g.</u></b>
    READ TABLE gt_itab INTO gs_itab INDEX 5 . "read fifth row"
    WRITE:/ gt_itab-<column_name> .
    For more information, I strongly recommend you to inspect SAP Online Help whose address was mentioned at Sidharth's post and the book
    <a href="http://www.sap-press.com/product.cfm?account=&product=H958">"ABAP Objects — The Official Reference" A comprehensive guide to all ABAP language elements</a>
    by Horst Keller & Joachim Jacobitz
    or
    "ABAP Objects: Introduction to Programming SAP Applications" by Horst Keller, Sascha Kruger.
    *--Serdar
    Message was edited by: Serdar Simsekler

  • Translating text symbols and selection texts in abap report

    Hi All,
    I have devolped a report and in that translation of selction texts and text symbols is required.
    Problem: In abap text elements  in the report i have gone for goto->translation->and then i have tried to translate by giving the target language as DE and changed all the texts but when i am tring to save it is showing a message that 'STILL 54 OF 54 TEXTS TO BE PROCESSED'.
    Alternative solution :I have tried even using se63 and selected <rept> selection texts.
    but still its showing the same error  ('STILL 54 OF 54 TEXTS TO BE PROCESSED'.)
    from se63.
    kindly give me solution for this issue.
    Thank you,
    bhavani.

    Hi Bhavani.
    Check the [SAP Document for translation|http://help.sap.com/saphelp_sm32/helpdata/EN/41/71601b3ab0f34a8e00aa01338c68f3/content.htm]

  • ABAP Proxy error due to ICF

    Hi All,
    I am calling a custom RFC inside Synchronous ABAP server proxy.The problem is that I am getting HTTP Response code not OK  error in XI callAdapter Pipeline step when RFC is returning application error (Return type of RFC Message is E ).
    Error: The termination type was: ERROR_MESSAGE_STATE
    I found note 568528 which says
    "TH_RES_FREE or ERROR_MESSAGE_STATE
    either the application or the task handler has processed an error
    message.Either the "E" message type was used in the application for the "MESSAGE" ABAP language element here or an action was executed in the application, which is not allowed within the framework ofthe ICF.Among other things, outputting a screen (for example,screen or list output) or eliminating the current mode using the"SUBMIT" ABAP language element, for example, are part of the actions".
    What should be done to overcome this error?
    Note: When i use XI RFC adapter directly to call the RFC, it is working fine and application error of RFC is getting populated in custom error structure perfectly.
    Regards,
    Sudharshan N A

    Hi Sudh..
    Into your RFC, do you have an authoritycheck ?
    Because that could explain the difference between your own RFC running and this one of XI: user are not the same.
    Remind: authority check are based on user profiles. That could explain that an error message is generated by SAP in some cases, and not for another one.
    Regards.
    Mickael
    Edited by: Mickael Huchet on Apr 14, 2008 1:18 PM

  • HTTPS communication for Adobe Offline form with SAP ABAP WAS

    Hi Experts,
    Can we use HTTPS communication method to call a SAP ABAP Web Service from an Adobe offline form?
    Example : I have a SUBMIT button in my Adobe offline form and when clicked, it populates a sales order number in the form.
    Here my SAP ABAP server from where it reads the info is using HTTPS communication method. Now if i use the same service with HTTP it works fine but if i switch the service to use HTTPS it shows me an error "Error attempting to read from file. <https://FQDN/<service name> .
    I am using self-signed SSL server certificate from SAP ABAP server. But here i also see a certificate error in my browser (IE 7.0) saying "Untrusted Certificate". Is this the reason for my above issue?
    I could not find any post in SDN giving me the answer.
    Regards,
    Hobin

    Hi,
         The Certificates are already imported into the Trusted Certificates Section. But the real Issue is regading the Adobe Offline forms. If I open the Adobe Offline forms in the Adobe reader 9.0 and the Web Service call is made based on the Https:// . It saying "Error attempting to Read the file". The Fully qualified domain name is also provided VA. I have tried to import the certificates to Adobe Reader's -  Trust Identities but still it is not working . If I switch the webservice authentication method to Http:// then it would work. ADS is already configured with SSL. And the HTTPS:// based WebService embedded in the Adobe Interactive Form is working ,if the form is Online in the Browser (integrated in the Webdynpro Abap UI element).
    Is there any other way to Add SSL Certificates to Adobe Reader , so that Https:/ based webservice will work if the Form is opened in Adobe Reader 9.0.
    Regards,
    Hobs

  • ABAP GUI programming

    Hi,
    I'm quite new to programming GUI:s in ABAP so I have a general question for you guys.
    What are the best options in terms of ABAP language elements(module pools / reports / ABAP Objects ALV classes) to use for programming low to medium complexity GUI:s in ABAP? A typical scenario is that I need a simple selection screen for the user to make restrictions and then to generate a second screen with a list/table of data to be viewed and maintained by the user, the maintained data will then need to be saved into custom transparent tables when the user presses save - how would you program such a program in general terms?
    It is a plus if your proposed approach uses controls that can be translated to webgui.
    Any help appreciated,
    Regards,
    Christian

    hi Christian,
      As per your requirement, you need to develop a custom REPORT(in SAP terminalogy,we call it as). normally a report consists of a selection screen(where User may enter some Input values) & based on that we will fetch the database tables with the given criteria by the user & get the details & display the result as output(we call report output as LIST). this report we call it as BASIC REPORTS.
    if user requires any further functionality after this, we develop INTERACTIVE REPORT, which is nothing but after displaying the LIST(report OUTPUT) user can select/deselect some of the records & requests for further processing.
    so in your scenario,
    you have to develop
    1. a selection screen with the given fields
    2. a basic list, with all the details,what user wants
    3. take the selected records from the LIST(report Output)
    and updating the database.
    pl revert, if you need any clarifications
    Regards
    Srikanth

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

  • Xcelsius Intergartion in Webdypro Abap

    Hi all,
    I would like to integrate Xcelsius reports into WD for ABAP. For this I am trying to make custom flex code in which I am embedding the xcelsius swf in some container. I already defined external interface parameters in that Xcelsius swf.From the flex part I have already implemented intial part of the code i.e defination of the container and on the creation complete event I added a listener after casting the content of the container.
    Now my problem is I would like to know how can I access the external interface paramter defined in Xcelisus swf(child swf). Is there any specific function or property through which I can get access to the external interface parameters defined in Xcelsius swf??? In debug mode I am able to see Xcelsius connection manager and alll...but I dont know how to reach the external interface parameters.
    Is it through loaderinfo content or external interface call or anything else ??
    Once I am done with above step I will add flash island library to my code...please help in resolving above mentioned issue.
    I am not a flex programmer but still trying it . I would be very thankful if somebody supports me in that and provide some direction.
    Thanks
    Regards,
    Atul

    Hi Matt,
    Thanks for your reply. Meanwhile somehow I am able to create a wrapper with flex using External Interface. Now I am able to bind web dynpro Abap UI elements with Xcelsius external interface paramaters using some custom flex code. Now as a next step I would like to experiment to have bidirection communication. I would like to know more about the enhancement request which you stated in the reply. Can you please let me know some links where I can find more infomation.
    Thanks
    Atul

  • Anybody using cTable UI element in real life projects?

    Hi guys,
    just curious, since there is very few content about the client side table (available since NW 7.30) Web Dynpro ABAP UI element here on SDN ( sap help link )
    Is anybody using this UI element in a more ore less complex application? Since I'd like to discuss several things like the "useAvailableHeight" attribute or the personalization features but I don't know if anybody cares. However, cya!

    Hi Johns,
    BizTalk is OLTP system, yes. But latency is an issue in my case. I need <100 msec latency for the MessageBox round trip for most cases. In some cases I need <10 msec.
    And SSD is so cheap, we could replace burned disk each couple months, if we need. It would be still cheaper than good hard-drive subsystem.
    And we tolerate some message lost. At last we use now the custom made HA solution and didn't find any problems with, no lost messages.
    Leonid Ganeline [BizTalk MVP]

  • ABAP certification in SAP TechEd B'lore

    Hello Experts,
    I checked the SAP techEd site but they dont provide sufficient info on ABAP certification .or the syllabus for associate level ABAP certification exap .
    If anyone have detail info then plz reply me

    Hi,
    SAP Consultant Certification Development Consultant SAP NetWeaver -
    <b>ABAP Workbench (2003) Curriculum</b>
    Software components: SAP Web Application Server 6.20
    Certification duration: 3 hours
    Number of certification questions: 80 multiple choice questions
    Required certificates for participation in this certification test: None
    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 - ABAP Workbench (2003) verifies the knowledge in the area of SAP NetWeaver for the consultant profile ABAP Workbench. 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
    <b>1. SAP Technologies (+)</b>
    SAP Systems
    Navigation (system handling)
    Technical setup of an SAP system
    System-wide concepts
    <b>
    2. ABAP Workbench Basics (++)</b>
    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
    <b>3. ABAP Objects (++)</b>
    Classes and objects
    Inheritance
    Casting
    Interfaces
    Events
    Global classes and interfaces
    Exception handling
    Dynamic programming
    <b>4. ABAP Dictionary (++)</b>
    Database tables
    Performance for table access
    Consistency through input check (foreigh key dependency)
    Dependency of ABAP Dictionary objects
    Views
    Search help
    <b>5. Techniqes for List Generation (++)</b>
    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
    <b>6. Dialog Programming (++)</b>
    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
    <b>7. Database Changes (+)</b>
    Database updates with Open SQL
    LUWs and Client/Server Architecture
    SAP locking concept
    Organizing database changes
    Complex LUW processing
    Number assignment
    Change-document creation
    <b>8. Enhancements and Modifications (+)</b>
    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%
    SAP Consultant Certification
    Development Consultant SAP <b>NetWeaver</b> 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
    Required certificates for participation in this certification test: None
    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
    SAP systems (mySAP Business Suite and SAP NetWeaver)
    Technical structure of an SAP Web Application Server
    2.     ABAP Workbench Basics (++)
    Data types and data objects (declaration)
    Internal tables
    Data retrieval (authorization check)
    Subroutines
    Function groups and function modules
    Program calls and memory management
    3.     Advanced ABAP (++)
    ABAP runtime
    Data types and data objects (usage)
    Open SQL (high-performance programming)
    Dynamic programming
    4.     ABAP Objects (++)
    Classes and objects
    Inheritance
    Polymorphism (casting)
    Interfaces
    Events
    Global classes and interfaces
    Exception handling
    Shared objects
    5.     ABAP Dictionary (++)
    Database tables
    Performance for table accesses
    Consistency by means of input check (foreign key dependency)
    Dependency for ABAP Dictionary objects
    Views
    Search helps
    6.     List Creation Techniques (++)
    Data output in lists
    Selection screen
    Logical database
    Interactive lists
    List creation with the ALV grid control:
            - Simple lists 
            - Field catalog
            - Layout
            - Event handling
    7.     Dialog Programming (++)
    Screen (basics)
    Program 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
    Lists in dialog programming
    8.     Database Changes
    Database updates with open SQL
    LUWs and client/server architecture
    SAP locking concept
    Organize database changes
    Complex LUW processing
    Number assignment
    Change document creation
    9.     Enhancements and Modifications
    Changes to the standard SAP system
    Personalization    
    Enhancements to ABAP Dictionary elements
    Enhancements via customer exits
    Business Transaction Events
    Business Add-Ins
    Modifications
    Amount of questions by topic (as percentage of test):
    +              = 1 - 10%
    ++            = 11 - 20%
    +++          = over 20%
    Reward points if useful
    vinay

Maybe you are looking for

  • How to remove a incorrect monitoringobject

    Hi, I am using SCOM 2007 R2 version 6.1.7221 and have two alerts for two objects that do not exist(IE in this case there is no drive E: on the server reported so hence the diskfree fails). This is causing the powershell script to fail and raises an a

  • Person is not updating in Org. Stru.

    Hi, I uploaded initial master through LSMW program.Its uploaded sucessfully.But I cheched in org. structure,its not updating person.I checked Integration also everything is fine.Please sugest me. Thanks KB

  • Numerous problems with Mavericks

    Just upgraded to Maverics the other day and nothing but problems. First of all, I get error code 50 which prevents me from writing to my external drive, which was quite fine under ML. Now today, I want to burn some CD's into iTunes and my internal su

  • Deployment to remote host via DTR: wich URL in Browser?

    Hello everybody, it is easy to deploy a project to my local WAS. But how about deployment over DTR? As far as I know I have just to "check in" my project. But what ist the URL of my Web-Dynpro-Project. I have just got the servername an the port#. Whe

  • 3rd party webcams

    hello experts, currently i'm working towards a solution using our customer's current infrastructure: -Call Manager 6.0 (MCS7825H3-K9-CMB1 and backup) -unity 5.x MCS-7815-I3-ECS1 -Meeting Place express 2.0 MCS-7845-H2-RC1 the scheme will be one "teach