PI alert  email body generating  incorrect URL for message monitering

Dear  Friends,
I need some light on the following problem, really appreciate your inputs and help
1.)
From the Runtime Work Bench, we are getting email into company out look express when there is an error in interface execution . It is  working good.
But  in side email content , we are getting URL Link for message moniter to view the failed PI message  in RWB, this url is not working to display the failed message because of space before message id.
Can you please help me to know,  at run time where this URL gets generated in the email, or where we can correct this URL  in PI ?
2 .)  In development and quality  the URLs generated are completely different  other than host, port.
IN COMPANY OUT LOOK EXPRESS EMAIL AS FOLLOWS:
From: RUNTIME WORKBENCH SERVICE [mailto:XIRWBUSER Company.com]
Sent: Sunday, November 20, 2011 11:48 AM
To: TestUser1;TestUser2
Subject: PI Message Failure XID: SI_CRMXIF_PARTNER_SAVE_M03_To_CustGenericModel_In_Create ;BusService_GM
Importance: High
Alert ID: ##24685##
Date:  20.11.2011 _ 11:47:41
System:  XID 200
Error Category:
Error Code:  OUTBINDING.CO_TXT_OUTBINDING_NOT_FOUND
Adapter Error:  No receiver agreement found for sender ,BusService_GCOM to receiver ,BS_SAP_CRM_
Message ID:  A9F89891139F11E1C22D0000065C4DE6
Sender Service:  BusService_Test
Sender Interface:  SI_CRMXIF_PARTNER_SAVE_M03_To_CustGenericModel_In_Create
Receiver Service:  BS_SAP_CRM_PCA
Receiver interface:  SI_CRMXIF_PARTNER_SAVE_M03_To_CustGenericModel_In_Create
Adapter Type:
Rule Name:  Alert Rule for Customer Interfaces Inbound
Message Monitor http://abcc.sap.compugra.com:8010/sap/bc/gui/sap/its/webgui?~transaction=*SXI_SHOW_MESSAGE MSGGUID=A9F89891139F11E1C22D0000065C4DE6
Quality Environment  url:
Message Monitor http://abcc.sap.compugra.com:51000/mdt/index.jsp?objectName=type=XIAdapterFramework&messageid=005056B0001F02DFB2FABF97C45A9DB3
Thanks and Regards.
Suraj

Dear Rajesh,
The following are the exchange profile parameters for AFW, RWB.
Appreciate your immediate help.
Adapter Framework
parameter name                                                              value
com.sap.aii.adapterframework.serviceuser.language   EN
com.sap.aii.adapterframework.serviceuser.name         XIAFUSER
com.sap.aii.adapterframework.serviceuser.pwd           *********
Runtime Work Bench
parameter name                                                           value
com.sap.aii.rwb.server.centralmonitoring.httpport      8043
com.sap.aii.rwb.server.centralmonitoring.httpsport    @com.sap.aii.rwb.server.centralmonitoring.httpport@
com.sap.aii.rwb.server.centralmonitoring.name
com.sap.aii.rwb.server.centralmonitoring.r3.ashost    abcc.sap.compugra.com
com.sap.aii.rwb.server.centralmonitoring.r3.client      200
com.sap.aii.rwb.server.centralmonitoring.r3.group
com.sap.aii.rwb.server.centralmonitoring.r3.mshost
com.sap.aii.rwb.server.centralmonitoring.r3.r3name
com.sap.aii.rwb.server.centralmonitoring.r3.sysnr     43
com.sap.aii.rwb.serviceuser.language                       EN
com.sap.aii.rwb.serviceuser.name                             XIRWBUSER
com.sap.aii.rwb.serviceuser.pwd                               ......
Thanks.
Suraj.

