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

Error: Screen output without connection to user

nila_ms
Product and Topic Expert
Product and Topic Expert
0 Likes
26,090

Hi,

I am trying to add a new mime object using the following call:

CALL METHOD mime_repository->put

EXPORTING

i_url = url

i_content = lv_file_content

i_check_authority = ' '

i_language = sy-langu

i_suppress_package_dialog = 'X'

EXCEPTIONS

parameter_missing = 1

error_occured = 2

cancelled = 3

permission_failure = 4

data_inconsistency = 5

new_loio_already_exists = 6

is_folder = 7.

While executing this i am getting a dump. The error reported is: Screen output without connection to user.

Can anybody help me out in solving this issue.

Thanks in Advance,

Regards,

Nila

Hi,

I am trying to add a new mime object using the following call:

CALL METHOD mime_repository->put

EXPORTING

i_url = url

i_content = lv_file_content

i_check_authority = ' '

i_language = sy-langu

i_suppress_package_dialog = 'X'

EXCEPTIONS

parameter_missing = 1

error_occured = 2

cancelled = 3

permission_failure = 4

data_inconsistency = 5

new_loio_already_exists = 6

is_folder = 7.

While executing this i am getting a dump. The error reported is: Screen output without connection to user.

Can anybody help me out in solving this issue.

Thanks in Advance,

Regards,

Nila

5 REPLIES 5
Read only

Former Member
0 Likes
11,660

This error is usually output when making a RFC call to a function. The RFC user is usually of type 'system', rather than 'dialogue', and the function is trying to output information to a screen, but this is not possible for a non dialogue user.

Is this program being called remotely ?

Read only

nila_ms
Product and Topic Expert
Product and Topic Expert
0 Likes
11,660

Hi Paul,

Thanks a lot for your suggestion.

While running this program in the developmen system, it is running and I am able to upload the file/image to the mime repository.

But when I run the same program in the test system, I am getting the above mentioned error.

Regards,

Nila

Read only

0 Likes
11,660

Sounds like it could be an authorisation issue, does you userid in dev and test have the same authorisation profiles ?

Read only

nila_ms
Product and Topic Expert
Product and Topic Expert
0 Likes
11,660

Hi Paul,

Actually the problem was with the authorization only. Also, in test system we were trying the suppress the dialogue for entering the transport request. Hence, we are not able to go further with mime repository and so have moved to attachements for uploading pictures.

Thansk for your suggestions

Regards,

Nila

Read only

Former Member
0 Likes
11,660

Hello,

We encounter the same issue, and found it was a credit block; so we solved through VKM3.

Regards,