Blackberry: SUP: login success notification

Hi all
I'm new to Blackberry and Sybase and I must admit that I'm really hating the lack of info for both...
trying to write a plugin that will allow me to connect and login to my sybase.
I'm currently blocked by this line
SUP101DB.loginToSync("supAdmin", "s3pAdmin");
loginToSync returns void so ... how do I know if I succeeded with my login or not ?
the IOS version of the SUP registers a eventlistener and a callback
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onLoginSuccess:) name:ON_LOGIN_SUCCESS object:nil];
         [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onLoginFailure:) name:ON_LOGIN_FAILURE object:nil];
how can I do the same with Blackberry ?

I am moving further questions to the thread (SUP for Blackberry) JCo unknown type error when using PT_ARQ_REQUEST* RFC as it might move from the original topic of this one. My question concering SAP login with the SUP is answered. I also found another nice explanation that I want to share:
1) SUP user info can be synchronized with LDAP but not synchronized with ERP.
2) SUP uses 1 technical user to connect to ERP
3) SUP uses 2 filter approaches to deliver data from ERP to devices
  A) use u201Eload parameteru201C to filter data from ERP to SUP
  B) use u201Esynchronization parameteru201C to filter data from SUP to devices
either of above parameters can use u201Esynchronizaion keyu201C created in device application
4) u201Esynchronization keyu201C can use device user name/password data
I hope this helps someone else, too =) Thank you for the support!
Edited by: Jenny Bachmann on Feb 8, 2011 9:32 AM

