Regarding bdc , how to handle records when power is off

hi experts
whenever i update the records by session method suppose after 100
records power is off, then how i can handle the records now.
this is frequently asked me .
please replay.
thanks
subhasis.

put the power on again, and go to transaction SM35 and search for your session.
regards,
Hans
Please reward all helpful answers !!!!!

Similar Messages

  • In bdc how we handle page phone area in transaction pa30

    in bdc how we handle page phone area in transaction pa30.suppose one maintain phone no but not pager no.in that case how we will handle

    in my system ..i have phone number only displayed...if you want to put page number also then add a ddition qualifier like PG or some number by contacting functional guys..
    regards:)

  • In  BDC how you handled header data and item data

    In  BDC how you handled header data and item data

    Raja,
    Can you be more clear ?
    Usually you load the header data one and then loop at the item data and then load the item data.
    This example should help you.
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • S750 - How many people get the power on/off/resetting issue?

    How many people get the power on/off/resetting issue?
    I've had my S750s for about 6 months, with X-Fi Elite Pro, and has been doing it since.
    Any idea on what's the cause? Something to do with the control pod?
    Thanks.

    Hi,
    What do you mean exactly? On my side I have power on/off/resetting issue when the speaker are in standby mode (thus red light on the control pod) and when I switch them on via the remote control or the control pod. It makes a strange noise in the subwoofer ("clic"), the red light disappear, then a new noise and the speakers are switched on. The problem is that all volume levels (rear / side / center / sub and main) are reinitialized! I have to configure them each time this problem appears...
    I have a Creative Sound Blaster Audigy 2 ZS connected to this speaker system. For me it is related to an electrical problem in the subwoofer like if the voltage was not stable (variations).
    Regards,
    Vincent

  • Xperia T doesn't charge when power is off

    My Xperia is not charging when power is off. Normally it showed a battery when I put this phone in the dock for charging, but nothing happens. It will only charge when the power is on....What can I do to make the phone charging with power off?

    http://talk.sonymobile.com/t5/Xperia-T-TX/Sony-Xperia-T-does-not-power-on-most-likely-after-low-battery/m-p/279859#M1938  http://talk.sonymobile.com/t5/Xperia-T-TX/Xperia-T-LT30p-doesn-t-turn-on-no-lights-when-plugged-no/m-p/363892/highlight/true#M6425  

  • In bdc how we handle tabstrips...& tablecontrols

    hi gurus,
                in bdc how we can handle tabstrips and table controls.... pls any one suggest ..
    regards,
    praveen

    Table controls are used to display the data in tabular fashion for better visibility and for easy understanding in Screens as well as in reports.
    syntax:
    CONTROLS <tab_ctrl_name> TYPE TABLEVIEW USING SCREEN <screen_no>.
    chk the demo prog:
    DEMO_DYNPRO_TABCONT_LOOP
    Cursor Position on Table Controls
    At PBO you can set the cursor on a specific field of a specific row of a table control.
    SET CURSOR FIELD <f> LINE <lin> OFFSET <off>.
    Using the optional addition OFFSET, you can enter the offset of the cursor in the field as described under Setting the Cursor Position .
    At PAI you can read the current cursor position.
    GET CURSOR FIELD <f> LINE <lin> ...
    In addition to the information given under Finding Out the Cursor Position , field  contains information on which row of the table control the cursor is currently on. You can also use
    GET CURSOR LINE <lin>.
    if you only want to determine the row of the table control. SY´-SUBRC allows you to check if the cursor is placed in a row of a table control.
    u need to comment the performs of table control fields and write ur own perform statements. And u have to declare the table control fields as separate internal tables.
    Go through this urls.
    www.****************
    www.sap-img.com
    Check the below links.
    just refer to the link below
    http://www.sapmaterial.com/tablecontrol_sap.html
    step by step procedure with screen shots
    http://www.planetsap.com/howdo_a.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/content.htm
    http://sap.niraj.tripod.com/id25.html
    Also you can see the below examples...
    Go to se38 and give demodynpro and press F4.
    YOu will get a list of demo module pool programs.
    One more T-Code is ABAPDOCU.
    YOu can find more examples there.
    See the prgrams:
    DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement
    DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    Check the below link.
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    THis is example to upload the Bank details of the Vendor which has the TC.
    REPORT zprataptable2
    NO STANDARD PAGE HEADING LINE-SIZE 255.
    DATA : BEGIN OF itab OCCURS 0,
    i1 TYPE i,
    lifnr LIKE rf02k-lifnr,
    bukrs LIKE rf02k-bukrs,
    ekorg LIKE rf02k-ekorg,
    ktokk LIKE rf02k-ktokk,
    anred LIKE lfa1-anred,
    name1 LIKE lfa1-name1,
    sortl LIKE lfa1-sortl,
    land1 LIKE lfa1-land1,
    akont LIKE lfb1-akont,
    fdgrv LIKE lfb1-fdgrv,
    waers LIKE lfm1-waers,
    END OF itab.
    DATA : BEGIN OF jtab OCCURS 0,
    j1 TYPE i,
    banks LIKE lfbk-banks,
    bankl LIKE lfbk-bankl,
    bankn LIKE lfbk-bankn,
    END OF jtab.
    DATA : cnt(4) TYPE n.
    DATA : fdt(20) TYPE c.
    DATA : c TYPE i.
    INCLUDE bdcrecx1.
    START-OF-SELECTION.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = 'C: irst1.txt'
    filetype = 'DAT'
    TABLES
    data_tab = itab.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = 'C:second.txt'
    filetype = 'DAT'
    TABLES
    data_tab = jtab.
    LOOP AT itab.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-KTOKK'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RF02K-LIFNR'
    itab-lifnr.
    PERFORM bdc_field USING 'RF02K-BUKRS'
    itab-bukrs.
    PERFORM bdc_field USING 'RF02K-EKORG'
    itab-ekorg.
    PERFORM bdc_field USING 'RF02K-KTOKK'
    itab-ktokk.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-LAND1'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFA1-ANRED'
    itab-anred.
    PERFORM bdc_field USING 'LFA1-NAME1'
    itab-name1.
    PERFORM bdc_field USING 'LFA1-SORTL'
    itab-sortl.
    PERFORM bdc_field USING 'LFA1-LAND1'
    itab-land1.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0120'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-KUNNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    cnt = 0.
    LOOP AT jtab WHERE j1 = itab-i1.
    cnt = cnt + 1.
    CONCATENATE 'LFBK-BANKS(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-banks.
    CONCATENATE 'LFBK-BANKL(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-bankl.
    CONCATENATE 'LFBK-BANKN(' cnt ')' INTO fdt.
    PERFORM bdc_field USING fdt jtab-bankn.
    IF cnt = 5.
    cnt = 0.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=P+'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(02)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    ENDIF.
    ENDLOOP.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0210'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-FDGRV'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFB1-AKONT'
    itab-akont.
    PERFORM bdc_field USING 'LFB1-FDGRV'
    itab-fdgrv.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0215'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-ZTERM'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0220'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB5-MAHNA'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0310'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFM1-WAERS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'LFM1-WAERS'
    itab-waers.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0320'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-LIFNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTR'.
    PERFORM bdc_dynpro USING 'SAPLSPO1' '0300'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=YES'.
    PERFORM bdc_transaction USING 'XK01'.
    ENDLOOP.
    PERFORM close_group.
    Regards
    Anji
    Through Dialog prog
    You can go through this document...
    http://esnips.com/doc/48bd95e8-facc-4932-b923-465ba59bad24/Table-Control.pdf
    refer this program.....
    TABLES: kna1,knbk.
    DATA: v_kunnr LIKE kna1-kunnr.
    DATA: v_check TYPE c.
    DATA: BEGIN OF it_knbk OCCURS 0,
    banks LIKE knbk-banks,
    bankl LIKE knbk-bankl,
    bankn LIKE knbk-bankn,
    bkont LIKE knbk-bkont,
    koinh LIKE knbk-koinh,
    chk TYPE c,
    END OF it_knbk.
    DATA: v_ucomm TYPE sy-ucomm,
    v_dynnr TYPE sy-dynnr.
    DATA: l_index TYPE sy-index.
    data: count type i.
    CONTROLS: tc1 TYPE TABLEVIEW USING SCREEN 0200.
    *& Module STATUS_0100 OUTPUT
    text
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'ABC'.
    SET TITLEBAR 'xxx'.
    ENDMODULE. " STATUS_0100 OUTPUT
    *& Module USER_COMMAND_0100 INPUT
    text
    MODULE user_command_0100 INPUT.
    v_ucomm = sy-ucomm.
    CASE v_ucomm.
    WHEN 'DISP' OR 'CHNG'.
    IF v_kunnr space.
    SELECT banks
    bankl
    bankn
    bkont
    koinh
    FROM knbk
    INTO TABLE it_knbk
    WHERE kunnr = v_kunnr.
    LEAVE TO SCREEN '0200'.
    ENDIF.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *& Module MOD_KUNNR INPUT
    text
    MODULE mod_kunnr INPUT.
    IF NOT v_kunnr IS INITIAL.
    SELECT SINGLE
    kunnr
    FROM kna1
    INTO v_kunnr
    WHERE kunnr = v_kunnr.
    IF sy-subrc 0.
    MESSAGE e000(zz) WITH 'INCORRECT CUSTOMER NUMBER'.
    ENDIF.
    ENDIF.
    IF v_kunnr IS INITIAL.
    MESSAGE e000(zz) WITH 'PLEASE ENTER A VALUE'.
    ENDIF.
    ENDMODULE. " MOD_KUNNR INPUT
    *& Module STATUS_0200 OUTPUT
    text
    MODULE status_0200 OUTPUT.
    SET PF-STATUS 'ABC1'.
    SET TITLEBAR 'xxx'.
    ENDMODULE. " STATUS_0200 OUTPUT
    *& Module SCREENMOD OUTPUT
    text
    MODULE screenmod OUTPUT.
    IF v_ucomm = 'DISP'.
    LOOP AT SCREEN.
    screen-input = 0.
    MODIFY SCREEN.
    ENDLOOP.
    ELSE."if v_UCOMM = 'CHNG'.
    LOOP AT SCREEN.
    IF screen-group1 = 'G1'.
    screen-input = 0.
    ELSE.
    screen-input = 1.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    endif.
    if sy-ucomm = 'INSE'.
    loop at screen.
    IF ( tc1-current_line tc1-lines ).
    screen-input = 0.
    else.
    screen-input = 1.
    modify screen.
    endif.
    endloop.
    endif.
    ENDMODULE. " SCREENMOD OUTPUT
    *& Module EXIT2 INPUT
    text
    MODULE exit2 INPUT.
    LEAVE TO SCREEN 0.
    ENDMODULE. " EXIT2 INPUT
    *& Module modify INPUT
    text
    MODULE modify INPUT.
    IF v_check = 'X'.
    it_knbk-chk = 'X'.
    MODIFY it_knbk index tc1-current_line.
    ELSE.
    CLEAR it_knbk-chk .
    ENDIF.
    ENDMODULE. " modify INPUT
    *& Module USER_COMMAND_0200 INPUT
    text
    MODULE user_command_0200 INPUT.
    v_ucomm = sy-ucomm.
    CASE v_ucomm.
    WHEN 'DELE'.
    DELETE it_knbk where chk eq 'X'.
    DESCRIBE TABLE it_knbk LINES tc1-lines.
    WHEN 'INSE'.
    CLEAR it_knbk.
    APPEND it_knbk.
    DESCRIBE TABLE it_knbk LINES tc1-lines.
    WHEN 'LIST'.
    LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN '0200'.
    WRITE 'Report'.
    WHEN 'BACK'.
    LEAVE TO SCREEN '0100'.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0200 INPUT
    *& Module validate INPUT
    text
    module validate input.
    IF IT_KNBK IS INITIAL.
    MESSAGE E000(ZZ) WITH 'A BLANK LINE CANNOT BE SAVED'.
    ENDIF.
    endmodule. " validate INPUT
    Regards

  • How to handle Forecasting when modeling in BW?

    Hello Experts,
    can you give me hints on how to handle forecasting during modeling?
    Do you create a whole new Cube to load actual fugures and another for the forecasted figures? Or, there is another way. This pertains to HR environment. Any samples any where to read on?
    Thanks.

    Hi,
    I am new to BPS. Trying to implement forecasting. Can u let me know how i should implement the forecast planning function when using a single cube scenario.
    can u give me a small example to make it clearer or point me to an example link where they actually tell you how to implement the function.
    I am having a lot of difficulty expressing the exact issue, but i'll still try explaining. How can i in the forecasting function use several data columns in the layout as reference data columns and copy the result of the forecast to new data columns in the same layout. I have defined each data column as a key figure in the cube.
    I am really having a lot of problem. If u have some contact number please let me know so that i can call you from my office now.
    Regards,
    Really Desparate for Help.
    Regards,
    Salman

  • How to handle event when the user closing the browser (Urgent Please)

    Hi,
    How to handle the event when user closes the browser....
    i want to display some alter message when user trying to close the browser...
    Please can any one help me how i have to do this...........
    Thanks.

    Finally got this working. You cannot use the stop() or destroy methods. By the time they are called all database connections are gone and you will get a null pointer exception.
    You will have to use the onBeforeUnload method in the html file that calls the applet and use JavaScript to call the save method in java which saves the document:
    <SCRIPT LANGUAGE="JScript" TYPE="text/javascript">
    function Save()
    //i call the applets doSave() method from here in which i save all
    //changes to the database
    top.Tree.document.TestApplet.doSave();
    //this will invoke the default IE message for closing the window
    //when user clicks on the x in the browser
    message = "Your document has been saved."
    return message;
    window.onbeforeunload=Save;
    </SCRIPT>
    //the applets doSave()
    public void doSave()
    //this frame provides user with the message that document is being
    //saved
    final JFrame frame = new JFrame("Saving");
    JPanel contentPane = new JPanel();
    JLabel label = new JLabel(" Please wait, saving document...");
    frame.getContentPane().add(label,BorderLayout.CENTER);
    frame.setSize(250, 100);
    frame.setLocation(300, 400);
    frame.setResizable(false);
    frame.setVisible(true);
    frame.addWindowListener(new WindowAdapter()
    //the frame is just for user's information, so prevent user from
    //closing it or iconifying it.
    public void windowClosing(WindowEvent e)
    frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    public void windowIconified(WindowEvent e)
    frame.setState(frame.NORMAL);
    //call my saveDocument() method that saves everything to the database.
    editorModule.saveDocument();
    //System.out.println("finished calling saving document");
    //once the saving is done the frame with the message disappears
    frame.setVisible(false);
    //System.out.println("setting frame to false");
    //I also had an exit button in my applet, that would perform the same task, however now with the above onBeforeUnload method, the exit message would appear twice, so had to modify my exit button action performed, so that if the exitbutton was clicked the onbeforeunload method would get passed a null value and not do anything.
    private void exitButton_actionPerformed()
    if (DEBUG) System.out.println("Calling exit");
    doSave();
    window.eval("this.onbeforeunload=null;");
    window.eval("top.close();");
    //continue from here if user cancels the closing of the window
    window.eval("this.onbeforeunload=doSave;");
    window.eval("top.focus()");
    window.eval("document.TestApplet.requestFocus()");
    homePanel.requestFocus();
    }

  • How can you soft reset an iphone 4s when power on/off button not working

    How can you soft reset an iphone 4s when your on/ off button is not working?
    My voicemail messages are unobtainable and i'm trying to work out how to fix this.

    Sorry you don't.

  • How to "Show notifications when display is off"

    Hi,
    In Mavericks Beta the notifications from Mail, Messages, Facebook etc. were displayed even when the screen was turned off. It lit up the screen for a while showed the notification for few seconds and then the screen was turned off again. I really liked that feature cause I could see whats happening on my iMac even if I wasn't using it.
    In this Apple document this feature is still described http://support.apple.com/kb/PH14360?viewlocale=en_US&locale=en_US
    Show notifications when display is off or locked
    Get alerts when your display is off or your Mac is locked.
    But the option to enable it is no longer in the Notifications settings, instead there is "Show notifications on lock screen".
    So please let me ask, is there some possibility to show notifications on turned off display? Maybe by editing some preference file or something like that?
    Thank you very much for answers.
    Best Regards
    Milan

    I too would like to know a way around this problem. In the prior version of iCal, you could enable alarms only when iCal was running. I routinely sync three computers, sometimes hours to days apart. So unless I remember to turn alarms off prior to shutting down the machines, the alarms are not properly updated upon syncing when an idle machine is turned back on.
    Hope this makes sense. Either way, it would have been better if Apple had not gotten rid of this feature in the new iCal.
    Eddie

  • How to run GINA when windows log off ?

    I test pGina program which was create from GINA. I want create program for logon windows with C#. I wonder when user log off windows why pGina can run application for login windows. I think application can run when start windows only . How pGina can run
    program when user click log off button ?

    Hi mmc01,
    I'm afraid you posted your question on the wrong forum. This forum is dedicated to Project Server concerns, the Microsoft enterprise scheduling & planning application.
    Please go to an appropriate forum in order to have an helpful hand.
    Cheers.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How to disable alarms when iCal is off

    Hi all,
    I might be missing something here, but I believe there used to be two settings to turn off alarms in 10.4 and 10.5:
    1) disable all alarms
    2) disable alarms when iCal is off
    Did option 2) disappear in 10.6? I am really missing this feature.
    Thanks for your insights

    I too would like to know a way around this problem. In the prior version of iCal, you could enable alarms only when iCal was running. I routinely sync three computers, sometimes hours to days apart. So unless I remember to turn alarms off prior to shutting down the machines, the alarms are not properly updated upon syncing when an idle machine is turned back on.
    Hope this makes sense. Either way, it would have been better if Apple had not gotten rid of this feature in the new iCal.
    Eddie

  • How to display records when clicking button in alv

    I am using screen painter to create two buttons
    'classical' and 'alv'.
    When i click the first button control should move to
    corresponding classical program.Evan i got the answer
    I am not able to display the "select-options button" in the
    output as in classical report program.
    It displays all records instead of selecting particular records from select-option button.
    So how to display the select option button(i.e in the classical view program) while "clicking the classical button " .
    plz send me the coding....

    hi,
    try this.
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : EBELN FOR V_EBELN MODIF ID G1,
                     VBELN FOR V_VBELN MODIF ID G2.
    SELECTION-SCREEN END OF SCREEN 100 .
    PAI.
    module mod_name.
    case sy-ucomm.
    when 'BUTT!'.
    call selection-screen 100.
    when 'BUTT2'.
    """"your ALV logic"""".
    endcase.
    endmodule.
    if...any doubts revert back.
    Regards
    Sandeep Reddy

  • How to handle error when in middle of processing of data, target DB goes down

    I have large amounts of data ( for e.g.- 1000 records). It is writing to a DB target table. At the middle of processing of 500 th record, target DB goes down.
    What will happen to the data after 500??
    In which table will the data after 500 th record be stored?
    After target DB comes up how will the data( from 501 th record) be fetched so that no data loss takes place..
    Thanks,
    Anindya

    Anindya,
    ODI's performance is pretty good, because in fact there is no "ODI Performance". The performance will be as good as your enviroment performance + a good load strategy. I've been working in several ODI projects with gigantic volumes, with no performance issues.
    There is no such thing as "remaining un-inserted data". All data being inserted remains in the I$ table until the end of the process. ODI does not automatically control inserted/uniserted data, so, be carefull if you will implement a commit in your process. You will have to implement your process in order to flag the data that has been comitted, and where clauses to ignore them when the load is aborted/restarted.
    Also you will have to use a row-by-row processing which will dramatically decrease your performance.
    Please let me know if that helps!
    []'s

  • How to handle Event when more that 2 rows are selected in a WD Table

    Hello WD developers,
    I need your assistance.
    My case is as following:
    I have a WD table populated with data.
    I also have several buttons in the toolbar table.
    One of those buttons should be enabled only in case that one row (and only one)
    is selected in the table otherwise it should be disable.
    The problem is that an even is triggered only when the first row is selected
    and when the second (third....) are selected no event occur.
    Do you have any idea How can I solve this issue.
    Thnaks in advance for your help.
    Regards
    Harry

    Hi,
    In the Onlead selection of table make it visible and invisble of your buttons as per your selection.
    The table have single selection and multi seletion options are availble when you defing the table you can find this options in the properties of the table.
    In onlead selection your button to be mapped with attribute WDVisble.
    And based on your selection you can visible and invisible.
    wdContext.currentContextElement.set<attribute>(WDVisble.Visble);
    and
    wdContext.currentContextElement.set<attribute>(WDVisble.NONE);
    This might helps you.
    Do you need more post your issues.
    Thanks,
    Lohi

