Hey SHA1 & everyday is christams guys...please look into this.....same prob

Hey....hii....
someone solved your problem i suppose...
I am also facing something like ur's..
I do not have any naming prob..Its all correct...but still i am getting...
pls Help me...
I gotta complete this sooon....
This is the error i am getting....
exception
java.util.MissingResourceException: Can't find bundle for base name LocalStrings, locale en_US
     java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
     java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:726)
     java.util.ResourceBundle.getBundle(ResourceBundle.java:576)
     HelloWorldExample.doGet(HelloWorldExample.java:39)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     java.lang.reflect.Method.invoke(Method.java:585)
     org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
     java.security.AccessController.doPrivileged(Native Method)
     javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
     org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:272)
     org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
note The full stack trace of the root cause is available in the Apache Tomcat/5.0 logs.
my code is as follows+*
import java.text.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
* The simplest possible servlet.
* @author James Duncan Davidson
public class HelloWorldExample extends HttpServlet {
    public void doGet(HttpServletRequest request,
                      HttpServletResponse response)
        throws IOException, ServletException
        ResourceBundle rb =
            ResourceBundle.getBundle("LocalStrings",request.getLocale());
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        out.println("<html>");
        out.println("<head>");
            String title = rb.getString("helloworld.title");
            out.println("<title>" + title + "</title>");
        out.println("</head>");
        out.println("<body bgcolor=\"white\">");
        // note that all links are created to be relative. this
        // ensures that we can move the web application that this
        // servlet belongs to to a different place in the url
        // tree and not have any harmful side effects.
        // XXX
        // making these absolute till we work out the
        // addition of a PathInfo issue
            out.println("<a href=\"../helloworld.html\">");
        out.println("<img src=\"../images/code.gif\" height=24 " +
                    "width=24 align=right border=0 alt=\"view code\"></a>");
        out.println("<a href=\"../index.html\">");
        out.println("<img src=\"../images/return.gif\" height=24 " +
                    "width=24 align=right border=0 alt=\"return\"></a>");
        out.println("<h1>" + title + "</h1>");
        out.println("</body>");
        out.println("</html>");
}Thanks In advance
Shruthi