Similar Messages

  • Generate HTTPS url for external candidate

    Hi,
    I am using Webdynpro for erecruitment. I can generate web page for http service from se80 and through sicf service but cant generate https.Kindly help.
    Regards
    PTiwari

    Hi Roman,
    I have tried that earlier but i got this error :
    An error occurred during a connection to sapboe1.XYZ.com:8004.
    SSL received a record that exceeded the maximum permissible length.
    (Error code: ssl_error_rx_record_too_long)
    With Http page opens fine and works too but not after i change protocol to https. In the  hrrcf_a_startpage_ext_cand service of
    WebDynpro under Logon Data Tab is Standard & Internet User with Procedure : standard.
    Under Error pages the Protocol is :Logon Via Https.
    Edited by: poonamrtiwari on Mar 9, 2010 8:10 PM

  • How to set Email Body in srw.add_parameter(myPlist,'MESSAGE'....

    Hi, i have created following procedure to send email using event driven Publishing API,
    it works fine, i have using "message" and "body" in add_parameter ,but it send email with no body/message,blank email body.
    Please help out how to set email body....
    im using
    - AS 10g(10.1.2)
    - Windows Server 2003
    --procedure
    CREATE OR REPLACE PROCEDURE testemail
    is
    myPlist SRW_PARAMLIST;
    myIdent SRW.Job_Ident;
    myStatus SRW.Status_Record;
    BEGIN
    --srw.start_debugging;
    myPlist := SRW_PARAMLIST(SRW_PARAMETER('',''));
    srw.add_parameter(myPlist,'GATEWAY','http://myserver:7778/reports/rwservlet');
    srw.add_parameter(myPlist,'SERVER','myrepserver');
    srw.add_parameter(myPlist,'REPORT','D:\Reports\abc.rdf');
    srw.add_parameter(myPlist,'USERID','abc/xyz@mydb');
    srw.add_parameter(myPlist,'DESTYPE','mail');
    srw.add_parameter(myPlist,'DESFORMAT','PDF');
    srw.add_parameter(myPlist,'DESNAME','[email protected]');
    srw.add_parameter(myPlist,'SUBJECT','Test Mail');
    srw.add_parameter(myPlist,'MESSAGE','This is test email');
    srw.add_parameter(myPlist,'FROM','[email protected]');
    myIdent := srw.run_report(myPlist);
    myStatus := srw.report_status(myIdent);
    --srw.stop_debugging;
    end;
    /

    1. Current work flow :-In web site the user have to register themselves in the web site and enters his details along with user id, password and email id. Once user
    is registered then he will login with his user id and password. The user id is picked from login control and that set in “SPWeb.CurrentUser” as user id and system uses "Membership.ValidateUser" method to Authenticate user for login. 
    2. New Requirement: we would like to facilitate the user to login with Email id as well as user id. 
    Problem: 
    We replaced "Membership.ValidateUser" method to our own method to Authenticate user with email id/user id and password. 
    When user is login with user id and password it is working successfully but in the case of email id and password –“the email id is picked from user control and set as
    "HttpContext.Current.User.Identity.Name" but we are not getting “SPWeb.CurrentUser” and it shows null value.” 
    We are able to get user id from database using email id of user. Please help us how we can set user id in "SPContext.Current.Web.CurrentUser".
    Mohan Prakash

  • Generating an IDOC for Message type PROJECT in Change pointer?

    Hi,
    I am trying to generate an IDOC. for the Message Type PROJECT(Actually this msg. type PROJECT is for BAPI method) in CHANGE POINTERS but it is possible Error is coming, is there any other method to use the message type in change pointer technic.
    Thanks,
    Vinayak,
    Message was edited by: vinayaga sundaram

    Hi Vinay,
    Had a similar requirement few days back..
    What we did was to do a multimapping of 1:N where N = N1 and N2, N1 is the Idocs which you are doing today, N2 is the set of invalid records...
    Now we have written this as a file and then created another interface which will pick the file and based on the name of file we decided the To address. We have used mail package and this interface (file to mail ) was made as a generic one so that it can be used across many interfaces...
    filename and To address relationship was maintained as a value mapping in ID... You can have a thought of this approach and try to send the invalid records as a mail rather than alert.
    Regards
    Suraj

  • BI Publisher how to make email body not be a attachment (message.txt)

    I am using Oracle Business Intelligence Publisher Release 10.1.3.4 Part Number E12602-01 with OBIEE 10g. When I schedule a BI pub PDF report send via email, my text in "BODY" text area shows up as an attachment (message.txt) not in the email body. How can I solve this. We don't need bursting.
    Thanks in advance!

    jordansydney wrote:
    I have literally tried everything! read all the forums! I need an actual solution!
    If everything has been tried, there is nothing more to try.  Just give up. 
    Or Troubleshooting FaceTime and iMessage activation issues

  • Imported 40,000 emails - what does "updating color for messages mean"

    I have just imported 20 MBOX files from my outlook 2011 - a fair amount of emails!!
    But I'm finding that when I click onto the folders, I am getting nothing in teh preview initially sometimes and... some of the folders begins some kind of scan? progress in activity panel say: "updating color for messages"
    Any idea of what is going on? I am new to Mail 4.5...
    I will probably be upgrading tomorrow to lion, so perhaps it won't do this anymore after that?

    ok thank you.
    on another note, does rules actually work? you see I have all these Mail Boxes in Mail now. and I set up a rule so one of my guy's emails goes into their folder when hey send me an email and then when I send to them? but its just not happening? see:
    Any ideas?

  • Email Body is an Attachment for Outlook

    Hello, for some reason when a user sends an email the body is put into an attachment for Outlook 2007 users. Has anyone experienced this before? And any solution for this?

    I see this too. Mac OS X 10.6.4, all the latest updates, Send Windows Friendly attachments selected and I attach at the end of the body text. ATT files appear on Outlook. Apparently this has been going on for years. APPLE needs to fix this immediately. This is extremely embarrassing to Apple as well as Mac users, it's almost as bad as iPhone 4 problems, in that every time it happens it is seen by another person as well as the original Mac user.

  • My daughter's iPod won't verify her email which she would use for messaging

    MY daughter's iPod will not verify her email address to use for her messaging

    iOS: Troubleshooting FaceTime and iMessage activation
    FaceTime, Game Center, Messages: Troubleshooting sign in issues

  • How do I set up my iPhone to show message alerts on my locked screen only for messages sent by my contacts?

    iPhone now is able to show you messages received even though the screen is locked. This is time efficient. But I do not want to see messages on the locked screen from people who are not in my contacts list. I tried going to settings>notifications>messages> but only saw view in lock screen for all messages. Is there a way to see messages on the locked screen from people only in my contact list? I appreciate it.

    Which adaptor? What kind of LCD?
    Normally, all you have to do is attach the appropriate cable to your laptop, connect it to your other monitor/screen, and make sure the monitor is powered, turned on, and has the correct input (if it has multiple inputs). For example, a monitor might have DVI and VGA, and an "input switcher" to select which one you want.
    Matt

  • Pbm with document name while generating URL for created document

    Hi Gurus,<br>
    <br>
    When we upload a document and generate the URL for that document, and then while we paste the same in the explorer window to access it, I was able to see the dialog asking me whether to save or open the document with the <B>actual document name</B>.<br>
    <br>
    But, when I create a document using the template which we uploaded in SOLAR_PROJECT_ADMIN, and then generate the URL for that document, and then when I paste it in the explorer window to access it, the dialog now asks me to save or open the document, but it is not with the name of the <b>actual document</b>, but with the name of the <b>template</b>. <br>e.g <b>Business_Blueprint_template</b>.<br>
    <br>
    Can anyone say why such a problem? and how to solve it.<br>
    <br>
    Useful answers will certainly be greatly appreciated.<br>
    <br>
    best regds,<br>
    Alagammai.<br>

    Hi Gerry,
    try content matrix it gives you free 25 GB and it keeps metadata
    http://www.metalogix.com/Products/Content-Matrix/Features.aspx
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • Generate URL for survey

    Hi,
    I have created a survey (using the survey suite). I have saved and activated the survey and now I want to generate a URL for the survey. In the pop up that appears I have to fill in a "get file" and a "Send file". What should be filled in here? Are there any other steps that need to be done before a URL can be generated?
    Please help.
    Kind regards,
    Els

    HI Els
    In the Survey Suite, you have a Repository Custuminzing Bottom (My Systen is down to check the exact name), there you have to create a XML's Parameter, depending if you are going to wotk with HTTP or HTTPS.
    You have to download one of the standard files, and with a XML editor, you can create a new one with your server URL.
    When my system goes uo, o tell you more detail.
    Best Regards

  • Problem In Generating Survey URL

    Hi Experts,
    I have Created Questionarie in Survey Tool for CRM(7.0), Saved and Activated the Survey. I am trying Generate the URL for that i have selected Get Option and Send Option as bsp but when i selected Get File and Send File it is showing Blank means I am unable to select the files, hence not able to crete URL for the Survey. Please Help me that where i am missing. Kindly Help me with Process Steps
    Your Help is highly Appreciated and Rewarded
    Thanks,
    Satish
    Edited by: Prasanna Satish on Jun 28, 2010 1:36 PM

    Please follow the below steps.......
    <br>
    Access the activity using one of the following navigation options:
    <br><br>
    <b>Transaction code</b>     CRM_SURVEY_SUITE<br><br>
    <b>SAP CRM IMG menu</b>     Customer Relationship Management  Transactions  Settings for Leads  Questionnaires for Leads  Define Questionnaires<br><br>
    <b>Creating XML Parameter File for CRM system</b><br><br>
    1.From the application toolbar, choose Survey Repository.<br>
    2.Open the tree structure Survey Repository - Parameter XMLs - bsp.<br>
    3.Select the standard parameter file CRM_SVY_BSP_SYSTEMPARAM.XML with double-click and choose Export (F8).<br>
    4.Rename the file, for example, to: CRM_SVY_BSP_SYSTEMPARAM_<systemID>_<client>.XML.<br>
    5.Save the file to your local PC..<br>
    6.Open the XML file with a suitable editor tool..<br>
    7.Maintain the following coding, entering your host server, port, and client:.<br>.<br>
    ?xml version="1.0" encoding="UTF-8" ?
    SurveySystemParam Action="http://<hostserver>:<port>//sap/bc/bsp/sap/crm_svy_server/survey.htm?sap-client=<client>" " Method="post" Enctype="application/x-www-form-urlencoded" AccessURL="http://<hostserver>:<port>//sap/bc/bsp/sap/crm_svy_server/survey.htm" IncludeStylesheetInOutput="true" /> .<br>.<br>
    In order to identify the respective host server and HTTP port of your CRM system,  open the ICM Monitor (transaction SMICM) in your CRM system. .<br>.
    From the menu, choose Goto -- Services. .<br>
    In the HTTP entry, you can find the data for the relevant host server and port..<br>.<br>
    8.Save and close the XML file..<br>
    9.In the CRM Survey Repository, select folder Survey Repository  Parameter XMLs  bsp..<br>
    10.From the application toolbar, choose Import (F7) to import the modified XML file from your local PC..<br>
    11.Double-click on the imported file and choose Check (Ctrl+F5). If the check is successful, you can continue; otherwise, check your coding as described in step 7..<br>.<br>
    <b>Creating Survey URL</b>.<br>
    12.Choose Back (F3) to get back to the Survey Suite..<br>
    13.In the list of applications, open the component Leads..<br>
    14.Select the appropriate questionnaire used for customer information request (e.g., BP_INFORMATION_EN) with double-click..<br>
    15.Choose   Generate URL (CtrlShiftF1)..<br>
    16.In the dialog box, select the following values using input help:.<br>.<br>
    <b>Field name    User action and values</b>.<br>
    Get Option           bsp.<br>
    Get File          CRM_SVY_BSP_SYSTEMPARAM_<systemID>_<client>.XML.<br>
    Send Option          bsp.<br>
    Send File          CRM_SVY_BSP_SYSTEMPARAM_<systemID>_<client>.XML.<br>.<br>
    17.Choose Generate URL (F6)..<br>
    18.Choose Test URL (F2)..<br>
    19.Copy the generated survey URL from field Survey URL..<br>
    Edited by: MSVKRI on Aug 24, 2010 2:27 PM

  • 2 dif URLs for dif Workbooks from a single query

    hi experts... first of all i donno whether this question belong to bw side or portal side...
    my problem is:
    i have single query with 10 workbooks.
    i need to embed these workbooks in our
    portal(bw report iview).
    my requirement is to supply URLs for all of these workbooks to portal team, so as to enable them to embed workbooks...
    while im trying to generate URLs for all workbooks,
    it is just generating only one same URL for all workbooks.
    i found that we can generate URL only to query default view, from our BEx side..
    anybody can help me that how to generate different URLs for different workbooks based on a single query.
    this is not a portal issue...
    i shud supply proper URLs for each workbook.
    hope i can get a solution from experts...
    thank u all
    nithin

    Go through the following link
    http://help.sap.com/saphelp_nw04/helpdata/en/4d/f3fa40badbf36fe10000000a1550b0/content.htm
    I hope this helps.
    Best Regards,
    Kiran

  • Generating relative URLs in 12.1.3 menus

    Does anyone know if it is possible to get R12.1.3 to generate relative URL for all menu items?
    The new AJAX based menus are returning absolute URL for all menu item links.
    If this is the wrong forum please let me know
    thanks

    Hi,
    ERROR: I/O or zip error while attempting to read entry oracle/xdo/parser/schema/XSDIdConstraintTable$NodeTable.class in zip This error indicates one of the following:
    - Permission are not set correctly, so please verify the permissions -- See (Note: 339762.1)
    - The file is corrupted or missing, and you would need to find the file and copy it to the appropriate directory -- See (Note: 299723.1, 299964.1, 343639.1, 746167.1) for examples
    If none of the above helps, I would suggest you log a SR.
    Thanks,
    Hussein

  • Trouble generating administrative URL.

    We are using the code samples to generate the URL for access to iTunes.
    Here is the URL generated by the C# code we adapted:
    https://deimos.apple.com/WebObjects/Core.woa/Browse/mdc.edu.42credentials=Admini strator%40urn%3Amace%3Aitunesu.com%3Asites%3Amdc.edu&time=1162997978&signature=2 CF0C0613CA70B3D342B6D80D42EF3B085EFB3458F1E0961CAD312BB5BCE3E2F
    From what we can tell, it is well formed. We are using the example provided in the iTunes U Administrator's Guide, page 21.
    https://deimos.apple.com/WebObjects/Core.woa/Browse/Example.edu.42
    credentials=Administrator%40urn%3Amace%3Aitunesu.com%3Asites%3Aexamp
    le.edu&identity=%22JaneDoe%22+%3Cjanedoe%40example.edu%3E%28jdoe%2
    9+%5B42%5D&time=1147136717&signature=597c304e90fb62067c7e3fa57fe824e
    77997dd8aa96649366c5fc59104074744
    One difference is the "Identity" parameter... what (if anything) would we use in this instance?
    Here's the message we're getting:
    Not Found
    The requested URL /WebObjects/Core.woa/Browse/mdc.edu.42credentials=Administrator%40urn%3Amace%3A itunesu.com%3Asites%3Amdc.edu&time=1162997978&signature=2CF0C0613CA70B3D342B6D80 D42EF3B085EFB3458F1E0961CAD312BB5BCE3E was not found on this server.
    Any ideas on where we should start troubleshooting?
    Thanks.
      Windows 2000  

    A couple of things:
    1. Try appedning the debug string that Apple sent you with your site admin credentials. It is of the form "abc123". Just have your code stick it in right after the site URL ... that is just after "...Core.woa/Brwose/mdc.edu" (so you'd have "...Core.woa/Browse/mdc.edu/abc123?credentials..."). Last time I read Apple's iTunes U documentation, it didn't say explicitly how to use the string, but that's what you need to do. When you send a URL like that, Apple will show you a page that says how it is interpreting your iTunes U URL. This page is very helpful in determining what's wrong with your URL.
    2. When I was working on our site, I would compare what my code generated with what Apple's code generated (credentials that are generated within a ninety second time frame are usually the same). I got so frustrated doin this that I decided to create an app that would make it simpler. If you would like to try out my code, it is here:
    http://itunes.uic.edu/itunesuaccess.html
    This code generates a URL using the C code Apple provided (so it produces the same URL as Apple's shell script does ... because the shell script requires that you compile the C code in Apple's examples).
    Hope this helps.
    MacBook Pro   Mac OS X (10.4.8)   I lied. I'm running Leopard

Maybe you are looking for

  • [Q] Oracle Spatial Java Class Library: classes missing ?

    Hello ! We are using Oracle 9.2.0.4 with Spatial features and we'd like to use the Java Library to get access to the object Geometries. We have downloaded the Spatial Java Library at: http://www.oracle.com/technology/software/products/spatial/index.h

  • Publisher 6.5 - unable to expand Rich Text Editor window

    Hello, We upgraded from publisher 6.2 to 6.5. Now when we go the Rich Text Editor - we cannot vertically expand the window. That option is gone. The problem is we have some content pages that are long, our content editors cannot view the whole screen

  • Any Photographers out there? Looking for "Mac" workflow!

    I am looking to see if there are any photographers out there that would like to share their workflow. Like Download, to Aperture, to iphoto, to storage Do you keep your photos in folders or Aperture? How do you keep the copyright in the EXIF data but

  • Script to make texts bold or italic

    I saw someone suggested the following code to meet the need: var app = new Illustrator.Application(); var doc = app.ActiveDocument; var bold = doc.CharacterStyles["Bold"]; var italic = doc.CharacterStyles["Italics"]; var frame = doc.TextFrames[0]; bo

  • Can anyone provide the VI of current measurement for Agilent34901A channel21 and 22?

    I want to measure the current by the Agilent34901A channel21 or 22. The HP34901A installed on the Agilent34970A is connected to the computer via GPIB Bus. Does anyone have the subvi for this measurement?