Select All & Clear All netui:CheckBoxGroup ?

Hi,
I am using netui:CheckBoxGroup to select the checked items. But i would want to use javascript to select all the netui:CheckBoxOption buttons to be checked & unchecked.Kindly provide me a sample .
Thanks,
Bala.J

Hi,
In the user command write the code as per the sample given below:
FORM select_all .
  CLEAR v_lisel.
  DO.
    READ LINE sy-index FIELD VALUE v_chk.
    IF sy-subrc NE 0.
      EXIT.
    ENDIF.
    READ LINE sy-index FIELD VALUE sy-lisel INTO v_lisel.
    IF v_lisel+2(1) = ' ' AND sy-index GT 5.
      v_lisel+2(1) = 'X'.
      MODIFY LINE sy-index FIELD VALUE sy-lisel FROM v_lisel.
    ENDIF.
  ENDDO.
ENDFORM.                    " select_all
reward if useful
regards,
ANJI

Similar Messages

  • Checkbox: Mark All, Clear All

    I´ve got a basic problem, how to incorporate Javascript to htmldb. Stop! I´ve already read the How-To to this topic, but it doesn´t help in my case. I´ve got the HTML Code to Mark All and Clear All Checkboxes at the end of my text. My question: Where exactly and in which form must I input the several HTML Codes to start my function?
    E.g. I think, the different function´s in my code should be placed in the Page Attribute Header Field. Should I create several CheckboxID´s foe each Checkbox or does it suffice to create only one CheckboxID with different Checkboxaccounts?
    <html>
    <head>
    <script>
    <!-- Begin
    var checkflag = "false";
    function check(field)
    var i;
    if (eval(field[0].checked))
    for (i=0;i<field.length;i++)
    field.checked=true;
    LL(field);
    return "Uncheck All";
    else
    for(i=0;i<field.length;i++)
    field[i].checked=false;
    UU(field);
    return "Check All";
    function LL(field){field.disabled=true;}
    function UU(field){field.disabled=false;}
    </script>
    </head>
    <body>
    <FORM method=post name=f1>
    <table>
    <tr><td>
    <INPUT type=checkbox name=list value="Check All"
    onClick="this.value=check(this.form.list);">All<br>
    <INPUT type=checkbox name=list value="2">Air<br>
    <INPUT type=checkbox name=list value="3">Monitoring<br>
    <INPUT type=checkbox name=list value="4">Water<br>
    <INPUT type=checkbox name=list value="5">Pollution Prevention<br>
    </table>
    <INPUT class=lightbluecell style="FONT-FAMILY: verdana, arial, helvetica;
    FONT-SIZE: 10px" type=reset value=Clear>
    </FORM>
    </body>
    </html>
    I´d be pleased to get a step for step help, because I´m not adepted in this topic.
    Thank you very much!

    Yep,
    Same issue mentioned in this other thread that was started by one of the site administrators:
    Update on site issues
    It seems to effect some people to a greater degree than others.
    (For example, I'm only afflicted by a single solitary lingering one in my Communications page.)
    Since there's been no blatant acknowledgment response, we can only hope they're trying to figure out what's "broken".

  • If I want to create a Listbox to run multple tests, how can I create a check all and clear all button for selection/​deselectio​n of all the tests

    create check all/clear all button for listbox

    Hi Arien,
    Parthabe is right, next time, try to create a new thread.
    So when others try to search for a topic, they can actually find it.
    I developed this example code that you can take a look at.
    It's using property nodes of the chart to control which plot to show and to force invisible
    Message Edited by Van_L on 03-06-2008 07:19 PM
    Van L
    NI Applications Engineer
    Attachments:
    choose plot.vi ‏25 KB

  • How to clear all selection screen parameters before calling transaction?

    Hi Experts
       I have a ABAP report that displays data using ALV.
      When I double click a cell it calls transaction MB51. Before calling the transaction I need to set some parameters of the selection screen  of the transaction.
      My code is like below:
      <UL>
       <LI>FREE MEMORY ID 'MAT'. <I>"material</I>
       <LI> FREE MEMORY ID 'WRK'. <I>"plant</I>
       <LI> FREE MEMORY ID 'CHA'. <I>"batch</I>
       <LI><I>* Get the selected ALV row data</I>
       <LI>READ TABLE i_recon INDEX p_selfield-tabindex INTO x_recon.
       <LI><I>*   If link MB51 is clicked then open tcode MB51</I>
       <LI> IF p_selfield-sel_tab_field+8(4) = 'MB51'.
       <LI><I>*   Pass material, plant to the corresponding tcode</I>
       <LI>       SET PARAMETER ID 'MAT' FIELD x_recon-matnr.
       <LI>       SET PARAMETER ID 'WRK' FIELD p_plant.
        <LI>      CALL TRANSACTION 'MB51' AND SKIP FIRST SCREEN.
    </UL>
    The problem is:
    <UL> <LI> 1. First, I run the given transaction before running the report in a separate session with some set of values in the selection screen. For example: plant = AB01, Material = 990001 and Batch = 10001.</LI>
    </UL>
    <UL>
            <LI> 2. Then in another session I run my report. In the report ALV I have selected a record where plant = AB01, Material = 990001 but Batch is blank. But it opens the transaction with plant = AB01, Material = 990001 and Batch = 10001.
    Even though in my ALV record the batch is blank yet it uses the batch value from the memory. That is, the batch value that was given in the transaction earlier. Why it is not getting cleared? I have also used FREE MEMORY ID code in the beginning. But still it is not clearing the values in the memory.
    </UL>
    <UL>
            <LI>What shall I do to clear all the selection screen parameters before calling the transaction?</LI>
    </UL>
    <UL>
            <LI>
    Thanks
    Gopal
    </LI>
    </UL>
    Edited by: gopalkrishna baliga on Aug 11, 2010 10:29 AM

    Its because sap memory is globally shared.
    Do it like this.
    READ TABLE i_recon INDEX p_selfield-tabindex INTO x_recon.
    IF p_selfield-sel_tab_field+8(4) = 'MB51'.
    perform bdc_dynpro      using 'RM07DOCS' '1000'.
    perform bdc_field       using 'BDC_OKCODE'   '=ONLI'.
    perform bdc_field       using 'MATNR-LOW'  x_recon-matnr.
    perform bdc_field       using 'WERKS-LOW'  p_plant.
    perform bdc_field       using 'CHARG-LOW'  p_batch.
    perform bdc_field       using 'DATABASE'  'X'.
    call transaction 'MB51' with i_bdcdata mode 'E'.
    endif.
    form bdc_dynpro using program dynpro.
      clear la_bdcdata.
      la_bdcdata-program  = program.
      la_bdcdata-dynpro   = dynpro.
      la_bdcdata-dynbegin = 'X'.
      append la_bdcdata to i_bdcdata.
    endform.
    form bdc_field using fnam fval.
        clear la_bdcdata.
        la_bdcdata-fnam = fnam.
        la_bdcdata-fval = fval.
        append la_bdcdata to i_bdcdata.
    endform.

  • How do I find and clear all ticked Stop Times in music tracks?

    I have lots of music tracks which have the Stop Time ticked under the Options tab in Get Info. I don't know why they are ticked as I didn't do it, but now I want to clear them all as it causes tunes to stop abruptly in playback. I've looked for a script that would do this, but no luck. If there's no available script, perhaps if I could at least find all of the songs with Stop Time ticked, that would be a start. Does anyone either know of a way to clear all ticked Stop Times, or at least create a playlist of all songs with Stop Time ticked? If anyone knows why Stop Time gets ticked for some songs and not others, that would also be useful information. Thanks in advance.

    barney97,
    Maybe this script in can be of help:
    tell application "iTunes"
    if selection is not {} then
    set sel to selection
    repeat with this_track in selection
    try
    set finish of this_track to 1000
    end try
    end repeat
    display dialog "Done!" buttons {"Thanks"} default button 1 giving up after 5
    end if
    end tell
    Replace the "1000" with the number of seconds of your longest track, compile and run the script. The script tries to set the Stop Time to 1000 seconds. If your tracks are shorter in duration, the Stop times just will be cleared.
    Run Script Editor (in ./Applications/Applescript) and copy the script (grey block above) to it.
    Click the 'Compile' button and save it as a script in ./Library/iTunes/Scripts.
    It will then appear in the Script menu in iTunes.
    Next, select all tracks in your Music Library (Command-A) and run the script.
    It's not a very elegant solution, but it works.
    If anyone knows why Stop Time gets ticked for some songs and not others, that would also be useful information.
    I can't tell you that. I've never experienced a phenomenon like that.
    Maybe some iTunes related Widget or iTunes supporting application is responsible for that.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.9)   iTunes 7.2

  • How do I clear all my surveys from history?

    I do a Helluva lot of survey work online filling out surveys, surfing web ads and the like every single day. They really clutter up History but the only way I can think of to get them off History is by right clicking each one separately and then deleting it! I tried right clicking one and holding down CTRL key so I could multi select and clear the lot of them at once but this will not work! Deleting all History even for 1-4 hours at a time is not an option because I use History to find old websites I have been to or need. Ideally, I'd like to set History so it auto deletes surveys as I finish them and close out of them or simply have History ignore surveys and web ad surf sites completely. Is any of this possible or must I delete this crap one at a time which will take eons to do? Thanks- Jack/keimanzero Scion of Anime in Campbelltown/Palmyra PA USA
    PS- Firefox is always causing Adobe products crashes as well as causing its own crashes, causing my Windows 7 OS to crash and causing my Taskbar and my Start Bar to vanish w/o warning. I also cannot get rid of these darn Allow bars that read Firefox denied access to automatic page advancement although the word is something beginning with a 'D' and I forgot it. Why can't we email this stuff to Firefox or Mozilla directly? What do they have to hide eh?

    Hi Jack,
    You can use the Library to erase certain pages of History. It's all conveniently organization by date and time.
    *To access the Library click the clipboard icon and go to Show All Bookmarks -> then click History on the left side pane. Alternatively you can also get here by pressing Ctrl + Shift + B
    Firefox is always causing Adobe products crashes as well as causing its own crashes, causing my Windows 7 OS to crash and causing my Taskbar and my Start Bar to vanish w/o warning.
    It's not Firefox that causes Flash to crash. Adobe Flash is just a piece of crap and has frequent problems. You can folllow my advice below to disable Protected Mode in Flash. Mozilla is working on an alternative called Shumway to replace Flash. Shumway is on the Nightly build however it isn't ready nor is it enabled by default. It's pretty buggy.
    Allow bars that read Firefox denied access to automatic page advancement although the word is something beginning with a 'D' and I forgot it
    Can you remember the exact word it said?
    Try to disable Protected Mode in Flash 11.3 and above by adding the line ProtectedMode=0 to the Flash "mms.cfg" file located in one of these locations: [46]
    (Windows 32bit) C:\Windows\System32\Macromed\Flash
    (Windows 64bit) C:\Windows\SysWOW64\Macromed\Flash
    For example, on a Windows 7 64-bit system, open the C:\Windows\SysWOW64\Macromed\Flash folder, copy the file "mms.cfg" to the desktop, open it in Notepad, add a new line <code>ProtectedMode=0 </code> and then close Notepad, saving your changes. Next, go back to the C:\Windows\SysWOW64\Macromed\Flash folder, rename the original file to "mms.cfgBAK" (to save it as a backup) and then drag and drop in the modified "mms.cfg" file from the desktop. [47] [48] [49]
    Note: To re-enable Flash Protected Mode, either restore a backup of the original mms.cfg file, if you saved one, or else re-edit the mms.cfg file to remove the <code>ProtectedMode=0 l</code> line you added. Updating Flash Player or installing a newer version does not automatically re-enable Protected Mode

  • I accidenttly deleted my notes and the icloud cleared all the message from both ipad and iphone  ...How can i get it back?? If I can ??

    I accidenttly deleted my notes and the icloud cleared all the message from both ipad and iphone  ...How can i get it back?? If I can ??

    Your notes should be stored in your backup, so if you have backed up the iPad and that backup does contain those notes that you deleted, you can try restoring from your backup. If you haven't backed up the iPad since you created those notes, they are gone.
    If you backup with iCloud only, restoring from backup involves erasing the device and then going through the setup all over again and finally restoring from the iCloud backup. This article explains the process quite clearly.
    http://gigaom.com/apple/ios-101-set-up-and-restore-from-icloud-backup/
    If you backup with iTunes, connect the iPad to your computer, launch iTunes and right click on the device name on the left and select - Restore from Backup. But before you do that .... turn off auto sync in iTunes - without connecting the iPad - launch iTunes and go to Edit>Preferences>Devices and check the box at the bottom of that window in order to turn off auto sync.
    Email messages are not stored in your backups.

  • How to clear all overrides in a story

    Hi Everyone!
    I've been putting together a short script to clear all overrides in a story in which I have a cursor inserted. This is what I have so far:
    //Clear all overrides in the story of the text selection:
    app.selection[0].paragraphs.everyItem().clearOverrides();
    //Clear overrides in all cells of all tables of the story of the text selection:
    try {
      app.selection[0].parentStory.tables.everyItem().cells.everyItem().texts[0].clearOverrides();
    catch (e) {}
    It works well enough, but I have to select all to clear the overrides on paragraph styles. If I don't select anything, only the style overrides in tables are cleared.
    How would I modify line 2 to work the same as line 6? I've tried a few different things, but no dice!
    I'm going to make this another question:
    Can anyone suggest a good recent book or online resource to start learning scripting for Indesign?
    I've been loving what we can do with scripts, but I want to start understanding what I'm doing, not just how to do it.
    Thanks a bunch!
    Amy

    Hi,
    In case of modifying a code:
    clearOverrides() is a method ==> it means some procedure will be executed (simple or pretty complex).
    the target for this method is placed before it ==> here it is every paragraph which can be reached basing on selection.
    So your goal is to change a target to parentStory, I guesss.
    Modified line should look like:
    app.selection[0].parentStory.clearOverrides();
    It will work till selection has a property parentStory. A graphic frame - which also can be selected - has not, so code will end with an error.
    How to detect available object's properties and methods?
    Exam this huge help files published by [Jongware] here:
    Indesign JavaScript Help
    many help PDFs can be googled. Just try. I recommend Peter Kahrel books (any you can google out - in fact )
    Jarek

  • My existing purchases have INSTALL next to them, but when I try click on them it says "There was an error in the App Store. Please try again later. (100)". I've tried restarting, clearing all caches, buying and downloading new apps (which works). Any idea

    Hi - in the app store, I've logged in with no problem, but when I go into my existing purchases and have INSTALL next to everything I've bought, and try to click on them it says;
    "There was an error in the App Store. Please try again later. (100)".
    I've tried restarting, clearing all caches, buying and downloading new apps (which works), and also buying and downloading more music from iTunes too (so I update all T&C's etc too, and update all payment info). But nothing seems to solve this. Any ideas?? Thanks a lot, Greg

    This procedure is a diagnostic test. It makes no changes to your data.
    Please triple-click anywhere in the line below on this page to select it:
    ls -@Oaen L*/Coo* | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message.
    The Terminal window doesn't show the output. Please don't copy anything from there.

  • I have cleared all my music from my iPhone. I have "Sync music" unchecked on iTunes, but some songs are still on "on this phone" in itunes, how to clear it from itunes "on this phone" ?

    iOS 8.0
    I have "Sync music" unchecked on iTunes and I have cleared all my music from my iPhone.
    On my Mac, on itunes (version 11.4) if you click on "on this phone", there are still remaining 70 songs...
    how to clear it from itunes "on this phone" ?

    What you have on your computer is your iTunes library, not an iTunes "account."  The account that is related to iTunes is your Apple ID, which you use to sign in to the iTunes Store and make purchases.  It is also used with iCloud.  iPods (that are not iPod touch) are associated with your iTunes library, not to your Apple ID.
    So, I think you probably just need to set up (or update) automatic syncing for the iPod.  If it's not set up to sync those new songs, iTunes still syncs the iPod, but it syncs nothing
    In iTunes, if the sidebar (along left side of iTunes window) is hidden, from the menu bar, under View, select Show Sidebar.  In the sidebar, the iPod appears under DEVICES, when it is connected.
    Select the iPod in iTunes.  There is a row of buttons, starting with Summary.  Click on Music next to Summary.  This is the iPod's Music screen, where you tell iTunes how to sync songs to the iPod.
    Check the box for Sync Music (if it's not already checked).  If your iTunes music library fits completely on the iPod, you can choose to sync Entire music library.  Otherwise, you can choose to sync Selected playlists, artists, albums, and genres.  On the lists below, checkmark the playlists, artists, albums, and/or genres that you want on the iPod.  When you click Apply, the songs from your selection sync to the iPod.
    One convenient way to set this up (if you can't sync the entire iTunes music library) is to create a new playlist in your iTunes library.  Name it "iPod Songs" (or whatever you want).  Put ALL songs that you want on the iPod on this playlist, including those new songs.  Back on the iPod's Music screen in iTunes, select this playlist under Playlists.  Going forward, to update songs on the iPod, just update that playlist in your iTunes library (add/remove songs).  The next time you connect the iPod (or click the Sync button), iTunes automatically syncs the same changes to the iPod.

  • How to clear all eventcombMT lockout tool settings?

    We have an eventcombt user that cannot get any results returned when running the tool from their workstation after a name and Windows account change.  It works for other accounts with the same security memberships.
    We need to clear all the saved eventcmbmt settings out of a user's profile so all remembered settings and credentials are cleared as if the user is using the tool for the first time on a brand new PC
    Are there settings stored in the registry and appdata?

    You can clear the search using "Clear search". Registry is not the storing area (except explicit credentials). Not even the app data.  
    I believe cache is in DLL. Captured by Procmon.
    Regards,
    Biswajit
    MCTS, MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, Enterprise Admin, ITIL F 2011
    Blog:
      Script Gallary:
    LinkedIn:
    Note: Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights..
    Maybe there is another problem then.
    The user is logged in as a different user and using Runas "different user" to run eventcombmt as a domain administrator user, selecting the built in search for account lockouts, then substituting those old event IDs that it puts in by default for
    event 4740.  Then entering the user ID we are checking for lockout in the text field.
    When the user runs the query on his workstation, it finishes instantly and shows no results.  I don't see any error displayed to see why it is not working.
    I can run the same query using "runas administrator" for UAC prompt (add domain admin account as admin credentials) enter the same info and it runs the query fine for me on a different computer and the account I use has the same group memberships
    as the account the other user used.
    Does evencombmt log errors somewhere to tell you why a search fails to run?
    Is there a more modern tool available that will show the same lockout information (display source of lockout, not just tell you the date and time the account was locked out)?

  • Framemaker v11 Books unable to clear all change bars from documents

    I have converted all Framemaker v10 documents to v11 by opening and saving. However when opening the Book v11 for these documents and applying the 'clear all change bars' option a book error log message advises that the documents cannot be opened as they are in a previous version! When performing the same function on the individual documents outside of the Book this works fine. But unable to clear all change bars within a book when selecting all the files in one go. Is there a bug with Books in v11?

    My version is FM11.0.0.380 so I will install the patches. I did open all documents up from within the book and then individually saved them, then i applied the 'clear all change bars' and this worked. It just does not seem right that you can clear the change bars from the documents from outside the book but when you try it from within the book it says cannot open document as it was created with a previous version. I have managed to get it working but would be good to know if it is a book bug or not. I will try it on another Book when I have upgraded to the latest patch.

  • Since last update, Wells Fargo website opens in a sidebar, it it does open in Safari. Only way to make it work is to close all tabs and then open Wells Fargo from a bookmark. Have cleared all history, cache, cookies. Mac OS X 10.7.3 and Firefox 10.0.

    Have cleared all history, cache, and cookies. Have a Mac running Lion OS X 10.7.3 and Firefox 10.0. This website works fine on a PC and Mac with Safari.

    Opening in the side bar is the default for bookmarks that are created via a link or button on a website.<br />
    You can check the Properties of a bookmark via the right-click context menu in the side bar (Ctrl+B; Cmd+B on Mac).<br />
    In the Bookmarks Manager (Bookmarks > Show All Bookmarks) you can click the More button in the Details pane at the bottom right.<br />
    Make sure that "Load this bookmark in the side bar" is not selected.

  • HT201413 I get error 20 when I try to download updates to installed Apple software  I have two users on the IMac. I resolve the problem by clearing all cookies on both users Safari. Why do I need to do this? What is going on?

    I get Error 20 when I try to download updates for installed Apple apps on my IMac.  I have two users on the IMac, and I resolve the problem by clearing all cookies on both users Safari, opening and closing the App Store for each user, shutting down and restarting the IMac for each user, until finally the download works. There must be an easier way.  I also have an Air, where I have no problems whatsoever. Both machines have Doorstop and MacKeeper with the same settings, so I have ruled those programs out as the cause. I believe iot is because I have two users - any ideas?

    Please read this whole message and be sure you understand all of it before doing anything. Back up all data before making changes to your settings.
    Write down the server addresses.
    Click Cancel to close the Advanced sheet. Unlock the preference pane, if necessary, by clicking the lock icon in the lower left corner and entering your password. Open the DNS tab again and change the server addresses to the following:
    8.8.8.8
    8.8.4.4
    That's Google DNS. Click OK, then Apply.
    In Safari, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. If you’re using another browser, empty the cache. Test. Any difference?
    Notes:
    1. If you lose Internet access after making the above change to your network settings, delete the Google servers in the Network preference pane, then select the TCP/IP tab and click Renew DHCP Lease. That should restore the original DNS settings; otherwise restore them yourself.
    2. I’m not advocating Google or anything else as a DNS provider; the server addresses are offerred merely for testing purposes. There may be privacy and technical issues involved in using that service, which you should investigate personally before you decide whether to keep the settings. Other public DNS services exist.

  • How to create a subVI to Clear all charts data on a main VI

    Hi all,
    As I am writing a subVI to clear all the "charts" data on a main VI.
    The number of Charts is unknown, beasue this subVI need to run at
    difference main VIs. Therefore, I can only input a ref. of main VI into
    the subVI and find out all the control ref.,then check the classes of
    the control. If it is a chart, I need to use "To More Specific Class" to
    to select waveform chart. However, if the property node is not create
    from the chart directly, the "histroy data" will be missing.
    No matter my concept to build this subVI should be right, I donot succeed.
    Are there any other methods to do that?  
    regards,
    Ryan

    parthabe wrote:
    Did you file a bug report with NI, Coq?
    No i did not. I got it working with some diagram cluttering, and forgot all about it. As my motto is "If the damn thing works, ship it"
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

Maybe you are looking for

  • Error exporting NamedCache to file via PofWriter

    I'd like to dump some NamedCaches with a large number of entries (> 200,000) to files, and then be able to re-load the NamedCaches from those files. I realize that there may be a feature in an upcoming version of Coherence to do this sort of thing, b

  • Sub contracting- A/C postings

    hi all, posting GR(101) for subcontracting item against subcontracting PO resulted posting to a 'change in stock' account (Tr.Event.Key BSV) with a value ( SC item value+SC service charge). If i want this value to be posted to consumption account wha

  • Securing webservice call from to siebel

    Hi, We have implemented OPA with siebel integration, where in we launch OPA from siebel.OPA calls a webservice on siebel which fetches data from siebel. We want that weservice call to be secured i.e. to use https and not http. Anybody have any idea i

  • Problem in supporting formats

    hey, i am developing a web browser in java . in that i am using JEditorPane ep=new JEditorPane("text/html"); by this i can support HTML 3.2 capabilities ie it supports html and css . how can i support javascript and DHTML? Thanks in advance.

  • Can Visual Composer applications only be created and deployed on EP?

    We are working with Visual Composer on our Enterprise Portal box and I like it a lot. However, our company is investigating Microsoft Sharepoint as a possible candidate for Portals. This could mean that we are not going to use EP. I would like to kno