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

problm on selection screen

Former Member
0 Likes
450

1) I have one selection screen field which is meant for only display what will i do?

2) if i run bpth bdc,call transaction in different sessions i got the message 'successful' wat does mean?

3) how do u test a sap-script?

4) wat is standard text? use?

5) in scripts,i have 10 address lines there were blanks in bw rows how can i avoid?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
427

Hello,

<i>1) I have one selection screen field which is meant for only display what will i do?</i>

Ans.


Loop at screen .
if screen-name = 'field name to be only in display mode'.
screen-input = 0.
endif.
modify screen.
endloop.

<i>2) if i run bpth bdc,call transaction in different sessions i got the message 'successful' wat does mean?</i>

Ans. It meand that the data has been successfully uploaded.

In call Transaction u can check this using BDCMSGCOLL.

<i>3) how do u test a sap-script?</i>

Go to NACE Transaction and attach the Output type , form routine nad script name to the type.

<i>4) wat is standard text? use?</i>

It is used to display statis texts in the scripts.

It is created in SO10 Tcode.

<i>5) in scripts,i have 10 address lines there were blanks in bw rows how can i avoid?</i>

In the paragraph format under the standard attributes you have an option CHECK BOX called No Blank Lines. Just check that option.

Regards,

Deepu.K

2 REPLIES 2
Read only

Former Member
0 Likes
427

Hi

1) I have one selection screen field which is meant for only display what will i do?

You can modify it in the initialization event. using Loop at screen..Modify ..endloop.

2) if i run bpth bdc,call transaction in different sessions i got the message 'successful' wat does mean?

Means all the records of the file were uploaded to Database tables successfully.

3) how do u test a sap-script?

By executing it using the Right transaction code

and see the Output of the Print preview and test it.confirm it.

4) wat is standard text? use?

Texts which are maintained in SO10 Transaction with some Text ID and language.

5) in scripts,i have 10 address lines there were blanks in bw rows how can i avoid?

Create a Paragraph format of your own and in the attributes of it check the BOX (NO BLANK LINES) and use that pragraph format, so it will skip all blank lines.

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
428

Hello,

<i>1) I have one selection screen field which is meant for only display what will i do?</i>

Ans.


Loop at screen .
if screen-name = 'field name to be only in display mode'.
screen-input = 0.
endif.
modify screen.
endloop.

<i>2) if i run bpth bdc,call transaction in different sessions i got the message 'successful' wat does mean?</i>

Ans. It meand that the data has been successfully uploaded.

In call Transaction u can check this using BDCMSGCOLL.

<i>3) how do u test a sap-script?</i>

Go to NACE Transaction and attach the Output type , form routine nad script name to the type.

<i>4) wat is standard text? use?</i>

It is used to display statis texts in the scripts.

It is created in SO10 Tcode.

<i>5) in scripts,i have 10 address lines there were blanks in bw rows how can i avoid?</i>

In the paragraph format under the standard attributes you have an option CHECK BOX called No Blank Lines. Just check that option.

Regards,

Deepu.K