Invalid recipient list

Hi,
I'm new to Advanced Queueing and i did everything by the book.
i created a queue table, queue, started the queue and i enqueued a message via PL/SQL stored procedures.
now i want to listen to my queue via an a java class. I got this from an oracle documentation..
aq_sess = AQDriverManager.createAQSession(db_conn);
agt_list = new AQAgent[3];
agt_list[0] = new AQAgent(null, "aqadmin.ches_q",0);
ret_agt = aq_sess.listen(agt_list, 120);
but i always get a JMS-145 Invalid recipient list exception
i've already specified a recipient list on my message properties when i enqueued my message. i even specified the right subscribers.
what am i doing wrong?? please help!
Thanks
Chesca

no need to help me, i already got it.

Similar Messages

  • Invalid recipient address - while sending mails

    Hi Experts,
    I am trying to send a PDF form as a mail attachment from my SAP R/3 server (version ECC 6.0)
    Using the following code:
    PARAMETER : p_addr TYPE adr6-smtp_addr DEFAULT  'ashish.shah xyz.com'.
    *"Look up the generated function for the Book Flight Form
    DATA : l_name TYPE funcname.
    TRY.
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = 'Z_CUST_BOOK_FLIGHT_FORM'
          IMPORTING
            e_funcname = l_name
          EXCEPTIONS
            OTHERS     = 0.
      CATCH cx_fp_api_repository.                           "#EC NO_HANDLER
      CATCH cx_fp_api_usage.                                "#EC NO_HANDLER
      CATCH cx_fp_api_internal.                             "#EC NO_HANDLER
    ENDTRY.
    DATA : l_outputparams TYPE sfpoutputparams.
    *"Start form processing
    l_outputparams-getpdf = 'X'.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = l_outputparams
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        OTHERS          = 5.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *" Call the generated function for the Book Flight Form
    DATA : fp_docparams TYPE sfpdocparams,
           reservedonly TYPE bapisbodat-reserved,
           booking_data TYPE bapisbonew,
           fp_result    TYPE fpformoutput.
    fp_docparams-fillable = 'X'.
    fp_docparams-langu = sy-langu.
    CALL FUNCTION l_name
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        reserved           = reservedonly
        booking_data       = booking_data
      IMPORTING
        /1bcdwb/formoutput = fp_result
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3
        OTHERS             = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    DATA : pdf TYPE fpformoutput-pdf.
    pdf = fp_result-pdf.
    *"End the form Processing session
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *"Create and send the email
    DATA : bcs_exception TYPE REF TO cx_bcs.
    TRY.
    *"Add text to the email body
        DATA : l_subject      TYPE so_obj_des,
               l_mailtext     TYPE bcsy_text,
               l_mailtext_row TYPE soli.
        l_subject = 'Trip Creation Form'.
        CONCATENATE 'Please fill out the form and return it to:'
                    'ashish.shah xyz.com'
                    INTO l_mailtext_row.
        APPEND l_mailtext_row TO l_mailtext.
    *"Create the email document
        DATA : document   TYPE REF TO cl_document_bcs,
               num_rows   TYPE i,
               textlength TYPE so_obj_len.
        DESCRIBE TABLE l_mailtext LINES num_rows.
        num_rows = num_rows * 255.
        MOVE num_rows TO textlength.
        document = cl_document_bcs=>create_document(
                     i_type    = 'RAW'
                     i_text    = l_mailtext
                     i_length  = textlength
                     i_subject = l_subject ).
    *"Add ataachment
        DATA : attdoctype TYPE soodk-objtp,
               atttitle   TYPE sood-objdes,
               attsize    TYPE sood-objlen,
               pdftab     TYPE solix_tab.
        attdoctype = 'pdf'.
        atttitle = 'CreateFlight'.
        attsize = XSTRLEN( pdf ).
        pdftab = cl_document_bcs=>xstring_to_solix(
                    ip_xstring = pdf ).
        document->add_attachment( EXPORTING i_attachment_type = attdoctype
                                            i_attachment_subject = atttitle
                                            i_attachment_size = attsize
                                            i_attachment_language = sy-langu
                                            i_att_content_hex = pdftab ).
    *"Create persistent send request
        DATA : send_request TYPE REF TO cl_bcs.
        send_request = cl_bcs=>create_persistent( ).
    *"Add document to send request
        send_request->set_document( document ).
    *"Get sender object
        DATA : sender TYPE REF TO cl_sapuser_bcs.
        sender = cl_sapuser_bcs=>create( 'A146861' ) .
    *"Add sender
        CALL METHOD send_request->set_sender
          EXPORTING
            i_sender = sender.
    *"Create recipient
        DATA : recipient TYPE REF TO if_recipient_bcs.
        recipient = cl_cam_address_bcs=>create_internet_address(
                                                  p_addr ).
    *"Add recipient with its respective attributes to send request
        send_request->add_recipient( EXPORTING i_recipient = recipient ).
    *"Set send immediately
        send_request->set_send_immediately( 'X' ).
    *"Send document
        send_request->send( ).
        COMMIT WORK.
        WRITE: 'Email coantaining the Interactive form was sent'.
      CATCH cx_bcs INTO bcs_exception.
        DATA : ex_msg TYPE string.
        ex_msg = bcs_exception->get_text( ).
        WRITE: 'Caught exception.', ex_msg.
    ENDTRY.
    I get a Mail sending failure notification in my SAP Businesss work place, with the title "Cannot be sent: Trip Creation Form " With status as :
    Status for Recipient ashish.shah xyz.com:
         No delivery to ashish.shah xyz.com, invalid recipient address
    I have entered the correct Email IDs, but still getting this error.
    Can you guys help?
    Regards,
    Ashish Shah

    Hi Ravi,
    I have @ in all the email IDs in my code , but i have removed it from this post.
    It seems SDN has implemented some new check - where in it checks for Email IDs in the post and gives error when any email ID is encountered.
    Can you now spot anything else , which could be the cause for the status as Invalid receipient?
    Regards,
    Ashish Shah

  • #550 5.1.3 STOREDRV.Submit; invalid recipient address #SMTP# Exchange 2010

    We have one user who is getting undeliverable bounces for some emails they send. These bounces look like
    Delivery has failed to these recipients or groups:
    The format of the e-mail address isn't correct. A correct address looks like this:
    [email protected] Please check the recipient's e-mail address and try to resend the message.
    With the header:
    #550 5.1.3 STOREDRV.Submit; invalid recipient address #SMTP#
    Original message headers:
    Received: from xxxxxxxx ([2002:80e8:f350::80e8:f350]) by
     xxxxxxx ([::1]) with mapi id 14.02.0298.004; Wed, 5 Sep
     2012 11:30:27 +0100
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: xxxxxx
    To: xxxxx
    Subject: FW:
    Thread-Topic: Economics
    Thread-Index: Ac2GxPSoAC0JPealQhq9mnAnQxf7SQEiPj2gAADJepA=
    Date: Wed, 5 Sep 2012 11:30:27 +0100
    Message-ID: <7D0ACDCF411B26429DC7355744AEFF9A02D8AC@xxxxxx>
    Accept-Language: en-GB, en-US
    Content-Language: en-US
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator: <7D0ACDCF411B26429DC7355744AEFF9A02D8AC@xxxxxxx>
    MIME-Version: 1.0
    X-Originating-IP: [xxx.xxx.xxx.xx]
    So far most of the bounces for this user appear to be to the same domain which takes the format xxx.ac.uk our domain is yyy.xxx.ac.uk
    We are currently using Exchange 2010 having migrated in the last month from 2003. We are also using an Edge server.
    Thanks for any help

    On Wed, 5 Sep 2012 11:52:43 +0000, Rah33 wrote:
    >I have noticed that so far the addresses that have bounced back are Mail Contacts that have been created on the Exchange server. If you go into the properties for one of these contacts you get a message saying that some properties are invalid and will
    be replaced with defaults. It also prompts to update the contact.
    If you update the contact does it eliminate the problem?
    What properties are invalid? It isn't uncommon to find "alias"
    properties that contain spaces or other characters that earlier
    versions (i.e. pre-Exchange 2007) allowed.
    Rich Matheisen
    MCSE+I, Exchange MVP
    --- Rich Matheisen MCSE+I, Exchange MVP

  • "No recipients are set in [Recipient List]" -- Can't print to pdf!

    Since I upgraded to 10.5.7 a few weeks ago, I can't print to pdf. It seems that the upgrade might not be compatible with the workflows. I generated a new workflow as plug in, same error message:
    "No recipients are set in [Recipient List]"
    I am at a loss. Any help welcome.
    Charles

    The problem seems to be with the 10.5.7 update. I couldn't get my MF4150 to work without that error msg. When I looked at the info on my driver (system preferences/print&fax/options&supplies/driver) it appeared I was using the fax driver all of a sudden, but with the option to switch drivers greyed out.
    I then reset the printer system (right click the printer) then reinstalled the drivers, still no luck. So finally, I removed both drivers (select "-" underneath the printer list) and then added a driver manually (select "+") and selected canon mf4100 series (as opposed to canon mf4100 series (fax)) and waited a minute or so for the computer to find the driver. When it found it, the option "print using" defaulted to "fax," so I instead picked "UFR II printer," clicked add, made it my default, and it worked fine. (I later also added the fax driver, not sure why i need it but what the heck). Hope this helps.

  • Problem with "subject" & "recipient list" of reporting agent

    Hi,
    I've created an exception in a query & assigned "E-mail notification" for this exception in reporting agent. I entered "Subject" field and assigned "distribution list" to "Recipient list" field in the e-mail notification attributes.
    After transporting, reporting agent & package, everything moved fine but subject & recipient fields are not carried over to Quality system. both the fields are blank.
    What is the problem?
    How do I make sure that these 2 fields are also transported to Quality & Production rather than manually maintaining them again in the target system.
    Appreciate any help.
    Hari Immadi
    http://immadi.com
    SEM BW Analyst
    Message was edited by: Immadi Hari

    Hari,
    Did you ever get this resolved?  We are currently experiencing the same problem.
    Thanks,
    Bill Lomeli

  • Problem when creating standard recipient list for all documents

    Dear All,
    I am facing 'NO_RELATION_EXIST' dump issue. So i am following note 509191 provided by SAP. At the moment i am trying 2nd  option i.e. for automatic document distribution, i am trying to create one standard recipient list for all documents to be released. However when i try creating a recipient list it does not allow me to create for a particular document type. As i can see there are 2 important key fields Document no and Document type. But i want to create only for a document type. The reason for that is this document type is for a PR attachment. So as soon as a PR gets released by the final approver this distribution should happen, irrespective of document number.
    Please let me know if this is possible. I would like to apologize if it's too simple of a question as i am an ABAP person and have no knowledge in DMS. And there is no DMS consultant whom i can approach.
    Thanking in advance.
    Regards,
    Saud

    ...distribution should happen, irrespective of document number...
    This wouldn't be feasible because documents are identified in the recipient list by both,the document number and document type and hence are mandatory inputs.
    Regards,
    Pradeepkumar Haragoldavar

  • BCS Using a Recipient list

    Hello,
    I use the BCS Interface to send a mail to SAPOffice and external recipients ... .. While doing this with the API functions it was possible to set a predefined SAPOffice recipient list.
    Can I do this also with the BCS functions and how ?
    Thank you,
    Sven

    Figured it out.

  • Dynamic Recipient List in 3.1

    Currently burst reports to about 200 buyers using Cognos ReportNet.
    It looks like this dynamic recipient list is the way to go. 
    How would I get started in making this happen in 3.1?

    Is this a question specific to the BusinessObjects Enterprise SDK Publication API, or on use of the Publication feature in the Enterprise portals?
    Sincerely,
    Ted Ueda

  • "No recipients are added in [Recipient List]."

    I cannot print to a printer or save / email a PDF.
    I get this error : "No recipients are added in [Recipient List]."
    I just upgraded from Tiger to Leo 10.5.5 on an iBook G4.
    Any ideas? Search brings back nothing

    Thanks Pahu
    For some reason the iBook was selecting the Leopard Built in Canon Fax Driver rather than the USB one.
    I got round this by deleting all the drivers in the library/printers/canon and then reistalling the driver specific for the MF4100 (from canons website).
    Then instead of using the pref panel / printers I added the printer through the print dialogue.
    Tehn it worked
    Sigh!

  • Recipient List in Reporting agent Disappearing

    Hi,
      We are in BW 3.5 SP5. I created a Reporting agent alert and wanted to send E-mail to the Recipients. The Recipient list is disappearing. It is not keeping the List.
    Have any one experienced the same problem?
    Thanks,
    Trinadha

    Dear Rasim,
    thanks for your reply. I've already had a look at page you suggest and it sounds quite confusing to me.
    In "Recipient Type Recipient List" paragraph I read that one can send messagge to internet address or sap logon name and 'When using the SAP Business Workplace, additional recipient types are available'. So it seems one cannot use share distribution list for sending mail (even thought we can't send SAP Office messagge from reporting agent using it).
    Is that right?
    In "Recipient Type Role" paragraph it seems possible to send message using role as to identify Users; but what kind of message is it talking about? I can olny send Sap Office messagge, not mail.
    Had you experienced it?
    bye. Laura

  • What is - error = 109: Invalid property list

    I have a Launchagent that is not launching and I have found an error on the console but I cannot find out what the error is telling me so I would be grateful for any help.
    29/11/2014 07:36:17.492 com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.502.100007.Aqua) Could not parse plist: path = /Users/MacName/Library/LaunchAgents/OmniFocusDailyMaintenance.plist, error = 109: Invalid property list
    Thank you for any help

    Means that the OmniFocusDailyMaintenance.plist is invalid. Contact the developer.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.1), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Mail autocomplete still brings up deleted "previous recipient" list addresses

    Even after I delete old and incorrect emails from the "previous recipient" list, those incorrect emails still autocomplete when I compose a new Mail Message.  How do I get rid of those addresses?

    Try:
    Delete an Email Address from Auto-Complete in Mac OS X Mail
    To remove an email address from the auto-complete list in Mac OS X Mail:
    Start typing the recipient's address or name in a new message.
    Select the desired address from the auto-complete list as if you'd compose an email to them.
    Click the small down arrow in the recipient.
    Select Remove from Previous Recipients List from the menu.
    http://email.about.com/od/macosxmailtips/qt/Delete_an_Email_Address_from_Auto_Co mplete_in_Mac_OS_X_Mail.htm

  • My previous recipient list appears to be corrupt. When I attempt to access a particular entry to list or delete it hangs. Is there a way to just clear the history?

    My previous recipient list appears to be corrupt. When I scrool through the list it hangs on one partially completed entry. I assume the system crashed some time back and left this entry. It is a little inconvienent at times since some addresses won't auto complete. Any suggestions on deleting entries or clearing the whole list since using the normal procedure to delete an entry just hangs.  Thanks

    What happens if you select all then click "Remove from List"?

  • Invalid recipient address in SMTP Configuration

    Hi,
    We are unable to send mails to external email id. We have two domains xyz.com and abc.com. We have installed all SAP server with xyz.com as FQDN. All email addresses in the company having user#xyz.com and user#abc.com for the same person. If we send mail from outlook to both user#xyz.com and user#abc.com the mail is reaching the recipient.
    But from SAP if we want to send mail to both mail only goes to user#xyz.com. If we want to send to user#abc.com the we am getting  error "No delivery to user#abc.com, invalid recipient address"
    In Scot we have given xyz.com in default domain. In the connection we have tick the Node in use, then given Mail Host as mailserver.xyz.com, Mail port as 25, Code Page 0 No Conversion into Other Character Set and in the Address Area we have given *.
    In Instance profile we maintained,
    icm/server_port_2                           PROT=SMTP,PORT=25000
    icm/server_port_1                           PROT=SMTP,PORT=0
    is/SMTP/virt_host_1                         *.25000
    is/SMTP/virt_host_0                         .
    icm/server_port_0                           PROT=HTTP,PORT=80$$
    ms/server_port_0                            PROT=HTTP,PORT=81$$
    Please let me know what is missing in my configuration. I think configuration is correct as mail is going to xyz.com but not going to abc.com
    Note: I user # instead of @. If I use @ in SDN forum then it treated as email id which is not allowd.
    Regards,
    Sudip

    Ok, this sounds like a relay issue. Messages sent to the local domain does not require authentication while when going to external domains they need to be authenticated, as SAP does not support SMTP username/password authentication you need to maintain the IP Address of your SAP system on the Relay Agent of your SMTP Server so they can be delivered. Talk to your Mail Team,
    Also, If you have configured your system to use xyz domain, you should maintain the master data of the users (SU01) with an email account of the same domain.
    Regards
    Juan

  • Bcc or hide recipient list

    When distributing a form using acrobat 9 pro through acrobat.com I am unable to hide my recipient list from other recipients. It would be nice to have a hide list option or bcc line when filling out the (to:) form when distributing a form using acrobat.com within acrobat distribute form wizard.

    Why you need to hide it
    nha khoa
    gia cong nhua
    nhua
    gia cong chi tiet
    khuon mau
    thiet ke web
    do dung cho be

Maybe you are looking for

  • Voice Memo App Downgraded?

    The Voice Memo capability seems to have been downgraded in the new OS. I can't seem to pause during playback and go back to listening where I paused if I leave the app. What happened? The trim feature has also been downgraded so that you can't fast f

  • Title in SP01?

    Hi Experts, User is executing particular BackGround Job in SM36 for a month at a particular time. When user is checking in SP01 Spool,Title is displaying as Automatic Generated                                              (Ex:LIST1S  <Report><User_Na

  • Apple replacement unlocking question

    I recently got given a replacement phone from Apple for one that had a smashed screen and decided that I would give this to my partner as a gift.  However, she is on a different network than me and even though I thought all Apple iPhone's were unlock

  • Comparison with a float field

    Hi, I have to compare two float fields, one fetched from database and one passed as importing parameter. Now, i get "0.1" as a value in importing parameter for comparison. and the same is stored in the database, i.e. "0.1". But when I put a select qu

  • The JS statement document.getElementsByName("PME_data_myfield").item(0).outerHTML=""; is not executed in FF, it works on all other browsers

    I am trying to remove an input element from a form with the above statement in a javascript. It works on all other browsers but not on FF. It does not generate an error either. Instead of removing the item it just seems to be ignoring the statement.