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

Regd Dialog Programming

gopi_narendra
Active Contributor
0 Likes
515

Hi SDN's,

i clear the value of field on my screen which is under chain endchain. the field is ZES_RFQ-ST_JOBNO, but it gets its old value when it executes the field statement.

chain.

field: ZES_RFQ-ST_EQUIP,

ZES_RFQ-ST_FUNCT_LOC,

<b> ZES_RFQ-ST_JOBNO.</b>

module GET_DATA_STEQ.

endchain.

y is it happening.

Thanks

Gopi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
493

hi

good

clear that particular value before it use

ZES_RFQ-ST_EQUIP,

ZES_RFQ-ST_FUNCT_LOC,

CLEAR ZES_RFQ-ST_JOBNO.

ZES_RFQ-ST_JOBNO.

TRY WITH THIS , IT WILL WORK.

THANKS

MRUTYUN

4 REPLIES 4
Read only

naimesh_patel
Active Contributor
0 Likes
493

Hello,

Change your statement like,

chain.

field: ZES_RFQ-ST_EQUIP,

ZES_RFQ-ST_FUNCT_LOC,

ZES_RFQ-ST_JOBNO.

module GET_DATA_STEQ <b>ON CHAIN-REQUEST</b>.

endchain.

Read only

0 Likes
493

i use tab strips and in sub screen, i have some fields to be displayed based on some validations, but if i chagne the values in main screen the sub screen values remain the same, how do i solve it? urgent please?

Read only

0 Likes
493

Hi Naimesh,

it did not solve the purpose

Read only

Former Member
0 Likes
494

hi

good

clear that particular value before it use

ZES_RFQ-ST_EQUIP,

ZES_RFQ-ST_FUNCT_LOC,

CLEAR ZES_RFQ-ST_JOBNO.

ZES_RFQ-ST_JOBNO.

TRY WITH THIS , IT WILL WORK.

THANKS

MRUTYUN