BR0154E Unexpected option value 'CHECK20080418025044' found at position 4

Hi All,
I am tring to run the Check database frm DB13, it is througing the below error, But If I run the same Check database from BRtools at OS level, it is working fine..,
once I completed from  the Check database from BRtools at OS level, next time onward.. it is working fine in DB13 also.. for that day.. and for next day.. again failing... in DB13 with the below error.
Job log
Job started
Step 001 started (program RSDBAJOB, variant &0000000000497, user ID PRATAP)
Execute logical command BRCONNECT On host ssapddb
Parameters: -u / -jid CHECK20080418025044 -c -f check
BR0801I BRCONNECT 6.40 (15)
BR0153E Unknown option '-jid' found at position 3
BR0154E Unexpected option value 'CHECK20080418025044' found at position 4
BR0806I End of BRCONNECT processing: cdxsnute.log2008-04-18 02.50.50
BR0280I BRCONNECT time stamp: 2008-04-18 02.50.50
BR0804I BRCONNECT terminated with errors
External program terminated with exit code 3
BRCONNECT returned error status E
Job finished
Thanks & Regards
Pratap

Hi experts
I am facing same problem when i am try to take backup from db13.
Job started
Step 001 started (program RSDBAJOB, variant &0000000002276, user ID ABAP)
Execute logical command BRARCHIVE On host sstarprd
Parameters:-u / -jid LOG__20100302184509 -c force -p initSOL.sap -cds
BR0002I BRARCHIVE 6.40 (15)
BR0153E Unknown option '-jid' found at position 3
BR0154E Unexpected option value 'LOG__20100302184509' found at position 4
BR0007I End of offline redo log processing: aecrtkvr.log 2010-03-02 18.45.15
BR0280I BRARCHIVE time stamp: 2010-03-02 18.45.15
BR0005I BRARCHIVE terminated with errors
External program terminated with exit code 3
BRARCHIVE returned error status E
Job finished
If any one find the solution kindly guide me.
thanks

