Application Development and Automation 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: 
Read only

at selection screen

Former Member
0 Likes
584

i have an o/p of 4 fields(name_first,name_last,partner,birthdt)

if we click on particular date(ex: 11.10.1960) of birthdt field in the o/p,it should be taken to another screen result consisting of the above 4 fields where birthdt = 11.10.1960.

AT LINE-SELECTION .

GET CURSOR FIELD F VALUE V.

IF F = 'LT_BUT000-BIRTHDT'.

split v at '.' into v1 v2 v3.

concatenate v1 v2 v3 into var.

date = var.

SELECT * FROM BUT000 INTO table LT_1BUT000

WHERE BIRTHDT = date.

but it is not working.

can any one suggest me.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
552

Hi

Change the concatenate statement

concatenate v3 v2 v1 into var

and check it out...

regards

padma

4 REPLIES 4
Read only

Former Member
0 Likes
553

Hi

Change the concatenate statement

concatenate v3 v2 v1 into var

and check it out...

regards

padma

Read only

Former Member
0 Likes
552

not working

Read only

Former Member
0 Likes
552

thanks

Read only

Former Member
0 Likes
552

Check the format of the date field ..

IF it is MM.DD.YYYY ..

then

split v at '.' into v1 v2 v3.

concatenate v3 v1 v2 into var.

condense var.