This is from Tomcat-5.5.26
LocalString.properties can be found in servlet-api.jar.
# Archive C:\apache-tomcat-5.5.26\common\lib\servlet-api.jar
2008-01-28 10:05 Folder Folder META-INF
2008-01-28 10:05 378 213 META-INF\MANIFEST.MF
2008-01-28 10:05 Folder Folder javax
2008-01-28 10:05 Folder Folder javax\servlet
2008-01-28 10:05 Folder Folder javax\servlet\http
2008-01-28 10:05 Folder Folder javax\servlet\resources
2008-01-28 10:05 389 230 javax\servlet\Filter.class
2008-01-28 10:05 289 185 javax\servlet\FilterChain.class
2008-01-28 10:05 357 220 javax\servlet\FilterConfig.class
2008-01-28 10:05 2187 916 javax\servlet\GenericServlet.class
*2008-01-28 10:05 957 555 javax\servlet\LocalStrings.properties*
2008-01-28 10:05 968 562 javax\servlet\LocalStrings_fr.properties
2008-01-28 10:05 1001 584 javax\servlet\LocalStrings_ja.properties
2008-01-28 10:05 330 206 javax\servlet\RequestDispatcher.class
2008-01-28 10:05 473 258 javax\servlet\Servlet.class
2008-01-28 10:05 360 215 javax\servlet\ServletConfig.class
2008-01-28 10:05 1404 562 javax\servlet\ServletContext.class
2008-01-28 10:05 833 381 javax\servlet\ServletContextAttributeEvent.class
2008-01-28 10:05 318 198 javax\servlet\ServletContextAttributeListener.class
2008-01-28 10:05 624 318 javax\servlet\ServletContextEvent.class
2008-01-28 10:05 267 183 javax\servlet\ServletContextListener.class
2008-01-28 10:05 940 462 javax\servlet\ServletException.class
2008-01-28 10:05 637 432 javax\servlet\ServletInputStream.class
2008-01-28 10:05 3155 1390 javax\servlet\ServletOutputStream.class
2008-01-28 10:05 1381 615 javax\servlet\ServletRequest.class
2008-01-28 10:05 944 408 javax\servlet\ServletRequestAttributeEvent.class
2008-01-28 10:05 318 199 javax\servlet\ServletRequestAttributeListener.class
2008-01-28 10:05 846 390 javax\servlet\ServletRequestEvent.class
2008-01-28 10:05 267 182 javax\servlet\ServletRequestListener.class
2008-01-28 10:05 4180 1389 javax\servlet\ServletRequestWrapper.class
2008-01-28 10:05 733 388 javax\servlet\ServletResponse.class
2008-01-28 10:05 2594 1000 javax\servlet\ServletResponseWrapper.class
2008-01-28 10:05 148 120 javax\servlet\SingleThreadModel.class
2008-01-28 10:05 1323 627 javax\servlet\UnavailableException.class
2008-01-28 10:05 3580 1691 javax\servlet\http\Cookie.class
2008-01-28 10:05 8125 3871 javax\servlet\http\HttpServlet.class
2008-01-28 10:05 1420 636 javax\servlet\http\HttpServletRequest.class
2008-01-28 10:05 3579 1098 javax\servlet\http\HttpServletRequestWrapper.class
2008-01-28 10:05 2611 1174 javax\servlet\http\HttpServletResponse.class
2008-01-28 10:05 3028 1011 javax\servlet\http\HttpServletResponseWrapper.class
2008-01-28 10:05 872 427 javax\servlet\http\HttpSession.class
2008-01-28 10:05 292 191 javax\servlet\http\HttpSessionActivationListener.class
2008-01-28 10:05 317 208 javax\servlet\http\HttpSessionAttributeListener.class
2008-01-28 10:05 1109 468 javax\servlet\http\HttpSessionBindingEvent.class
2008-01-28 10:05 277 183 javax\servlet\http\HttpSessionBindingListener.class
2008-01-28 10:05 288 195 javax\servlet\http\HttpSessionContext.class
2008-01-28 10:05 626 321 javax\servlet\http\HttpSessionEvent.class
2008-01-28 10:05 264 182 javax\servlet\http\HttpSessionListener.class
2008-01-28 10:05 4391 2333 javax\servlet\http\HttpUtils.class
2008-01-28 10:05 1450 705 javax\servlet\http\LocalStrings.properties
2008-01-28 10:05 1568 787 javax\servlet\http\LocalStrings_es.properties
2008-01-28 10:05 1534 739 javax\servlet\http\LocalStrings_fr.properties
2008-01-28 10:05 2236 856 javax\servlet\http\LocalStrings_ja.properties
2008-01-28 10:05 1271 732 javax\servlet\http\NoBodyOutputStream.class
2008-01-28 10:05 5065 1751 javax\servlet\http\NoBodyResponse.class
2008-01-28 10:05 17280 4431 javax\servlet\resources\XMLSchema.dtd
2008-01-28 10:05 7363 2171 javax\servlet\resources\datatypes.dtd
2008-01-28 10:05 46838 7400 javax\servlet\resources\j2ee_1_4.xsd
2008-01-28 10:05 14511 3168 javax\servlet\resources\j2ee_web_services_1_1.xsd
2008-01-28 10:05 10081 2377 javax\servlet\resources\j2ee_web_services_client_1_1.xsd
2008-01-28 10:05 9178 2562 javax\servlet\resources\jsp_2_0.xsd
2008-01-28 10:05 17810 3491 javax\servlet\resources\jspxml.xsd
2008-01-28 10:05 16797 4379 javax\servlet\resources\web-app_2_2.dtd
2008-01-28 10:05 31096 7596 javax\servlet\resources\web-app_2_3.dtd
2008-01-28 10:05 36887 6698 javax\servlet\resources\web-app_2_4.xsd
2008-01-28 10:05 27914 5655 javax\servlet\resources\web-jsptaglibrary_2_0.xsd
2008-01-28 10:05 3805 1453 javax\servlet\resources\xml.xsd
# Total Size Packed Files
# 312064 84328 67
Edited by: everyday.is.Christmas on May 2, 2008 6:47 PM

