Facebook messages and posts on Skype

I use Skype on my desktop and enjoy reading my Facebook posts and message from Skype.  I recently upgraded my Skype to the latest version and now I am only seeing posts and messages from my Facebook friends, but none from the Facebook pages that I follow.  Anyone else experiencing this?  Does anyone know if there is there a way to rectify this to get all messages?

And solved! At least, my version of the problem is solved: if one whitelists (under the Privacy tab in the custom privacy settings, click "Exceptions..." and add each domain to allow or allow for session) cookies from facebook.com, fbcdn.net, and fbsbx.com (permanent or session), the messaging system works. It doesn't appear to actually try to set any cookies from anywhere other than facebook.com, but the ability to do so automatically if it tries is apparently important for the FB messaging platform.

Similar Messages

  • Write the DDL to construct the Facebook User and Post tables in SQL server.

    Write the DDL to construct the Facebook User and Post tables in SQL server. You need to populate the user table with the user’s information provided as in Figure 1 and additional attributes may be needed for the design. Use the ID in the excel file to
    identify the other Facebook user. For example ID 612831408762037 is David Cunliffe. Import the excel sheets to SQL server and then write effective SQL to merge the two tables into the Post table. Ensure the relationship is maintained between entities. Submit
    the SQL scripts that create the database and tables, import the excel sheets and populate the tables such that one can re-create the database and tables with all the data by running the script.

    IF NOT EXISTS(SELECT * FROM sys.databases WHERE name = N'xxx')
    CREATE DATABASE xxx
    GO
    USE xxx
    IF EXISTS(SELECT * FROM sys.tables WHERE name = N'DAVID') 
    DROP TABLE DAVID;
    IF EXISTS(SELECT * FROM sys.tables WHERE name = N'JOHN')
    DROP TABLE JOHN;
    IF EXISTS(SELECT * FROM sys.tables WHERE name = N'NEWDAVID') 
    DROP TABLE NEWDAVID;
    IF EXISTS(SELECT * FROM sys.tables WHERE name = N'NEWJOHN') 
    DROP TABLE NEWJOHN;
    IF EXISTS(SELECT * FROM sys.tables WHERE name = N'USER') 
    DROP TABLE [USER];
    IF EXISTS(SELECT * FROM sys.tables WHERE name = N'POST') 
    DROP TABLE POST;
    CREATE TABLE DAVID(
    ID VARCHAR(100),
    [MESSAGE] VARCHAR(MAX),
    [TYPE] VARCHAR(MAX),
    CREATED_TIME VARCHAR(MAX),
    UPDATED_TIME VARCHAR(MAX),
    SHARES_COUNT VARCHAR(MAX),
    [COUNT OF LIKES NAME] VARCHAR(MAX),
    [COUNT OF COMMENTS MESSAGE] VARCHAR(MAX),
    LINK VARCHAR(MAX),
    NAME VARCHAR(MAX),
    [DESCRIPTION] VARCHAR(MAX),
    CREATE TABLE JOHN(
    ID VARCHAR(100),
    LINK VARCHAR(MAX),
    NAME VARCHAR(MAX),
    [DESCRIPTION] VARCHAR(MAX),
    [TYPE] VARCHAR(MAX),
    CREATED_TIME VARCHAR(MAX),
    UPDATED_TIME VARCHAR(MAX),
    [COUNT OF LIKES NAME] VARCHAR(MAX),
    [COUNT OF COMMENTS MESSAGE] VARCHAR(MAX),
    [MESSAGE] VARCHAR(MAX),
    SHARES_COUNT VARCHAR(MAX),
    EXECUTE (N'BULK INSERT DAVID FROM ''' + 'datapath' + N'david.csv''
    WITH (
        CHECK_CONSTRAINTS,
        CODEPAGE=''ACP'',
        DATAFILETYPE = ''char'',
        FIELDTERMINATOR= '','',
        ROWTERMINATOR = ''\n'',
        KEEPIDENTITY,
        TABLOCK
    EXECUTE (N'BULK INSERT JOHN FROM ''' + 'datapath' + N'john.csv''
    WITH (
        CHECK_CONSTRAINTS,
        CODEPAGE=''ACP'',
        DATAFILETYPE = ''char'',
        FIELDTERMINATOR= '','',
        ROWTERMINATOR = ''\n'',
        KEEPIDENTITY,
        TABLOCK
    SELECT * FROM DAVID
    SELECT * FROM JOHN
    CREATE TABLE NEWDAVID(
    POST_ID VARCHAR(100),
    [USER_ID] VARCHAR(100),
    CREATED_DATE VARCHAR(MAX),
    CREATED_YEAR VARCHAR(MAX),
    CREATED_MONTH VARCHAR(MAX),
    UPDATED_DATE VARCHAR(MAX),
    UPDATED_YAER VARCHAR(MAX),
    UPDATED_MONTH VARCHAR(MAX),
    [MESSAGE] VARCHAR(MAX),
    SHARES_COUNT VARCHAR(MAX),
    [COUNT OF LIKES NAME] VARCHAR(MAX),
    [COUNT OF COMMENTS MESSAGE] VARCHAR(MAX),
    NAME VARCHAR(MAX),
    [TYPE] VARCHAR(MAX),
    LINK VARCHAR(MAX),
    [DESCRIPTION] VARCHAR(MAX),
    CREATE TABLE NEWJOHN(
    POST_ID VARCHAR(100),
    [USER_ID] VARCHAR(100),
    CREATED_DATE VARCHAR(MAX),
    CREATED_YEAR VARCHAR(MAX),
    CREATED_MONTH VARCHAR(MAX),
    UPDATED_DATE VARCHAR(MAX),
    UPDATED_YAER VARCHAR(MAX),
    UPDATED_MONTH VARCHAR(MAX),
    [MESSAGE] VARCHAR(MAX),
    SHARES_COUNT VARCHAR(MAX),
    [COUNT OF LIKES NAME] VARCHAR(MAX),
    [COUNT OF COMMENTS MESSAGE] VARCHAR(MAX),
    NAME VARCHAR(MAX),
    [TYPE] VARCHAR(MAX),
    LINK VARCHAR(MAX),
    [DESCRIPTION] VARCHAR(MAX),
    INSERT INTO NEWJOHN
    SELECT SUBSTRING(ID, CHARINDEX('_', ID) + 1, LEN(ID) - CHARINDEX('_', ID)) AS POST_ID, 
      SUBSTRING(ID, 1, CHARINDEX('_', ID) -1) AS [USER_ID], 
      SUBSTRING(CREATED_TIME, 1, 10) AS CREATED_DATE,
      SUBSTRING(CREATED_TIME, 1, 4) AS CREATED_YEAR,
      SUBSTRING(CREATED_TIME, 6, 2) AS CREATED_MONTH,
      SUBSTRING(UPDATED_TIME, 1, 10) AS UPDATED_DATE,
      SUBSTRING(UPDATED_TIME, 1, 4) AS UPDATED_YEAR,
      SUBSTRING(UPDATED_TIME, 6, 2) AS UPDATED_MONTH,
      [MESSAGE], SHARES_COUNT, [COUNT OF LIKES NAME], [COUNT OF COMMENTS MESSAGE], NAME, [TYPE], LINK, [DESCRIPTION]
    FROM JOHN
    INSERT INTO NEWDAVID
    SELECT SUBSTRING(ID, CHARINDEX('_', ID) + 1, LEN(ID) - CHARINDEX('_', ID)) AS POST_ID, 
           SUBSTRING(ID, 1, CHARINDEX('_', ID) -1) AS [USER_ID], 
      SUBSTRING(CREATED_TIME, 1, 10) AS CREATED_DATE,
      SUBSTRING(CREATED_TIME, 1, 4) AS CREATED_YEAR,
      SUBSTRING(CREATED_TIME, 6, 2) AS CREATED_MONTH,
      SUBSTRING(UPDATED_TIME, 1, 10) AS UPDATED_DATE,
      SUBSTRING(UPDATED_TIME, 1, 4) AS UPDATED_YEAR,
      SUBSTRING(UPDATED_TIME, 6, 2) AS UPDATED_MONTH,
      [MESSAGE], SHARES_COUNT, [COUNT OF LIKES NAME], [COUNT OF COMMENTS MESSAGE], NAME, [TYPE], LINK, [DESCRIPTION]
    FROM DAVID
    SELECT * FROM NEWDAVID
    SELECT * FROM NEWJOHN
    CREATE TABLE POST (
    POST_ID VARCHAR(100) NOT NULL,
    [USER_ID] VARCHAR(100),
    CREATED_DATE VARCHAR(MAX),
    CREATED_YEAR VARCHAR(MAX),
    CREATED_MONTH VARCHAR(MAX),
    UPDATED_DATE VARCHAR(MAX),
    UPDATED_YAER VARCHAR(MAX),
    UPDATED_MONTH VARCHAR(MAX),
    [MESSAGE] VARCHAR(MAX),
    SHARES_COUNT VARCHAR(MAX),
    [COUNT OF LIKES NAME] VARCHAR(MAX),
    [COUNT OF COMMENTS MESSAGE] VARCHAR(MAX),
    NAME VARCHAR(MAX),
    [TYPE] VARCHAR(MAX),
    LINK VARCHAR(MAX),
    [DESCRIPTION] VARCHAR(MAX),
    INSERT INTO POST
    SELECT * FROM NEWDAVID UNION SELECT * FROM NEWJOHN
    SELECT * FROM POST 
    CREATE TABLE [USER] 
    [USER_ID] VARCHAR(100) NOT NULL,
    INSERT INTO [USER] VALUES (612831408762037),(1119736203) 
    ALTER TABLE [USER] ADD PRIMARY KEY([USER_ID])
    ALTER TABLE POST ADD PRIMARY KEY(POST_ID) 
    ALTER TABLE POST ADD FOREIGN KEY([USER_ID]) REFERENCES [USER]([USER_ID])

  • Deleting Facebook Messages And Notifications

    How do you delete Facebook messages and notifications please?
    Solved!
    Go to Solution.

    Push and hold on the message and a menu will appear with a delete option

  • Facebook messages and online chat works on IE, but not Firefox ver. 12.0

    The lower right online box is empty, says "Loading", when I try to send a message, it hangs.

    And solved! At least, my version of the problem is solved: if one whitelists (under the Privacy tab in the custom privacy settings, click "Exceptions..." and add each domain to allow or allow for session) cookies from facebook.com, fbcdn.net, and fbsbx.com (permanent or session), the messaging system works. It doesn't appear to actually try to set any cookies from anywhere other than facebook.com, but the ability to do so automatically if it tries is apparently important for the FB messaging platform.

  • Regarding message spliting and posting multiple files

    Hi All,
    I have a requirment like i am getting multiple IDOCs as input with differend CustID(each Id may be repeated).I have to group based on a CustID ,ie all Idocs belonging to a particular CustID will be placed in one group.
    Then i have to make a seperate file for each CustID group and post it to the output folder.
    I tried to use xslt mapping to group,but i am finding it difficult to split the message and post it as multiple files.
    Is there any effective way to implement the above requirement?
    Thanks and Regards,
    Anika

    Anika,
    What i make up out of your post is that you have multiple idocs and you want to transform these into multiple messages which are based on the CustID, see below
    IDOC 0001
    custID 010
    IDOC 0002
    custID 020
    IDOC 0003
    custID 010
    And you want to get to the target as
    CustID 010
    IDOC 0001
    IDOC 0003
    CustID 020
    IDOC 0002
    Why not use Duplicate subtree and let the dependency determined on the CustID
    So if CustID is 001 then the entries of IDOC 0001 and 0003 are added and whenever CustID is 020 is the IDOC 0002 is added
    I don't have a SAP Pi system available at the moment to get in more detail but if you need some more let me know and maybe i can help.
    Greets

  • Can't delete old facebook messages

    Hi,
    I updated my facebook application recently, and now my phone is running very slowly.  I have restarted the phone, and I have removed and replaced the battery.  This hasn't helped.  In addition I continue to get facebook icons, showing unopened facebook posts.  When I scroll through all of my messages to find the unopened icon, it is the same one that keeps showing up.  I open it.  The icon goes away.  I attempt to delete old facebook messages, and my phone won't let me.  I have even tried to figure out how to delete the facebook app, but this isn't working.  Anyone have any advice?
    Thanks!

    You can delete the Facebook application at Options > Advanced > Applications.
    Scroll to Facebook and press the Menu key > Delete.
    The, do a simple reboot on the BlackBerry in this manner:
    With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescirbed for most gltiches and operating system errors, and you will lose no data on the device doing this.
    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

  • Skype and Facebook messaging

    Hi,
    I have used skype for ages now, but the last year or so, people have been complaining that they hear when I get Facebook messages over skype. They do not hear any other background noise when my tv is on or game sounds. It is only the Facebook message sounds they hear. What is causing this?

    Hi ManosR,
    Anything happen prior to this concern? What are the troubleshooting that you tried to perform on your phone? How did you link these applications to your phone? For the Skype contacts, you will only see them if you are in the main Skype application. It will not be shown under the messaging thread. As per the Facebook contacts, make sure that your Facebook account is setup on the phone. You can check this by going to Setting > Email + Account > Check if your Facebook account is there. If not, you need to set it up from there.

  • Call log, text messages, emails, and facebook messages erasing

    Last night when I realized that my entire call log and well as all of my text messages, a large portion of my emails, and some of my facebook messages had vanished. I thought I must have inadvertently done something to make that happen. The this morning when I woke up, the new text messages and calls I had made last night were gone too. Any ideas on what is happening and how I can stop it?

    Greetings, and welcome to the BlackBerry.com Support Forums.
    First thing? Check the File Free at Options > Status, what is the number at File Free?
    Now, remove the battery of your device, hold a minute, replace and reboot. What is the File Free now?
    Read this: http://www.blackberryforums.com/general-blackberry-discussion/116396-managing-your-bb-memory-lost-ca...
    And this: http://www.blackberryforums.com/general-blackberry-discussion/112029-losing-call-logs-sms-emails-opt...
    Additional links to read:
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB15345&sliceId=SAL_Pub...
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB14320&sliceId=SAL_Pub...
    http://www.blackberry.com/btsc/dynamickc.do?externalId=KB14213&sliceId=SAL_Public&command=show&forwa...
    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

  • Skype recording messages and calls?

    Salutations. So today I'm going to confront you with a hypothesis I've composed. Back before Skype had been bought from Microsoft, they had recorded calls and messages and stored them away. Those mentioned things would get run through their system. I've been suggested to use a proxy or an anonymizer. I don't know what either of these are, may I have an elaboration on them? But to return to the man topic and cease the digression, here are a few examples to support my theory.
    ( (flag:gb) Loving you. \u003cS )
    And here is the second example:
    ( (flag:gb) already; )
    This is it. It seems logical, but if you have another reasonably theory, or if you think I'm just wrong, why don't you post what you think and the reason for it. I'm always hoping for some help on understanding. Please and thank you.

    first, i'm not sure what those examples are and why do you think that they may prove Skype are recording Skype messages and calls.
    with regard to messages, or let us term them as chat histories, Skype may retain them in their database for a certain period of time for certain purposes.  I'm not a natural English speaker, but in my own opinion, there is a big difference between being retained and being recorded (at leas in terms of the purpose).
    "12. HOW LONG IS YOUR PERSONAL DATA KEPT BY SKYPE?
    Skype will retain your information for as long as is necessary to: (1) fulfill any of the Purposes (as defined in article 3 of this Privacy Policy) or (2) comply with applicable legislation, regulatory requests and relevant orders from competent courts.
    Retention of Instant Messages (Skype internet communications software application only)
    Your instant messaging (IM) communications content may be stored by Skype (a) to convey and synchronise your messages and (b) to enable you to retrieve your IM history where possible. IM history messages will be stored for a maximum of 30 days unless otherwise permitted or required by law. Skype will at all times take appropriate technical and security measures to protect your information. By using this product, you consent to the storage of your IM communications as described above."
    On the other hand, there should be no reason for Skype to record your calls and video calls.  Basically, I think they have no use for it and will get nothing from it.  In addition, recording conversations will require additional resources, storage devices in particular in where the "recorded" calls will be saved.  For a messenger with around 10-20 million (or more users) at any given time, just imagine the amount of space it will require to save your Skype calls and video calls (and assuming that they will get nothing from it).
    Moreover, there may be indeed ways to record calls and video calls, but it can be done by using third party software and can be done by Skype users to other Skype users only.
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • 8830 facebook messages only show my messages and no one elses...

    when I try to send messages on the facebook app to someone I can see what I'm sending, but I don't recieve any replys on the phone, when I check the message on facebook using my laptop I can see that the message sent and that it got replied to... any idea what's going wrong?

    myminpins wrote:
    Sorry, not on topic but where do you find the facebook option for Blackberry?  Is it free?  Thank you!
    Use your BlackBerry browser to go to www.blackberry.com/facebook and download it. Follow the instructions there.
    In the future, please learn to create your own thread when you have your own personal issue to discuss... even if your issue might be "similar" the originally posted. yours is not the same, and posting in a existing thread like this just clutters the original posters thread.
    The "New Message" link is at the top left of each forum section page.
    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

  • After updating to Firefox 7.0.1, menu bar for Google,yahoo, Facebook (message,notification,profile,home) and others site are disabled. How can solve this problem?

    after updating to Firefox 7.0.1, menu bar for Google(web ,image,video,map etc),yahoo, Facebook (message,notification,profile,home) and others site are disabled. even I cant log out from different sites cz the log out bar is completely disabled. I tried with Firefox 4;5 and 6, same problem exist . I tried by active all add ons for facebook, same problem exist. If I use internet explorer , I don't find such problem with it.
    How can I solve this problem?

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • Facebook notifications and messages and account settings only work in private browsing

    Unable to open Facebook notifications, messages and account settings unless running in private browsing

    This can be a problem with cookies.
    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    See http://kb.mozillazine.org/Clearing_the_cache and http://kb.mozillazine.org/Cookies

  • Transaction Posting Confirmation Message and Action Listener behaviour

    Hi, I have a scenario that a user is Posting a Transaction and when he press the “Post” Button a, confirmation dialog box should popup asking “Do you really want to Post the record ?”. If the user press “Yes” the record is further process and If the user press “No” then the transaction should not proceed.
    I have implemented the main screen(PostTransaction.java) and the popup confirmation window(ConfirmationWindow.java)
    Question 1 ) Why the code is not stoping in the Post Button Action listener as in JOptionPane, then how do i know that the user has selected "Yes" or "No" ?
    Question 2) Do I have to write the code for posting of a Transaction(postTransaction() method) in the “ConfirmationWindow”? or it should be in “PostTransaction”.
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class PostTransaction extends Application{
           public void start(final Stage stage) throws Exception {
                  Group root = new Group();
                  Scene scene = new Scene(root, 300,300);
                  stage.setScene(scene);
                  stage.setTitle("Transaction Post Screen");
                  GridPane gp = new GridPane();
                  Label lblName = new Label("Name");
                  Label lblAmount = new Label("Amount");
                  TextField txtName = new TextField();
                  TextField txtAmount = new TextField();
                  Button btnPost = new Button("Post Record");
                  gp.add(lblName, 1, 1);
                  gp.add(lblAmount, 1, 2);
                  gp.add(txtName, 2, 1);
                  gp.add(txtAmount, 2, 2);
                  gp.add(btnPost, 2, 3);
                  btnPost.setOnAction(new EventHandler<ActionEvent>() {
                        @Override
                        public void handle(ActionEvent arg0) {
                             //The code does not stop here as in JOptionPane, then how do i know that the user has selected "Yes" or "No" ??
                             boolean popupResult = ConfirmationWindow.confirmTranactionPosting(stage, "Please Confirm");
                             if(popupResult==true){
                                  //This line is printed before the user selects yes or no
                                  System.out.println("Proceeding with Tranaction Posting");
                                  //postTransaction();
                             if(popupResult==false){
                                  //This line is printed before the user selects yes or no
                                  System.out.println("Do not Proceed with Tranaction Posting");
                 root.getChildren().add(gp);
                stage.show();
                public static void main(String[] args) {
                  launch(args);
              private void postTransaction(){
                   //write the code for posting here
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.HBox;
    import javafx.stage.Modality;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    public class ConfirmationWindow extends Stage {
         Stage owner;
         Stage stage;
         BorderPane root;
         static boolean postStatus = false;
      public ConfirmationWindow( Stage owner, String title){
        root = new BorderPane();
        stage = this;
        this.owner = owner;
        initModality( Modality.APPLICATION_MODAL );
        initOwner( owner );
        initStyle( StageStyle.UTILITY );
        setTitle( title );
        setContents();
      public void setContents(){
        Scene scene = new Scene(root,250,150);
        setScene(scene);
        Group groupInDialog = new Group();
        groupInDialog.getChildren().add( new Label("Do you really want to Post this record ?") );
        root.setCenter( groupInDialog );
        Button yes = new Button( "Yes" );
        yes.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent e) {
                   postStatus =true;
                   stage.close(); // Close the pop up. Transfer control to PostTransaction.java and execute the PostTransaction() method.
        Button no  = new Button( "No" );
        no.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent e) {
                   postStatus =false;
                   stage.close(); // Close the pop up only
        HBox buttonPane = new HBox();
        buttonPane.setSpacing(10);
        buttonPane.getChildren().addAll(yes,no);
        root.setBottom(buttonPane);
        stage.show();
      public static boolean confirmTranactionPosting(Stage owner, String title) {
           new ConfirmationWindow(owner, title);
           return postStatus;
    }

    The MII Message listener is a queue. But when I understand you correctly, you do not want to process the messages immediately after arriving in the Listener.
    Maybe the categorization of messages is an option for you (see [Sap Help: Processing Rule Editor - Category|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm]. You can enter a category for the control recipe messages. The messages will then be placed in the Listener queue. You can use the [Message Services|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm] actions to read the categorized messages and process them as you need.
    In addition to Manoj, you may also use the [Queueing actions|http://help.sap.com/saphelp_mii121/helpdata/en/43/e80b59ad40719ae10000000a1553f6/frameset.htm] of MII, where you can queue xml contents.
    Hope this helps.
    Michael

  • Screen is 'splitting' and computer is freezing in facebook chat and Skype - any ideas?

    Hello - having issues with computer freezing during facebook chat and skype - also desktop 'splits' in half - like the 'apple' that should normally be in the top left corner is 2/3rds the way to the right and the time,date etc is in the middle of the screen.
    Cannot force quit or get out of the programs once it freezes.
    Anyone seen this?
    Thanks.

    If you've applied the latest updates for your system and it's still doing it and you've maybe already gone the extra mile and reloaded the OS, then it's a hardware issue and will probably require a physical fix.
    I would suggest backing up your personal data and then do an OS reload and without putting anything back on it, try it then.  If it still happens, then it's hardware.

  • Facebook sharing and "click to post" not working on Mountain Lion 10.8.3. Any fix available?

    Hi all.
    Just got a 2nd hand MBP 13" (first Mac) and had latest OS installed (10.8.3).
    I used the "click to post" button for Facebook once and it worked... But after that it never worked again (sounds so sad).
    I've deleted my account and re-entered it, but that doesn't work.
    Twitter shares fine, but in the Notification panel, if I click the Facebook button, then the Twitter button stops working as well.
    I think it's something to do with Facebook and the OS (10.8.3) but I don't believe it's a universal problem. A friend's MBP worked fine.
    I can share onto Twitter through other means (eg photobooth, Preview), but Facebook doesn't work anywhere.
    Any help? Or should I wait for some kind of patch update?
    Thanks.

    If you look at the "More Like This" box (top right), other threads appear. Opening them usually displays other threads. It appears you are not the only two having this problem.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback

Maybe you are looking for