cancel
Showing results for 
Search instead for 
Did you mean: 

How to display SO10 text with Dynamic Name in ADOBE Form ?

Former Member
0 Kudos

Dear Experts,

I need your expertise,

I have developed an Adobe form and my requirement is, i wanted to display

standard text(SO10) with dynamic textname. And i wanted this text object to be displayed

in a internal table feild.

Here my text object name is combination of inovice number and item number.

eg. code

G_R_TIN_NUM-TDOBJECT = 'TEXT'.

G_R_TIN_NUM-TDID = 'ST'.

G_R_TIN_NUM-SPRAS = SY-LANGU. "G_R_VBDKR-SPRAS_VKO."

data: l_f_inv type string,

l_f_item type string.

loop at l_t_invtab into l_r_invtab.

l_f_inv = l_r_invtab-inv_num " invoice num

l_f_item = l_r_invtab-posnr

concatenate l_f_inv l_f_item into G_R_TIN_NUM-TDOBNAME.

<***** other logic***>

endloop.

i wanted to update and display it in form through another table whose one of the feild is standrd text content.

i tried with read text FM but ,the problem is i am undable to display entire text as it saved in the SO10.

In the form i want to display like below table (has 2 rows and 4 columns)

-


|

inv num

item num description

amount


5000

1

EXDELFO

1000

OHIO

JAPAN

CREDIT


5000

2

NEWYORK

US

EXEMNERG

45667

ATLANTA


here text objname is 50001 and 50002 and in 50001 first description and 50002 secnd description saved.

Dear Experts please help as it is very very urgent.i tried my best but dont have time to do an r&d.

Thanks in advance.

Sagar

Accepted Solutions (0)

Answers (1)

Answers (1)

madhu_vadlamani
Active Contributor
0 Kudos

Hi ,

wanted to update and display it in form through another table whose one of the feild is standrd text content

Can you explain some more clearly.Do you want to display the text or some thing else.

Regards,

Madhu.

Former Member
0 Kudos

Hi Madhu,

The mentioned code is in driver program, now i wanted to display the table data in the FORM LAYOUT

as showed below,

here inv num item num description and amount are table fields which is to be displayed on the layout.

and the description is to be taken from SO10 with text name as combination of inv_num and item num ( in short it is dynamic)

-


inv num

item num description

amount


5000

1

EXDELFO

1000

OHIO

JAPAN

CREDIT AMOUNT


5000

2

NEWYORK

US

EXEMNERG

45667

ATLANTA