OB28 Validation rule.. need to compare with other environment

Hi All,
I need to compare the validation rule (OB28)  present in the Development environment with the Production Environment. So is there any way out where in we could export the validation rule into an excel file and then do a comparision.?
Thanks a lot in advance,
Regards,
Shailendra.

I think you need to use Ajax.
It is very simple. write a function in onchange event of the input field
<input type="text" name="appdt" size="10" maxlength="20" id="dateField" class="dateparse">
It will invoke a simple javacript function say
<input type="text" name="appdt" size="10" maxlength="20" id="dateField" class="dateparse" onchange="fetchRecordsDatewise(this.value);">
in the function definition of fetchRecordsDatewise(dateval)
pass dateval to another recordFetch.jsp page with value dateval.
In the recordFetch.jsp using request.getParameter() get the dateval's value nad query the db.
now there print the matching db record.
again you come to the onreadystatechange event handling javascript function that will process the response,
maybe just to show the datewise record inside a div with div_show, with the following line
document.getElementById("div_show").innerHTML=resp; //here resp is the response string from recordFetch.jsp
if you don't know Ajax then, you can see simple ajax example with jsp.
Hope these solves your problem.

Similar Messages

  • EA1 - File Compare With Other File... Does Not Work

    I open a file in the SQL Worksheet, select File > Compare With > Other File..., nothing happens! Is this part of the Version Control feature that is yet to be implemented?

    I have it logged.
    Thanks
    Sue

  • I got my iPhone 4S and I think I have a problem with it. Sound when locking and unlocking is quiet compared with other iPhone 4S. I compared it with others and really is a little quiet. Other people have confirmed it too. Other sounds may be better. No pr

    I got my iPhone 4S and I think I have a problem with it. Sound when locking and unlocking is quiet compared with other iPhone 4S. I compared it with others and really is a little quiet. Other people have confirmed it too. Other sounds may be better. No problem tones, watching videos. This problem or is it something normal?

    I have this problem too, but it is intermittent. Sometimes the lock/unlock volume will drop to barely-audible, even though in settings the volume slider hasn't changed. If I then move the volume slider, it fixes the problem and the lock sounds jump back to normal, but then later on the problem will happen again.

  • I got the image on the vi,now I want to take rectangle potion from that image and compare with other image

    Hi,
    Now i have a image on VI ,i want to take rectangale postion of the image and compare with the other image(In this image also i need to take a small postionof it) and  show the result.
    Both image are equal or not....if it is equal show pass if the image is not ok fail.
    Regards,
    Sri.

    First i would like to thanks for the inputs,
    I have made one Vi for comparing the two images and display  equal or not.
    Problem:if there is a small change in the picture it is showing false ,but the image is ok only the contract ,clarity ,inclination is the problem... i need your help in controlling that image......like controlling the colors and telling if the color , shade, projection of the image of the image is in between this range show it as ok....
    i started with cluster taking the out put of the BMP file, but i am not able to do....can u help me on this.
    i am attaching the file what i have made...
    Regards,
    Sri
    Color
    Attachments:
    image.ppt ‏52 KB

  • How Documaker Studio 12.0 - compares with other tools - like HP EXSTREAM

    Hello Experts !
    I am trying to find a comparison document between latest versions of Documaker Studio 12.0 & HP Exstream.
    I had worked on Documaker 10.2 for several past years, but has been working on HP exstream in Recent years.
    I am trying to understand what has changed in Documaker 10.2 to Documaker Studio, so that I can work on Studio - mostly for batch Application. I have gone through most of the Docs for Documaker Studio, & understand the BASE product which works on the back ground RUN TIME process has not changed a lot for batch processing at least. I understand that GUI is totally different, with various additional features for versioning, check out, checkin etc.
    Also I am trying to compare DOcumaker Studio with HP Exstream, with which I have now about 4 years recent experience..
    If any of you have any comparison docs, request to forward to me. ( [email protected]). Also I encourage if any of you Documaker studio experts can talk to me - I can explain the features of Exstream & we can have an interesting discussion - my number is (302) 312 3120..
    Thanks in advance !

    Thank you Gaetan, I appreciate your response. One last question.
    Pretend I have a ParagraphList with 4 paragraph choices. In two of those paragraph choices, I need each of them to have another 2 paragraph choices EACH.
    So I know that you can't insert more MLT fields in paragraphs. Because of this, I don't think I'll be able to use PSL's and PAR's if I have multi level selections. Can anyone verify that this is correct? or am I missing something?
    Since I will need a table selection for multiple sections, and those sections needs to be able to call additional tables for for more sections, I'm thinking TERSUB is probably my best bet. This could go on for three or so levels.
    Any inputs? thanks.

  • Writing generated XML into a file after comparing with other XML

    Hi,
      I have completed the comparison of two XML now I have a requirement to concat these two xml but also need to append the XML with a status node that if after comparing the two XML output is Y or N so if it is Y then a node with
    <status>Y</status>
    <from table>t1</from table>
    then completing those task I need to write it in a file
    declare
        p_emp_info   CLOB;
      l_emp_tab        xmlsequencetype := xmlsequencetype();
    BEGIN
      FOR i IN (SELECT id from emp WHERE emp_name='ABC') LOOP
        l_emp_tab.extend;
        SELECT XMLELEMENT("ABCD",
               XMLELEMENT("id",i.id))
          INTO l_emp_tab(i)
          FROM dual;
    END LOOP;
      SELECT XMLELEMENT("EMP"
                           ,XMLAGG(t.column_value))
        INTO p_emp_info  
        FROM TABLE(l_emp_tab) t;
        --Dbms_Output.put_line(getclobval(1,2));
    EXCEPTION
        WHEN OTHERS THEN
       Dbms_Output.put_line(SQLCODE||sqlerrm);
    END ;
    I am using this query but it is giving me an error that expression is of wrong type  at this line {  INTO l_emp_tab(I) }
    I am unable to find out the error that what I am missing here !!

    You've changed the datatype of i from the example that Odie gave you in
    repeating nodes using FOR loop but when concating XML string then concating only last iteration of FOr loop ??
    In his example, i was a number.  In your above code, i is now the rowset for a cursor.
    You could rewrite your version to look like
    declare
      p_emp_info     XMLTYPE;
      l_emp_tab      xmlsequencetype := xmlsequencetype();
      l_pos          PLS_INTEGER;
      CURSOR c_info IS
        SELECT id
          from emp
         WHERE emp_name='ABC';
    BEGIN
      FOR r_info IN c_info LOOP
        l_emp_tab.extend;
        l_pos := c_info%ROWCOUNT;
        SELECT XMLELEMENT("ABCD",
               XMLELEMENT("id",r_info.id))
          INTO l_emp_tab(l_pos)
          FROM dual;
      END LOOP;
      SELECT XMLELEMENT("EMP"
                           ,XMLAGG(t.column_value))
        INTO p_emp_info 
        FROM TABLE(l_emp_tab) t;
      --Dbms_Output.put_line(p_emp_info.getclobval());
    END ;
    You can't use the c_info%ROWCOUNT in the INTO clause, hence the need for l_pos.
    Or you could rewrite it to be
    declare
      p_emp_info   XMLTYPE;
      l_clob       CLOB;
    BEGIN
      SELECT XMLElement("EMP",
               XMLAgg(XMLElement("ABCD",
                        XMLElement("id",e.id))))
        INTO p_emp_info
        FROM emp e
       WHERE emp_name = 'ABC';
      SELECT XMLSERIALIZE(DOCUMENT p_emp_info AS CLOB)
        INTO l_clob
        FROM DUAL;
      Dbms_Output.put_line(l_clob);
    END;
    Both produce the same XML.

  • Safari behavior with MPEG-4 compared with other browsers

    Hi,
    Generated a .mov file using Quicktime Broadcaster and iSight. Converted to MPEG-4 using Quicktime(Pro). The .mp4 file plays fine using Quicktime Player on both Windows and MacOSX. Uploaded the .mp4 file to a web server and had the following behavior:
    Safari: displayed as a text file
    Firefox(Mac): gave option to save or open after saving, recognized an MPEG-4 Movie file
    Explorer6/7(Windows): Played fine using QT plugin
    Firefox (Windows): gave option to save or open after saving
    How can I change the Safari behavior to match Firefox or Explorer?
    Colin

    OPen mp4 in Quicktime. Save As QT movie (then has .mov extension). Safari and Firefox open with QT.
    OR
    use the correct html embed (object for IE) tags (see QT apple developer info) QT plays them fine.
    To put a file for download, try zipping it (archive in Finder) then post a link to the zipped file. THe user then just has to unzip it to recover it (haven't tried this yet.

  • Removal of data from 1 table after comparing with other table

    Hi,
    I have 2 table. Both have same primary key i.e. WO_ID. 1st table wrk_ord have no redundant data and the 2nd table wo_audit have few redundant data. Both table are related with WO_ID. Now I want to remove the redundant data from table wo_audit so that the uniq WO would be same in both the table. both the table are very huge. WO_ID table have 31million of record. I ran query
    delete from wo_audit where wo_id not in (select wo_id from wrk_ord);
    this query throw an error ora-01555. I just want to know the how can optimize this query.
    Thanks.

    Hi,
    delete from wo_audit where wo_id not in (select wo_id from wrk_ord);AFAIk, you not removing redundant data, but you are removing the data which does not exists in wrk_ord. Try to check things from business perspective.
    Tune the value of the UNDO_RETENTION parameter, check the the below one
    select max(maxquerylen) from v$undostat;
    - Pavan Kumar N
    Edited by: Pavan Kumar on Apr 8, 2011 1:36 PM

  • Advantages of MAC OS Compared with other OS

    New for MacOS

    Welcome to the world of Apple!
    Start here:
    A Customer Experience Index report from Forrester Research came to the conclusion after studying almost 4,600 computer users' experiences from 2008 and asking them to score the ease of use of their computers, how enjoyable the experience is and whether or not the systems fulfill their owners' needs.
    http://www.appleinsider.com/articles/09/04/17/appletrumps_windows_pc_makers_in_customer_experiencestudy.html
    then Google.

  • Need help as my account and redemption code is under another email that isnt valid i need to speak with an associate please!!

    i purchased my adobe illustrator cc pre paid 12 month subscription today and went entering the redemption code my computer crashed and i also put a type error in the email so i cant access these  please help

    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Bringing back an old password validation rule

    Good afternoon
    On our old 4.6C system, there was a password validation rule that stated the first three characters of the password cannot occur in the same order in the user ID. This rule was removed when we upgraded to ECC 6.0
    While the users hated that rule, that rule was a SOX requirement at our company and I would like to have it back. Before I resort to programming user exits, is there a way to reactivate or at least simulate that rule? I cannot use USR40 because not only does it effect all users on the system, it only works on the second logon and not at validation time.
    If programming user exits like EXIT_SAPLSUSF_001 is my only option, where can I get the password at logon time? From my understanding, SAP does not store this in a system value or even a global variable or table to prevent the recording of passwords. While this is a valid security reason, it would solve the resurrection of this password role through programming.
    Please advise.
    Kind Regards
    Moggie

    Hi Moggie,
    > Pending the result of the contract programmer's research, placing a 3 character prefix of each new user ID in table USR40 is looking like the best option, though I do hate to place that kind of check for all user IDS when only one ID really needs that validation rule.
    A problem with that will soon arise when you have for example 10000 user ID's and want the users to have the opportunity to use strong pass-phrases (not just pass-words). Additionally, the passwords are now case-sensitive but the user ID is not. A pass-phrase for users such as "The_D0g_&_Cat_r_FAT" would go undetected even if you have any "THERON's" in the system, but why should it not be allowed? It's a good one!
    Users will soon notice that only passwords which are very cryptic can be used, and they will start writing them down on Post-It's.
    While that is going on... the "real sinners" who dish out weak or the same initial / reset passwords (like "INIT1234") or administrate the users for whom passwords don't change (like "RFC4PROD") will not have any further "idiot-proof" controls as it is only a warning, which is intentional.
    > If the passwords are cycled regularly, adhere to profile values in the instance that encourage strict password rules, and are kept private and secure, it is not a compliance issue to the auditors.
    There you have it. 
    Tell them that. Even if they do use the first 3 bname characters as the first 3 CAPS_ON password characters, they won't be able to do it for long anyway if the password rules are appropriate...
    Incase you are not aware of it, please also take a look at (and search here and SAP notes for) infos about instance parameter login/password_compliance_to_current_policy (e.g. SAP Note 862989). With appropriate minimum password rules (not overkilled - because the system must still be able to generate compliant wizard-passwords!), you will catch the bigger risks than any one 'BSM?????'s in there somewhere....
    Cheers,
    Julius

  • Custom validation rules

    Using adf/bc with jdev 10.1.3.3. I've created a custom validation rule class according to the instructions in the adf guide. In that class, I've defined just one property, along with its getters/setters. I've registered my rule in the business component project and associated the rule to an entity attribute via the entity object editor. My problem is that I don't see any way for me to set the property/value of the property that's defined in the validation rule class. For example, in the SRDemo app, in the entity editor for ServiceRequest, if you highlight Validation in the left pane then select the AttributeMustExistInViewRowRule for the Status attribute and click the Edit button, you can set various property values that have been defined in the validation rule class. These values appear to then be updated to that entity's xml file. When I'm in my entity object editor and i've assigned a validation rule to an attribute, I can type in the error message text in the Edit Validation Rule dialog, but it says there are no properties to edit! I guess I haven't wired something together quite right? Note, I have not created the customizer and bean info classes for the design time aspect of this stuff. I assume that you do not absolutely need these classes to create and work with a customr validation rule? Anyone know what I'm doing wrong?

    ok, i figured out the problem. The property/value fields in the Edit Validation Rule dialog will not appear until you've actually compiled the custom validation rule class. I had tried to create the validation rule class, register it with the bc project, and assign it to an entity attribute all without first compiling the class. I stumbled upon this 'fix' in jdev's help, which leads me to another question. For the help topic entitled Creating Custom Declarative Validation Rules for Oracle ADF Business Components, the instructions have you create a class that implements JbiValidator and provide implementation for the method vetoableChange, from which you typically call validateValue. The adf guide's example has the custom validation rule class that extends AbstractValidator and implements JboValidatorInterface. In this example, you provide implementation for the validate method. What's the difference between these two approaches and when should I use one over the other? Thanks.

  • How to use bind variables in "query result" "validation rule"

    I have created a validation rule on my entity object. rules=compareValidator attribute=InvoiceNumber operator=NotEquals queryResult=SELECT ...
    In this query, I would like to reference entity attributes from the current instance of the entity when the value fires, for example SELECT invoice_number where invoice_id != :invoiceId
    How can I reference a bind variable inside the query result compare validator validation rule?
    THanks,
    Jerry.

    bump

  • Validation rule revision

    I define a validation rule in OB28, for company code , if account=cost of sales account, cost center not equal to 1100, then issue error message, it works fine for FB50. but when SD perform goods issue in delivery, it block the posting to Cost of goods sold account, and display the error message i defined in OB28
    our cost  account doesn't have cost element, so how can I revise my OB28 validation rule?
    should I write "company code=1200 and (T-code=FB50 or T-code=FB60 or T-code=F-02) and account=cost account" in OB28 condition, can it solve the problem, does goods issue call F-02?
    if I use OKC7, OKC9 co validation rule, should I write "controling area= 1200 and cost element=cost account" in condition, does it also solve the problem?

    hi
    exclude the document type in you validation in table BKPF and field is  Blart  Not equal to document type
    AND BKPF-BLART <> 'RC' 
    ROBIN S PRASAD

  • I do not have many messages but my iphone 5s says messages take up 4.6GB of space.  When comparing with friends who have many more message, less than 1 GB is being used on their phones.  Why are mine taking up so much space and how do I correct that?

    I do not have that many messages on my new iPhone 5s (maybe about 15 conversations and only one or two going back a little ways) yet when I go to Settings, Usage it shows that my messages are taking up 4.6GB of space.  When comparing with others (some who have hundeds of messages) they are using under 1GB for their messages.  Why are mine taking up so much space??

    I found a post with this solution that worked for me - .Do a backup, then download ibackupbot. It lets you look into the contents of that backup. Look in system files>mediadomain>library>sms>attachments. I found a ton of huge files related to long deleted texts. ibackupbot let me delete all that old crap. I then restored the phone with that now modifec backup and Bingo! freed up 9 GB. No problems.
    But note, if you are not technically inclined you probaly don't want to be digging around and deleting back up files. You delete the wrong thing and you could jack up your phone badly. Be careful.

Maybe you are looking for