‎2008 Jun 02 7:16 AM
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
‎2008 Jun 02 7:23 AM
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
‎2008 Jun 02 7:23 AM
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
‎2008 Jun 02 7:24 AM
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
‎2008 Jun 02 7:28 AM
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
‎2008 Jun 02 7:28 AM
Hi,
Both statements create lines or work areas (that can store single record only) of type declared.
Reward points if helpful.
Regards,
Mukul
‎2008 Jun 02 7:26 AM
Hi,
There is no difference between the two.They are just work areas of the type cpcdt_tsk_interf_tab_type
Thanks
Nayan
‎2008 Jun 02 7:26 AM
the two variables have the same structure but can hold different data.