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

Tables

Former Member
0 Likes
954

hi,

Data:

wa_e_tsk_data_interface type line of cpcdt_tsk_interf_tab_type,

wa_e_tsk_data_interface_temp type line of cpcdt_tsk_interf_tab_type.

What is the difference between these two variables.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
932

hi,

both the statements will have single row with same structure as cpcdt_tsk_interf_tab_type.

there is no difference except 2 diff workareas having same structure.

regards,

madhu

6 REPLIES 6
Read only

Former Member
0 Likes
933

hi,

both the statements will have single row with same structure as cpcdt_tsk_interf_tab_type.

there is no difference except 2 diff workareas having same structure.

regards,

madhu

Read only

0 Likes
932

hi,

Data:

wa_e_tsk_data_interface type cpcdt_tsk_interf_tab_type,

wa_e_tsk_data_interface_temp type line of cpcdt_tsk_interf_tab_type.

What is the difference between these two variables.

Sorry I had typed it wrong.

In the second variable there is line of.

Thanks

Read only

0 Likes
932

Hi Keyur,

considering CPCDT_TSK_INTERF_TAB_TYPE as a table, the impact on the two variables is the same.

They both shall act as structures to hold a single row of the table CPCDT_TSK_INTERF_TAB_TYPE .

Reward points if this helps,

Kiran

Read only

0 Likes
932

Hi,

Both statements create lines or work areas (that can store single record only) of type declared.

Reward points if helpful.

Regards,

Mukul

Read only

Former Member
0 Likes
932

Hi,

There is no difference between the two.They are just work areas of the type cpcdt_tsk_interf_tab_type

Thanks

Nayan

Read only

Former Member
0 Likes
932

the two variables have the same structure but can hold different data.