Any method/property to limit number of AsyncHandlers?

Hey all. We've run into a situation with WLS5.1, and I'm wondering if
there's a way around it.
We're using WLS with Jolt to respond to some tuxedo messages. In normal
operation, WLS responds to a message, does some database things, and is
done.
However, due to some bugs or what have you, occasionally we might see
something like one of the database operations blocking. When that
happens, it seems like WLS starts spawning AsyncHandlers like crazy to
deal with the incoming tuxedo messages. Eventually we get an out of
memory exception and that's pretty much all she wrote.
Is there any way to limit the number of AsyncHandlers that WLS will
spawn? That will at least give us some chance at debugging the problem
before it runs out of memory.
Thanks,
: jay

I've got a problem using a JFormattedTextField.
Each time the the text field gains focus, the caret does no move to the end of the text. It appears at the start of it. plus, any text i typed will overwrite the character already typed in, as if you've pressed the INSERT button during typing in a text editor.
What caused that and how do I resolve it?
Thanks a lot for the help ;)

Similar Messages

  • Is there any methods upload shift plan by personal number?

    In SAP,with T-CODE pp61 we only can maintain shift plan with org unit.Is there any method to batch input shift plan per. employee?thank in advance!!!

    Hi,
    Shift Planning is completely Object ddriven from OM sidea and all the shift are stored in the substitutions infotypes 2003,
    This is much better to use batch data thru this screen rather than maintaininig in infotype 2003. Becasue when you maintain it via 2003 it has lot of fields and cumbsesome.
    Hope i am helpful.
    Regards
    Srikanth

  • Where can I find a method to return the number of constants in an enum?

    I'd like to get the number of constants in an enum, but can not find any documentation on the topic.
    The only method I find reference to is the values() method.
    Are there other methods?
    Is there a method to return the number of items in the values array?
    Thanks,
    Norm

    Encephalopathic wrote:
    A_Sailor wrote:
    I had a mental block there.In my field, we call this a "cerebral spasm".From what I know of your field, that's a strange place to keep your cerebrum ;-)

  • Is there any method to remember the running subtitle and audio stream when navigating through menus?

    I have a language Menu named 'Setup' with 4 buttons 1.English  2.Spanish  3.Spanglish  4.Subtitle Off.
    To reach this page you have to hit Setup button on Main Menu. The setup button takes to a sub-menu of Setup where I have a symbol of 'tick' at Subtitle Off indicating the state of the current subtitle stream. I have 3 more sub-menus with similar buttons but with 'tick' at different languages indicating the state of the current running/selected language, 2nd page has English with tick, 3rd page has Spanish with tick and 4th has Spanglish with tick. My client wants me to jump on the respective language ticked page when you hit the setup button on Main Menu. As far as I understand we cannot assign a code in Encore to a single button to read what subtitle stream is running.
    Is there any method to remember the running stream when navigating through menus?
    I have done this in Sonic Scenarist.
    Regards,
    A Gandhi

    I think this was added in a "newer" version of Encore (meaning anywhere from CS4 up). In any event, it is available in Encore CS6.
    There is a menu (not button) property that allows yoi9u to make the active subtitle track button the default (i.e. selected/highlight shows) just as you want.

  • Any method of ole2 to count the no. of rows in excel worksheet ??

    Dear all,
    want to generate a for 1..n loop structure to access the excel worksheet.
    iam using ole2 to upload data from excel to oracle.
    rest is fine..
    till now iam arbitrarily inputting a value as a count from forms to run the loop.
    want to know is there any method of ole2 to count the no. of rows in excel worksheet...???
    regards,

    If you have purchase order number in your cube then you can use the easiest method of all of counting -- a calculated key figure with exception aggregation.
    Create a CKF and add any basic key figure to it from your cube (basic means a key figure from the cube, not another CKF or RKF).  If you're using the 3.x query designer then click the Enhance button and set the exception aggregation to Counting All Values.  If you're using the 7.0 query designer then click on the Aggregation tab and switch the Exception Aggregation to Counter for All Detailed Values.  With either query designer set the reference characteristic to your PO number characteristic.  This CKF will count the number of PO documents.
    See this document for step-by-step instructions:  [How to... count the occurrences of a characteristic relative to one or more other characteristics|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7e58e690-0201-0010-fd85-a2f29a41c7af].

  • Limit Number of Rows on a Page

    Hi all,
    I am unable to succeed with the following.
    I have an XML data source which looks like this:
    <?xml version="1.0"?>
    <LIST_GEMPLOYEES>
    <LIST_G_EMPLOYEE>
    <EMPLOYEE_NUMBER>1</EMPLOYEE_NUMBER>
    <EMPLOYEE_NAME>Employee 1</EMPLOYEE_NAME>
    </LIST_G_EMPLOYEE>
    <LIST_G_EMPLOYEE>
    <EMPLOYEE_NUMBER>2</EMPLOYEE_NUMBER>
    <EMPLOYEE_NAME>Employee 2</EMPLOYEE_NAME>
    </LIST_G_EMPLOYEE>
    <!-- many rows here (LIST_G_EMPLOYEE tags) -->
    </LIST_GEMPLOYEES>
    And I want to define a template which only allows 5 rows on a page.
    What I did:
    I should insert a page break after the limit number of rows on a page is reached. This means that, after each group of 5 rows, a page break should be inserted.
    To accomplish this goal, I followed these steps:
    1. Define a field which will contain and initialize the Counter variable before the table which will show the list of employees, by using the syntax:
    Field1: <?xdoxslt:set_variable($_XDOCTX, ’Counter’, 0)?>
    2. Define the table which list all employees in the data source:
    2.1. Use a 2 columns table. In the first column, define 2 fields as follows:
    2.2. In the second column, define 6 fields containing the following code:
    Field2: <?for-each: LIST_G_EMPLOYEE?>
    Field3: <?EMPLOYEE_NUMBER?>
    Field4: <?xdoxslt:set_variable($_XDOCTX, ’Counter’, xdoxslt: get_variable($_XDOCTX, ’Counter’) + 1)?>
    Field5: <?EMPLOYEE_NAME?>
    Field6: <?if: xdoxslt:get_variable($_XDOCTX, ’Counter’) mod 5=0?>
    Field7: <?split-by-page-break:?>
    Field8: <?end if?>
    Field9: <?end for-each?>
    Here is explanation for syntax I used:
    Field1: Declare and init Counter variable to value = 0
    Field2: This fetches through all employees - start a for-each cycle
    Field3: This prints the employee number
    Field4: This increments the Counter variable
    Field5: This prints the employee name
    Field6: This tests whether Counter variable is divided by 5
    Field7: This generates a page break
    Field8: End of condition
    Field9: End of for-each cycle
    Result:
    The first page has just the header and the second page has the header and only record and it goes the same
    for the rest of the pages. Any help is greatly appreciated.
    Thanks.

    Have a look at this post
    http://winrichman.blogspot.com/2008/09/limit-row-per-page.html

  • Any method to Import & Export to Excel from Client Side

    Hi,
    Is there any method to Import and Export to Excel from the Client side. I have one procedure to export to Excel , but the excel file will be opened in the Application Server only, even if it executed from the client side. Also this procedure will not work if OLE2 chnaged CLIENT_OLE2. I am writing my procedure, Is there any idea to get it in the client side.
    PROCEDURE pr_Forms_to_Excel(p_block_name IN VARCHAR2 DEFAULT NAME_IN('system.current_block')) IS
    -- Declare the OLE objects
    application OLE2.OBJ_TYPE;
    workbooks OLE2.OBJ_TYPE;
    workbook OLE2.OBJ_TYPE;
    worksheets OLE2.OBJ_TYPE;
    worksheet OLE2.OBJ_TYPE;
    cell OLE2.OBJ_TYPE;
    range OLE2.OBJ_TYPE;
    range_col OLE2.OBJ_TYPE;
    -- Declare handles to OLE argument lists
    args OLE2.LIST_TYPE;
    -- Declare form and block items
    form_name VARCHAR2(100);
    f_block VARCHAR2(100);
    l_block VARCHAR2(100);
    f_item VARCHAR2(100);
    l_item VARCHAR2(100);
    cur_block VARCHAR2(100) := NAME_IN('system.current_block');
    cur_item VARCHAR2(100) := NAME_IN('system.current_item');
    cur_record VARCHAR2(100) := NAME_IN('system.cursor_record');
    item_name VARCHAR2(100);
    baslik VARCHAR2(100);
    row_n NUMBER;
    col_n NUMBER;
    filename VARCHAR2(100);
    ExcelFontId OLE2.list_type;
    BEGIN
    -- Start Excel
    application:=OLE2.CREATE_OBJ('Excel.Application');
    OLE2.SET_PROPERTY(application, 'Visible', 'True');
    -- Return object handle to the Workbooks collection
    workbooks:=OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    -- Add a new Workbook object to the Workbooks collection
    workbook:=OLE2.GET_OBJ_PROPERTY(workbooks,'Add');
    -- Return object handle to the Worksheets collection for the Workbook
    worksheets:=OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    -- Get the first Worksheet in the Worksheets collection
    -- worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Add');
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 1);
    worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Item',args);
    OLE2.DESTROY_ARGLIST(args);
    -- Return object handle to cell A1 on the new Worksheet
    go_block(p_block_name);
    baslik := get_block_property(p_block_name,FIRST_ITEM);
    f_item := p_block_name||'.'||get_block_property(p_block_name,FIRST_ITEM);
    l_item := p_block_name||'.'||get_block_property(p_block_name,LAST_ITEM);
    first_record;
    LOOP
    item_name := f_item;
    row_n := NAME_IN('SYSTEM.CURSOR_RECORD');
    col_n := 1;
    LOOP
    IF get_item_property(item_name,ITEM_TYPE)<>'BUTTON' AND
    get_item_property(item_name,VISIBLE)='TRUE'
    THEN
    -- Set first row with the item names
    IF row_n=1 THEN
    ------updated by faisal-to give Bold font-----
    --FOR k IN 1 .. 3 LOOP
         args := OLE2.create_arglist;
         OLE2.add_arg(args, 1);
         OLE2.add_arg(args, col_n);
         cell := OLE2.get_obj_property(worksheet, 'Cells', args);
         OLE2.destroy_arglist(args);
         --cell_value := OLE2.get_char_property(cell, 'Value');
         ExcelFontId := OLE2.get_obj_property(Cell, 'Font');
         OLE2.set_property(ExcelFontId, 'Bold', 'True');
    --END LOOP;
    baslik:=NVL(get_item_property(item_name,PROMPT_TEXT),baslik);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(cell, 'Value', baslik);
    OLE2.RELEASE_OBJ(cell);
    END IF;
    -- Set other rows with the item values
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n+1);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    IF get_item_property(item_name,DATATYPE)<>'NUMBER' THEN
    OLE2.SET_PROPERTY(cell, 'NumberFormat', '@');
    END IF;
    OLE2.SET_PROPERTY(cell, 'Value', name_in(item_name));
    OLE2.RELEASE_OBJ(cell);
    END IF;
    IF item_name = l_item THEN
    exit;
    END IF;
    baslik := get_item_property(item_name,NEXTITEM);
    item_name := p_block_name||'.'||get_item_property(item_name,NEXTITEM);
    col_n := col_n + 1;
    END LOOP;
    EXIT WHEN NAME_IN('system.last_record') = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    -- Autofit columns
    range := OLE2.GET_OBJ_PROPERTY( worksheet,'UsedRange');
    range_col := OLE2.GET_OBJ_PROPERTY( range,'Columns');
    OLE2.INVOKE( range_col,'AutoFit' );
    OLE2.RELEASE_OBJ( range );
    OLE2.RELEASE_OBJ( range_col );
    -- Get filename and path
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args, p_block_name );
    OLE2.ADD_ARG( args,'Excel Workbooks (*.xls, *.xls');
    filename := OLE2.INVOKE_CHAR( application,'GetSaveAsFilename',args );
    OLE2.DESTROY_ARGLIST( args );
    -- Save as worksheet
    IF NVL(filename,'0')<>'0' THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args,filename );
    OLE2.INVOKE( worksheet,'SaveAs',args );
    OLE2.DESTROY_ARGLIST( args );
    END IF;
    -- Close workbook
    --OLE2.INVOKE( workbook ,'Close');
    -- Release the OLE objects
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(worksheets);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    --OLE2.INVOKE(application, 'Quit');
    OLE2.RELEASE_OBJ(application);
    -- Focus to the original location
    go_block(cur_block);
    go_record(cur_record);
    go_item(cur_block||'.'||cur_item);
    END;
    Thanks in advance.
    Rizly Faisal

    Alternatively you could use OLE2 to do the bulk of the importing and exporting and then use the webutil file transfer functions to move the file to the client and then simply open the file there...That might be more efficient in terms of performance as well.
    Regards
    Grant

  • Iview Isolation Method property

    Hi,
    The page contains 6 iviews, I created new iview and assigned to this page if refresh this iview complete page refreshing, I don’t want this complete page refreshing only iview should refresh, for this reason I set isolation method property of iview is URL but data is not displaying, if I set property EMBEDED data is displaying but refreshing complete page. Please any body tells the solution.
    Thanks

    hi,
    It is not advisable for a particular iview to have isolation property as URL and others as embeded. You can do a round-about. You can place the particular iview for which u need to set isolation method as URL in a page and add this page to the main page where other iviews are placed.
    Hope it helps...
    Regards,
    Ganesh N

  • FM or any method required to fecth the course type from the curriculum type

    Hi,
    I have a requirement where in i need to fetch all the couse type and curriculum types from the given course program (the given course program has various course program block )
    i have made use of the FM  
    " LSO_CP_TRAININGSEQUENCE_GET " which also helps me to get the same along with block type, block id ,elem_group and elem_default .
    As we know the curriculum type so fetched has the course types in it ,
    so can you please suggest me any method to fetch the block type, block id ,elem_group and elem_default along with the coursetype and coursetype id ???
    Thanks in advance
    Archana

    To change the materila type for any material by using MMAM,Please check the following things:
    - Number rage for both material type should be same
    - Account determination or valuation class for both material type should be same
    - there should not be any open purchasing documents for this material
    -Account Category refernce assigned for both the material type should be same so tht the accounting determination wrt to material type is not effected
    -No Stock should exist .

  • Is there any Method to remove the request from STMS OR SE10 OR SE09

    HELLO ALL ABAP GURUS,
    Is there any Method to remove or delete the request from STMS OR SE10 OR SE09 ?
    Thanks,
    Sumit.

    Hi,
    Before deleting a transport request you need to unlock all the objects in a transport request. Please follow these steps.
    1. Go to SE03. Under Requests/Tasks folder in the left pane you can see Unlock Objects, double click on that.
    2. Enter your request number (sub task) there and click on execute button.
    3. SAP will prompt you with a message, click on Unlock button.
    4. Now go to SE09/SE10 and click on your request number (sub task) and click on delete button on the application toolbar.
    5. Now click on main task and click on delete button to completely remove the request number.
    Hope this will help you.
    Regards,
    Venkat

  • Where is the standby file method/property in SMO.Database

    Hello,
    I'm trying to locate the method / property in SMO.Database for StandByFile (undo backup file). I'm able to set it during a restore using SMO.Restore.StandByFile, but I'm currently building a empty DB from the properties of an exisitng DB and this is a property
    I need to at least read from if not modify directly.
    Hoping for some help.
    EDIT: Adding small part of script for context
    # Restore the database
    function Restore-Database ($srv, $dname, $src, $dst, $stby){
    try {
    $SMORestore = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Restore
    if ($stby) {
    Write-Host 'Restoring' ([System.IO.Path]::GetFileName($src)) 'to' $dname 'with standby...'
    $SMORestore.StandbyFile = $tmpdir + $tmpdbname + '_standby.bak'
    } else {
    Write-Host 'Restoring' ([System.IO.Path]::GetFileName($src)) 'to' $dname 'with recovery...'
    $SMORestore.Action = "Database"
    $SMORestore.NoRecovery = $false
    $SMORestore.ReplaceDatabase = $true
    $SMORestore.Database = $dname
    $SMORestore.Devices.AddDevice($src, "File")
    $filearray = $SMORestore.ReadFileList($srv)
    foreach ($file in $filearray){
    $newfile = New-Object Microsoft.SqlServer.Management.Smo.RelocateFile
    $newfile.LogicalFileName = $file.LogicalName
    $newfile.PhysicalFileName = $dst + ([System.IO.Path]::GetFileName($file.PhysicalName))
    $SMORestore.RelocateFiles.Add($newfile) | Out-Null
    $SMORestore.SqlRestore($srv)
    Write-Host ([System.IO.Path]::GetFileName($src)) 'successfully restored to' $dname
    } catch {
    $_.Exception
    if ($Error.Count -gt 0) {
    $error[0] | fl -force
    } #Restore-Database $DSTServer $tmpdbname $bkup $tmpdir $false # - $bkup = .bak not defined | $stby = bool
    and another piece
    function New-Database ($refdb, $dstsrv, $tname, $tdir) {
    Write-Host 'Creating database' $tname 'based on settings from' $refdb.name '...'
    $dstdb = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Database -ArgumentList $dstsrv, $tname
    # Loop through the original db's filegroup to grab all the settings for the new filegroup
    try {
    foreach ($group in $refdb.filegroups) {
    $fg = New-Object -TypeName Microsoft.SqlServer.Management.Smo.FileGroup -ArgumentList $dstdb, $group.name
    $dstdb.FileGroups.Add($fg)
    if ($group.IsDefault -eq $true) {
    $fgdefault = $group.Name
    # Loop through the data files in the filegroup and grab the settings for the new files
    foreach ($file in $group.Files) {
    $datafile = new-object -TypeName Microsoft.SqlServer.Management.Smo.DataFile -ArgumentList $fg, $file.name
    $fg.Files.Add($datafile)
    $file
    $datafile.FileName = $tdir + ([System.IO.Path]::GetFileName($file.FileName))
    $datafile.Size = $file.Size
    $datafile.IsPrimaryFile = $file.IsPrimaryFile
    $datafile.GrowthType = $file.GrowthType
    $datafile.Growth = $file.Growth
    $datafile.MaxSize = $file.MaxSize
    # Loop through the log files in the filegroup and grab the settings for the new files
    foreach ($file in $refdb.LogFiles) {
    $logfile = New-Object Microsoft.SqlServer.Management.Smo.LogFile -ArgumentList $dstdb, $file.name
    $dstdb.LogFiles.Add($logfile)
    $file
    $logfile.Name = $file.name
    $logfile.FileName = $tdir + ([System.IO.Path]::GetFileName($file.FileName))
    $logfile.Size = $file.Size
    $logfile.GrowthType = $file.GrowthType
    $logfile.Growth = $file.Growth
    $logfile.MaxSize = $file.MaxSize
    } catch {
    $_.Exception
    # Create the database
    try {
    $dstdb.Create()
    Write-Host 'Database' $tname 'created successfully'
    } catch {
    if ($Error.Count -gt 0) {
    $error[0] | fl -force
    break
    # Make sure the right filegroup is the default
    If ($dstdb.FileGroups[$fgdefault].IsDefault -ne $true){
    Write-Host 'Setting' $fgdefault 'filegroup as default'
    $fgdef = $dstdb.FileGroups[$fgdefault]
    $fgdef.IsDefault = $true
    $fgdef.Alter()
    $dstdb.Alter()
    } #New-Database $srcdb $DSTServer $tmpdbname $tmpdir

    How were you able to see the tuf in your ldf? Using a simple text editor i'm unable to see mine.
    if you open that file with text editor, you can't use "find" functionality because its not an ASCII text. It took some time for me to locate the text which you are seeing in image which I posted.
    Also how certain are you that it is not possible, do you have experience programming with SMO? Not that I don't believe you but I have spent some time developing a ps script that somewhat hinges on this, so not happy if it was all for not.
    I have NEVER worked with SMO and have no experience. But Since I have spent 10 years of my life working with Microsoft with SQL Server Product support team, I can tell you that it's not stored in any table in database. It's part of LDF and there is no way
    to get that without parsing the LDF file.
    Here is one of the blog written by my friend, who was working in my team.
    http://blogs.msdn.com/b/batala/archive/2011/07/21/how-to-see-the-standby-file-path-when-we-restore-the-database-in-standby-mode.aspx
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Limit number of concurrent connection

    is there a way for me to limit the number of concurrent
    connections to the media server. my upload bandwitdh is about a meg
    so having too many connections just kills the whole thing. i would
    like to put a limit at 5 connections. is there a way to do
    this?

    well i am only using flash media server to displaying videos
    and just that. the reason i went with media server vs. progressive
    was fullscreen method. since flash doesn't natively support
    fullscreen you have to open another browser in fullscreen with
    javascript. the problem with that is it start loading from
    beginning so i decided to go server that way it only has to buffer
    and get to the same point without having to load the whole video up
    to that point. Now i want to limit number people that can be
    watching the video. if i get more that 5 connection the whole thing
    slows down. i am not too familiar with server based connections so
    i don't know how to limit the number concurrent connections.

  • The Isolation Method property of the object you added has been set to read

    Hai ,
    when iam going to assign VC Iview to Page .facing strange issue
    The Isolation Method property of the object you added has been set to read-only. The value must remain URL for the object to run in the page.
    already for my vc iview isolation method properties set to URL .
    Still iam facing this issue
    any input to solve this isue
    please any one brief me about isolation method property whts the use
    Regards ,
    venkat p

    Hi ASR,
    Please check page object is locked or not. if it locked then unlock it from system administraiton >> monitoring >> portal >>object locking. remove if page object is locked.
    Refer to Page Editing :  http://help.sap.com/saphelp_nw70/helpdata/en/a3/badf3d48b05d5ae10000000a11405a/frameset.htm
    Hope it helps
    Regards
    Arun

  • Limit number of recipients send out external once

    Hi all,
    I have Exchange server 2013 CU7, I want to limit number of recipients when my users send email to external/internet.
    For example:
    If my users send email to more than 50 external recipients once, they will receive error "bla bla"
    Limitation is not apply when my users send email to internal recipients"
    or external sender send email to internal recipients
    How can I do it ? (which send connector , receive connector , transport config , transport service , transport server)
    Thank for your help.
    Jack

    Hi Jack,
    Thank you for your question.
    I agree with Bruce.
    I am sorry that we could not meet your requirement that the limit of recipient is just for external/Internet.
    When we configure those setting, it will be worked for all recipient(including internal or external). It was referred by the following link:
    https://technet.microsoft.com/en-us/library/bb310760%28v=exchg.141%29.aspx
    If there are any questions regarding this issue, please be free to let me know. 
    Best Regard,
    Jim
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Jim Xu
    TechNet Community Support

  • Limit number of loans

    Hi
    I have a returnable loan with maximum 3. A client downloads 3 differents acsm files (Makes 3 clicks on my button to download) and, after, he open they width ADE.  Now he has three identical copies and there is no freedom for the rest. Yes we are bugging.
    How i can avoid it? We can tell to ACS that a user can only have a maximum of 3 books on loan?
    Ty

    The loan limit number is the number of simultaenous users that can have the file loaned out.   By default the user can read the content on any device that that they have activated (limited roughly to 6 computers and 6 devices).   If this is not what you desire, you can limit the user to the single device that they first download the content on, by adding a <device/> element into the permissions.
    ACS4 provides no way to provide more than a single device, but less than all the devices the user has activated.

Maybe you are looking for

  • Trouble keeping Server 10.4.8 Intel working with 2003 AD.

    I have been trying for a week to get a 10.4.8 MacPro server to stay bound to my 2003 AD network. Using Bombich's doc, items checked off as I go, I can get it to work briefly. Then within an hour suddenly the time zone is wrong and no clients can atta

  • Combining Aperture Libraries

    I am running Aperture 3.0 on a macbook with about 1,000 images in it and have another library (about 5,000 pics) on an external hard drive.  Can someone advise on the best way to import the images from the external hard drive into Aperture on my macb

  • F4 functionality on selection screen

    Hi, i am having One requirement that  need to create f4 functionality on selection screen. please give me solution on that

  • NWDI Server Setup in Landscape

    Hi, In My  Landscape SAP EP Portal [DEV,QUA,PROD] And BI Portal [DEV,QUA,PROD ]Systems.Currently NO NWDI Componets Setup in existing Portal Installations in Both EP Portals and BI Portals. I Am using SAP Netweaver 2004s SP16 Vesrion in Both EP PORTAL

  • Fuzzy Logic in a SearchHelp Exit

    Hi All, I have a requirement where In a search help exit, I need to retrieve the Contracts based on its Description from the EKKO table. In the description I give a part of Description followed by * and it has to fetch all the Contracts whose descrip