Maybe you are looking for

  • Notes in Mail not saving, new notes can't be created

    Ok, so for awhile I was using the Notes feature in Mail (10.5; all fully updated) to get off of Stickies which are apparently bad (and non-Syncable)... All was well until I realized that changes to Notes weren't being saved and when I create a new No

  • Help with Imports

    Ok my problem is hard to explain but I'll do my best. My iTunes is brand new. Yesterday I downloaded and installed it. As soon as I opened the program it started moving my music from Windows Media Player onto iTunes. This was all well and good but th

  • Failed to start server domain and process scheduler in the App/Batch VM

    Hi, after the modification of /etc/tnsnames.ora in the App/Batch VM : [psadm2@psovmab LOGS]$ more /etc/tnsnames.ora H91TMPLT= (DESCRIPTION= (ADDRESS_LIST= (ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.133)(PORT=1521))) (CONNECT_DATA=(SERVER=DEDICATED)(SERVI

  • Java error - Oracle Security Alert for CVE-2010-4476

    I have come across this security alert described at http://www.oracle.com/technetwork/topics/security/alert-cve-2010-4476-305811.htm l In summary - Java Runtime Environment hangs when converting "2.2250738585072012e-308" to a binary floating-point nu

  • Lightroom 5.2 Crashes When Opened (Mac)

    I have Lightroom 5.2, which I installed a few days ago. Yesterday, it started failing to open with a crash report generated. I read that upgrading to OS X 10.8.5 fixed this crash. So I upgraded yesterday evening. However I still get a crash. I do hav