How to Keep Default Layout of ALV

I changed layout of ALV, then pressed button "Enter" but not "Save". But when I entered the screen again, the layout was changed to the setting which I changed last time, not default setting.
Source code is shown below.
     DATA lt_acc_bal_fcat TYPE lvc_t_fcat.
     DATA lt_trans_dtl_fcat TYPE lvc_t_fcat.
     CLEAR gt_copc_bal.
     APPEND LINES OF it_copc_bal TO gt_copc_bal.
     CLEAR gt_trans_detail.
     APPEND LINES OF it_trans_detail TO gt_trans_detail.
     _adjust_data_for_display( ).
     IF gv_grid_inited NE abap_true.
       CLEAR gs_grid_variant.
       CLEAR gs_grid_variant_detail.
       CLEAR gt_trans_dtl_fcat.
       gs_grid_layout-no_rowmark  = abap_true.
"      gs_grid_layout-sel_mode    = 'A'.
       gs_grid_layout-stylefname  = 'FLD_STYL'.
       gs_grid_variant-report     = sy-repid.
       gs_grid_variant-username   = sy-uname.
       gs_grid_variant-log_group  = '001'.
       "load account balance data to ALV
       CREATE OBJECT go_acc_bal_container
         EXPORTING
           container_name = 'ACC_BAL_CONTAIN'.
       CREATE OBJECT go_acc_bal_grid
         EXPORTING
           i_appl_events = abap_true
           i_parent      = go_acc_bal_container.
       CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
         EXPORTING
           i_structure_name = 'EPIC_S_COPC_BAL'
         CHANGING
           ct_fieldcat      = lt_acc_bal_fcat.
       DATA lt_acc_bal_fcat_a TYPE lvc_t_fcat.
       _adjust_bal_alv_dsp(
         EXPORTING
           it_fcat = lt_acc_bal_fcat    " Field Catalog for List Viewer Control
         IMPORTING
           et_fcat = lt_acc_bal_fcat_a   " Field Catalog for List Viewer Control
       go_acc_bal_grid->set_table_for_first_display(
         EXPORTING
             is_layout            = gs_grid_layout
             is_variant           = gs_grid_variant
             i_save               = 'A'
           CHANGING
             it_outtab            = gt_copc_bal
             it_fieldcatalog      = lt_acc_bal_fcat_a
       "load trasaction detail data to ALV
       CREATE OBJECT go_acc_trans_dtl_container
         EXPORTING
           container_name = 'TRANS_DTL_CONTAIN'.
       CREATE OBJECT go_acc_trans_dtl_grid
         EXPORTING
           i_appl_events = abap_true
           i_parent      = go_acc_trans_dtl_container.
       CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
         EXPORTING
           i_structure_name = 'COPC_S_TRANS_DETAIL'
         CHANGING
           ct_fieldcat      = lt_trans_dtl_fcat.
       DATA lt_trans_dtl_fcat_a TYPE lvc_t_fcat.
       _adjust_detail_alv_dsp(
         EXPORTING
           it_fcat = lt_trans_dtl_fcat    " Field Catalog for List Viewer Control
         IMPORTING
           et_fcat = gt_trans_dtl_fcat   " Field Catalog for List Viewer Control
       gs_grid_variant_detail = gs_grid_variant.
       gs_grid_variant_detail-log_group = '002'.
       go_acc_trans_dtl_grid->set_table_for_first_display(
         EXPORTING
             is_layout            = gs_grid_layout
             is_variant           = gs_grid_variant_detail
             i_save               = 'A'
           CHANGING
             it_outtab            = gt_trans_detail
             it_fieldcatalog      = gt_trans_dtl_fcat
       gv_grid_inited = abap_true.
     ENDIF.
     go_acc_bal_grid->refresh_table_display( ).
     go_acc_trans_dtl_grid->refresh_table_display( ).
I want to keep layout of ALV default setting when I enters screen each time. Please help me solve this problem.

Hi,
are you refreshing ALV when pressing enter? maybe you should not refresh when pressing enter, or provide the right variant when refreshing.
regards
Stefan Seeburger

Similar Messages

  • Resolved:how to set default LAYOUT for ALV list display

    hey guys,
      In my alv report there are 20 cloumns.
    after display i usualy choose 12 of them from CHOOSE LAYOUT option and then give it to print...
    how to set this LAYOUT as default
    sorry guys i figured it out..
    but can we give it programiticlay?
    Edited by: kumar gaurav on May 27, 2008 8:15 AM

    hi,
    you can do it.
    after declaring the catlog table you will give as
    wa_catlog-seltext_l = 'material'.
    wa_catlog-datatype = 'char'.
    wa_catlog-outputlen = 18.
    wa_catlog-fieldname = 'matnr'.
    append wa_catlog to i_catlog.
    clear wa_catlog.
    wa_catlog-seltext_l = 'plantl'.
    wa_catlog-datatype = 'char'.
    wa_catlog-outputlen = 4.
    wa_catlog-fieldname = 'werks'.
    append wa_catlog to i_catlog.
    clear wa_catlog.
    similarly what sequence you give here i.e. material  ,  plant  etc. you get the output in the same oder you can even give only the fields you want in the output.
    rewards points if useful.
    siri

  • How to set default layout for ALV grid ?

    Dear all,
    When execute ALV reports, the user customize the layout for their own purpose. But each time they run that report, they must choose again their layout. Is there any way to set the layout as default ?
    Thank you very much,
    Sylvecat.

    Hi,'
    After you have created a layout just follow the steps listed below for making it as default layout:
    1. Click (Save Layout).
    2. Enter a name in the Save Layout field. The name must begin with a letter.
    3. Type in a description for the layout in the Name field.
    4. Select the Default Setting check box if you want this layout to be the default layout every time you run
    the report.
    5. Click (Continue).
    Note: A warning message will appear if you are trying to save over an existing layout. Close the box by
    selecting the X in the upper right hand corner or choose Yes to overwrite the layout.
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • How to keep lead selections in alv table...

    Hi experts.
    I made a alv.
    A logic  in wdmodifyview is following..
    METHOD wddomodifyview .
      IF first_time EQ abap_true.
        wd_comp_controller->set_alv_config( ).
      ENDIF.
      wd_this->set_maktx( ).  "<- for displaying maktx
    ENDMETHOD.
    When I want to select a line, do not selected.
    I know because of "wd_this->set_maktx( )." sentence.
    But I want to select multi lines in above condition...
    How to keep selected lines in alv?
    Help me please.
    Thanks.
    Regards.

    What logic is taking place in wd_this->set_maktx( )?  It is pretty difficult to say what is causing the issue without knowing what code you are executing?  If you are resetting the context bound to the ALV, that would explain why you are losing your selections.

  • Default Layout in ALV

    I want that the Default layout will appear whatever the sequence of fields in the cod has been written coz many times user make their own layout and make it default, but i want when the report is execute the default layout will be the asm sequence as in the code after that the user can select his layout
    can it be possible.

    check this :
    FU REUSE_ALV_GRID_DISPLAY        I_SAVE
    Text
    Variants can be saved
    Description
    Controls the save mode
    Prerequisite:
    Parameter IS_VARIANT is filled accordingly.
    See also the documentation on IMPORTING parameter IS_VARIANT.
    Value range
    ' ' = Display variants cannot be saved
    Defined display variants (such as delivered display variants) can be selected for presentation regardless of this indicator. However, changes cannot be saved.
    'X' = Standard save mode
    Display variants can be saved as standard display variants.
    Saving display variants as user-specific is not possible.
    'U' = User-specific save mode
    Display variants can only be saved as user-specific.
    'A' = Standard and user-specific save mode
    Display variants can be saved both as user-specific and as standard
    variants. Users make their choice on the dialog box for saving the
    display variant.
    Default
    SPACE
    Function Module
    REUSE_ALV_GRID_DISPLAY
    Regards
    Prabhu

  • How to keep Default Attendence/Absence type in Record working time (CATS) application?

    Hi Friends,
    I tried by keeping default value in Profile for Attendence/Absence type but it is not reflecting in CATS application. It is reflecting after entering from time and to time and after pressing ENTER button.
    But i have to display the default value while loading the application?
    Is it possible?
    Can you pls suggest me the solution?
    Thanks,
    R V Narayana

    Hi Siddharth Rajora,
    Thanks for your reply. We tried by maintaining standard template for a profile. But It is not allowing us to change the default value in Attendence type.
    Let us consider we  kept default attendence type as Attendence for 7rows. If we changed the default value of 2nd row from Attendence to Leave, After pressing Save Button the entry which contains Leave is going down to 8th row.
    So i dont think that this is a better solution.
    I will try with jyothi solution and will come back to you.
    Thanks,
    R V Narayana.

  • How to keep a logo in alv in end of page

    hai all
    how to put a logo in end of page in alv report, like a we put in top of a page
    tahnks in advance
    sindu

    Hi,
    you need to Know Few things..
    1. END_OF_PAGE will trigger only when you click on Print or when you view the print preview
    2. it is not possible to place the logo in the end_of_page.
    3. Not sure you can give a try with END_OF_LIST( i'm sure this will not trigger in ALV grid).
    4. if your aim is to show the logo in the end_of_page then try with OO ALV, split the container, in the first container place the grid and in second one place the logo.
    But this case also not sure.
    One thing i can say it is not at all possible(90%).
    10% keep trying for it,
    Regards
    vijay

  • How to set default filepath for alv export?

    when i use the standard function of alv export, list-export-local file-spreadsheet
    the default filepath is "C:\Users\Administrator\Documents\SAP\SAP GUI\"
    may i change the default filepath to another direction?

    Anyone Help? Thanks~

  • How to change the layout of alv-urgent

    hi friends,
    my requirement is  User should be able to sort the data on fields in different order, should be able to select the fields to sort the data
    for example iam displaying the sales order,sales group,kunnr,amount in ALV List Display now when iam selecting the fields sales group,kunnr,amount,sales order then program has to display output in this way only. for this i used sort table thae way iwrote logic for displaying output is as follows ...
      w_sort-spos = 3.
      w_sort-fieldname = 'FINQTR'.
      W_FIELD-just = 'C'.
      W_SORT-UP = 'X'.
      W_SORT-group = 'UL'.
      W_SORT-SUBTOT = 'X'.
      APPEND W_SORT TO I_SORT.
      CLEAR W_SORT.
    for subtotals it is working fine and now what shall i do for this requirement plz send me the sample code its really urgent to me.

    use slis_t_sortinfo_alv.
    w_sort-fieldname = 'XYZ'.
    w_sort-up = p_userinput1.(for XYZ)
    w_sort-down = p_userinput2.(for XYZ) preferabbly radio buttons.
    append w_sort to t_sort.
    w_sort-fieldname = 'YZX'.
    w_sort-up = p_userinput1.(for YZX)
    w_sort-down = p_userinput2.(for YZX) preferabbly radio buttons.
    append w_sort to t_sort.
    thats the best I am able to think for you.
    let me know if that is helpful.
    cheers
    santhosh

  • How to change default layout of "personal pages"?

    Hello everybody,
    I configured my portal instance to automatically create new "personal pages" for new portal users. This works fine.
    However...
    can anyone give me a hint whether it is possible to change the initial layout of (i.e. locate and edit the template for) these new "personal pages"?
    And, in addition, is there a place to configure that users are redirected to a custom start page after logging in?
    Thank you very much for any help,
    Eckhard

    Hi Eckhard -
    To change the template used for Personal pages, follow the path
    Page Groups > Shared Objects > Templates
    and edit the "Template for Personal Pages" template.
    Hope this helps,
    Candace

  • How to keep default Finder window size and location from Mac server

    Working in an office of three people.  Mac mini server (not sure of the OS; I think it's Snow Leopard).  We each use iMacs with Mavericks.  I have my default new Finder window set to open "customers" folder, which resides on the server, in a specific orientation.  If either of my co-workers opens "customers" and resizes that window on their machines, it retains that size & location when I open it again on my machine (as I'm sure it does to them after I "fix" my own window).
    Is there any way to change this so that one's own machine will remember the window prefs?  I mean, we're not opening on the server itself, so in my mind it should not retain the last open position, right?
    I know I could set my default folder to Home, then go to customers from the sidebar, but that almost defeats the purpose of the default folder.
    thanks in advance!!

    Hey Macdaddy,
    This happens all the time with our server at work. The server window never opens in the same place twice, and it can be annoying.
    There are third-party window management tools out there, but what I did was use a macro program called Keyboard Maestro (since I already owned it).
    Among the many things Keyboard Maestro can do is manipulate a window. I created a macro that moves it to a specific point (in my case, the upper left corner of the screen) and then resizes it to a specific width and height in pixels. I then assigned the macro a keyboard shortcut.
    Now, when I mount the server, I can use the keyboard shortcut and the window is right where I want it.
    There are other programs that just move windows, and I tried a couple. But Keyboard Maestro is more elegant in my opinion, and it does a whole lot more if you choose to go that route.
    Hope this helps.
    Andy

  • How to keep default radio button ?

    Hello,
    I am having created 2 radiobuttons in my screen where i have went to edit in the menu bar and Radiobuttons define.
    But when i am saving the radiobutton text it is saving only when i click the radiobutton even defaultly present radiobutton also if i am clicking then only it is saving.
    My requirement is like the defaultly present radiobutton should save.
    Thks

    Hello Reddy Garu,
    My probelm id i have declared by two radio buttons as in
    Top Declarations as
    DATA: RADIOBUTTON1 type c,
              RADIOBUTTON2 type c,
              RADIO TYPE C.
    PAI
    CASE SY-UCOMM.
    when 'LIST1'.
    if radiobutton1 = 'X'.
    WA_CLPI-RADIO = '1'.
    WA_CLPI-OK1 = 'OK'.
    elseif radiobutton2 = 'X'.
    WA_CLPI-radio = '2'.
    WA_CLPI-OK1 = 'NOT OK'.
    ENDIF.
    I declared like this since my code is working fine while saving the records of radiobutton texts.
    But when i am trying to implement your code...
    Data: RADIOBUTTON1 as radioButton group gp1 default 'X',
             RADIOBUTTON2 as raioobutton group gp1.
    Then it is displaying a error message as AS is not defined.
    Please help me eith the answer.
    Thks

  • Change default variant in ALV grid on runtime

    Hello colleagues,
    where is the place in a code (CL_ALV_VARIANT, CL_GUI_ALV_GRID, ...) where I can change the deault layout. Customer require a modification which change default layout in ALV under specific circumstances.
    Kind regards
    Radim Benek

    It depend when these "specific circumstances" are occurring?
    Before displaying the ALV, then force the value of the variant used in set_table_for_first_display,
    CALL METHOD GRID1->SET_TABLE_FOR_FIRST_DISPLAY
      EXPORTING
        I_STRUCTURE_NAME = 'SFLIGHT'
        IS_VARIANT = GS_variant
        I_SAVE = X_SAVE
      CHANGING
        IT_OUTTAB = GT_SFLIGHT.
    If you want to simulate multiple "default variant" you should "mislead" the ALV by changing the report name used for storing variant (IS_VARIANT-REPORT) But in this case you will no longuer see every variant  when in the ALV, only those of the "report name" passed when setting for first display.
    Regards

  • How to make Default ALV layout

    Hi,
    I want to make 'STANDARD view' as a default ALV Layout...If anybody execute my ALV Report STARD Layout variant should display by default. Other variant layouts they can select from drill down..
    I know class and method but i don't know how to write code for this with paremeters..Can anybody help on code please..
    CLASS : CL_SALV_WD_C_TABLE
    METHOD : IF_SALV_WD_COMP_TABLE_PERS~SET_STANDARD_VIEW
    My current ALV CODE
      DATA: l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table .
      DATA: l_value TYPE REF TO cl_salv_wd_config_table.
      l_ref_interfacecontroller = wd_this->wd_cpifc_alv( ).
      l_value = l_ref_interfacecontroller->get_model( ).
    Thanks.,
    Subba

    Hi sarbjeet singh,
    Thanks for your reply...
    I didn't understand your answer...Already this view gone to production system and every USER created his own view..
    Now how can make default standard view to all users..
    If i keep Standard view as Intial view and release transport to production is it effected to all users and display standard view as initial view?
    Thanks,
    Subba

  • How to get default lay out set in my ALV out put.

    I need to have default layout in my ALV output.
    My functional consultant idea was to make sure they have an ALV variant selected. 
    When he first run the program, how will need to  get a "/DEFAULT" variant created.
    How can I do that ?
    Initialization - For ALV variant
    INITIALIZATION.
      ws_repid = sy-repid.
      g_save  = 'A'.
      CLEAR g_variant.
      g_variant-report = ws_repid.
    Get default variant.
      gx_variant  = g_variant.
      gx_variant = g_variant.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save     = g_save
        CHANGING
          cs_variant = gx_variant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 0.
        p_vari = gx_variant-variant.
      ENDIF.
    &--F4 HELP - FOR ALV VARIANT GET--
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
          EXPORTING
            is_variant = g_variant
            i_save     = g_save
          IMPORTING
            e_exit     = g_exit
            es_variant = gx_variant
          EXCEPTIONS
            not_found  = 2.
        IF sy-subrc = 2.
          MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ELSE.
          IF g_exit = space.
            p_vari = gx_variant-variant.
          ENDIF.
       ENDIF.
    &--AT SELECTION-SCREEN.- For ALV Variant--
    AT SELECTION-SCREEN.
    *Getting variant Existence
      PERFORM get_exist_variant.
    *&      Form  GET_EXIST_VARIANT                                        *
          text                                                           *
    FORM get_exist_variant .
      IF NOT p_vari IS INITIAL.
        MOVE g_variant TO gx_variant.
        MOVE p_vari TO gx_variant-variant.
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
          EXPORTING
            i_save     = g_save
          CHANGING
            cs_variant = gx_variant.
        g_variant = gx_variant.
      ELSE.
        CLEAR g_variant.
        g_variant-report = ws_repid.
      ENDIF.
    ENDFORM.                    " GET_EXIST_VARIANT
    *&      Form  alv_display                                              *
    This subroutine is to display the out put in ALV.                    *
    FORM alv_display .
    Local data
      DATA: y_x          LIKE boole  VALUE 'X'.
      DATA: lh_index     LIKE lf_fieldcat-col_pos.
    For variant
    DATA: ws_repid LIKE sy-repid,
          g_save TYPE c VALUE 'A',
          g_exit TYPE c,
          g_variant LIKE disvariant,
          gx_variant LIKE disvariant.
      For 1st field.( RPT_LOC )
        CLEAR lf_fieldcat.
        lf_fieldcat-fieldname = 'RPT_LOC'.
        lf_fieldcat-tabname = 'GT_ZGXMIT_L'.
        lf_fieldcat-ref_tabname = 'ZGXMIT'.
        lf_fieldcat-ref_fieldname = 'RPT_LOC'.
        lh_index = lh_index + 1.
        lf_fieldcat-col_pos = lh_index.
        lf_fieldcat-key = y_x.
        lf_fieldcat-no_sum = y_x.
        APPEND lf_fieldcat TO lt_fieldcat.
    For 2nd field.( BAL_XMIT )
        CLEAR lf_fieldcat.
        lf_fieldcat-fieldname = 'BAL_XMIT'.
        lf_fieldcat-tabname = 'GT_ZGXMIT_L'.
        lf_fieldcat-ref_tabname = 'ZGXMIT'.
        lf_fieldcat-ref_fieldname = 'BAL_XMIT'.
        lh_index = lh_index + 1.
        lf_fieldcat-col_pos = lh_index.
        lf_fieldcat-key = y_x.
        lf_fieldcat-no_sum = y_x.
        APPEND lf_fieldcat TO lt_fieldcat.
    4,5,....fields appening
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program                = ws_repid
          I_CALLBACK_PF_STATUS_SET          = ' '
           i_callback_user_command           = 'USER_COMMAND'
          I_CALLBACK_TOP_OF_PAGE            = ' '
          I_STRUCTURE_NAME                  =
          I_BACKGROUND_ID                   = ' '
          I_GRID_TITLE                      =
          I_GRID_SETTINGS                   =
          IS_LAYOUT                         = v_alv_layout
           it_fieldcat                       = lt_fieldcat
          IT_SORT                           =
          IT_FILTER                         =
          IS_SEL_HIDE                       =
          I_DEFAULT                         = 'X'
           i_save                            = 'A'
          IS_VARIANT                        =
           it_events                         = events[]
          IT_EVENT_EXIT                     =
          IS_PRINT                          =
          IS_REPREP_ID                      =
           TABLES
                t_outtab                 = gt_zgxmit_l
           EXCEPTIONS
                program_error            = 1
                OTHERS                   = 2.
        IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    ENDFORM.                    " alv_display

    Hello SAm,
    U have to set like   DATA: IT_VARIANT LIKE DISVARIANT,
            G_S_SORT  LIKE LINE OF IT_SORT.
      DATA : G_R_DISP_VARIANT TYPE DISVARIANT.
      SORT G_T_OUTTAB BY PSPID POSID.
      CLEAR: G_R_DISP_VARIANT.
    For storing the variant layout
      IT_VARIANT-REPORT  = SY-REPID.
      IF NOT P_VARIAN IS INITIAL.
        G_R_DISP_VARIANT-VARIANT = P_VARIAN.
      ELSE.
        IT_VARIANT-VARIANT = '/Z48M'.
      ENDIF.
      CLEAR G_T_OUTTAB.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM = IT_VARIANT-REPORT
                I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
                IT_FIELDCAT        = IT_FIELDCAT
                I_SAVE             = 'A'
                IS_VARIANT         = IT_VARIANT
               IS_LAYOUT          = IT_LAYOUT
                IT_SORT            = IT_SORT[]
           TABLES
                T_OUTTAB           = G_T_OUTTAB
           EXCEPTIONS
                PROGRAM_ERROR      = 1
                OTHERS             = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    If u want F4 help in the selection screen then do like this.
    SELECTION-SCREEN BEGIN OF BLOCK VARIANT WITH FRAME TITLE TEXT-013.
    PARAMETERS:  P_VARIAN LIKE DISVARIANT-VARIANT DEFAULT '/STANDARD'.
    SELECTION-SCREEN END OF BLOCK VARIANT.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_VARIAN.
      PERFORM SHOW_EXISTING_DISPLAY_VARIANTS.
    FORM SHOW_EXISTING_DISPLAY_VARIANTS.
      DATA: G_R_DISP_VARIANT TYPE DISVARIANT.
      G_R_DISP_VARIANT-REPORT = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
           EXPORTING
                IS_VARIANT    = G_R_DISP_VARIANT
                I_SAVE        = 'A'
           IMPORTING
                ES_VARIANT    = G_R_DISP_VARIANT
           EXCEPTIONS
                NOT_FOUND     = 1
                PROGRAM_ERROR = 2
                OTHERS        = 3.
      IF SY-SUBRC = 0.
        P_VARIAN = G_R_DISP_VARIANT-VARIANT.
      ENDIF.
    ENDFORM.                               " SHOW_EXISTING_DISPLAY_VARIANTS
    If useful reward.
    Vasanth

Maybe you are looking for

  • Digital Signatures with SmartCards.

    Hi guys, Has anyone implemented in R/3 digital signatures with smartcards? Currently I'm at customer side trying to implement digital signatures within workflow processes using ABAP SSF functions. The smartcard devices are already installed, but I ca

  • What the **** is wrong with this stupid machine???????

    **** my ipod just broke down for the 2nd time and it's really starting to be annoying.. it won't reset, won't charge the battery, it just shows a sad face. i was looking for an email adress to contact somebody but it's all by phone and i refuse to pa

  • G/L accounts to be copied from one client to another

    Dear Gurus, I would like to copy all or few G/L accounts from one client (000) to another client (800).   Is it possible? If it is possible, can anybody explain how to do the same. FYI - This question may not be relevant for SD, but i would like to c

  • Calculation Field in Query

    Hi, I am devloping a query report of the confirmation details of process order. In which the execution start/finish date & time are confirmed during the confirmation process. The report of the same can be derived from COOISPI under operations. But, I

  • Extending RAM Memory/ increasing temperarture

    Hello, on behalf of extending RAM memory, my iBook G4 (1,42Ghz 14,1" 512MB) manual provides using PC2100 DDR 266 rather than PC2400 DDR 333 modules. As I was told these RAM modules are quite old I bought a PC2700U DDR 333 and put it in. My question i