Similar Messages

  • Value not found in allowed list of options for field...

    Hi,
    I'm using RIDC on UCM 11g in order to checkin contents.
    UCM hosts different projects.
    I've the following problem: if somebody (from a different project) insert a new Information Field (e.g. xAnnoPubblicazione) of type Integer - Option List - Select List Validated and it does not make a default value for this field, when I perform checkin using RIDC, it fails with the error:
    "oracle.stellent.ridc.protocol.ServiceException: Content item 'UCMRE010132' was not successfully checked in. Value not found in allowed list of options for field 'xAnnoPubblicazione'.
    How can I solve this issue? what's the recommended way?
    Thank you very much.
    Best regards,
    S.

    In the database language, you have created a NON NULL column and you are trying to insert a record with NULL value to the column. Of course, it cannot work.
    There are three options:
    - do not declare the field as NON NULL (that is, you option list has to contain 'blank' as a possible value)
    - provide the value on insert
    - provide the default value

  • Unexpected type  required: variable   found   : value

    Hello, these are my errors:
    PWC6197: An error occurred at line: 43 in the jsp file: /jsp/ListRedirect.jsp
    PWC6199: Generated servlet error:
    string:///ListRedirect_jsp.java:96: unexpected type
    required: variable
    found : value
    PWC6197: An error occurred at line: 43 in the jsp file: /jsp/ListRedirect.jsp
    PWC6199: Generated servlet error:
    string:///ListRedirect_jsp.java:96: incomparable types: java.lang.String and int
    ==================================
    any suggestions??
    <%      
    if (listData.getListURL()= null || listData.getListInfo() == 0)
              String baseUrl = "/content/listings.html?";
             String listUrl = null;
                  if (userData.isAgentType()) {
                    listUrl = parentPage + baseUrl + "ag_id=" + userData.getAgentID();
                  }  if (userData.isBrokerType()) {
                  listUrl = parentPage + baseUrl + "br_id=" + userData.getAdverID();
                  }  if (userData.isOfficeType()) {
                  listUrl = parentPage + baseUrl + "ag_id="= + userData.getAdverID();
                  } else {
                  listUrl = parentPage + "/content/homefinder.html";
                   if (listData.getListURL() && listData.getListInfo() == 1) {
                       listUrl = listData.getListURL();
               else {
                    listUrl = parentPage + "/content/homefinder.html";
    %>     

    mimsc wrote:
    if (listData.getListURL()= null || listData.getListInfo() == 0)
    The 1st part of this if statement is incorrectly an assignment, not a equation.
    Further on, this code belongs in Java classes like servlets, not in JSPs. This would not only introduce clean code separation, but also greatly improve debugging and maintenance.

  • Passing SELECT-OPTIONS value to Function Module

    Hi,
    I need to pass select-options value to a function module.
    Code is like the following:
    SELECT-OPTIONS seltab FOR object-type.
    CALL FUNCTION 'Z_MY_FM'
          EXPORTING
            sel_tab         = seltab
         IMPORTING
            result_tab     = it_result
    I have found a similar problem in the SDN forum: How to pass select-options parameter to FM?
    However, that could not help me much in solving my problem.
    So far I have tried to created a structure in DDIC with the following components for the select-options:
    SIGN - BAPISIGN
    OPTION - BAPIOPTION
    LOW - ZBWOBJECTTYPE (my type)
    HIGH - ZBWOBJECTTYPE (my type)
    and subsequently a table type for this structure which is specified in the "Import" tab of my function module.
    Unfortunately, when I ran the program a runtime exception occured (CALL_FUNCTION_CONFLICT_TYPE).
    Could anyone please help me on this issue?
    Thanks in advance.
    Regards,
    Joon Meng

    Hello Joon,
    CALL FUNCTION 'Z_MY_FM'
          EXPORTING
            sel_tab         = seltab
         IMPORTING
            result_tab     = it_result
    You have defined SELTAB as a SELECT-OPTION.
    So when you pass only SELTAB, the header line is transferred to the FM. When you pass SELTAB[] the whole table(range) is passed.
    It is similar to the concept of an internal table with header line.
    Hope i am clear.
    Anyways how have you defined result_tab and sel_tab ?
    BR,
    Suhas

  • How do I restrict Select-option values to those founn in a Z table?

    Hello friends,
    I would like to display and restrict values for a select-option to those found in a Z table. That is to say, the user is only able to choose those values found in the Z table and not otherwise.
    How to do this please?
    Thank you for your help.

    USE FM : SELECT_OPTIONS_RESTRICT
    report  zs_list_select_option.
    type-pools sscr.
    tables : marc.
    defining the selection-screen
    select-options :
      s_matnr for marc-matnr,
      s_werks for marc-werks.
    Define the object to be passed to the RESTRICTION parameter
    data restrict type sscr_restrict.
    Auxiliary objects for filling RESTRICT
    data : optlist type sscr_opt_list,
               *** type sscr_***.
    initialization.
    Restricting the MATNR selection to only EQ and 'BT'.
      optlist-name = 'OBJECTKEY1'.
      optlist-options-eq = 'X'.
      optlist-options-bt = 'X'.
      append optlist to restrict-opt_list_tab.
      ***-kind = 'S'.
      ***-name = 'S_MATNR'.
      ***-sg_main = 'I'.
      ***-sg_addy = space.
      ***-op_main = 'OBJECTKEY1'.
      append *** to restrict-***_tab.
    Restricting the WERKS selection to CP, GE, LT, NE.
      optlist-name = 'OBJECTKEY2'.
      optlist-options-cp = 'X'.
      optlist-options-ge = 'X'.
      optlist-options-lt = 'X'.
      optlist-options-ne = 'X'.
      append optlist to restrict-opt_list_tab.
      ***-kind = 'S'.
      ***-name = 'S_WERKS'.
      ***-sg_main = 'I'.
      ***-sg_addy = space.
      ***-op_main = 'OBJECTKEY2'.
      append *** to restrict-***_tab.
      call function 'SELECT_OPTIONS_RESTRICT'
       exporting
        restriction                  = restrict
       exceptions
         too_late                     = 1
         repeated                     = 2
         selopt_without_options       = 3
         selopt_without_signs         = 4
         invalid_sign                 = 5
         empty_option_list            = 6
         invalid_kind                 = 7
         repeated_kind_a              = 8
         others                       = 9
      if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    Edited by: Srinivas Gurram Reddy on Mar 18, 2008 3:14 PM

  • Unexpected minimum value for SHEAPTHRES_SHR

    Hi Folks - We keep getting the following message every 30 seconds on our BI QA server.
    2009-08-24-07.26.17.263989-240 E78429A607         LEVEL: Warning
    PID     : 930014               TID  : 15425       PROC : db2sysc 0
    INSTANCE: db2bq1               NODE : 000         DB   : BQ1
    APPHDL  : 0-28423              APPID: *LOCAL.DB2.090808073504
    AUTHID  : DB2BQ1
    EDUID   : 15425                EDUNAME: db2stmm (BQ1) 0
    FUNCTION: DB2 UDB, Self tuning memory manager, stmmComputeMinSHEAPTHRES, probe:836
    MESSAGE : Unexpected minimum value for SHEAPTHRES_SHR - value automatically
              corrected -  122423 -  2448 -  338887 -  9180 -  3 -  0 -  3.000000 -
               1 -  31 -  271110 -  630
    I am pretty sure this will have performance impact on the database as the database manager has to keep changing the SHEAPTHRES_SHR value every 30 seconds back to the correct value. Has any one seen this before? Turning off STMM is not an option. We do not want to hard code SHEAPTHRES_SHR value as the loads on BI are not-predictable in the environment.
    Pl advise.
    Thanks.

    The output of the SQL statement shows:
    MAX_PARTITION_MEM: Maximum allowed "instance_memory" (this will correspond with the current setting of instance_memory in bytes)
    CURRENT_PARTITION_MEM: Current total memory allocation (in bytes)
    PEAK_PARTITION_MEM: HWM total memory allocation (in bytes)
    The bug with the STMM memory calculation was first fixed with version 9.5 FP4 so you might have to upgrade your instances to FP4. In fact, if I am not mistaken, SAP withdrew FP3 due to a hiper apar which can potentially impact SAP systems.
    Also as far as the values in the output of the query and db2pd are concerned, they are not different. The output of the query is expressed in bytes whereas the output of pd is expressed in KB.
    $$ db2pd -dbptnmem
    Memory Limit:         36000000 KB (which is 36864000000 bytes)
    Current usage:        31746944 KB (which is 32508870656 bytes)
    HWM usage:            35704320 KB (which is 36561223680 bytes)
    Regards,
    Sameer

  • Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.

    Hi All,
    I am trying to add a new task to a Tasks list called CATasks. The list was created via Visual Studio “Add > New Item > List” process and not by custom code. The code I am using to add a task is shown below.
    What I have noticed is if I use my code to add a Task to a Task List created by Visual studio “Add > New Item > List” process, I get an error. Error message when adding an item:
    Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.
    But if I create the same list using custom code I don't get an error.
    Am I missing something in my custom code or is this a bug?
    I hope you can help.
    CEStar
    App.js Code:
    function createItem() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/?$select=Title,CurrentUser/Id&$expand=CurrentUser/Id",
    type: "GET",
    dataType: "json",
    headers: {
    Accept: "application/json;odata=verbose"
    call.done(function (data, textStatus, jqXHR) {
    var userId = data.d.CurrentUser.Id;
    addItem(userId);
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function addItem(userId) {
    var due =
    new Date();
    due.setDate(due.getDate() + 7);
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getByTitle('CATasks')/Items",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.Data.CATasksListItem" },
    Title: "Sample Task",
    AssignedToId: userId,
    DueDate: due
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var div = jQuery("#message");
    div.text("Item added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function failHandler(jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);
    Create List Custom Code:
    function createList() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.List" },
    BaseTemplate: SP.ListTemplateType.tasks,
    Title: "CATasks"
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var message = jQuery("#message");
    message.text("List added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thanks 
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • HELP! empty option value on line 19 of configuration file

    We have been attacked by spammers again at our server. As a result, only the Outgoing SMTP service is on in the SA-Mail-Overview tab, although in the Settings-General tab POP, IMAP and SMTP are enabled.
    In the POP and IMAP logs, it shows "empty option value on line 19 of configuration file". Does it refer to main.cf? Line 19 in main.cf has no parameters to be specified...
    Also, I find very weird that if I use postfix stop, then it stops but suddenly starts again. Can it be the mail queue manager? I'm starting to think someone has hacked our server.
    I only have angry clients now with no connection. Any help will be greatly appreciated. Here goes our postconf.
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    disablevrfycommand = yes
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    localrecipientmaps = proxy:unix:passwd.byname $alias_maps
    mail_owner = postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 0
    mydestination = $myhostname,localhost.$mydomain,localhost
    mydomain = i-publishingservices.com
    mydomain_fallback = localhost
    myhostname = mail.i-publishingservices.com
    mynetworks = 127.0.0.1/32,192.168.1.100/32,192.168.2.60/32,ono.com,speed.planet.nl,nordpro.e s,ebensa.com,grupoevensa.com,edutickers.com,i-catcher-online.com,i-publishingser vices.com
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdclientrestrictions = permitsaslauthenticated, permit_mynetworks rejectrblclient sbl-xbl.spamhaus.org permit
    smtpddatarestrictions = permit_mynetworks, rejectunauthpipelining, permit
    smtpdhelorequired = yes
    smtpdhelorestrictions = permitsaslauthenticated, permit_mynetworks, checkheloaccess hash:/etc/postfix/helo_access, rejectnon_fqdnhostname, rejectinvalidhostname, permit
    smtpdpw_server_securityoptions = cram-md5,login,plain
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdsenderrestrictions = permitsaslauthenticated, permit_mynetworks, rejectnon_fqdnsender, permit
    smtpdtls_certfile = /etc/certificates/Default.crt
    smtpdtls_keyfile = /etc/certificates/Default.key
    smtpduse_pwserver = yes
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains = hash:/etc/postfix/virtual_domains
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp

    Moreover, I found this on the system.log:
    Jan 22 21:08:23 ALICANTE launchd: edu.cmu.andrew.cyrus.master: exited with exit code: 75
    Jan 22 21:08:23 ALICANTE launchd: edu.cmu.andrew.cyrus.master: respawning too quickly! throttling
    Jan 22 21:08:23 ALICANTE launchd: edu.cmu.andrew.cyrus.master: 7 more failures without living at least 60 seconds will cause job removal
    Jan 22 21:08:23 ALICANTE launchd: edu.cmu.andrew.cyrus.master: will restart in 10 seconds
    Jan 22 21:09:33 ALICANTE master[15363]: exiting
    Jan 22 21:09:33 ALICANTE launchd: edu.cmu.andrew.cyrus.master: exited with exit code: 75
    Jan 22 21:09:33 ALICANTE launchd: edu.cmu.andrew.cyrus.master: respawning too quickly! throttling
    Jan 22 21:09:33 ALICANTE launchd: edu.cmu.andrew.cyrus.master: too many failures in succession
    I don't know who this user is!!!!!!! Is this the spammer?

  • Missing option value after reboot ?

    hello,
    after already a while now, our Mac running 10.4 was shutdown due to voltage problems in the building.
    after starting up, we wanted to continue our work as usually,
    but uhh..... Mac didn't want to do so.
    I have absolutely no idea what happened, but our mail refuses to work.
    Server Admin says SMTP is working,
    but POP and IMAP are always disabled.
    log shows the following error:
    Jul 6 14:39:28 hxxaxxex postfix/pipe[1371]: DC33C1B6C5B: to=<[email protected]>, relay=cyrus, delay=1216, status=deferred (temporary failure. Command output: 421 4.3.0 deliver: empty option value on line 19 of configuration file_ )
    i tried to find errors in main.cf and master.cf,
    couldn't find an error yet tho.
    any suggestions/help greatly appreciated,
    thanks in advance
    G4

    after some research and a lucky finding,
    i was able to resolve the error.
    too bad server admin seems to do an awful job.
    neither did it reference to the correct file that was missing an entry,
    nor did it save the conf file correctly, since the entry was already there before.
    i found this article:
    http://lists.apple.com/archives/macos-x-server/2005/May/msg01431.html
    the file/line missing an entry was
    File: imapd.conf
    Line: tlscommonname:
    and no, it's not 10.3 server admin, lol
    i hope no1 else will ever encounter this problem,
    if any1 does tho, may this article help.
    kindest regards

  • "empty option value"?

    I'm getting the following lines repeated over and over in my mail service log:
    Nov 14 12:38:19 mail master[29009]: empty option value on line 18 of configuration file
    Nov 14 12:38:19 mail master[29009]: exiting
    As of this writing, it's been going on for 18 minutes. If anyone has a solution or any ideas, I'd appreciate it.

    OK, I figured out how to edit and save the imapd.conf file. From what I found in other threads on this board, I set it to "Default".
    Here's a sample of what the mailaccess.log looks like now:
    Nov 14 14:59:48 mail lmtpunix[2601]: lmtp connection preauth'd as postman
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: user opts: cleaning up user options structure
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: user opts: cleaning up user options structure
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: user opts: looking up user record: nbejarano
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: getting mail attribute for user: nbejarano
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: mail enabled
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: checkServiceACL: No SACL check, mail SACL is not enabled
    Nov 14 14:59:48 mail lmtpunix[2601]: IOERROR: fstating sieve script /usr/sieve/n/nbejarano/defaultbc: No such file or directory
    Nov 14 14:59:48 mail lmtpunix[2601]: duplicate_check: <C54340A2.7341%[email protected]> user.nbejarano 0
    Nov 14 14:59:48 mail lmtpunix[2601]: AOD: user opts: no-lookup for: nbejarano
    Nov 14 14:59:48 mail lmtpunix[2601]: mystore: starting txn 2147483689
    Nov 14 14:59:48 mail lmtpunix[2601]: mystore: committing txn 2147483689
    Nov 14 14:59:48 mail lmtpunix[2601]: duplicate_mark: <C54340A2.7341%[email protected]> user.nbejarano 1226696388 375

  • Select-option value is not getting captured in at selection-screen on value

    In Selection screen , we have Select-option and  a parameter.
    Based on the values given in Select-option, the values of Parameter should get populate.
    To achieve this functionality,
    I  used  At selection u2013screen  on value request  for <parameter>  EVENT and 'F4IF_INT_TABLE_VALUE_REQUEST' Function Module.
    But the Select-option values are not getting captured in this event,unless u press Enter key.
    Is there any other way to achieve this functionality.
    Please Guide me.

    When you call function 'F4IF_INT_TABLE_VALUE_REQUEST'. make sure you send it the name of the screen variable - the F4IF_INT_TABLE_VALUE_REQUEST function calls DYNP_VALUES_READ itself if you tell it the name of your report, screen number, and the variable name... snippet below.
    Jonathan
      data:
        l_repid             type syrepid.
      l_repid = sy-repid.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          dynpprog         = l_repid
          dynpnr           = '1000'
          dynprofield      = 'S_FIELD-LOW'  "Select options - low value
    * etc

  • Not able to get the profile option value

    Hi,
    Not able to get the profile option value after i changed the new value in the application.
    I am using fnd_global.apps_initialize to initialize the apps from PLSQL code to get the updated profile option value. But fnd_profile.value is not getting fetched the updated value. Still it is fetching the old one. I mean it is stored in database cache. Please any one let me know how to get the new value every time after i changed the value.
    Thanks

    What is the application release?
    Is this a custom or seeded profile option?
    Can you confirm that the value got changed from the application (query the profile option and verify the value)?
    Can you reproduce the issue if you use an API to update this profile option as per (How to Change Profile Option Value Without Forms? [ID 943710.1])?
    Thanks,
    Hussein

  • How can we pass the select-option value to modulepool program?

    hi,
      how can we pass the select-option value to modulepool program ?
      Because if i declared select-options in executable program and i used SSCRFIELDS to define push buttons in selection screen.
               My requirement if enter the values to select-options and press UPDATE pussbotton then i want call screen which contains tablecontrol.
               How i get select-option values to PAI of call screen for getting the data from database table to my internal table?

    Oh I thought that you have selection-screen and again you are working on dialog programming.
    if you want to use select-option directly in module pool then it is not possible.
    but you can do other way.
    create two varaiables
    data : v_kun_low like kna1-kunnr,
             v_kun_high like kna1-kunnr.
    use these two variables in layout ,let user knows that he can not give options like gt,lt,eq ,it will be always BT.
    and also when you see normal report program,you can use multiple values in either low or high,but here it is not possibel.
    use can enter only low value and high value.
    when you come to program point of view
    declare one range
    ranges r_kunnr for kna1-kunnr.
    do the coding like
    r_kunnr-low = v_kun_low.
    r_kunnr-high = v_kun_high.
    r_kunnr-options = 'BT'.
    r_kunnr-sign = 'I'.
    append r_kunnr.
    now you can use r_kunnr in select query ,it will work like select-option.
    other than this there is no option.
    Thanks
    Seshu

  • Estimated recalc flag not set when option value changed

    Hi,
    Here is the problem.
    when i change the option value using front end and ran the procedure in dev, one for exprecalc and the other for estm recalc,then estimated flag & expense flag changed to 25964.which is correct.
    when i repeated the same process in UAT,only expense is changing 25964
    but not estimated,it remains 26040.
    only one record is there.
    for '03/14/2003', i changed the option value
    select estm_reclcn_c,exps_reclcn_c from grn
    where grn_d=to_date('03/14/2003','mm/dd/yyyy')
    and org_grp_i=44;
    what might be the reason.Any clue
    Thanks in advance.

    Hello 511111,
    You haven't given us much to go on but it sounds like there are differences in either the software (PL/SQL, SQL etc) or the data between your dev and uat environments that is causing the differing behaviour.
    Cheers,
    Colin

  • How to restrict Option values for a particular metadata in profile checkin

    How to restrict Option values (drop down) for a particular metadata in profile checkin-
    Metadata field Color is having options dropdown values (stored in table/views)-
    Display name - Blue, Value=1
    Display name - Red, Value=2
    Display name - Yellow, Value=3
    Display name - Green, Value=4
    Display name - Black, Value=5
    For a particular profile checkin form, for the metadata field Color I want the dropdown value consist of only top three options
    Display name - Blue, Value=1
    Display name - Red, Value=2
    Display name - Yellow, Value=3
    But this should be done on profile level only, should not impact the standrad checkin form and other profile checkin forms.
    Please help me if any one having any suggestion to implement the above secnario
    Thanks,
    Sumit

    Hi,
    Into the rule containing the Color metadata, you can restrict the values of the list.
    In "Has restricted list and pane", list the values 1, 2 and 3 (new line for each value) :
    1
    2
    3
    Romain.

Maybe you are looking for