Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

date delimit functionality when maintaining Z table

Former Member
0 Kudos
170

Hi all,

I have Begin date and End date fields in a Z table and i want to achieve automatic date delimit functionality.

So i have the subscreen area in my screen and called a std program and screen inside the subscreen. I have writen the below coding in the PBO event of my screen.

MODULE DATE_D0001_IF_EXP.

CALL SUBSCREEN DATELIMITS INCLUDING 'SAPLSVIM' '0001'.

" DATELIMITS - name of my subscreen

But when maintaining the table in SM30, the BEGDA and ENDDA field headings are displayed. But those date input fields are not getting displayed.

Can someone tell me why the date fields from the std program, screen are not displayed inside my screen?

Edited by: Shanthi on May 2, 2011 1:59 PM

1 REPLY 1

Former Member
0 Kudos
71

Hi,

There are some imports being done in the program for screen 0001. Based on these values, the screen fields are made visible and invisible etc.


  IMPORT d0001_field_tab
         d0001_status
         x_header TO xheader
         current_date
         date_to_delimit
         date_to_posit
         vim_begdate_name
         vim_enddate_name
    FROM MEMORY ID vim_memory_id_2.

So try doing your validation with the events available in table maintenance,.

Regards,

Harish