Multiple post mystery

I've just caught myself sending multiple posts.
I'm not sure exactly which sequence of keys I hit, but when I pressed the spacebar, I noticed the screen flashing and stopped typinf.  Fortunately, only two made it and I cancelled the third one. 
I may have hit the Ctrl button instead of Shift.  However, the strange part was that it would send a reply each time the spacebar was pressed...
I wonder if something similar causes the multiple posts that we see which contain one extra word in each of the submitted thread..
R

I tried to reproduce the multiple posts, but did not try the Tab key.  Actually, I have had the Tab key issue in the past.  It posts prematurely...  However, when this occurred, it was different, it would post and open a new window with all the text that was typed so far and it would post it as soon as I hit the spacebar.  Fortunately, I was looking at the screen when it happened and only two posts made it..  I stopped typing beforing hitting the spacebar a 3rd time.
At least, in my case, it was a multiple post within the same thread..  Nothing bad... Just helped my post count
R

Similar Messages

  • T-code to close multiple posting periods in mm

    Is there is any t-code to close multiple posting periods in mm?
    Regards,
    Surendra babu.

    Dear Surendra,
    Open & Close Posting Periods
    FI posting periods:
    IMG->Financial Accounting->Financial Accouting Global Settings->Document->Posting Periods->Open and close posting periods.
    OB52
    MM posting periods:
    Logistics->Materials management->Material master->Other->Close period
    MMPV (to open current period)
    Logistics->Materials management->Material master->Other->Post to prev.period
    MMRV (shows what is open)
    Also check OB52 for type M
    Reward Me If Helpful

  • Multiple post requests using a single HttpConnection

    Hi,
    is it possible to send multiple post requests using a single Http connection.
    i am currently trying to simulate the preformance overhead because of creating HttpURLConnection to talk to my servlet. But, that made me wonder, if is there a way to send multiple post requests using a single HttpURLConnection.
    can anyone help me with this.
    thanks in advance

    Hi
    I found this article through Google. I hope it helps a little
    http://www.developer.com/tech/article.php/761521
    D

  • Multiple POST requests

    Greetings everybody,
    For this particular question I am not getting any help from the Java forums and Google.
    Not very long ago I had to send a stream of bytes from an applet to a servlet (the applet and its helper classes are packed inside a signed jar file), but I used to fail miserably at every step.
    I tried every trick in the book (for me the books were Google and Java forums!!). I set the servlet's path in the Windows CLASSPATH, I tried to call the applet from within a servlet- of course after placing the applet file in the servlets folder- (in the hope that since the applet was in the same location as the servlets the URL would get established) e.t.c but still URL url=new URL(<servlet URL>) refused to invoke the servlet.
    Finally somehow I managed to get it done using the code below:
    public class Xyz extends Applet
    //DONT BE SURPRISED RIGHT NOW!!
    Class cls=this.getClass();
    ClassLoader cldr=cls.getClassLoader();
    //THE ACTUAL SERVLET CONNECTING CODE
    URL url=cldr.getResource("http://localhost:8000/servlet/<SomeServlet>");
    /*This statement does not work........ URL url=new URL("http://localhost:8000/servlet/<SomeServlet>").A NULL URL OBJECT GETS CREATED!! */
    HttpURLConnection hurlc=(HttpURLConnection)url.getConnection();
    //ALL THE NECESSARY FORMALITIES TO BE PERFORMED TO WRITE THE STREAM TO THE SERVLET
    hurlc.setDoInput(false);
    hurlc.setDoOutput(true);
    hurlc.setUseCaches(false);
    hurlc.setRequestMethod("POST");
    OutputStream os=hurlc.getOutputStream();
    //WRITING THE STREAM
    os.write(<some byte buffer>);
    //NOW COMES THE TRICKY PART
    hurlc.getResponseCode();
    I had to do getResponseCode() because once ClassLoader.getResource(<servlet URL>) invoked the servlet using the GET method I COULD NOT INVOKE THE SERVLET AGAIN. I had to force an invokation using getResponseCode().
    Well all is well now excepting for a small irritant. Instead of issuing one POST request the URLConnection is issuing multiple POST requests. In the Apache logs I get to see something like:
    GET /snodx/callapplet.htm 200 116
    GET /snodx/keystore_for_holding_fingerprint_for_trusted_applet 200 234
    GET /snodx/applet_and_helpers.jar 200 105
    HEAD /servlet/<SomeServlet> 200 187
    POST /servlet/<SomeServlet> 200 312
    POST /servlet/<SomeServlet> 500 604
    POST /servlet/<SomeServlet> 500 604
    The last 2 lines indicate that the servlet was invoked but the connection closed somehow. This is confirmed by taking a look at the Apache error logs:
    Premature end of script headers.
    Premature end of script headers.
    In the JServ servlet engine error logs I am getting:
    (500)apj12 returned an error handling request
    cannot scan servlet headers.
    The problem is occurring somewhere in getResponseCode().This statement is invoking the servlet using the request method set (POST) several times (2 or 3 times).
    Can someone explain what's going on?
    This is briefly the servlet code:
    public class SomeServlet extends HttpServlet
    //THE SERVICE METHOD IS CALLED BY A HEAD REQUEST TO THIS SERVLET
    public void service(ServletRequest reque,ServletResponse respon) throws ServletException,IOException
    this.doPost((HttpServletResponse)reque,(HttpServletResponse)respon);
    //GO DIRECTLY TO THE POST METHOD
    public void doPost(HttpServletRequest req,HttpServletResponse resp) throws ServletException,IOException
    ServletInputStream sis=req.getInputStream();
    if(sis.available()<2) //CHECK THAT THERE IS STREAM WHICH HAS AT LEAST 2 BYTES OF DATA!!
    log("NO STREAM FROM APPLET");
    else
    //PERFORM ALL ACTIONS TO WRITE TO STREAM OF BYTES TO A LOCAL FILE
    I have the servlet engine JServ 1.1.2 configured to run with Apache 1.3.19 on Windows 2000.
    I compiled the Applet and the Servlet using JDK1.3 and JSDK2.0. I have JRE 1.3.1_02 installed on my Win2k machine.
    Sorry for the long winded story here.
    Awaiting a reply.
    SNODX
    (The search keywords combination getResponseCode multiple POST requests +Applet and many other related keyword combinations did not match any document in the Java forums. The search string "Multiple POST requests" "getResponseCode" and many other related search strings did not match any document in Google.I am continuing the search effort however                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    interresting the classloader solution. Well if that works, i would keep it like that so far.
    But maybe this can help:
    os.write(<some byte buffer>);
    ..and then
    os.flush()//to make sure the outputstream is sent immediatly.
    //i think getResponseCode() is not necsessary in that case
    //but not certain, after all ...setUseCaches(false);
    One thing you should do is remove the complete
    service() {
    ...this.doPost();
    the reason is that when a POST arrives at the servlet, the default service-method of the ancestor class (which is javax.servlet.Servlet) will automaticaly make a call to doPost() of the javax.servlet.http.HttpServlet subclass. You should not overide it I believe.
    maybe... -try to establish an OutputStream only once in the Applet.
    - receive the other end exactly once (as you did) in the doPost as an InputStream;
    - eventually wrap both sides in respective Buffered(In)(Out)putStream(Reader)(Writer)
    - start looping and .write() and .read() at both sides on the single and same in-and-outputStream();
    (i.e avoid establishing the connection from the applet several times..., get one connection and keep it)
    sorry if this story would be irrelevant,
    Papyrus

  • How to register artissts feat. other artists without multiple posts?

    How to register artists feat. other artists without multiple posts? If someone understand waht I mean.
    For example, in the list of artist I have "Missy Elliot" but on several songs
    she sings with someone i.e "Missy Elliot feat. Bill Clinton" than thats going to be another post in the artist list.
    Are there any trick to get those posts to register under just one category and still keep the "featuring" information in the artist category.
    Thx
    friss
    iBook   Mac OS X (10.3.9)  

    Thanks for your answer peeble. I thought so to, but I had to ask. But it is little bit annoying. It would have been nice if you could put some info within brackets for example without creating new posts. I might send an mail to Steve.
    iBook    

  • Multiple posting of Components in MF60 Material Staging

    Dear friends
    Greetings.
    Issue : Multiple posting of Components in MF60
    Scenario:REM Make to stock
    We are using MF60 Transaction code for Issuing  (Material staging) materials against planned order.
    User selects the components and qty to be staged and posting happens after pressing save button.
    Material issued to the production location by  911 movement
    After staging we found that in some of the material documents qty posted is several times in the excess of the
    enterd qty. ie , Multiple postings for same material
    Ex : Material document reads as below
    Sl no         Material      Qty
    1              102020      10
    2              104255      10
    3              102020      10
    4              104255      10
    5              102020      10
    6              104255      10
    7              102020      10
    8              104255      10
    Enhancements  :we are using Packet size data for tiny componet issue (ie, To issue more than the requirement quantity)
    Is there any enhancements to restrict the material postings in case of multiple lines (excess material issue)
    Regards
    Jan

    Hi,
    When you make a pull list , the system will create reservations
    for the components that comes from all the open orders collectively.
    The reqmts date will be the earliest one.
    Now you have to click the Blue lens in which the system will
    show the reqmts of components arising from various orders separately and each orders reqmts date will be shown individually.
    Regards,
    nandha

  • Duplicate File IDs showing up in multiple post offices

    We have come across a strange issue. Several users are missing their file IDs. We looked at the user databases and found duplicate file IDs spread across multiple post offices. Joe Smith might have file ID aba in Post Office One while Bob Jones would have the same file ID in Post Office Two. Is this normal? What would happen if we had to move a user from one post office to the other with a duplicate ID.? How can we fix this?
    Any thoughts would be appreciated.
    Thanks
    Chris Toledo

    My boss sez "Whew"
    My backup email admin sez "Whew"
    I sez "Whew and Thank You very much"
    Originally Posted by Dave Parkes
    Yep, it is possible for that to happen, FIDs should only be unique within
    a single post office.
    As for moving a user, if their current fid already exists within the
    target po, then they will get a new unused one as part of the move process.
    So, there is nothing really to fix
    Cheers Dave
    Dave Parkes [NSCS]
    Occasionally resident at http://support-forums.novell.com/

  • Multiple POST-MAPPING Processes Code Generation BUG

    We are testing OWB 10gR2, and we were very happy to see that there is option to include more than one postmapping operator.
    The idea is to create mapping with two post-mapping operators and that:
    - one procedure is executed in case of 'Post-Mapping Process Run Condition' = ON ERROR
    - and other procedure in case of 'Post-Mapping Process Run Condition' = ON SUCCESS.
    But, after implementation of this case, we were dissapointed. We discover that neither procedure is executed.. ?!?!
    After analyzing generated code in 'finalize' method there is code like this:
    IF NOT get_abort THEN
    IF get_abort THEN
         BEGIN
    As you can see this condition will never bee true ?!?
    Doe's anyone have same problem?

    1) If you have somehow got multiple post-mappings working, I would consider that to be buggy behaviour that you cannot depend on for future releases or upgrades. As such, building a solution that depends on this has risk.
    2) You could always build a user-defined custom transformation that takes a list of tables to truncate and does so. Something like (untested, uncompiled, seat-of-the-pants written right here example to get you started):
    create or replace procedure trunc_tables(tablist varchar2)
    is
    local_tablist varchar2(2000) := tablist;
    this_Table varchar2(30);
    nextindex number := 1;
    begin
    nextindex := instr(local_tablist,',');
    while nextindex != 0 loop
    this_table := substr(local_tablist,1,nextindex-1);
    execute immediate 'truncate table '||this_Table;
    local_tablist := substr(local_tablist,nextindex+1);
    nextindex := instr(local_tablist,',');
    end loop;
    -- if no trailing semicolon there is still one table left
    if length(local_tablist) > 0 then
    execute immediate 'truncate table '||local_tablist;
    end if;
    end;
    You could then reference this in your post-mapping procedure with a call to trunc_Tables('table1,table2,table3'), and could re-use this code across all mapping that need it.
    Of course, if you have a lot of mapping-specific stuff to do then you might need to build custom transformations for each mapping that need to do different things as part of their post-process.
    Mike

  • What's up with the multiple posts!?

    What's up with all these multiple posts - is it a problem
    with the web based
    forums?
    Remove '_spamkiller_' to mail

    Seems to be....I have forwarded this issue.
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "Peter Blumenthal"
    <mmgroups@_spamkiller_PhageInteractive.com> wrote in
    message news:eem43g$sbh$[email protected]..
    > What's up with all these multiple posts - is it a
    problem with the web
    > based
    > forums?
    >
    > --
    > -------------------------------
    > Remove '_spamkiller_' to mail
    > -------------------------------
    >
    >

  • BDC for F - 43, Multiple posting keys,multiple line items

    Dear gurus,
                     I need to develop a bdc for  F-43, it it working for multiple posting keys with two line items, but not working for multiple line items, can you tell me where to loop the line items.
    regards,
    vidyasagar yadav.

    F-43 is actually FB01 (with two parameters, check it with SE93).
    So you could use the following FMs in sequence to build the BDC :
    POSTING_INTERFACE_START
    POSTING_INTERFACE_DOCUMENT
    POSTING_INTERFACE_END
    Else
    Re-execute transaction SHDB for a document with 2 items and for a document with a dozen items and analyze the result.
    Use a BAPI like BAPI_ACC_INVOICE_RECEIPT_POST or BAPI_ACC_DOCUMENT_POST
    Regards,
    Raymond

  • New Safari Update Causes Multiple Posts. SLOW

    Do Apple programmers/software engineers monitor this forum? If so- ❈❈❈ HELP ❈❈❈. Please fix this ASAP.
    June 9 (7), 2010 Safari Update Problems- Slower, Multiple Posting
    I have Mac OS X, Version 10.6.3. 2.66 GHz Intel Core 2 Duo, Memory 4 GB 1067 MHz DDR3.
    This is the first problem I’ve noticed w/ a software update.
    On June 9, 2010 I downloaded a safari update that was an automatic software update. This was probably the “Safari 5.0” update, dated June 7, 2010, but I’m not 100% sure. I downloaded it the same day I got it & I have software updates scheduled to look every day for updates.
    This update changed the menu bar to blue when loading a new address. Previously the menu bar was white & showed a grey band at the end of it that said “loading” when loading a new address. Now the grey band is absent.
    The new improvement is horrible. On a site I post & reply to posts on, It is slower in moving around a site & loading a page than before the update. I don’t care about the blue band. While the previous grey band showed immediately when it began loading, the new blue expanding bar on the address doesn’t immediately change when loading.
    When posting or replying, when pressing the “post” button it takes longer to respond than before. Now that the grey band that said “loading” isn’t present one isn’t sure if it took the command. If the “post” button is pressed more than once it now posts as many times as the button is pressed. Then extra posts have to be deleted, but w/ replies this isn’t possible. This is a awful feature. The previous address function was much more preferable.
    Before this update, when posting, even if the “post” button was pressed multiple times, it would only post once whether an original blog/post or reply. On some sites it seems to work OK.
    If Apple technicians monitor this site, please provide a correction for this asap. The improvements are awful.
    The correction should have:
    1) Replace the grey band that said “loading” even if the blue band remains.
    2) Make pressing the “post button” multiple times only post once- like before.
    3) Return the speed it previously moved around a site & posted. Removing the blue band is OK. I don't care about this.
    ❈❈❈ Can I safely remove all the Safari updates that were added on June 9, 2010 when I added this update to the trash bin? Will this return Safari safely to the previous settings? I’ve found in finder where it expands to show the exact updates that were added on June 9, 2010.
    Could just selected ones be removed to accomplish what I want? Any suggestions?

    If you want to report this issue to Apple's engineering, send a bug report or an enhancement request via its Bug Reporter system. To do this, join the Mac Developer Program—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report or enhancement request. The nice thing with this procedure is that you get a response and a follow-up number; thus, starting a dialog with engineering.
    Alternatively, send Feedback, but that usually goes through support and marketing, although when it'll get to engineering is anyone's guess.
    Finally, there's the Safari toolbar Report Bug tool.

  • Sorry for the multiple posts.

    I cant delete them as there seems to be no option.
    I was pressing the post and it was giving me error but it seems like it was actually working ok, hence the multiple posts.

    rhuhman wrote:
    >
    > Sorry for the multiple posts... I am trying to find the Auto-Reboot
    > default options. I would like to change the defaults to a set
    > parameter. I am looking at adding a signature to the pop-up message
    > and extending the sleep time from 2 hours to 10 hours. I thought it
    > was attached to the baseline setting but that didn't change anything.
    >
    > Can this be changed?
    >
    > Richard
    Hi
    I've been looking for this myself but can't seem to find what you are
    looking for - which is kind of a problem since it would make it a lot
    easier to deploy patches if you did not need to go in and set these
    options on every deployment.
    Niels
    A true red devil...

  • Multiple Posting change notice created for one material document

    Hi All,
    The scenario is that the user needs to transfer material from unrestricted to quality stock type. while doing so the storage type is different than the actual storage type for the material. Meaning if the material is normally stored in high rack storage type, when it is found that the material is damaged or expired it need to be moved to the quality storage type. For this the user will first create  material document in IM with movement type 322 transferring material from unrestricted stock to qualtiy stock. A PCN will be created in back ground which will in turn be converted manually by the user to a TO. while doing so the user will pick the quant manually from the required storage type and select the destination storage type as the quality or quanranntine area.
    The issue here is that system creates one PCN for each material document line item. The requirement is that the system should create only one PCN with multiple lines for one Material document.
    The setting in the movememnt type clearly says that it will behave as it is behaving.
    Is there any other way or setting by which we can create one PCN with multiple line items for a material document.
    Would look forward to your replies.
    Regards,
    Jeetendra

    Thanks and Sorry for the delayed reply. We have now convinced the users that the system behaviour is standard and we cannot change the same.
    To your question about the need to have one PCN with multiple lines please note that the setup is such that when material document is created for transferring material from unrestricted to quality and vice versa this document is created with multiple materials in one go. Now when the PCN is to be converted to TO then the user ends up in creating number of TO's equal to the number of lines in the Material Document. We wanted to avoid this and hence this was posted in SDN.

  • Execution of Task for multiple posting period

    Dear Experts,
    As i have seen it is compulsory to punch posting Period value in Permanent Parametere, Is there any possibility to exeucte Task for multiple period at a time.
    Thanks
    Ritesh M

    Yes, there is such a possibility. But it requires EhP2:
    http://help.sap.com/erp2005_ehp_02/helpdata/en/45/2b650d4ad46d95e10000000a114a6b/frameset.htm

  • An apology for multiple posting

    I am so sorry that my request for help on the mail rules got posted so many times. I have been having a very difficult time getting logged onto this page, and when the complete page didn't load I thought I had to start again. Mea culpa.

    There have been some major server problems today - numerous multiple postings through no fault of the poster
    No problem
    Besides the Apple hosts are very good at resolving duplicates
    LN
    Message was edited by: LarryHN

Maybe you are looking for