No activities have been posted

Hi All,
I am getting the following error message when i am calculating Actual price
T.Code - KSII
No activities have been posted
Message no. KP254
Diagnosis
No activity consumption was posted in controlling area 1400 in fiscal year 2009.
System Response
Actual prices cannot be calculated for activity quantities or process quantities that do not exist. The system cannot therefore calculate activity prices.
Procedure
Post activity consumption in controlling area 1400.
Thanks,
Raj

It shows that you have not posted any Activities in that period , for which you want to do the price calculation. Please check your cost center line item (KSB1)report and check whether system has any Qty data for these activtiy type in that period.
regards
Ranjan

Similar Messages

  • Error while saving a workflow via sharepoint designer: Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities.

    While saving a workflow using SharePoint designer on a SharePoint site, I get the following error: 
    Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities.
    Steps to recreate error:
    Login to the WFE server hosting IIS and workflow manager, open SharePoint Designer 2013 and login to a SharePoint site.
    Access the list using SharePoint Designer 2013, in the workflow section, click new workflow. 
    In the new workflow dialog, enter workflow details, click save (see screenshot below).
    Error message is displayed as below:
    After restarting SharePoint Designer, the saved workflow is not seen in the site/workflows or list/workflow section.
    Workaround
    When the above steps are repeated while accessing the site via SPD from any other box besides the WFE/Workflow manager host server, the error is not encountered and its possible to save/publish workflows.
    Notes
    Workflow Manager 1.0 is installed.
    The site has been registered with Workflow manager using Register-SPWorkflowService
    cmdlet.
    Any clue on why is this happening?

    Hi Vivek,
    Please close your SharePoint Designer application, clear/delete the cached files and folders under the following directories from your server installed SharePoint Designer, then check results again.
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>
    http://www.andreasthumfart.com/2013/08/sharepoint-designer-2013-server-side-activities-have-been-updated/
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SharePoint Designer 2013: Server-side activities have been updated

    When developing custom activities for SharePoint 2013 Workflows, I ran into the problem that SharePoint Designer prompts “Server-side activities have been updated. Please restart SharePoint designer” every time when you try to create a new workflow.

    Hi,
    I recommend to clear/delete the cached files and folders under the following directories from your server installed SharePoint Designer, then check results again.
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    < user profile>\appdata\local\microsoft\websitecache\<sitename>
    http://social.technet.microsoft.com/Forums/en-US/5796972e-3a92-4306-8cf1-e1e7b9ab9635/error-while-saving-a-workflow-via-sharepoint-designer-serverside-activities-have-been-updated-you?forum=sharepointcustomization
    If the issue still occurs, please re-install SharePoint Designer.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • What is the SAFEST SEQUENCE to convert from a Outlook/iPad/iPhone synced with MobileMe to syncing with iCloud (I have 10 years of calendar diary events and 3000 contacts) - I am worried about the data issues that have been posted about iCloud.

    What is the SAFEST SEQUENCE to convert from a Outlook/iPad/iPhone synced with MobileMe to syncing with iCloud (I have 10 years of calendar diary events and 3000 contacts) - I am worried about the data issues that have been posted about iCloud.
    This has worked fine with MobileMe with only a couple of minor glitches in the past.
    Any experience doing this the "right" way?

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • Still!!! server side activities have been updated. restart SPD to use the updated version of activities

    server side activities updated... restart SPD to use latest activities"
    pretty huh? I have been working with SP13 online and a custom list which I would simply like to add a workflow too,
    When creating a workflow I receive this error, I have uninstalled SPD I have cleared/deleted cache files in the following locations:
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    < user profile>\appdata\local\microsoft\websitecache\<sitename>
    restarted computer
    reinstalled SPD
    and...same message "server side activities updated... restart SPD to use latest activities"
    Same Image as above
    Now what else can I do, there aren't any language packages other than the default English, and a lot of people find this issue with no luck as to a resolution, need an answer that will work

    In my case the solution to this problem was the following. I discovered that the contents of <user profile>\AppData\Local\Microsoft\WebsiteCache\<sitename>\<version> was empty aside from Activity.xml for the website in question. This directory
    should actually download the following list of files from the server in order for the workflows to operate in SPD. This is not the case when things go wonky.
    Microsoft.ReportingServices.SharePoint.UI.WebParts.Proxy.dll
    Microsoft.SharePoint.WorkflowServices.Activities.Proxy.dll
    Microsoft.Web.Design.Client.dll
    Newtonsoft.Json.dll
    ProxyAssembly.xml
    System.Net.Http.dll
    System.Net.Http.Formatting.dll
    System.Net.Http.Formatting.xml
    System.Net.Http.xml
    System.Web.Entity.Proxy.dll
    System.Web.Extensions.Proxy.dll
    So I found that if I copied these from another websitecache directory that is working or perhaps copying them from another machine where SPD is working properly that my workflows will start working once again. I haven't checked but I'm certain that you could
    hunt down all these dll's manually on the server as well.

  • How to have OUT parameter for see if transaction have been posted correctly

    I've a package procedure that reads data from a staging tables into their corresponding target tables. The below procedure variables are in the package specification and body. I need to create another procedure that ensures data has been sent to both target tables successfully.
    If successful, commits the transaction. If not, ensures all matching records are deleted from target tables.
    Outcome will have two possible values "success" or "failure."
    Failure would indicate things such as transaction not found, transaction does not match from source to target tables.
    However I need to create another procedure that reads the value of o_outcome parameter in the below procedure code such that if the parameter is a success then commit, and if failure has happened then delete all match records up until that point. I am using Oracle 11.2.0.2 and TOAD 10.5.1.3.
      PROCEDURE edw_rex_pos_trans (p_begin_date     IN     DATE,
                                 p_end_date       IN     DATE,
                                 p_extract_type   IN     VARCHAR2,
                                 o_outcome           OUT VARCHAR2)
    IS
       v_extract_type            edw_pos_extract_log.extract_type%TYPE
                                    := UPPER (p_extract_type);
       v_begin_date              edw_rex_head_extract.create_date%TYPE := p_begin_date;
       v_end_date                edw_rex_head_extract.create_date%TYPE := p_end_date;
       v_log_seq_nbr             edw_extract_log.log_seq_nbr%TYPE;
       v_record_count            edw_extract_log.record_count%TYPE := 0;
       e_dates_must_match        EXCEPTION;
       e_begin_date_higher       EXCEPTION;
       l_tran_seq_nbr            NUMBER;
       CURSOR edw_rex_head (
          v_begin_date    DATE,
          v_end_date      DATE)
       IS
          SELECT *
            FROM edw_rex_head_extract h
           WHERE 1 = 1
                 AND TRUNC (h.create_date) BETWEEN v_begin_date AND v_end_date;
    BEGIN
       IF v_begin_date <> v_end_date
          AND (v_extract_type = 'DAILY' OR v_extract_type = 'MANUAL')
       THEN
          RAISE e_dates_must_match;
       ELSIF v_begin_date > v_end_date
       THEN
          RAISE e_begin_date_higher;
    ===========================================================
       ELSE                             
          SELECT edw_extract_log_seq.NEXTVAL INTO v_log_seq_nbr FROM DUAL;
          DBMS_OUTPUT.PUT_LINE ('SELECTED next log_seq_nbr = ' || v_log_seq_nbr);
          DBMS_OUTPUT.
           PUT_LINE ('INSERTING record into bcf_pos_extract_log table');
          edw_extract_log_table.insert_log_entry (v_log_seq_nbr,
                                                  'BCFPOS_TO_REX_EXTRACT',
                                                  v_extract_type,
                                                  v_begin_date,
                                                  v_end_date,
                                                  'STARTED',
                                                  'bcfpos_to_rex_extract');
          DBMS_OUTPUT.PUT_LINE ('FINISHED creating log entry');
          v_record_count := 0;
         DBMS_OUTPUT. PUT_LINE ('SELECTING data and INSERTING it into REX tables');
          FOR edw_rex_head_rec IN edw_rex_head (v_begin_date, v_end_date)
          LOOP
             v_record_count := v_record_count + 1;
             SELECT navistor.kcpos_tran_seq.NEXTVAL@rex
               INTO l_tran_seq_nbr
               FROM DUAL;
             BEGIN
               INSERT INTO kcpos_tran_header (TRAN_SEQ_NBR,
                                   ORG_NUMBER,
                                   STORE_NUMBER,
                                   TRAN_DATE,
                                   TERMINAL_NUMBER,
                                   TRAN_NUMBER,
                                   TRAN_TIME,
                                   BATCH_NUMBER,
                                   BATCH_TYPE,
                                   TRAN_TYPE)
               VALUES (l_tran_seq_nbr,
                 1,
                 edw_rex_head_rec.store_number,
                 edw_rex_head_rec.tran_date,
                 edw_rex_head_rec.terminal_number,
                 edw_rex_head_rec.tran_number,
                 edw_rex_head_rec.tran_time,
                 edw_rex_head_rec.batch_number,
                 edw_rex_head_rec.batch_type,
                 edw_rex_head_rec.tran_type);
      -- Table 2          
    INSERT INTO kcpos_tran_line (TRAN_SEQ_NBR,
                                                       TRAN_LINE_NBR,
                                                       ORG_NUMBER,
                                                       STORE_NUMBER,
                                                       TRAN_DATE,
                                                       TERMINAL_NUMBER,
                                                       TRAN_NUMBER,
                                                       TRAN_TIME,
                                                       TRAN_TYPE)
       SELECT l_tran_seq_nbr,
              tran_line_nbr,
              1,
              store_number,
              tran_date,
              terminal_number,
              tran_number,
              tran_time,
              tran_type
         FROM edw_rex_line_extract
        WHERE     1 = 1
              AND edw_rex_seq_nbr = edw_rex_head_rec.edw_rex_seq_nbr
              AND revision_number = edw_rex_head_rec.revision_number
              AND store_number = edw_rex_head_rec.store_number
              AND tran_date = edw_rex_head_rec.tran_date
              AND terminal_number = edw_rex_head_rec.terminal_number
              AND tran_number = edw_rex_head_rec.tran_number
              AND TRUNC (create_date) BETWEEN v_begin_date AND v_end_date;
    EXCEPTION
                  WHEN OTHERS THEN
                     DBMS_OUTPUT.put_line (TO_CHAR (SQLCODE) || ' ' || SQLERRM);
                     l_error := TO_CHAR (SQLCODE) || ' ' || SUBSTR(SQLERRM,1,300);
                     v_record_count := v_record_count - 1;
    END LOOP;
              DBMS_OUTPUT.PUT_LINE('Total transactions inserted: ' || v_record_count);
               DBMS_OUTPUT.PUT_LINE('UPDATING log table');
             o_outcome := 'SUCCESS';
    END IF;
       EXCEPTION
          WHEN e_dates_must_match THEN
             o_outcome  := 'FAILURE';
           -- insert into error log table
          WHEN e_begin_date_higher THEN
             o_outcome  := 'FAILURE';
           -- insert into error log table
          WHEN OTHERS THEN
             DBMS_OUTPUT.put_line (TO_CHAR (SQLCODE) || ' ' || SQLERRM);
             o_outcome  := 'FAILURE';
             --- insert into error log table
          END;

    Barnes12 wrote:
    I've a package procedure that reads data from a staging tables into their corresponding target tables. The below procedure variables are in the package specification and body. I need to create another procedure that ensures data has been sent to both target tables successfully.
    If successful, commits the transaction. If not, ensures all matching records are deleted from target tables.
    Outcome will have two possible values "success" or "failure."
    Failure would indicate things such as transaction not found, transaction does not match from source to target tables.
    However I need to create another procedure that reads the value of o_outcome parameter in the below procedure code such that if the parameter is a success then commit, and if failure has happened then delete all match records up until that point. I am using Oracle 11.2.0.2 and TOAD 10.5.1.3.Why do you wish to see if the Parameter is returned as SUCCESS?
    Step 1: Load the data into Target Tables.
    Step 2: Delete the data from Staging Tables.
    Step 3: Verify if all the data is proper and there are no errors (Logical)
    Step 4: If No errors, Commit the transaction.
    Step 5: If any error, then Rollback the transaction.
    Step 4, 5 ensures the data is either Inserted and Deleted or is untouched.
    Thus, you can negate the need for another sub-program to verify it!!!
    Regards,
    P.

  • SCSM 2012 R2 - Activities have been completed but Service Request staying In Progress

    I have noticed that a number of service requests that are shwoing with the status as 'In Progress' have actually had all the related activities resolved.
    Once the activities are all closed the request should automatically go to Compelted, why is this not happening on some of my Service Request????
    tamrep

    There were in deed some needing attention under activity status changed, but no errors showing in the log.
    I re-ran them all and they succeeded so maybe this was it. Have you come across it before? I'll need to keep an eye on this.
    There wasn't anything requiring attention under Service request Status changed, which i was surprised with.
    tamrep

  • Error while saving a workflow via sharepoint designer Office 365: Server-side activities have been updated. You need to restart SharePoint Designer to use the updated version of activities

    Hi,
    I get the above error whenever I try to save a new WorkFlow. I have cleared the caches
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>, and
    I still get the same issue.
    We are using SharePoint Designer 2013 (15.0.4569.1503) and connecting to SharePoint 2013 on Office 365.
    Can you please provide more insight?
    Thanks.

    Hi Rake,
    You can compare your PC and another machine which is working, see if it is related to IE settings(e.g. SharePoint urls in trusted sites zone).
    And you can try re-install the SharePoint Designer 2013 with same version and bit-version(32/64) on your PC like another machine, then check again.
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • Wondering Why your posts have been deleted?

    Some users here have been posting things that are against the Terms of Use of these forums. This is one explanation of the removal, PLEASE stop posting threads that you know are against the Terms of Use:
    Sometimes users posts are removed by the discussion moderators for various reasons. These reasons may include the following:
    Apple Discussions is intended to address technical issues. Discussions of Apple policies and procedures, speculations about future Apple decisions, questions about unreleased products, and issues with repair procedures are not appropriate. Posts that are not directly related to a technical support issue, are only complaints, or contain abusive language are not appropriate. Posts which are not appropriate will be removed from Apple Discussions.
    Posts containing take-apart questions not covered in the User Manual will not be addressed by Apple due to safety and legal concerns.
    <big>Patrick</big>
    P.S. Thanks Mods for taking me up on my advice.

    Where do you backup your contacts?
    If to iCloud, is there another device sharing your Apple iCloud ID? If there is, anything done to contacts by the other device will be synced to your iPhone contacts.  The same is true of anything done to contacts by a computer on icloud.com.  Go to icloud.com and check to see if your contacts are still there.
    If you back them up  to a computer through iTunes, then you can recover your contacts by re-syncing them from your computer to your iPhone.

  • How to know if transactions in AP has been posted to GL

    This may be a stupid question but this is the issue.
    The client said they had posted entries from AP to GL for a particular account.
    1.How to verify that the transactions related to that particular account has been duly transferred to GL?
    Can I use the account inquiry in GL to see if the transactions have been posted or not? or any other tools?
    Will the AP trial balance report give me all the transactions with has been posted?
    2.If the client has created accounting but the transaction is not transferred to GL. How to resolve this issue?
    Thanks for the kind reply

    Hi,
    For posting confirmation... view accounting of that invoice... click on "View Journal Entry" button... than expand any entry item by clicking Plus sign... than copy Journal entry name.... and goto General entry superuser-->Journal--> Entry--> find that Copied journal ..  the POSTING status will be shown.
    Regards:
    Shahzad M. Saleem(Mark it as helpful if it does)

  • I have a new MacBookAir with iTunes 11.3.  All my music was transferred from my old MacBookPro; but, only purchased music from Apple shows up in albums, and songs.  None of my other music appears, and no playlists have been displayed.

    How to get non-purchased from Apple music and playlists to appear on my new MacBookAir with Mavericks, and iTunes 11.3, when all the prior music was transferred from MacBookPro.  I see the library.itl files, and have removed them and imported the Library.xml file; but, still do not have access to playlists or any music I have taken from my CD collection.  I see this as a common issue on the dozens of web searches.  Is there a fix for this new iTunes 11.3?

    Nothing new; same thing i have been posting for years.  Quick answer if you use iTunes' default preferences settings: Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive. Open iTunes and immediately hold down the option (alt) key (shift on Windows) so you get a prompt to select a library, then guide it to the 'iTunes Library.itl' file in the moved iTunes folder.  Without exact details I can't tell what you did wrong  but you probably didn't move the right files to the right place.  Unfortunately youd id not want to delete the .itl file.  The .xml has much of the same but your ratings, date added and playcounts are now gone.

  • Server Side activties have been updated. You need to restart SharePoint Designer to use the updated version of activities.

    Hello,
    I have the following scenario for the installation of EPM 2013 environment:
    1 Server running Windows 2008 R2 SQL Server 2008 R2 Service Pack 2
    1 Windows Server 2008 R2 Standard SP1, running Sharepoint 2013 Enterprise (Standard Initially installed and then migrated to the Enterprise in order to install Project Server 2013), Project Server 2013 and Workflow 1.0 (2013).
    After configuring and validating the configuration of Workflow 1.0 by http://server_name.example.com:12291 page and also check the Application Services in Central Administration and receive the Workflow Status = Connected.
    Alright, but when I run the SPD 2013 RTM to test the creation of Sharepoint Workflow 2013, I get the following warning:
    "Server Side activties have been updated. You need to restart SharePoint Designer to use the updated version of activities."
    I've tried:
    a. Restart SPD2013;
    b. Restart Server 2013 and Sharepoint Workflow 1.0;
    c. Reinstall and reconfigure Workflow 1.0
    And the message is always displayed, preventing the use of Workflow Sharepoint 2013.
    Can anyone help me, I'm in the middle of a deployment to a customer.
    Print of alert

    How did you uninstalledLanguage Pack from SharePoint 2013 ? when I googled it I found that language pack cannot be uninstall@
    http://technet.microsoft.com/en-us/library/cc262108.aspx
    "If you no longer have to support a language for which you have installed a language pack, you can remove the language pack by using the Control Panel. Removing a language pack removes the language-specific site
    templates from the computer. All sites that were created that have those language-specific site templates will no longer work (the URL will produce a HTTP 500 - Internal server error page). Reinstalling the language pack will make the site functional again.
    You cannot remove the language pack for the version of SharePoint 2013 that you have installed on the server. For example, if you are running the Japanese version of SharePoint 2013, you cannot uninstall the Japanese language support for SharePoint 2013."

  • MIGO values when invoices/credit memos have already been posted

    Hi everyone,
    We are facing an issue with the values the system is calculating when doing the GR (and/or GR reversals) once invoices/credit memos have already been posted regarding the PO (Non Stock POs = non valuated).
    When a goods receipt is posted through MIGO (mov. type 101) it seems that the system is considering only the invoices values but we do not really understand how it is calculated and why it is not considering the total amount of invoices and credit memos.
    In fact when a GR reversal is done (mov. type 102) the system seems to be considering the total amount of invoices and credit memos posted against the purchase order.
    Please find below an example with the invoices and GR values (all invoices were posted before the GRs)
    GR     5000077059     1     18.12.2008     EA     -1     -3300,00GBP
    GR     5000076426     1     17.12.2008     EA     1     930,50GBP
    Tr./ev. Goods receipt                                    EA     1     -2369,50GBP
    IR-L     5105052971     1     17.11.2008     EA     -1     -835,00GBP
    IR-L     5105052970     1     17.11.2008     EA     -1     -50,00GBP
    IR-L     5105052959     1     17.11.2008     EA     -1     -885,00GBP
    IR-L     5105052958     1     17.11.2008     EA     1     885,00GBP
    IR-L     5105052957     1     17.11.2008     EA     1     885,00GBP
    IR-L     5105052428     1     13.11.2008     EA     -1     -105,00GBP
    IR-L     5105052427     r4tf cv     13.11.2008     EA     -1     -640,00GBP
    IR-L     5105052426     1     13.11.2008     EA     -1     -835,00GBP
    IR-L     5105052425     1     13.11.2008     EA     1     640,00GBP
    IR-L     5105052424     1     13.11.2008     EA     1     835,00GBP
    IR-L     5105051741     1     11.11.2008     EA     1     60,00GBP
    IR-L     5105051740     1     11.11.2008     EA     1     3240,00GBP
    IR-L     5105045571     1     16.10.2008     EA     1     105,00GBP
    Tr./ev. Invoice receipt                                    EA     1     3300,00GBP
    According to my assumption, in order to calculate the GR value it looks like the system is considering the average for the 5 first invoices and then the average for the 2 next invoices, and making the average of both of them. But if I post another invoice it does not seem to follow this rule.
    I would appreciate any explanation on how the system calculates the GR values and how we would be able to correct the GR value.
    Thanks a lot. Best regards

    Hi
    I hope there is no GR based IV tick in PO, only GR is ticked (PO based IV)
    In that case
    IR-L 5105045571 1 16.10.2008 EA 1 105,00GBP
    IR-L 5105051740 1 11.11.2008 EA 1 3240,00GBP
    IR-L 5105051741 1 11.11.2008 EA 1 60,00GBP
    IR-L 5105052424 1 13.11.2008 EA 1 835,00GBP
    IR-L 5105052425 1 13.11.2008 EA 1 640,00GBP
    Net invoiced value is 4880 GBP (taking out 00) for 5 quantity
    in case of PO based IV, if IV is done first and then GR, GR assumes the value of invoice but not the PO - in that case for above IV,  1 quantity of IV referes to 976GBP debit
    this value will be base GR/IR value for credit memos
    IR-L 5105052426 1 13.11.2008 EA -1 -835,00GBP
    IR-L 5105052427 r4tf cv 13.11.2008 EA -1 -640,00GBP
    IR-L 5105052428 1 13.11.2008 EA -1 -105,00GBP
    there are 3 credit memos - for which GR/IR credit will be equal to that of original GR/IR debit value - that is 976
    *so net credit on GR/IR because of credit memos will be (976976976) = 2928GBP for 3 quantity *
    IR-L 5105052958 1 17.11.2008 EA 1 885,00GBP
    IR-L 5105052957 1 17.11.2008 EA 1 885,00GBP
    Then there are two invoices of values 885 GBP each - so total debit will be 1770 GBP
    so total GR/IR debit will be ( (4880/5) -(2928/3) + (1770/2) ) = 930.5 (debit)*
    This value is the base GR/IR for credit memos
    net GR/IR debit will be 930.5 - this is the base for GR - because in GR - entry on GR/IR will be credit
    *So if you make GR - then GRed value will be 930.5*
    IR-L 5105052971 1 17.11.2008 EA -1 -835,00GBP
    IR-L 5105052970 1 17.11.2008 EA -1 -50,00GBP
    IR-L 5105052959 1 17.11.2008 EA -1 -885,00GBP
    *Now ordered will be XXX
    Delivered will be 930.5
    Invoiced will be 3300*
    IF you reverse GR now it will assume the value of invoice: then reversal will show 3300 debit on GR/IR
    That is what in your PO history now
    These will happen because of PO based IV - for which there will be GR indicator will be ticked.
    Thanks
    Edited by: Praveen Raghavendra on Dec 24, 2008 9:17 AM

  • Can anyone explain why my posts have been removed???

    It seems that for some reason my posts from yesterday have been removed. I can't imagine why that would happen, I didn't breach any code of conduct, and my topics were inline with the general theme of the forums.
    If anyone could explain this to me I would be really appreciative.

    Or it could be that because you have won theobviously
    off-topic What Am I? that you have been
    categorized as an off-topic poster and all yourposts
    will be watched with a finger on the deletebutton..
    our administrators have been most diligent inremoving
    OT posts, maybe they work on a quota just like our
    cops..Ah, I missed that one: so, was it an orgasm?Come now, show me an orgasm that is totally expensible... actually, just tell me where you work..
    (The answer to What Am I: an induction program, a graduate program)

  • All my posts have been deleted!

    I have been active on the discussions forum since a few years.
    Now, for some reason, all my previous posts have been deleted (except for the ones that I placed today).
    I wonder why.

    Thanks for these thoughts!
    My name is Jean-René Bibeau. Therefore, an "e" with an acute accent.
    I also indicate in my profile that I am in Québec city... (an other "e" with an acute accent).
    I have been using this identification since years.
    About Safari 4 (that I have installed and uninstalled - see my other recent post), as you suggest, it may well be the case that all my posts were erased when I installed it. I can't confirm this, but the coincidence is revealing.
    This is puzzling for me that Safari would cause all this, but then I'm no expert in that matter.
    And also, you make me think of it. A few months ago, when I updated Safari (I can't remember from which version to which version), I couldn't login to Apple Discussions anymore with Safari. At the time, strangely, I succeeded login only through using Firefox. And, in fact, one of my last posts concerned that issue. Eventually, for some reasons, things came back to normal and I could login to Apple Discussions with Safari 3.2.1.

Maybe you are looking for

  • Can connect to router but can't access internet on some devices

    Hello everyone, I'm fairly good with comptuers / networking but this issue has me baffled. Help would be greatly appreciated. I have a linksys router (WRK54G) and have 2 desktops and 2 laptops connected to it wirelessly at the moment. I bought 3 smar

  • Solaris 8 in Netra t1 105

    Hi, all. I get a couple of netra t1 105, and I'thinking about install Solaris 8 02/02. Does the netra support that release?. If so, need I patch them?. Where can I get information about hardware platforms witch support Solaris 8. I didn�t find any ab

  • Cisco 1760 router will not recognize wic1-dsu-t1-v2 card in slots 3 or 4

    My 1760 router will not recognize a wic1-dsu-t1-v2 card in slots 3 or 4. They only work in slots 1 & 2. Never saw this before where the same card would not work in different slots. Need assistance. Thanks, Ron Router#show version Cisco Internetwork O

  • I've downloaded music clips but where can I find them?

    I've downloaded music clips but when I sync them with my iPhone, I can't find them. Where do I have to look?

  • Workflow for Requisition item Release

    Hi All, I need to create a workflow for Requisition item Release but I wish to receive one  work item for the whole requisition and not for each item and the method of the task will be collective release (leads to me55) so that the user can choose wh