screen output without connection to user

Workflow99@aol.com Workflow99 at aol.com
Thu Jan 29 16:46:46 EST 2004


Hi Monica,
 
It could be a call transaction whatever with mode 'A' or 'E' in a background
task. If it is, change the mode to 'N' and follow Stephan's example below to
trap the error.
 
Regards,
Ramki Maley
Workflow Developer, USCBP.
248-613-1287 (C)
 
In a message dated 1/29/2004 3:12:57 PM Eastern Standard Time,
stephan_becker.ext at siemens.com writes:
It usually means you're doing a call transaction and the bdc session is
missing something (here, it's usually configuration of sorts).
 
It helps if you do something like this to put the error messages into
the container, that avoids time-wasting debug sessions:
 
call transaction whatever
     messages into messtab_test1.
 
loop at messtab_test1.
   concatenate messtab_test1-msgtyp
               messtab_test1-msgspra
               messtab_test1-msgid
               messtab_test1-msgnr
               messtab_test1-msgv1
               into collector separated by space.
   move sy-tabix to number.
   concatenate 'MESSAGE' number into name.
   swc_set_element container name collector.
endloop.
 
-----Mensaje original-----
De: M Doe [mailto:monica_sap at hotmail.com]
Enviado el: 29 January 2004 21:06
Para: SAP-WUG at MITVMA.MIT.EDU
Asunto: screen output without connection to user
 
Hello all,
 
I have a question- my workflow is not even starting when the event is
triggered.  When I go in the error logs in trans sm58 I see an error message
" screen output without connection to user"
 
What does this mean?
 
Thanks.
 
Monica
 


More information about the SAP-WUG mailing list