cancel
Showing results for 
Search instead for 
Did you mean: 

How to transfer the internal table data to a table in the Adobe Interactive

Former Member
0 Kudos

Hi Experts,

I am not able to get the data in the adobe form from an internal table.

I need to put the data in individual fields in the adobe form.

I'm working on Adobe Interactive form developed in WDP ABAP.( I have successfully config the ADS in my server.)

Action:

1. There are 1 table in the Adobe Interactive form((Adobeform)created by the 'sfp' t-code.

a) create a interface with a structure(A_STRU).

b) create a form with the interface.

c) In the layout of the form, drag a table to the form.

d) Binding the table to the A_STRU.

e) Binding the fields of the table to the fields of the structure.

2. Create a view -


first_view in the WDP ABAP.

3. In the first_view, there is a Interactiveform ( named "adobe_form" ) to be binding the Adobe Interactive form (Adobeform).

4. Type the code in the wddoinit of the first_view for bindding the internal table to context of the adobe interface.

......

DATA lo_nd_z_php_form_pay TYPE REF TO if_wd_context_node.

DATA lo_nd_g_context TYPE REF TO if_wd_context_node.

DATA lo_el_g_context TYPE REF TO if_wd_context_element.

DATA ls_g_context TYPE wd_this->element_g_context.

  • navigate from <CONTEXT> to <Z_PHP_FORM_PAY> via lead selection

lo_nd_z_php_form_pay = wd_context->get_child_node( name = wd_this->wdctx_z_php_form_pay ).

  • navigate from <Z_PHP_FORM_PAY> to <G_CONTAIN> via lead selection

lo_nd_g_context = lo_nd_z_php_form_pay->get_child_node( name = wd_this->wdctx_g_context ).

lo_nd_g_context->bind_table( result_payslip ).

.....

5. run the wda, I find the nothing data to be displayed in the adobe form.

6. But I can transfer a string parameter from wda to adobe form. I don't know how to transfer data in the table?

Pls help me out.

Thanks & Regards,

Tao

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, experts,

I have solve the problem.

Thanks a lot.

Best regards,

Tao

Former Member
0 Kudos

Hi Wang,

Please let me know how you solved your question.

Points will be rewarded.

Thanks,

Arun.

Former Member
0 Kudos

Hi ,

Check the test appliation 'WDR_TEST_ADOBE', you may get some idea..

Best regards,

tao