Dailog Programming

What is meant by Dailog Programming? Can anyone help me with a good document and an example also?

It is an Module pool programing.
it is same like Visual basic.
We can able to drag and drop the components .
we can able to create an interactive application.
Transaction to create module pool program is : Se 80
select program and give your program name, and create an screen with the number of 100.
To execute the module pool program we need to create an transaction for that screen 100.
using the transaction code you can execute your program.
I hope that this will help you,
Regards
Purshoth

Similar Messages

  • Send me notes of ALV, DAILOG PROGRAMMING

    hi friends,
    this is shafeeq plz send me the notes of ALV, DAILOG PROGRAMMING WITH SOME interview quetions also
    MY MAIL ID [email protected]
    accept my thanks in advance
    regards
    shafeeq

    Hi,
    dialog programming.
    Refer to the documentation @
    <u>http://help.sap.com/saphelp_47x200/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm</u>
    <u>http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm</u>
    <b>ALV</b>
    check these links,
    About ALV:
    http://www.geocities.com/mpioud/Abap_programs.html
    ALV Group Heading
    http://www.sap-img.com/fu037.htm
    and few more,
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    <b>Interview questions</b>.
    refer this one...
    /message/2042837#2042837 [original link is broken]
    Please check these links.
    http://www.sap-img.com/abap/abap-interview-question.htm
    http://www.sap-img.com/abap/answers-to-some-abap-interview-questions.htm
    http://sap.ittoolbox.com/documents/document.asp?i=3240
    http://www.techinterviews.com/?p=198
    Regards
    Anver
    if hlped pls mark points

  • Help required in Dailog programming

    Hello All,
    I have a field in screen. For that filed i kept f4help in flow logic in process on request(POV)
    My problem is:
    The user chooses some value in f4 help.After the user chooses some value i need to set someother field based on this field. But i am unable to do that. Can any one help me. how to solve this problem?
    My code: in flow logic
    PROCESS ON VALUE-REQUEST.
      FIELD: qmel-qmcod MODULE f4help_qmcod.
      lt_qpk1codegrp-codegruppe = '*'.
      APPEND  lt_qpk1codegrp.
      CALL FUNCTION 'QPK1_GP_CODE_SELECTION'
        EXPORTING
          i_katalogart           = 'Z'
          i_code                 = '*'
          i_sprache              = sy-langu
          i_winx1                = 10
          i_winx2                = 70
          i_winy1                = 5
          i_winy2                = 25
          i_return_if_one        = 'X'
          i_pickup_mode          = 'X'
        TABLES
          t_qpk1cdtab            = lt_qpk1cd
          t_codegrptab           = lt_qpk1codegrp
        EXCEPTIONS
          no_match_in_range      = 1
          no_user_selection      = 2
          no_authorization       = 3
          no_selection_specified = 4
          object_locked          = 5
          lock_error             = 6
          object_missing         = 7
          OTHERS                 = 8.
      CASE sy-subrc.
        WHEN 0.
          READ TABLE lt_qpk1cd INTO ls_qpk1cd INDEX 1.
          IF sy-subrc = 0.
            qmel-qmgrp = ls_qpk1cd-codegruppe.
            qmel-qmcod = ls_qpk1cd-code.
            FREE: lt_qpk1cd,ls_qpk1cd.
          ENDIF.
        WHEN OTHERS.
          MESSAGE s006 WITH 'please check the program'.
      ENDCASE.
    Regards,
    Lisa

    READ TABLE lt_qpk1cd INTO ls_qpk1cd INDEX 1.
          IF sy-subrc = 0.
            qmel-qmgrp = ls_qpk1cd-codegruppe.
            qmel-qmcod = ls_qpk1cd-code.
    "here you need to call the Function
    " DYNP_VALUES_UPDATE to update the other fields
            FREE: lt_qpk1cd,ls_qpk1cd.
          ENDIF.

  • Tutorials for dailog programming & screen painter

    HI,
    I am new to the topics above and i want to have information about it . plzz proivde me d simple and easiest tutorials for it.

    Hi,
    A dialog program consists of the following basic components:
    Screens (dynpros)
    Each dialog in an SAP system is controlled by dynpros. A dynpro (DYnamic PROgram) consists of a screen and its flow logic and controls exactly one dialog step. The flow logic determines which processing takes place before displaying the screen (PBO-Process Before Output) and after receiving the entries the user made on the screen (PAI-Process After Input).
    The screen layout fixed in the Screen Painter determines the positions of input/output fields, text fields, and graphical elements such as radio buttons and checkboxes. In addition, the Menu Painter allows to store menus, icons, pushbuttons, and function keys in one or more GUI statuses. Dynpros and GUI statuses refer to the ABAP/4 program that control the sequence of the dynpros and GUI statuses at runtime.
    ABAP/4 module pool
    Each dynpro refers to exactly one ABAP/4 dialog program. Such a dialog program is also called a module pool, since it consists of interactive modules. The flow logic of a dynpro contains calls of modules from the corresponding module pool. Interactive modules called at the PBO event are used to prepare the screen template in accordance to the context, for example by setting field contents or by suppressing fields from the display that are not needed. Interactive modules called at the PAI event are used to check the user input and to trigger appropriate dialog steps, such as the update task.
    All dynpros to be called from within one transaction refer to a common module pool. The dynpros of a module pool are numbered. By default, the system stores for each dynpro the dynpro to be displayed next. This dynpro sequence or chain can be linear as well as cyclic. From within a dynpro chain, you can even call another dynpro chain and, after processing it, return to the original chain.
    Check this link for basics.
    http://sap.mis.cmich.edu/sap-abap/abap09/index.htm
    Check this link for Dialog Programming/Table Control
    http://www.planetsap.com/Tips_and_Tricks.htm#dialog
    Check this SAP Help for Dialog Program doc.
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    Check this SAP Help link for Subscreens.
    http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbabfe35c111d1829f0000e829fbfe/content.htm
    Check this link for subscreen demo program.
    http://abapcode.blogspot.com/2007/05/demo-program-to-create-subscreen-in.html
    Also check this link too.
    http://abapcode.blogspot.com/2007/06/dialog-programming-faq.html
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/frameset.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/sld004.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/52/670ba2439b11d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/52/670c17439b11d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/52/670c17439b11d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9ccf35c111d1829f0000e829fbfe/frameset.htm
    Reward if it is useful
    Harimanjesh AN

  • Dailog programing

    hi,
    what is the use of perform on commit and roolback..
    how we can use in programning

    HI,
       In everyday language, a transaction is a sequence of actions that logically belong together in a business sense and that either procure or process data. It covers a self-contained procedure, for example, generating a list of customers, creating a flight booking, or sending reminders to customers. From the user’s viewpoint, it forms a logical unit.
    The completeness and correctness of data must be assured within this unit. In the middle of a transaction, the data will usually be inconsistent. For example, when you transfer an amount in financial accounting, this must first be deducted from one account before being credited to another. In between the two postings, the data is inconsistent, since the amount that you are posting does not exist in either account. It is essential for application programmers to know that their data is consistent at the end of the transaction. If an error occurs, it must be possible to undo the changes made within a logical process.
    In the R/3 System, there are three terms frequently used in this context:
    Database Logical Unit of Work (LUW)
    A database LUW is the mechanism used by the database to ensure that its data is always consistent.
    SAP LUW
    An SAP LUW is a logical unit consisting of dialog steps, whose changes are written to the database in a single database LUW.
    SAP Transaction
    An SAP transaction is an application program that you start using a transaction code. It may contain one or more SAP LUWs.
    Click the below links to know more on LUW.
    DB LUW
    http://help.sap.com/saphelp_47x200/helpdata/en/41/7af4bca79e11d1950f0000e82de14a/content.htm
    SAP LUW
    http://help.sap.com/saphelp_47x200/helpdata/en/41/7af4bfa79e11d1950f0000e82de14a/content.htm
    SAP TRansactions
    http://help.sap.com/saphelp_47x200/helpdata/en/41/7af4c2a79e11d1950f0000e82de14a/content.htm
    Update Techniques
    The main update technique for bundling database changes in a single database LUW is to use CALL FUNCTION... IN UPDATE TASK. This section describes various ways of updating the database.
    A program can send an update request using COMMIT WORK
    To the update work process, where it is processed asynchronously. The program does not wait for the work process to finish the update ( Asynchronous Update).
    For asynchronous processing in two steps ( Updating Asynchronously in Steps.)
    To the update work process, where it is processed synchronously. The program waits for the work process to finish the update ( Synchronous Update).
    To its own work process locally. In this case, of course, the program has to wait until the update is finished ( Local Update.)
    PERFORM ON COMMIT is one such Update Commit.
    Click the below link to more about PERFORM on Commit.
    http://help.sap.com/saphelp_47x200/helpdata/en/41/7af4e3a79e11d1950f0000e82de14a/content.htm
    Synchronous Update
    In synchronous update, you do not submit an update request using CALL FUNCTION... IN UPDATE TASK. Instead, you use the ABAP statement COMMIT WORK AND WAIT. When the update is finished, control passes back to the program. Synchronous update works in the same way as bundling update requests in a subroutine (PERFORM ON COMMIT). This kind of update is useful when you want to use both asynchronous and synchronous processing without having to program the bundles in two separate ways. The following diagram illustrates the synchronous update process:
    Use this type of update whenever the changed data is required immediately. For example, you may want to link SAP LUWs together where one LUW depends on the results of the previous one.
    ROLLBACK.
    Rollback is a procedure to call off the database updates. If there is any error, the the updates can be called off before commiting.
    I hope your questions are answered.
    Regards,
    Vara

  • Dailog programing help

    Hello All,
    In my screen i have a field equnr. i enterd some value.
    When i restart my program i still see the last enterd value.
    How to clear this. i already used in my PBO clear EQUNR. still i see the value after i restart my screen.
    Regards,
    Lisa
    Edited by: Lisa Roy on Aug 21, 2008 12:59 PM

    if i observe the field in debugging mode i don't see any value for it but when the screen appears i see the last enterd value
    Lisa.

  • Searsh help in dailog programming

    Hi,
    I have made a search help for a field in module pool.. i am getting the required result.
    My requirement is that i have to fill the other 5 fields on the screen based on my selection of the value in the search help.
    can someone help me out here?

    From the help on search helps:
    A search help attachment is an assignment of a
    search help to a table, structure or data element, causing
    the corresponding search help to be automatically used to
    describe the input help process at this field when      
    an ABAP Dictionary field is used in a screen.                                                                               
    You can attach a search help as follows:                                                                               
    1.  <b>Attach a search help to a structure or table field:
    The attached search help is available for all screen fields that refer to the table or structure field.</b>
    There must be an assignment between the interface
    parameters of the search help and the fields of the table
    or structure for this type of attachment. In the input
    help process, this assignment results in a value transport
    between the corresponding fields (if they are known at
    least to the module pool of the screen) and the search
    help parameters. As for the foreign key definition, you
    can assign nothing, a constant or any other field (which
    is then sought in the module pool) to indivdiual search
    help parameters.
    For eg, the table SFLIGHT has the search help SFLIGHT associated with it, and using this, if the CARRID is entered, the CONNID dropdown lists only those connections with the carrid in the CARRID field.
    If you want to populate the fields as soon as the first field is selected, you might need to look at coding a search help exit.
    Sudha
    Message was edited by: Sudha Mohan

  • How to deactivate menu bar option on screen in a dailog program

    hi,
    my requirement is there is menu bar main (having three options under it create, display and change). Now if my transaction code is zcreate then i want the create option on the menu bar to be diabled and other two to be enabled, when my transaction code is zdisplay then i want the display option on the menu bar to be diabled and other two to be enabled. pls suggest with code snippet how can i achieve it

    Hi,
    You can disable set of main items like given below,
    TYPES: ty_status TYPE sy-ucomm.
      DATA: it_status TYPE TABLE OF ty_status WITH HEADER LINE.
      APPEND 'CHANGE' TO it_status.
      APPEND 'DISPLAY' TO it_status.
      SET PF-STATUS '0100' EXCLUDING it_status[]. "Set the menu excluding the function codes
                                                                             " appended to the int table
    Regards,
    Manoj Kumar P

  • Regarding Dailog Programing

    ABAP GURU'S
    Hi
    There are only two functions (SAVE and DIS) work properly under below mentioned coding and remain delete , Modify are not working. PLz check the coding and give the right solution.
    Thanks.
    REPORT YSCREEN4 .
    CALL SCREEN 1000.
    *&      Module  USER_COMMAND_1000  INPUT
          text
    module USER_COMMAND_1000 input.
    TABLES: YSACH1.
    DATA: OK_CODE(8).
    TYPES: BEGIN OF ITAB,
           ID(4) TYPE C,
           NAME(35) TYPE C,
           ORT01 TYPE ORT01,
           STRAS TYPE STRAS,
           LAND1 TYPE LAND1,
           END OF ITAB.
    DATA: IT_ST TYPE TABLE OF ITAB ,
          WA_ST TYPE ITAB,
          IT_YSACH1 TYPE YSACH1,
          WA_YSACH1 TYPE YSACH1.
    CASE OK_CODE.
    WHEN 'DISP'.
    CLEAR OK_CODE.
    SELECT SINGLE * FROM  YSACH1
                         WHERE ID = YSACH1-ID.
    WHEN 'SAVE'.
    WA_ST-ID = YSACH1-ID.
    WA_ST-NAME = YSACH1-NAME.
    WA_ST-ORT01 = YSACH1-ORT01.
    WA_ST-STRAS = YSACH1-STRAS.
    WA_ST-LAND1 = YSACH1-LAND1.
    MOVE-CORRESPONDING WA_ST TO WA_YSACH1.
    INSERT INTO YSACH1 VALUES WA_YSACH1.
    WHEN 'DELETE'.
    WA_ST-ID = YSACH1-ID.
    WA_ST-NAME = YSACH1-NAME.
    WA_ST-ORT01 = YSACH1-ORT01.
    WA_ST-STRAS = YSACH1-STRAS.
    WA_ST-LAND1 = YSACH1-LAND1.
    MOVE-CORRESPONDING  WA_YSACH1 TO WA_ST.
    DELETE YSACH1 FROM WA_YSACH1.
    WHEN 'MODIFY'.
    WA_ST-ID = YSACH1-ID.
    WA_ST-NAME = YSACH1-NAME.
    WA_ST-ORT01 = YSACH1-ORT01.
    WA_ST-STRAS = YSACH1-STRAS.
    WA_ST-LAND1 = YSACH1-LAND1.
    MOVE-CORRESPONDING WA_YSACH1 TO WA_ST .
    MODIFY YSACH1 FROM WA_YSACH1.
    WHEN 'EXIT'.
    CLEAR OK_CODE.
    SET SCREEN 0.
    LEAVE SCREEN.
    ENDCASE.
    endmodule.                 " USER_COMMAND_1000  INPUTHI

    Hi,
    The changes are in small letters.....
    WHEN 'DELETE'.
    WA_ST-ID = YSACH1-ID.
    WA_ST-NAME = YSACH1-NAME.
    WA_ST-ORT01 = YSACH1-ORT01.
    WA_ST-STRAS = YSACH1-STRAS.
    WA_ST-LAND1 = YSACH1-LAND1.
    MOVE-CORRESPONDING   WA_ST to wa_ysach1.
    DELETE YSACH1 FROM WA_YSACH1.
    WHEN 'MODIFY'.
    WA_ST-ID = YSACH1-ID.
    WA_ST-NAME = YSACH1-NAME.
    WA_ST-ORT01 = YSACH1-ORT01.
    WA_ST-STRAS = YSACH1-STRAS.
    WA_ST-LAND1 = YSACH1-LAND1.
    MOVE-CORRESPONDING  WA_ST to wa_ysach1.
    MODIFY YSACH1 FROM WA_YSACH1.
    Thanks,
    Arunprasad.P
    Reward if useful.

  • Dailog programming - Urgent.

    I m using respond to double click for a text field in the attribute tab.
    How to trigger the event by clicking that text field.
    Thanks in advance

    hi..
    U Cant Assign a Function Code for a text field ..
    Rather u may check the condition like this..
    If the Text field is empty means ..
    Perform one conditon..
    Else..
    The text field contains any data means
    Perform the other..
    hope it will helps..
    Bala..

  • Dialogue program to create/modify entries of ztable

    hi experts,
    i want to create a ztable. After creating the ztable i want to create an dialogue program using that dialogue program i have to create/modify entries of that ztable using text box and push button options.
    can anybody having sample coding pls send me.....
    thanks in advance,
    ravi

    Hi  Ravi ,
    Instead creating the Dailog Program u can creat the Table Maintanance Generator (TMG). Here u will have all the option of creation, deleting , modifying the record.
    In se11 main screen go to utilities:-> Table Maintanance Generator .
    here u have to enteg the Function group name and screen NO. system wil generate the dialog program for u to maintan the data in that table. Then go to      T-CODE SM30 give the same table name and click on maintanance push button and maintain ur entries the table.
    IF helpfull reward points
    Anees
    9886358645

  • Tab Strip Selection Screen in ALV Report

    Hi All,
    I want to create a ALV report with TABStrip selection screen. How to proceede.
    Is there any necessary to create dailog program for the screens.
    Please advise.
    Thank You,
    ANu.

    Hi
    You can create it using module pool program in an easy way. Have the tab strip in main screen and use the sub-screens for display. By this way you can do it. If you wish, you could refer the following link, where they have given step by step procedure.
    <<Link-farm removed>>
    Hope this helps you.
    Regards
    Vinodh
    Edited by: kishan P on Nov 1, 2010 3:00 PM

  • Regarding career as a SAP ABAP fresher

    Hi All ,
    My name is Rohit Prakash, I had done my certification from ATOS Bangalore in june 2012. After Struggling a lot I was able to find a contract to hire position for one of the MNC's in Bangalore. As the project is going to be over , I am again left in fix . I am having a relevant experience of 8 months .
    Having knowledge on DDIC ,Reports,Enhancements, BAPIs , Dailog programming and web dynpro.
    So please guide me and assist me if any suitable opening for 0.8 months experience candidate.
    mail id : [email protected]
    Contact no : 07760570955.
    Thanks n Regards

    Dear Rohit,
    Don't loss hope first of all. There are still no. of job vacancy in the Market for real good developer, you just need to do some things. Like never stop learning. Participate on SCN, try to resolve PR's issues.
    Keep practicing your concept, brush-up your skills.By this i won't miss a single interview opportunity.
    And for that interview opportunity keep yourself update with job portal sites(career's of company, other sites like naukri.com )  and try to involve with person on LinkedIn and some FB groups is also there.
    If i got some link, will share with you for sure...
    All the very best.
    Good Day..
    --ChanS

  • Screen Attaching to the BADI.

    Hi Guys,
                  How to  attach a screen to BADI .In My application i am Implementing a BADI ADDR_Check for this BADi i have to attach a Dailog programming screen for displaying Error_Table and also provide update and save option .
    Thanks,
    Gopi.

    You would have to implement your screen in a function module and then call this function module inside your BADI.  Calling screens is not supported in global classes or interfaces, so you need to wrap your functionality in a function module.
    REgards,
    Rich HEilman

  • Adding list box

    I have not done dailog programing much. Can some one tell me how to get values in the list box. I need to add some 10 values in my list box. Please help.

    Hi Arshad,
    1. For Dialog programming
    2.
    MODULE pai_1000.
    PROCESS ON VALUE-REQUEST.
    field mylistab module abc.
    Where
    field = fieldname on screen
    abc = module name (see code below)
    3.
    *&  Include           ZAMMOD03_F01                                     *
    *&      Module  abc  INPUT
          text
    MODULE abc INPUT.
      DATA : BEGIN OF itab OCCURS 0,
             bukrs LIKE t001-bukrs,
             butxt LIKE t001-butxt,
             END OF itab.
      SELECT * FROM t001 INTO CORRESPONDING FIELDS OF TABLE itab.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'BUKRS'
          value_org       = 'S'
          dynprofield     = 'MYLISTTAB'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
        TABLES
          value_tab       = itab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
    ENDMODULE.                 " abc  INPUT
    regards,
    amit m.

Maybe you are looking for

  • A problem with subtitles in windows media player

    Hello, I have a old problem with Windows Media Player. In Windows 7 Windows Media Player not accept subtitles and I download other program. Now i update my windows in 8.1 Pro. And that problem aren't fix. Sorry for my English... What can i do for my

  • Resource Conflict Warning (ACPI/NON-ACPI devices) while installing solaris

    Hi, I am trying to install Solaris 8 on my system. Intel Celeron 1.7 Ghz 128 MB RAM Gigabyte 8LD 533K Motherboard with Intel Chipset. While installing, the second installation screen titled "Bus Enumeration" gives the following warning. Warning: Reso

  • Applying Patch 92021 to Oracle 9201 DB

    Hello All; I'm trying to apply the patch 92021 to my DB on windows platform. 1- from Services I stopped all Oracle Services. 2- I installed the patch successfully. 3- Now I want to do the post install tasks. (startup migrate , spool patch.log, @rdbms

  • Need Guidance for interview preparations

    Hello, I am preparing for interviews. I am revising ABAP and webdynpro. can you suggest me which topics are more important from interview point?

  • Wireless kernel module seems to "drop out"

    Hi, I recently installed arch with gnome and networkmanager. Everything is ok execpt that my wireless card seems to stop functioning at random times for 2 seconds and then work again, the module seems to "drop out of the kernel" and come back online