Similar Messages

  • Service Desk NOTIF_CREATE  no more success notification after saving

    Hello experts
    While testing Service Desk before Go-live, the transaction NOTIF_CREATE suddently started to behave abnormaly.
    After fields completion, when the requester presses save and then instead of receiving the successful notification with a message number. The NOTIF_CREATE screen closes and a green arrow can be seen at the bottom of his SAP menu. Looks like OK to the user but creation was not completed successfully.
    In the background, the support message was created with an appropriate number. But many other features like support team determination, automatic workflows, etc. are no more working.
    I tried with different accounts even with SAP_ALL profile, doesn't look to be an authorization thing. I also searched for OSS notes without a clue.
    What do you suggest me?
    François

    Hi,
    I have upgraded to SPS17 and tried with other iBase components without success. I tried in debug mode step by step to see where it was stucked and it's hard to find since no message is returned. Looks like an exception is raised. This happen in the RDSWP_NOTIF_CREATE PROGRAM at line 15. It seems to be an exception of type "2 other". At that precise time, the debugger enters in an endless loop and a yellow exclamation sign is displayed in the status bar. (before it was a green check)
    You talked about reintalling the iBase. The whole iBase with all components? How can I remove the existing iBase and then recreate it and finally have all the components attached as before?
    Thanks,
    Francois

  • How to get list of logged-in users from Flash Media Server in a Flash programm? (Or login/logout notifications)

    Hi there,
    I'm Very sorry for asking this. I guess it's a very basic problem, but I'm very new to Flash and Flash media Server and I need a very fast answer...
    Currently I'm working on a Director project using a flash program which connects to Flash Media Server (I guess version 3, it's quite old). Unfortunately they forgot to make a flash method to send the actual userlist (or a notification when someone logged in or out) to Director. AND, unfortunately, they lost the source code of that flash programm, so I cannot look into it or alter it *sigh*.
    Now I want to do a new flash programm which covers the old one, letting all known methods "pass trough" and building an additional method to gain the user list (or login/out notification).
    How do I get the login information from Flash Media Server? (Would be good if you could provide an idea already for flash code... as I said I'm a tard at flash till now)
    Thank you so much. And I hope you understand my situation asking here...
    Jana

    hparmar : yes, that's what I feared... I hoped it would be possible to tell the server from which application I do need the login information. What a mess.
    Dimo Hristov: thanks for your offer! I already tried decompiling the flash program with the shareware version of Trillix Decompiler. It only decompiled the UI (in a terrible way) but no source code at all. It was the shareware version where I can decompile 2 or 3 programms to test the software. Are you sure the non-free version of Trilix Flash Decompiler will do..?

  • Blackberry's automatic delivery notification encourages spam mail.

    To anyone who is listening, please either disable the Blackberry's automatic delivery notification, or give us Blackberry users the option to change it to manual delivery notification requiring our approval before delivery notification is sent.
    Spammers harvest the email addresses and the automatic delivery notification tells them that they sent spam to a good/valid address.
    My wife and I both noticed that since we started using the Blackberry, the number of spam mail has progressively increased.  Today, I discovered why.  I noticed in the sent mail log, that the Blackberry is sending out delivery notification automatically each time an email is opened/read.  A lot of times, I can't figure out if something is junk until I open up the email.  That's when the Blackberry sends delivery notification.  Sure, the spammers request delivery notification, that's how they can confirm whether their junk mail reached the intended party.  And thus, they harvested a valid email address that they use for the next spam mail.  The Blackberry makes it too easy for the spammer to validate a good delivery email address, and for mail that's being forwarded from a "disposable address" to my real address, now the spammers get to harvest my real email address when the Blackberry includes it in their delivery notification.
    So please, please disable the automatic delivery notification.  Let me decide who I will send delivery notification.
    Thank you in advance!

    ladyv114 wrote:
    How do you disable the automatic delivery notification?
    On BIS, I don't think there is a way; on BES your BES Admin can do this.
    Please also read my post above.
    If you've found a solution through a post; please mark it as a solution.
    If someone's was particularly helpful, give them kudo's!.
    Get busy living, or get busy dying.
    http://blog.port3101.org/hdawg/

  • New scene after login success AS3

    Hi guys,
    I'm really new to actionscript so i have trouble in understanding the code. I tried many ways to go to a new scene after login successful but sadly failed. I followed one of the tutorials on the login part..It works and i'm happy wif it..but currently, it displays only the success message. Instead, i wanna go to a new scene but don't know how. I'll post the code below. Hope u can help ..I have a dateline for this project. Thanks!
    [actionscript]
    package actions {
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.net.*;
        import flash.text.*;
        public class main extends MovieClip {
            public function main ():void {
                submit_button.buttonMode = true;
                submit_button.addEventListener(MouseEvent.MOUSE_DOWN, checkLogin);
                username.text = "";
                password.text = "";
            public function checkLogin (e:MouseEvent):void {
                if (username.text == "" || password.text == "") {
                    if (username.text == "") {
                    username.text = "Enter your username";
                    if (password.text == "") {
                    password.text = "Enter your password";
                } else {
                    processLogin();
            public function processLogin ():void {
                var phpVars:URLVariables = new URLVariables();
                var phpFileRequest:URLRequest = new URLRequest("login.php");
                phpFileRequest.method = URLRequestMethod.POST;
                phpFileRequest.data = phpVars;
                var phpLoader:URLLoader = new URLLoader();
                phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;           
                phpLoader.addEventListener(Event.COMPLETE, showResult);
                phpVars.systemCall = "checkLogin";
                phpVars.username = username.text;
                phpVars.password = password.text;
                phpLoader.load(phpFileRequest);
            public function showResult (event:Event):void {
                result_text.autoSize = TextFieldAutoSize.LEFT;
                result_text.text = "" + event.target.data.systemResult;
    [php]
    <?php
    include_once "dbconnect.php";
    $username = $_POST['username']; //variables from flash
    $password = $_POST['password'];
    if ($_POST['systemCall'] == "checkLogin") {
    $sql = "SELECT * FROM users WHERE username='$username' AND password='$password'";
    $query = mysql_query($sql);
    $login_counter = mysql_num_rows($query);
    if ($login_counter > 0) {
    print "systemResult=Welcome $username!";
    } else {
    print "systemResult=Invalid User!";
    ?>

    You probably want to check the value that it returns and use it to decide whether to go to the next scene or not.
            public function showResult (event:Event):void {
                result_text.autoSize = TextFieldAutoSize.LEFT;
                result_text.text = "" + event.target.data.systemResult;
                if(String(result_text.text).indexOf("Welcome") == 0) {
                       gotoAndPlay(1, "Scenename");
    What the first line does is checks to see if the word Welcome is at the start of whatever is in the textfield (starts at index 0).  If it does, then it issues the command to move to another frame/scene

  • DSN - Success notifications

    Hi,
    I'm in the process of setting up a C350 for the first time, and can't seem to get delivery success notifications to work. I can only find options for soft/hard bounces (which are working) but can't find any options for success notifications. Our old system (Mailsweeper v4.3) was able to generate these.
    Any ideas?
    Thanks,
    Steve.
    ASync OS version 6.1.0-306

    Is positive DSN supported in the IronPort Appliance?
    DSN stands for "Delivery Status Notification". Positive DSN is a standard notification method that is used by the receiving mail server to notify the sender that the message they sent was sucessfully received.
    The IronPort appliance does not support positive DSN based on the following reason. It makes the IronPort appliance vulnerable to Directory Harvest Attack by spammers.
    Microsoft Outlook has the option to track delivery from Exchange to the Ironport appliance. From Outlook, go to [Options > Email Options > Preferences > Tracking Options > Delivery receipt]
    Hi,
    I'm in the process of setting up a C350 for the first time, and can't seem to get delivery success notifications to work. I can only find options for soft/hard bounces (which are working) but can't find any options for success notifications. Our old system (Mailsweeper v4.3) was able to generate these.
    Any ideas?
    Thanks,
    Steve.
    ASync OS version 6.1.0-306

  • ASP login success by authorization

    I am trying to create a login page in ASP where, on login
    success, the the user is directed to one of three separate pages.
    The SQL Table is LogIn
    The user name column is "email"
    The Password column is "password"
    The Access column is "permission"
    (If I create a simpler page where access is restricted by
    permission, then that works. So it would seem that the recordset is
    correctly set)
    Here is the code that I cannot get to work:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="Connections/Fetchit.asp" -->
    <%
    Dim logIn
    Dim logIn_cmd
    Dim logIn_numRows
    Set logIn_cmd = Server.CreateObject ("ADODB.Command")
    logIn_cmd.ActiveConnection = MM_Fetchit_STRING
    logIn_cmd.CommandText = "SELECT * FROM fetchit_admin.LogIn"
    logIn_cmd.Prepared = true
    Set logIn = logIn_cmd.Execute
    logIn_numRows = 0
    %>
    <%
    ' *** Validate request to log in to this site.
    MM_LoginAction = Request.ServerVariables("URL")
    If Request.QueryString <> "" Then MM_LoginAction =
    MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)
    MM_valUsername = CStr(Request.Form("email"))
    If MM_valUsername <> "" Then
    Dim MM_fldUserAuthorization
    Dim MM_redirectLoginSuccess
    Dim MM_redirectLoginFailed
    Dim MM_loginSQL
    Dim MM_rsUser
    Dim MM_rsUser_cmd
    MM_fldUserAuthorization = "Permission"
    MM_redirectLoginSuccess = "ALoginSuccess.asp"
    MM_redirectLoginFailed = "ALoginFail.asp"
    MM_loginSQL = "SELECT email, Password"
    If MM_fldUserAuthorization <> "" Then MM_loginSQL =
    MM_loginSQL & "," & MM_fldUserAuthorization
    MM_loginSQL = MM_loginSQL & " FROM fetchit_admin.LogIn
    WHERE email = ? AND Password = ?"
    Set MM_rsUser_cmd = Server.CreateObject ("ADODB.Command")
    MM_rsUser_cmd.ActiveConnection = MM_Fetchit_STRING
    MM_rsUser_cmd.CommandText = MM_loginSQL
    MM_rsUser_cmd.Parameters.Append
    MM_rsUser_cmd.CreateParameter("param1", 200, 1, 50, MM_valUsername)
    ' adVarChar
    MM_rsUser_cmd.Parameters.Append
    MM_rsUser_cmd.CreateParameter("param2", 200, 1, 50,
    Request.Form("password")) ' adVarChar
    MM_rsUser_cmd.Prepared = true
    Set MM_rsUser = MM_rsUser_cmd.Execute
    If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then
    ' username and password match - this is a valid user
    Session("MM_Username") = MM_valUsername
    If (MM_fldUserAuthorization <> "") Then
    Session("MM_UserAuthorization") =
    CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)
    Else
    Session("MM_UserAuthorization") = ""
    End If
    ' redirect user based on Access level
    If Session("MM_UserAuthorization") = "Admin" Then
    MM_redirectLoginSuccess = "1index.asp"
    ElseIf Session("MM_UserAuthorization") = "Account" Then
    MM_redirectLoginSuccess = "2Index.asp"
    Else MM_redirectLoginSuccess = "3index.asp"
    End If
    if CStr(Request.QueryString("accessdenied")) <> "" And
    false Then
    MM_redirectLoginSuccess =
    Request.QueryString("accessdenied")
    End If
    MM_rsUser.Close
    Response.Redirect(MM_redirectLoginSuccess)
    End If
    MM_rsUser.Close
    Response.Redirect(MM_redirectLoginFailed)
    End If
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form id="form1" name="form1" method="POST"
    action="<%=MM_LoginAction%>">
    <input type="text" name="email" id="email" />
    <input type="text" name="password" id="password" />
    <input type="submit" name="button" id="button"
    value="Submit" />
    </form>
    </body>
    </html>
    <%
    logIn.Close()
    Set logIn = Nothing
    %>

    Are you saying that the code below does not work?
    ' redirect user based on Access level
    If Session("MM_UserAuthorization") = "Admin" Then
    MM_redirectLoginSuccess = "1index.asp"
    Else
    If Session("MM_UserAuthorization") = "Account" Then
    MM_redirectLoginSuccess = "2Index.asp"
    Else MM_redirectLoginSuccess = "3index.asp"
    End If
    if CStr(Request.QueryString("accessdenied")) <> "" And
    false Then
    MM_redirectLoginSuccess =
    Request.QueryString("accessdenied")
    End If
    MM_rsUser.Close
    Response.Redirect(MM_redirectLoginSuccess)
    End If
    MM_rsUser.Close
    Response.Redirect(MM_redirectLoginFailed)
    End If
    %>

  • Display success notifications

    Hi all,
    In an iView created with VC, I use a BAPI to modify some data in an SAP table. Once succesfully done, I want the Iview to display a "Success message". the message doesn't need to be in a popup window. It could be just a usual portal notification, like the error notifications you get if a BAPI would be called with some incorrect input data (kind of status massage in the top left corner of the iview) or like the success notifications of the portal after saving a modified iview.
    After some investigations, I know that error messages from BAPIs are displayed as portal notifications, if the BAPI provides an output table called Return, which has the same structure as the SAP structure BAPIRET2.
    As in succesfull cases no messages are generated, the return structure is not filled and the portal doesn't show any success notification.
    Any ideas to show "success" notifications in spite of that.
    Thanks

    Hi deep,
    To answer your first question: I'm using VC6.0.
    Concerning your suggestion to display notifications, I already considered displaying them in a text field. That is however not so elegant, and I thought there should be a way how to invoke the notification interface of the portal.
    Your idea to use labels is interesting and could be better than the text fields variant I described. I however didn't find a way how to change the content of the label dynamically -> There are no behaviour fields (initialization, computation ...) for labels.
    Thanks.

  • How do i remove blackberry from Login items in lion?

    any idea? I'm trying to remove blackberry device manager from login item but the its checked and greyed out.

    Backup your files to a external data drive and disconnect
    Reboot the computer holding the Shift key down to enter Safe mode, the third party kernel extensions will be disabled.
    Try the BB uninstaller again and/or
    Look in your System/Library/Extensions folder for anything that has the "Blackberry" or "RIM" name in the extension (with .kext at the end of the file) and move it out of the folder.
    You may have to consult their web site for a manual uninstall method. Kext stands for Kernel extension obviously.
    the free Easy Find can help you locate the files in that folder.
    You also can Command r boot into Lion Recovery and install Lion with the
    Restoring OS X 10.5 10.6. 10.7 - simple overwrite OS method
    https://discussions.apple.com/message/16276201#16276201
    That should kick anything out of OS X itself, then it's just a matter of removing anything in the Applicaitons folder.
    If there are remnants still in your user, you can always create a new user and transfer your personal data via the root level/Users/ "shared" folder, once up, then remove the old user.

  • Issue with Blackberry ID login

    Dear team,
    I have updated my Z10 STL100-1 to BB OS 10.3.1.1565.Now I have an issue with BB ID: I type email and password, but there is no action after button "Check" is pressed.
    This issue has strong impact to me: If I cannot to login with my Blackberry ID then I cannot back up my data - messages, contacts and media via BB desktop Software. I saw some suggestions at this Forum to do security wipe, but it will delete all my data. I tried to backup data manually but there is no contacts and messages in these folders, only media files and downloads.
    Please advise me how to solve an issue with BB ID login without deletion of all my data or how to backup data from device to PC (Windows 8.1) in case of further security wipe. 
    Thank you in advance.
    Regards, Sergey.

    Read this for instructions to reset your BlackBerryID password:
    KB26361How to reset a BlackBerry ID password
    Your choices other are:
    --Use another email account to create an entirely new BlackBerryID (with which you will lose access to any purchased apps using the "forgotten" first BlackBerryID, or
    --Find the initial email you were sent to confirm the initial BlackBerryID, and in it is a link to click to cancel and delete the account. Click on that, delete the account and then you can use that same email to create an entirely new account.
    Good luck.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Blackberry user login to download new apps wont recognise my email or password

    Tried to login to blckberry app world but everythime i trt it wont authenticate my email or password, tried changing it but it has now come up with an error msg:  unable to validate the email adress and password combination error id 30601 any ideas?

    Hi
    Have a read at this thread
    http://supportforums.blackberry.com/t5/BlackBerry-Torch/bd-p/torch/page/39
    Blackberry Best Advice - Back-up weekly
    If I have helped you please check the "Kudos" star on the right >>>>

  • Users only login successfully under safeboot, 10.5.8

    I have a large OD deployment with mixed PPC/Intel clients, freshly imaged with 10.5.8. At first login the authentication is fast and successful and any mobile users are delivered home folder data at speed, however for an type of OD client the delay in delivering the final desktop is about 30 minutes, (dock, desktop icons or menu bar). On second login to the same machine the process is sub 60 seconds.
    Summary of investigations so far;
    1.Neither client or server logs state any issues, and I have removed any 3rd party launch daemons, agents or startup items.
    2.Under system level safeboot the login as it at the correct speed, at user level the problem still occurs.
    3.Known good machine not from deployed image experiences the same issue.
    4.If you disconnect ethernet at the long desktop build stage it resolves itself instantly, making me think there is some network call not timing out, these machines have no WAN connection.
    I can only think there is an OS extension not loaded in safeboot causing the problem but I'm unable to track it down. TCP dump tomorrow but was keen to see if anyone has experienced anything similar. We have completed 8 similar deployments this summer and not come any similar issues.
    Thanks in advance.

    Not sure if this is the same thing for me or not, but I am seeing some strangeness in logins too. We can have a full class login just fine, same class the next day cannot login. We are all at 10.5.8, server and client and I have been pouring over server logs to see what the culprit might be. One thing I have seen is this...
    Client application bug: DNSServiceResolve
    This seems to be happening over Airport or rather, that's where we're seeing it. When the slowdown occurs, even putting a machine on 'wire' doesn't seem to make a difference. I have spoken to apple and their suggestion is to re-image the machines. I am thinking that this is a server issue and not a client in need of re-imaging issue.
    I'll post more as I figure this one out.

  • Calendar Notification + Google Apps + Super Admin + Macs + Notifications

    Background: I’m a Google Apps Super Admin which means that I have access to almost everything, including everyone’s calendar.  They show up under “My Calendar”
    Issue: I have a few users under our account. ALL of their calendar’s show up on my account (it’s a super admin thing, cant be removed because that’s the way it is).  My problem is that, I get notification for EVERYONE, for every event… because as far as the system is concerned, ALL of their calendars are my calendar.  This is specifically annoying because every 15/30 mins or hour I get everyone’s notifications on my iPhone, mac, etc.
    No I don’t want to set up another account and set them as admin, it causes too much confusion.
    Please reply if you actually know about resolutions rather than speculations. I’ve had many threads where it went on forever because everyone thought they were an expert (I say this with totally respect).

    This may give you results you seek - if you mainly just want the alerts to stop on your iOS devices
    http://n8henrie.com/2012/12/google-calendar-delegates-and-mountain-lion-calendar /
    I'm also a gApps admin and have had similar issues. USUALLY, I could simply uncheck co-workers calendar listed in 'My Calendars' or 'Other Calendars' ( yes, they can appear in either place, don't ask, it's a Google Admin stupidity) to hide their schedule from my calendar. USUALLY, if i didn't see their schedule, I wouldn't see any alerts on my iOS hardware.
    BUT. One colleague kept showing up no matter what.
    I noticed most alerts I saw were invites, awaiting for me to accept (although I obviously was NOT) so I've tried the following on my iPhone (iOS 7)
    Go into Settings > Mail, Contacts, Calendars
    (scroll down to Calendars section at bottom)
    Turn OFF New Invitation Alerts
    Your mileage my vary.
    I finally decided I don't typically need my co-workers schedule on my iPhone, so I went nuclear and went to my Google – iPhone/iPad calDav settings found at this Link: https://www.google.com/calendar/syncselect and turned off ALL of my co-worker calendar calDav syncing.
    If you DO occasionally need to look at your co-workers schedules, use the iOS google calendar Web App:
    Visit your Google Apps using Safari on your iPhone, iPad, etc.
    Go to the Calendar and
    Add it as a Web App to your iDevice (http://blog.blueleaf.com/how-to-save-your-favorite-website-as-an-iphone-app-vide o/)
    Now when you need to check co-workers schedules – launch your new gCal webApp and scroll to the bottom, click the settings button to choose which co-worker schedule you want to view, save and voila.
    Hope this helps.

  • Gnome automatic login + mail-notification paswords

    I use gnome automatic login (/etc/gdm/custom.conf AutomaticLoginEnable=true) and I use mail-notification with 3 mailboxes. The mailbox passwords are stored in a keyring. When I start the system, mail-notification asks for keyring password 3 times (to check the 3 mailboxes). I have seahorse installed as well and I enabled the option to open keyring when I log in, but nothing changed.
    Is there any solution to avoid entering keyring password for all mailboxes?

    You can have the keyring without a password (run seahorse, rightclick the respective keyring, change password).
    The question is whether it is wise, especially with automatic login.

  • Successful notification, email nonsent

    Hello,
    I use the "Notification" component available in the component palette, then I modify the ns_mail file in the runtime/config folder, when I activate the process that sent the mail, It is successfully sent by the process, but none email is receive.
    I suppose is some problem with my configuration but, if it is the case, why the process finish with success?
    which could be the cause of my problem?
    thanks.

    I presume that you have modified the values of "Default" email Account like this:
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>Oracle BPM</FromName>
    <FromAddress>YOUR EMAIL ADDRESS</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>OUTGOING SERVER</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>INCOMING SERVER</Server>
    <Port>143</Port>
    <Protocol>imap</Protocol>
    <UserName>maneesh.grover</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">PASSOWRD</Password>
    <UseSSL>false</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    And if yes then in your notification Activity, the email account name has to be Default. And please double check you specify your correct email id.

Maybe you are looking for

  • SPROXY and Push Data into BW

    I try to use scenario from the "How to push Data From XI into BW" guide. (https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21dfa9929c9) My inbound interface is based on RFC message. I try to produce on

  • User role assignments deleted in CUA child systems

    Hi All, i have the following problem newly started CUA from one newly created client in development. According the setup guide from SAP and best Practices in SCN. RFC's all OK users in RFC are Service users, as dialog users are requested by system se

  • Party Configuration

    Hi My scenario: SAP ECC -> SAP PI -> Web Service -> B2B Gateway In SAP ECC we 20 the partner is created as V02 (same as B2B trading partner name) of type "SP". When the IDOC reaches PI it fails showing the error in moni as "Party and Service not defi

  • Why my 2009 desktop with OS Maverick keep shutting down by itself

    Why my 2009 desktop using OS Maverick keep shutting down by itself?

  • I phone is freezeing

    My I phone 3Gs sometimes when i try to work on it ,i found it with black screen with no responed,at the same time if i try to call my number from another phone it give me ringing tune(on the other phone not I phone) the problem happen 2-3 times in on