cancel
Showing results for 
Search instead for 
Did you mean: 

How to define the logistics in view table

Former Member
0 Kudos
77

I create a view table and it contains the date period 'Start time ' and ' End time'.

Now I create the test data like below:

Start time End time Text

2005/01/01 2005/10/12 test 1

2005/02/28 2005/12/31 test 2

The both two date period contains date '2005/08/01',How can I do to avoid to input the repetition period?? In other word , When I input the repetition period ,the system will popup a error message! that is what I want to do...but...I don't really know how to do ....please help me...thanks all.

View Entire Topic
andreas_mann3
Active Contributor
0 Kudos

Hi,

sample to change your maint. dialog:

1) PAI:

    CHAIN.
      FIELD ztab-enddate.
      FIELD ztab-startdate.
      module check_date  ON CHAIN-input.
    ENDCHAIN.

2) include your coding from my 1st post

in an include

Andreas