Auto Entension of LAC based on Rules

Hi All,
I have a business requirement where in the time of LAC should get extended automatically based on rule that if there has been a Bid submitted before 5 minutes to the closure of the Auction, the Auction should get automatically get extended by another 5 minutes. For example say I have set the time limit of an auction to 60 minutes. Now if there is a bid between 55 to 60 minutes the time for auction close should become 65 minutes and so and so forth till there is no bid received in last 5 minutes where in it should get closed.
I searched SAP Help and other SDN Documents but did not find anything similar to the requirement.
Has any body encountered this issue earlier? Any idea to use which BADI to configure such a rule?
Rgds,

Hi,
If standard LAC extension is not suitable for you then you must extend program.
Start from this FM's:
- BBP_LA_MSG_TIMEOUT_CHECK
- BBP_LA_BIZAPI_RETRIEVE_MSG
Regards,
Marcin

Similar Messages

  • In R12 can we have approval based on rules like Cost Cente or Account?

    Hi All,
    -In R12 GL can we have approval based on rules like Cost Centers or Account. I know a rule based on Amount can be setup
    -In R12 GL can we use the PO hierarchy and its Rules
    Thanks.

    Dear Srinivasan Muthu,
    Assuming that Red,Blue and white are the values for the chracteristic say Colour and if this assigned to
    a class type say 023 batch,while uploading the stock,the system asks the chracteristic value.
    Say suppose if you are entering 561in MB1C or 101 movement in MIGO for that material and if you
    select for Blue,then in MMBE you can click on the stock quantity and right click-->batch classification.
    The system shows for Blue colour.
    check and revert back.
    Regards
    Mangalraj.S

  • Using JavaScript to auto populate a field based on numeric value of a separate drop down field

    Hello, I am trying to set up a simple, I hope, javascript which will enable to me auto populate one field based on the numberic value of another field using Acrobat Pro XI.
    Essentially I have 2 drop down fields (we'll call them DD1 and DD2).
    DD1 is the sum of 8 preceding drop down values. That sum can be anywhere from 0 - 40. Whatever that sum falls within a range which identifies a rating. The ratings and ranges are below:
    0-8: Non-Performer  
    9-16: Low Performer  
    17-24: Performer  
    25-32: High Performer  
    33-40: Exceptional Performer
    DD2 is where the rating ("non-performer", "low performer", etc.) will be captured. Instead of requiring the user to look at DD1, determine the value, and then identify and input the rating manually, I would like DD2 to auto populate the rating based on the value (sum) in DD1.
    For example, if DD1 shows a value of 27 then DD2 would auto populate "High Performer". So how do I write this code or execute this? In excel I would use an if, then statement. Is there something similar in Acrobat Pro XI.
    Any help is greatly appreciated. Thank you in advance.

    If you use a text field, the custom calculation script could be:
    // Custom calculation script for text field
    (function () {
        var s = getField("DD1").valueAsString;
        // Blank this field if input is blank
        if (!s) {
            event.value = "";
            return;
        // Convert string to number
        var v = +s;
        // Set this field's value based on the input
        if (v <= 40 && v >= 33) {
            event.value = "Exceptional Performer";
            return;
        if (v < 33 && v >= 25) {
            event.value = "High Performer";
            return;
        if (v < 25 && v >= 17) {
            event.value = "Performer";
            return;
        if (v < 17 && v >= 9) {
            event.value = "Low Performer";
            return;
        if (v < 9 && v >= 0) {
            event.value = "Non-Performer";
            return;
        // If none of the above fit, blank this field
        event.value = "";

  • Auto populate a textfield based on users input

    Hi All,
    Working with Designer ES ver. 8.2, and I am looking to see if it is possible to auto fill another field based on an end users input.
    Example: End-user enters a 6 digit departmentCode for a program; in turn the field opposite to the departmentCode auto fills with a corresponding programCode; if they do not input the correct 6 digit departmentCode the field will return a null value.
    I am trying to move away from my current auto fill drop-down option, so end-user is less likely to select incorrect departmentCode from drop-down
    Best Regards
    Jeff

    radzmar,
    Thank you for your response, I assumed there was a simple script to accomplish my task. I had assumed that the .rawValue property would have come into play and was unaware of the  xfa.event.fullText property.
    Thanks Again

  • How can I know the database is using Cost Based or Rule Based?

    Hi all expertise,
    How can I know the database is using Cost Based or Rule Based?
    If cost based it is using, what methods are need to use to minimize the cost when database is running? And which tables I can see the performance of the database?
    Thanks
    Amy

    how to see database setting ?
    use this
    SQL> sho parameter optimizer
    NAME TYPE VALUE
    optimizer_dynamic_sampling integer 1
    optimizer_features_enable string 9.2.0
    optimizer_index_caching integer 0
    optimizer_index_cost_adj integer 100
    optimizer_max_permutations integer 2000
    optimizer_mode string CHOOSE
    choose means if table statistics is available then it will use cost
    else
    use rule based optimizer
    for seeing performnace of table use
    set autotrace on
    and run your query
    if it doen't show cost.it means it use rule based
    for using cost based
    u will calculate table statistics
    9i
    dbms_stats.gather_table_stats('owner','table');
    8i
    analyze table <table_name> compute statistics;
    hope it will help you
    kuljeet pal singh

  • Auto-Decline Invites Based On Rules

    Hello,
    I have a CalDAV calendar, and am looking for a way to automatically decline certain events. The rules would be very simple -- basically, any invite from a particular sender should get automatically deleted/declined. I would be happy to write a script to do this, but have not had much luck finding useful pointers. Any advice would be greatly appreciated.

    Invitations through email could be blocked from the address in question, then they won't autoforward to iCal, with "Automatically retrieve invitations from Mail" checked under iCal>Prefernces>Advanced. Whatever mechanism CalDAV uses should be easy to deal with if the filtering takes place at the email client.
    If you want email from that address but want to reject only invitations, then I'd suggest a two-stage rule about an attachment extension and the address. Mail>Preferences>Rules. Then you could go nuts or even attach a script to the rule.
    If you already knew all that, then I hope it wasn't too painful to read this far. It seems that automatically declining needs to be handled by the calendar client, which doesn't look easy. Sounds like a job for Automator if its all mouse interface activity, but I've never done it.

  • Auto-Assigning an Opportunity based on Territory

    Hi All,
    I have written a WF that auto-assigns all new opportunities with specific values in the Territory field to a specific book. When I was building the rule it would not give me the available values to choose from, so I wrote it from scratch:
    [<Territory>]=LookupValue("Territory", "Americas")
    Did I get the syntax wrong or is it not possible to assign an opportunity to a book based on the Territory field?
    If anyone has another idea of how to do this, I am open to suggestions.
    Thanks.

    Bob,
    That triggers whenever the territory field is changed from value "Americas" to something else. I have just tested it out and as of now (4/30/2008) that is how FieldValue functions.
    That being said, does anybody have a solution to the original problem.
    - Triggering a work flow rule when the territory (out of box read-only) field is a certain value.
    I have tried -
    [<Territory>] = LookupValue([<Territory>], "California")
    FieldValue('<Territory>') = "California"
    [<Territory>] = "California"
    [<Territory>] = 'California'
    None of these work.
    Some one more well versed in the arcane art of OD manipulation please shed some light on this.
    thanks
    Odie

  • Auto-populate form fields based on end user input?

    I'm currently attempting to create a new form that has a combo box "Locations" with various options.  What I'm looking to do is have another text field auto populate other fields related to that location (such as address, contact information) to save on time and reduce opportunity for end user errors in input.
    What are my options for accomplishing such a task?  Some form of binding fields with a MS database possibly?
    Thanks in advance for any advice and assistance on this matter!

    Paul,
    The form and (potential) database would be located on a shared drive on the company network in which those that would use the form already have access to.
    The pc's that user's would be using have Reader 9.
    The pc I'm using for developing this form has LC Designer 8, Acrobat Professional 8, and Reader 9.
    Ideally, I would "like" for the end user to have the ability to add new locations, addresses, etc ... in the event it is needed, although this would not be likely to come up.
    Based on the software I have on hand, and the need to not incur additional expenses, what would you suggest?
    Thanks again Paul!

  • Auto sort incoming email based on message content and subject

    I am trying to do what it says above. I have created a smart mailbox and that will put on copy of the message in the mailbox and one in my inbox. How can I do it so it will be automatically added to that mailbox instead of my inbox?
    Thanks,
    Daniel

    don't use a smart mailbox for this. a smart mailbox is not a real mailbox. it's a saved search and doesn't move messages anywhere. make a regular mailbox and make a mail rule that moves incoming messages to that mailbox based on criteria you want.

  • Adjusting time based on rule

    Hi all,
    I two fields in my screen start time and end time.
    Based on start time i want adjust my end time.
    Here is my rule
    The above rule is not working any suggestions will be advisable.
    Regards,
    Gupta

    Gupta,
    The rule looks fine.  It should add 30 minutes to whatever time is in PlannedStartTime.  Questions:
    Where are you using this rule?  As an update rule on another field?  Transaction screen?
    What data types are the fields?  DateTime, or Time?
    When you say it isn't working, what is it doing then?
    Jason Latko - Senior Product Developer at SAP

  • Auto close informational alerts generated by rule

    Hi,
    Is there a way to configure auto close for specific informational alerts?
    There is some information alerts which pops up and due to my environment limitations we are unable to completely prevent it from occurring. The exact details of the alerts i am going to pass as my intend is not to resolve the alert completely but I would
    like to find out if there is a way to automatically close them? I do not want to disable the alerts via overrides because I want to keep it there for reporting purpose. I also know there is "Automatic Alert Resolution" settings which
    can configure the system to auto resolve all old alerts after 7 days. This is also not what I want.
    Regards,
    Terence

    Create a subscription with a criteria that meets the alerts generated by that rule, then configure a 'Command Channel' under that subscription (no notification is required) in order to change the 'Resolution State' to 'close' in for these type
    of alerts.
    the following link covers the Command Channel PowerShell that changes the resolution state
    http://blogs.catapultsystems.com/cfuller/archive/2012/05/04/how-can-i-tell-if-opsmgr-scom-actually-sent-me-an-email-step-by-step-sysctr-[storing-information-on-subscriptions-sent-in-alert-history].aspx

  • Auto level entire image based on selection?

    I'm scanning some old magazine pages. But because some clippings are irregular shaped, the bright white of the scanner lid is in the image. So this throws off Auto Levels & Auto Contrast. If I take the marquee tool to select a portion of the image, is there a way to auto level the entire document based on the smaller marquee selected area?

    Hmmm... I must be missing a step. Help me out here...
    I'm making a selection of the area I want to use for auto levels. I click on the Levels adjustment layer, it creates an Adjustment layer with layer mask. I option-click Auto in the Levels palette -- and it brings up a dialog box. Now what?

  • Calling a ILOG JRule based business rule from ABAP

    Hi,
    JRule is a BRMS product from ILOG. I have few business rules maintained in JRule and exposed as JAX Web Service. I was wondering if it is possible to call those rules from ABAP using client proxy similar to the technique used to call Enterprise Services or any other SOAP based web services. Any help is highly appreciated.
    Thanks in advance
    Nilay

    Yes you can. Once you have deployed your rule app to the ILOG Rule Execution Server, you can get login to the RES and get the WSDL and then use the WSDL to invoke the rules.

  • Auto-populating text fields based on dropdown option

    This has probably been covered on this forum before.  I would like to auto-populate multiple text fields with pre-programmed data based on a user-selected option from a drop-down list.  The file here should explain clearly what I want to do:
    https://acrobat.com/#d=ID7ezZN5ZzIKgVvmgkyMiw
    Where can I find an example code that would accomplish this task?  Thanks.
    -Paul

    Your form data hierarchy is different than mine. You need the brackets also, otherwisethe first assignment statements executes only.
    // form1.#subform[0].DropDownList1::exit - (JavaScript, client)
    if (!(this.isNull)) {
      var char = this.rawValue;
      TextField41.rawValue = "Data " + char + "1";
      TextField42.rawValue = "Data " + char + "2";
      TextField43.rawValue = "Data " + char + "3";
    Steve

  • Powershell based discovery / rule

    I am currently facing one problem in my management pack whose various workflow (discovery / rule / monitor) are based on PowerShell scripts. These PowerShell scripts connects to a WCF service using following way
    $webServiceConnection = New-WebServiceProxy -Uri http://<WCF_service_host>:8732/DeviceConnection?WSDL -Namespace "Vendor.Device.Component"
    Now this WCF service expose few methods which provides data depending on request i.e. discovery or rule or monitor. After processing the requested data, we set $webServiceConnection = NULL
    As there are number of components (elements) in the discovery and we monitor every component hence there are too many workflows execute on management server and hence utilization of MonitoringHost is very high. Sometime it almost eats whole CPU and RAM.
    We suspect that there are high number of $webServiceConnection objects residing in memory which are not cleaned up by CLR. Can this be one of the reasons that most of the time CPU and RAM is almost 100% utilized.
    --Mukul

    Hi
    do not target any script base monitoring on management server, you can create a custom class based of custom registry key discovery and target monitoring from non critical server. High cpu utilization will happen due to spinlock.
    Refer below link for more information
    http://blogs.technet.com/b/kevinholman/archive/2009/07/20/do-you-randomly-see-a-monitoringhost-exe-process-consuming-lots-of-cpu.aspx
    http://support.microsoft.com/kb/968967/en-us
    Regards
    sridhar v

Maybe you are looking for

  • IPhone 5 two bugs in photo app.

    Sorry, don't know where to submit bug reports... hope this place is okay. Bug #1 - photos are not properly fit to screen.  To see this, take a screenshot of the home screen, or, say, of your favorite video game on the iPhone 5.  Now, look at that pho

  • E-mail not showing up

    Hey all, I'm noticing at times when I send an e-mail, it's not clear if it actually gets sent. For instance, I responded to an e-mail, sent it, and it's even marked with the reply arrow. However, the message does not appear in my sent mail folder. Al

  • Linksys PCI cards and WLC problems

    /* Style Definitions */ table.MsoNormalTable {mso-style-name:Standardowy; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm

  • How to grant permission to user to access Lync 2013 OcsPowerShell

    I'm writing script for our first line for creating Lync users. I need give access to connect to https://lyncpool.domain.local/OcsPowerShell via powershell. Only users in CSAdministrator group have permission to connect, but this group have to much pr

  • Error handling with cmdlnlauncher.bat

    Hi, I'm trying to figure out how to incorportate error handling when calling CmdLnLauncher.bat in a .bat file. I checked for 'errorlevel' after a business rule failure and it's 0, which says it was successful. Has anyone added error handling to the C