In table  rows , i need to check the date validation of perivous ent'd rows

Hi All,
I'm using adf 11g.
I have a table with add and delete button in jsff. In jsff page , i mean table row have one lov column and date column and enterable inputtext fields .
Conditions 1.lov value , date column and inputext value should be unique . this can be handled by alternate key.
2. if user enters value like
lov value date inputtext
v1 01/02/2011 ipt1
v2 01/02/2011 ipt2
v1 01/01/2011 ipt3 here , lov selected v1 is already selected in first row, i want to validate dat second occurance of v1 with combination date and inputtext should be
unique --- it makes unique with compare to first row .but i have to check second v1 date should be always greater than the first v1's date .
User can add n number of records of keeping date variance , but the same lov value having record , the date should be always less than the perivouse entered row date (same lov value ).
how can i handle this date check . business rules / validation .
thanks in advance .
Edited by: user9010551 on Jun 16, 2011 9:23 PM
Edited by: user9010551 on Jun 16, 2011 11:25 PM

you have to make use of this technique - in memeory filtering
http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/bcadvvo.htm#CEGBEICF

Similar Messages

  • Need to check the data flow from R/3 to BW server.

    Hi BI experts,
    This query is regarding need to check the data flow from R/3 to BW server.
    As of now I have some set of reports which I would need to take up in BW. The requirement is  to go through the list of transaction codes for reports in R/3 and find out if there are already  any existing objects in BW system which I can use for these reports.
    So, can u plz help me.

    Depends what are your Tcode or Reports users run in R/3 and they want the same in BW.Then in BI Content we have Out of the box Delivered reports.You can activate those Load data and use it.
    Gimme T-codes you have I can send you Standard reports in BI or Cube you can get these from.
    ~AK

  • Trans Code to check the Date of Termination in Setup Tables-Very Urgent!!

    Hello BW Gurus,
          I need to check the date of termination I have given while filling up the setup tables to verify when my delta loads would stop running. NPRT transaction code just gives me the time it took to fillup the tables but the date of termination is given as zero's, so please can someone let me know how to see that.
    Thanks in advance,
    Anjali
    Message was edited by: Anjali

    Hi,
    If I understood it right, you wanted to predict when the actual date of termination would occur or you wanted to know what parameter you did input on the job that is now running?
    <b>Case 1:</b>
    As far as I know, that Info cannot exactly be determined since it will depend on various factors e.g. CPU speed, I.O. Speed, Amount of data to be process etc. etc. which I dont think SAP could predict as exact as possible (<i>if ever an option was provided</i>).
    During the early stages of our project, we did that but we base the run time from history. Meaning, we always log (on top of existing <i>SAP Job Logs</i>) the run times in Excel and we somehow use that data to predict the actual Date of Termination.
    <b>Case 2:</b>
    In case you wanted to see the parameter while its running, I have no suggestion but for you to debug the currently running program.
    In <b>SM51</b>, click the Active job and choose menu Program/Mode->Debugging. On the fields on the lower left portion, type <b>RMCSNEUA-DATUM</b> (got this value when you execute the Table Setup, say OLI9BW; Press F1 on the date of termination field) this would give you the actual date you have provided. 
    If I have helped, please grant points...
    --Jkyle

  • How to check the date is initial in the calculated keyfigure

    Hi,
    While calculating the difference between the two dates , i need to check the date is having the values or not in the calucluated key figures .how to achieve this .
    number of days = delviered date -  creation date
    All the dates are key figures
    Regards,
    Raj

    Hi there,
    It depends on what you want to retrieve.
    If you have this:
    day 1 - day 2
    If day 1 is initial, you'll have day 2 as the result of the difference which is correct. If in the other hand day1 is initial you'll have - day 2 as the result. So you just need the ABS() formula to give the absolute value of the difference.
    What exaclty do you want to achieve? only do the formula when both day 1 and day 2 have values? Retrieve always a positive value of the formula no matter if day 1 is initial or day 2 or both?
    Can you give a complete example with values of what's happening and what do you pretend to achieve?
    Diogo.

  • I need to check the information i have into the cloud boy i don't know how to reach it.

    I Need to check the information i've in Icloud but i don't know how to reach it.

    Go to http://icloud.com and log in. Whatever is in iCloud that c an be seen, should be able to be seen from there. Other things may need to be restored directly to a device to be seen though.

  • I did a pre-order on a music album then I did not realize you needed to check the email to get the album so by accident I canceled it now I lost my album please help

    I did a pre-order on a music album then I did not realize you needed to check the email to get the album so by accident I canceled it now I lost my album please help

    In list view, select the album column. To choose which columns appear, select an item on the left side of the window (a playlist, for example), choose View > View Options, and select the information you want to see. You can also Control-click a column heading to select columns to display.
    The column selected determines how tracks are displayed.  For example, clicking the "Name" column displays all tracks in alphabetical order; clicking the "Album" column displays the tracks in album order; clicking the "Date Added" column displays the tracks in the order that they were imported into your library.  Columns also have a disclosure arrow at the right of the column (when selected) that you can click to reverse the order.

  • Need to save the data in mutiple tables

    Dear Experts,
    I need to insert the data ,which is accepted from the user at runtime using table control and also generate automatic number when clicked on the save button the data should be in the database as well.
    I am new to module pool, your help is reqd. The user will be awarded ample points if answered correctly.
    regards,
    Rachel

    Hi Rachel,
    For automatic number generation you need to create number range object using tcode SNRO and then use the foolowing logic.
    *&      Form  GET_NEXT_NUMBER
          text
    -->  p1        text
    <--  p2        text
    FORM get_next_number .
      DATA: w_quant   LIKE inri-quantity,    "dummy
            w_code    LIKE inri-returncode.  "returncode
    To lock the number range object
      CALL FUNCTION 'NUMBER_RANGE_ENQUEUE'
        EXPORTING
          object           = 'ZNUM'
        EXCEPTIONS
          foreign_lock     = 1
          object_not_found = 2
          system_failure   = 3
          OTHERS           = 4.
    To raise the exception to the corresponding exception of
    'NUMBER_RANGE_ENQUEUE'
      IF sy-subrc NE 0.
        MESSAGE e368(00) WITH text-006."'Object is not found'
      ENDIF.                         "IF sy-subrc NE 0
    To get the next number from the object
      CALL FUNCTION 'NUMBER_GET_NEXT'
        EXPORTING
          nr_range_nr             = 'Z2'
          object                  = 'ZNUM'
          toyear                  = '2008'
        IMPORTING
          number                  = l_lbc_next
          quantity                = w_quant
          returncode              = w_code
        EXCEPTIONS
          interval_not_found      = 1
          number_range_not_intern = 2
          object_not_found        = 3
          quantity_is_0           = 4
          quantity_is_not_1       = 5
          interval_overflow       = 6
          buffer_overflow         = 7
          OTHERS                  = 8.
      IF sy-subrc <> 0.
        CLEAR ok_code.
        MESSAGE e368(00) WITH text-006."'Object is not found'
      ENDIF.               "IF sy-subrc <> 0
    To unlock the number range object
      CALL FUNCTION 'NUMBER_RANGE_DEQUEUE'
        EXPORTING
          object           = 'ZNUM'
        EXCEPTIONS
          object_not_found = 1
          OTHERS           = 2.
      IF sy-subrc NE 0.
        CLEAR ok_code.
        MESSAGE e368(00) WITH text-006."'Object is not found'
      ENDIF.              "IF sy-subrc NE 0
    ENDFORM.                    " GET_NEXT_NUMBER
    And for table control logic
    see the below link.
    Table control of Module Pool Program
    Regards,
    Raju

  • How to check the data of an archived table.

    I have archived a table created by me. I have executed the write program for the archiving object in SARA. Now how can check the data of my archived table.

    Hello Vinod,
    One thing to check in the customizing settings is your "Place File in Storage System" option.  If you have selected the option to Store before deleting, the archive file will not be available for selection within the delete job until the store job has completed successfully.
    As for where your archive file will be stored - there are a number of things to check.  The archive write job will place the archive file in whatever filesystem you have set up within the /nFILE transaction.  There is a logical file path (for example ARCHIVE_GLOBAL_PATH)where you "assign" the physical path (for example UNIX: /sapmnt/<SYSID>/archivefiles).  The logical path is associated with a logical file name (for example ARCHIVE_DATA_FILE_WITH_ARCHIVE_LINK).  This is the file name that is used within the customizing settings of the archive object.
    Then, the file will be stored using the content repository you defined within the customizing settings as well.  Depending on what you are using to store your files (IXOS, IBM Commonstore, SAP Content Server, that is where the file will be stored. 
    Hope this helps.
    Regards,
    Karin Tillotson

  • Need to extract the data from the CRM table : SCAPPTSEG

    Hi BW Experts,
    I want to extract the Data from CRM Table "SCAPPTSEG" to BW. The dates are stored in UTC Format.So for getting the date in CET format, we have used the Function Module "IB_CONVERT_FROM_TIMESTAMP".
    I want to create a datasource for extracting the data from "SCAPPTSEG" table and i need to use the function module for getting the date in CET Format.
    Can i achieve this action through Generic Extraction.
    please provide me the steps to achieve this.
    Thanks,
    Shahina.A

    not answered

  • HT5035 I need to check the balance on a gift card. I do not know if it has been used.

    I need to check the balance on a gift card. I do not know if it has been used.

    I just had this issue. The only way to check is to go to iTunes, sign in, click redeem and enter the code. I had a card that my wife swore she used but thought I'd check it anyway. Good thing I did, $50 credit.

  • [svn:bz-trunk] 23143: Certain code needs to check the existence of the class validation validator  (some brokers and other listeners) during message broker init, however the validator was not being created till the very end of the method .

    Revision: 23143
    Revision: 23143
    Author:   [email protected]
    Date:     2011-10-27 06:31:02 -0700 (Thu, 27 Oct 2011)
    Log Message:
    Certain code needs to check the existence of the class validation validator (some brokers and other listeners) during message broker init, however the validator was not being created till the very end of the method.  Promote it to be at the top instead of at the bottom.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/config/MessagingConfiguration.java

    Revision: 23143
    Revision: 23143
    Author:   [email protected]
    Date:     2011-10-27 06:31:02 -0700 (Thu, 27 Oct 2011)
    Log Message:
    Certain code needs to check the existence of the class validation validator (some brokers and other listeners) during message broker init, however the validator was not being created till the very end of the method.  Promote it to be at the top instead of at the bottom.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/config/MessagingConfiguration.java

  • Is there any link between oe_order_headers_all and hz_cust_accounts tables. I need to find the cust_account_id for some order_number. Please help me with this

    Is there any link between oe_order_headers_all and hz_cust_accounts tables. I need to find the cust_account_id for some order_number. Please help me with this

    you can link
    OOH.invoice_to_org_id=CUST.cust_account_id   -- invoice customer
    OOH.sold_to_org_id=CUST.cust_account_id   -- sold to customer
    OOH.ship_to_org_id=CUST.cust_account_id   -- ship to customer

  • How to check the data in a temporary table

    Hi,
    A procedure inserting data into a temporary table , data exists in the table now. so, how to see the data from the temporary table. Is it possible to see from the sqlplus by selecting, right now i'm not getting any data. .thanks Bcj.

    If you are referring to Global Temporary Tables, then the only way to see the contents of the table are to select from the table while connected to the same session that inserted the data into the GTT.
    Please note however that there is not a 1 to 1 correspondence between sessions and users (shcemas). A user may be connected to 1 or more sessions, but it is only the session that inserted the records that will be able to view the records.

  • Need to Make the DATA Load Faster

    Hi
    I need to load the data from the source to the target like 90 tables. The source has 36 million rows in some of the tables it is taking a long time altough I have dropped the indexes on the target. I really need to make it as fast as possible. Following is the code for 1 table that I am currently using. Any Help would be really appreciated.
    INSERT INTO AAA.CHECKHISTORYITEM@db1 (
    OID,
    AMOUNT,
    BANK_DEPOSIT,
    CHECKHISTORYOID,
    CODE,
    FIELD_NB,
    HISTTYPEOID,
    STATUTORY_DED,
    TAXCODEOID,
    VALIDTILL,
    ABBREV,
    CONVERSION_ID,
    DESCRIPTION,
    EXTERNAL_ID,
    ACTIVE,
    CREATEDON,
    CREATOROID,
    DELTAOID,
    MODIFIEDON,
    SCREEN_TRANSACTION_NUMBER,
    SECURITYOID,
    SHARABLE,
    SUBCLASS,
    TARGETUSEROID,
    VERSION,
    VERSION_NUMBER,
    ACM,
    MODIFIEDBYUSEROID,
    cidn)
    (select
    OID,
    AMOUNT,
    BANK_DEPOSIT,
    CHECKHISTORYOID,
    CODE,
    FIELD_NB,
    HISTTYPEOID,
    STATUTORY_DED,
    TAXCODEOID,
    VALIDTILL,
    ABBREV,
    CONVERSION_ID,
    DESCRIPTION,
    EXTERNAL_ID,
    ACTIVE,
    CREATEDON,
    CREATOROID,
    DELTAOID,
    MODIFIEDON,
    SCREEN_TRANSACTION_NUMBER,
    SECURITYOID,
    SHARABLE,
    SUBCLASS,
    TARGETUSEROID,
    VERSION,
    VERSION_NUMBER,
    ACM,
    MODIFIEDBYUSEROID,
    'ABCD from ABCD.CHECKHISTORYITEM);
    commit;

    Is there any trigger on the table you're inserting? You could consider disabling constraints (in case any exists) if you're sure enough of the data you're inserting and no one else "touches" the table while you're working on it.

  • Need to change the date of joining of employee

    Hi All,
    I have gone through some threads similar to this subject an also tried to do changes from PA41 but i am facing some problems during the procedure.
    We have transferred some employees to sap system with their original date of joining and payroll was run from some other date for those employees. So i need to change the date of joining of those employees.
    For example : Below is the line items of one employee from table infotype 0.
    End date Start date Changed on
    22.02.2009 19.02.2007 19.02.2009
    31.03.2009 23.02.2009 19.02.2009
    31.12.2009 01.04.2009 14.10.2009
    31.12.9999 01.01.2010 21.01.2010
    Payroll was run from Feb-09 onwards and i want put date of joining for this employee as 23.02.2009.
    I want to know which date i need to change??...When i am trying to change the first start date i.e. 19.02.2007 to my desired start date, but it is not allowing me to do that as end date is smaller.
    Please tell me how would i change the joining date of employee as 23.02.2009 ?.
    Thanks.

    Try this
    22.02.2009 19.02.2007
    31.03.2009 23.02.2009
    31.12.2009 01.04.2009
    31.12.9999 01.01.2010   take this record form PA30  IT0000 Over View (Shif +  F8)  Copy that record and change the Start date
    as 2302.2010  so  another record will be created
    22.02.2010    01.01.2010
    31.12.9999    23.02.2010
    Just try and let me know

Maybe you are looking for