Similar Messages

  • I am using Firefox 4.0 Beta 10. It doesn't start immediately after I click on the Firefox button located in my shortcut bar. And sometimes it even doesn't open. I don't know why it occurs, so please look into this matter. Thanks!

    Whenever I click on the button of Firefox 4.0 Beta 10 located in my shortcut bar. It opens after a very long time i.e. after 5-10 minutes after I get irritated and start using Safari. And sometimes it doesn't even open. Please look into this matter. :D
    Thanks

    Try disabling hardware acceleration in your Firefox settings and see if it helps:
    From the Firefox menu, go to '''Options''' and click the '''Advanced''' panel, then select the General tab. Clear the box in front of "Use hardware acceleration when available" so that it is unchecked, then restart Firefox. ([http://support.mozilla.com/media/uploads/gallery/images/2011-01-27-04-52-31-8c9d82.png screenshot]).
    Ref: <br>
    https://blog.mozilla.com/tglek/2010/12/21/rude-surprise-startup-overhead-of-windows-font-apis/

  • Please look into this.. where i have to write at end of

    HI all ,
    i am getting this output in my report.
    the first column is the division (D.C) and the next couln is the no of consumer(no of business partner in a perticular dc (this is the count of dc))
    314200     0
    314201     1     
    334300     0
    i got the value of the first two digit of dc in a variable.
    now when it change from 31 to 33 i want to get the value of no of count .
    but the atatement AT END OF IS NOT WORKING ...
    Can anyone just look at the code and let me where i have to change..
    REPORT  ZDISTRICT_CUST_AUCSALES.
           LINE-COUNT 40(4).
    ******************************************************TABLE DECLARATION
    TABLES: /BIC/AUCSALES00,
            /BIC/TCOKEY.
    *******************************************************DATA DECLARATION
    DATA:  BEGIN OF ITAB OCCURS 0,
           /BIC/COKEY LIKE /BIC/TCOKEY-/BIC/COKEY,
           TXTSH      LIKE /BIC/TCOKEY-TXTSH,
           END OF ITAB.
    DATA:  BEGIN OF ITAB2 OCCURS 0,
           BILL_DATE   LIKE /BIC/AUCSALES00-BILL_DATE,
           /BIC/COKEY  LIKE /BIC/AUCSALES00-/BIC/COKEY,
           BPARTNER    LIKE /BIC/AUCSALES00-BPARTNER,
           END OF ITAB2.
    DATA:  COUNT TYPE I,
           COKEY TYPE I,
           COKEYNO(2) TYPE C,
           BILDT TYPE I.
    DATA: C TYPE I VALUE 2.
    *DATA: /BIC/COKEY TYPE /BIC/AUCSALES00-/BIC/COKEY.
    SELECT OPTION FOR DATE SELECTION IN THE SELECTION SCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK DATE WITH FRAME TITLE TEXT-001.
         SELECT-OPTIONS: S_BILDT FOR /BIC/AUCSALES00-BILL_DATE OBLIGATORY default sy-datum.
    SELECTION-SCREEN END OF BLOCK DATE.
    *********************************************************INITIALIZATION
    *INITIALIZATION.
    FORMAT INTENSIFIED ON COLOR = C.
    write:/  'PROCESSING DATE:',    20 SY-DATUM,
         125 'TIME           :',   130 SY-UZEIT.
    WRITE:/  'USER NAME      :',    20 SY-UNAME, 138 ' '.
    WRITE SY-ULINE.
    WRITE: / 'D.C'                   , 12 SY-VLINE,
             'NAME OF D.C'        , 36 SY-VLINE,
             'BILL DATE'             , 53 SY-VLINE,
             'NUMBER OF CONSUMER' , 74 SY-VLINE,
             'REMARKS'            ,105 SY-VLINE.
    write sy-uline.
    *ULINE AT (100).
    FORMAT INTENSIFIED OFF.
    *END-OF-PAGE.
    WRITE:/40 'PAGE NO:', SY-PAGNO.
    *****************************************************AT SELECTION-SCREEN
    SELECT BILL_DATE
           UP TO 1 ROWS
           INTO (/BIC/AUCSALES00-BILL_DATE)
           FROM /BIC/AUCSALES00
           WHERE BILL_DATE IN S_BILDT.
    ENDSELECT.
    IF SY-SUBRC <> 0.
          WRITE:/ ' NO DATA FOUND ON THIS DATE'.
          EXIT.
    ENDIF.
    START OF SELECTION
    SELECT /BIC/COKEY TXTSH from /BIC/TCOKEY into table itab.
    IF NOT ITAB[] IS INITIAL.
    SELECT  BILL_DATE
             /BIC/COKEY
             BPARTNER
             FROM /BIC/AUCSALES00
             INTO CORRESPONDING FIELDS OF TABLE ITAB2
             FOR ALL ENTRIES IN ITAB
             WHERE /BIC/COKEY = ITAB-/BIC/COKEY
             AND BILL_DATE IN S_BILDT.
    SORT ITAB BY /BIC/COKEY.
    ENDIF.
    ***********************CHECK WHETHER THE DATA RETRIVE SUCESSFULLY OR NOT
    IF SY-SUBRC NE 0.
      WRITE:/ 'THIS DATE DOESNOT CONTAIN ANY DATA'.
    ENDIF.
    ************************************************************DATA DISPLAY
    LOOP AT ITAB.
    MOVE: ITAB-/BIC/COKEY+4(2) to COKEYNO.
    READ TABLE ITAB2 WITH KEY /BIC/COKEY = itab-/BIC/COKEY.
    IF SY-SUBRC = 0.
           SORT ITAB2 BY /BIC/COKEY.
           DELETE ADJACENT DUPLICATES FROM ITAB2 COMPARING /BIC/COKEY.
    ENDIF.
    IF ITAB2-/BIC/COKEY = ITAB-/BIC/COKEY.
           SELECT COUNT( DISTINCT BPARTNER )
                  INTO COUNT
                  FROM /BIC/AUCSALES00
                  WHERE /BIC/COKEY = ITAB2-/BIC/COKEY and
                  BILL_DATE IN S_BILDT.
          COKEY = ITAB2-/BIC/COKEY.
          WRITE:/ ITAB2-/BIC/COKEY,             SY-VLINE,
               15 ITAB-TXTSH,                   SY-VLINE,
               42 ITAB2-BILL_DATE,              SY-VLINE,
               55 COUNT,                    74  SY-VLINE,
                  ' ',                     105  SY-VLINE.
          WRITE:/ SY-ULINE.
      ELSE.
         COKEY = ITAB-/BIC/COKEY.
         WRITE:/ ITAB-/BIC/COKEY,                SY-VLINE,
              15 ITAB-TXTSH,                     SY-VLINE,
              51 '0' ,                           SY-VLINE,
              55 'Not Processed',              74 SY-VLINE,
                 'Data Not extracted to BW', 105 SY-VLINE.
          WRITE:/ SY-ULINE.
    ENDIF.
    CLEAR: ITAB, ITAB2.
    ENDLOOP.
    thanks in advance..

    Hi
    In this case instead of using AT END OF just create temp. which will hold in it last value of dc,every loop run, check it with new value, if it not equal - get the desired value
    only condition - itab must be sorted
    temp = 'x'. -->you need to put the first value
    loop at itab.
    if temp <> COKEYNO.
    --->your actions to get your value
    endif.
    temp = COKEYNO.
    endloop.
    OR
    you can add one more field to itab (better first) with COKEYNO
    fill itab in this field and then
    loop at itab.
    at end of cokeyno.
    endloop.
    Regards
    Yossi

  • Please Look into this.!! Viewing HTTP Server Response

    Please consider this urgently..
    How can I view the response Headers sent by the Server back to the Client??(The Client is a java application which has invoked the servlet via the URL class)
    It is possible to check the client Headers with the following in your servlet code:
    String contentType = request.getContent();
    System.out.println(contentType);
    How can I check the response headers of the server which it sends back to the client?
    If on the server I say : response.setContentType("text/html");
    what method I need to invoke on my client to see this content Type???
    Please can any one respond..
    ajay

    This problem occurred to me - the applet needs to know the authorization data (ie: the user) which the servlet extracted via the request.getHeader("Authorization") method.
    But if the browser obliged the servlet by demanding a user and password in response to servlet calling request.getHeader("Authorization"), one would think the browser would know the user and password.
    Isn't there a way for the applet to obtain the user and password directly from the browser without having the servlet send it back via something like response.setHeader("user",user) ?

  • May be a bug.. please look into this

    Hi,
    for ex:
    there is a table like
    desc trade;
    trade_date date
    day_high number
    day_low number
    day_open number
    day_close number
    there are many records right from trade_date 01-jan-05 to till date. If i want to query records of any perticular date returns no records, here sql query...
    select * from trade
    where trade_date = '&dt';
    No rows returned on any date enetered when i execute in oracle 9.2.0.1.0 - Production
    same query returns rows when i execute in oracle 8.0.4.0.0
    It returns records when i write the same query like
    select * from trade
    where to_char(trade_date,'DD-MON-YY') = '&dt';
    OR
    select * from trade
    where to_date(trade_date) = to_date('&dt','DD-MON-YY');
    please tell me about this.
    Thanks

    What values are you entering, and what range of values do you have on the database? '01-JUN-05' will currently evaluate to 2005 whether you use 'DD-MON-RR' or 'DD-MON-YY'.
    Perhaps you have some dates in the database that are 1905 when they should be 2005?
    It's safer to avoid two-digit years.

  • Can you please look into this: Dblink from Oracle to postgres

    https://forums.oracle.com/message/11204905#11204905

    You posted this just 3 minutes after posting in the other forum.   This is essentially crossposting.  The other forum is probably the more appropriate one for your question.
    Patience, Grasshopper
    You posted this follow-up a mere 3 minutes after posting in the other forum
    These forums are not a chat line, and not paid support.
    Everyone here has a job for which they are paid, and this forum is not it.
    No one is responsible for monitoring it and giving a quick response. 
    Furthermore, it is a global forum.  The person with the information you seek may very well live 20 time zones away from you and was going to bed just as you posted. He will not even see your post for several more hours. 
    Your original post went up in the middle of the night for half the world.
    =====================
    Oh, and by the way, "This is not working" is totally devoid of any actionable information.  Oracle emits actual error codes for a reason.

  • _d2d_compute_bitmap_mem_size crashing too often. Source: gfx/cairo/cairo/src/cairo-d2d-surface.cpp:1190. This was is really bugging me bad, can you please look into this?

    https://crash-stats.mozilla.com/report/index/bp-9a296328-dbce-40c7-a778-3c2392110809

    Sounds like a problem with Direct2D.
    Try to toggle some Boolean gfx.font_rendering prefs on the about:config page to disable some features and maybe set gfx.direct2d.disabled -> true to disable Direct2D.<br />
    Filter: gfx
    You can also try to disable hardware acceleration in Firefox:
    *Tools > Options > Advanced : General: Browsing: [ ] "Use hardware acceleration when available"
    *Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    *Use "Firefox > Options" instead of "Tools > Options" if the menu bar is hidden.

  • Hi, I have tried to use FaceTime using both my Mac and iPhone, it showed it was connecting, but can't not be connected, and it will just show call failed. could you please look into it? thanks

    Hi, I have tried to use FaceTime using both my Mac and iPhone, it showed it was connecting, but can't not be connected, and it will just show call failed. could you please look into it? thanks

    There is an issue with facetime at the moment http://www.idownloadblog.com/2014/04/17/facetime-connectivity-issues-reaching-ma ny-ios-users/

  • Cofirmation #214861700.  Would you please look into it?  Thanks.

    Please look into my refund for cancellation.  Confirmation #214861700.  Thank you.
    Pat Reger

    I have called Adobe  three times and each time have been told the refund will be or has been refunded or "we are looking into it", but so far, the $29.88 still has not been credited to my Visa
    account..  It was deducted on 2/09/15.  I think that is more than enough for it to be "looked into".   Please do more than check in to it.  Please refund the amount.  Thanks very much.
    Pat

  • I am having mac book. I order for I-boost up software for $9.99 on 5th oct 2012 installed and paid through credit card. Again on 8th oct2012 my credit card debited with $9.99 please look into matter why this amount debited ,if wrongly debited please refun

    I am having mac book. I order for I-boost up software for $9.99 on 5th oct 2012 installed and paid through credit card. Again on 8th oct2012 my credit card debited with $9.99 please look into matter why this amount debited ,if wrongly debited please refund.

    Apple deosn't respond here, just other users like you.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • I currently have wireless, but i am looking into this to maybe have faster wireless. if this is hooked up, will the existing wireless/ethernet to pcs still function without changing them to use the airport express?

    i currently have wireless, but i am looking into this to maybe have faster wireless. if this is hooked up, will the existing wireless/ethernet to pcs still function without changing them to use the airport express?

    let me fix this a bit. i currently have dsl and a 2wire wireless router, and i currently do not have one or a mac. im getting one for when i start college and this is a must if it will improve my internet. but i now connect wirelessly to the 2wire router. if this is set up, will the current 2wire wireless still be useable?

  • Hey Kappy or Caroline ... please look

    You have both been able to iterate, in a way I can understand, the "fix" for previous troubles I have had. Could you please look at my prior post? http://discussions.apple.com/thread.jspa?threadID=2550748&tstart=0
    Thanks,
    Fred

    I have the same problem, only I'm using a 9800 Pro. There's a program called PowerStrip that allows you to make custom resolutions:
    http://entechtaiwan.net/util/ps.shtm

  • Help! could someone please look at this

    I am trying to use JSpinner to display range 0.005 -- 0.995. My initial value is 0.625. But when spinner is displayed it always display 1.000. If I extend my Max value to 1.000, then my arrows work correctly, if I use my Max (0.995), arrows have no effect on value it remains at 1.000.
    Here is my code.
    SpinnerNumberModel numMod = new SpinnerNumberModel(0.625, 0.005, 0.995, 0.005);
    JSpinner spinner = new JSpinner(numMod);
    JSpinner.NumberEditor numEdtr = new JSpinner.NumberEditor(spinner,"0.000");
    spinner.setEditor(numEdtr);
    When I try to debug values they are correct, but initial display is always 1.000 no matter whatever is my initial value ranging between 0.005 -- 0.995
    System.out.println("spinner.getValue: "+spinner.getValue());
    System.out.println("spinner.getNextValue: "+spinner.getNextValue());
    System.out.println"spinner.getPreviousValue: "+ spinner.getPreviousValue () );
    I've tried using both JDK 1.4.1 & 1.4.2 with JBuilder 8 with same results. What also confusing me if set my MAX to 1.000 spinner, arrows behaves properly but if my MAX < 0 then arrows don't work at all. Also initial display is always 1.000.
    Please if someone can guide me what is wrong here.
    Thx
    FJF

    At first glance, your code looks okay to me. I added your snippet to an application and JSpinner behaved as predicted under 1.4.0. Can you give some more details? (and try to use more meaningful subject lines =)
    Cheerio,
    Felix
    public class Spin extends JFrame {
         public Spin() throws HeadlessException {
              super( "Spin" );
              SpinnerNumberModel numMod = new SpinnerNumberModel(0.625, 0.005, 0.995, 0.005);
              JSpinner spinner = new JSpinner(numMod);
              JSpinner.NumberEditor numEdtr = new JSpinner.NumberEditor(spinner,"0.000");
              spinner.setEditor(numEdtr);
              JPanel mainpane = new JPanel();
              mainpane.add( spinner );
              setContentPane( mainpane );
              pack();
              setVisible( true );
         public static void main(String[] args) {
              Spin app = new Spin();
    }

  • SDN Login problem - Modrators please look for this issue

    Dear Moderators,
    Earlier Registered email - <<edited>> at gmail dot com
    User ID - p762884
    I had created this SDN ID in year 2008, I am used it til yesterday, but when I try to log in today it showing wrong user ID or email id
    Why this happens suddenly, I contacted SCN suport team with evidence when exactly it created but they replied no such user ID and email id is registered with us, if check on SD forum for which post I answered, there nothing is appearing just appearing as GUEST as below link
    Not Allowing Goods Movements for the confirmed quantity in the delivery
    Now my user ID & points from last three year gone,
    Dear Laxmipathi Now you are my last hope, please do need full to invstigate this
    Kapil
    Edited by: Matt on Sep 18, 2011 4:49 PM - removed email address

    hmmm...sometimes, you would like to refer to other threads for more info and more clarification instead of just copy-paste..because a similar problem has been discussed and the continuation can be found in that discussion/link.
    and it doesn't mean it is not adding any value to the forum..
    and  if I apply this argument then referring to an OSS note isn't adding value too?
    OSS note is already there and you just need to search for it..
    For ex. check this thread: [Invoice pricing in sto;
    as per the argument it doesn't add any value because the oss note already exists and it is just a copy paste of the info from the note? Simply not! it does add value..I didn't know about this note.. and I had my learning from it..and probably many others..
    As a contributor, am scared what to post and what not to? I understand the copyright and repeated questions part...leaving them apart, I don't think there should be so many restrictions and so much policing.
    The above are Just my thoughts.. am sure there have been many discussions and brain storming about this before the rules were formed, and I hope they were formed with all the considerations and in a perspective beneficial to all.
    Edited by: Rags on Sep 16, 2011 1:57 PM

  • HELP!!!!!!! Please look at this and try to help me...Please

    Okay I just recently got an Ipod whih is gret and all but my problem is with this Itunes I bought four shows 1 song and a video. But 2 three shows and a video only downloaded . The other four would download then start all over again.This is really ticjing me off because I've been trying to get these shows on my ipod for hours and my computer has been on for hours. Also the process to recievethe shows take extremely long so what am I to do??? Someone Please help me..

    The iTunes store has been unavailable for more than three hours or more (6pm EST until now - 9:20 pm), so I expect this is where your problem lies. I guess we will just have to wait for Apple to fix the fault.
    Part downloads should resume when the store becomes available. You will see the 'unavailable' message if you go to the Store menu in iTunes and then scroll to Check For Purchases... you may have to log in if you do not have auto log in enabled.

Maybe you are looking for