Global Company zs01 is not supported.

Dear All,
'' Global Company zs01 is not supported.''  At the time of goods receipt.
       Thanks,
         Parag

Dear,
      Global Company zs01 is not supported.
      Message No. GI 102
          Diagnosis  :   The direct posting function could not find the global company specified. the global company has either been entered in the document or read from table T001.based on the transfered company code.
          Each global company must be defined in table T880
        System Response : 
                                       Direct posting to general ledger can not take place.
         Procedure  : 
                            Check the document as well as table T001 & T880.

Similar Messages

  • Asset Acquisition Error: Global Company is not supported

    Dear All
    i am trying to post and asset acquisition through F-90 when i try to save the document i am getting the
    following message
    Global company XXXXX is not supported
    Message no. GI102
    Diagnosis
    The direct posting function could not find the global company specified. The global company has either been entered in the document or read from table T001 based on the transferred company code.  Each global company must be defined in table T880.
    System Response
    Direct posting to General Ledger cannot take place.
    Procedure
    Check the document as well as tables T001 and T880.
    Please tell me how to rectify this problem
    Regards
    Bilal

    Hi Have a look to SE16 if the values are in both tables are the same.
    In SM30 you can fill in the table name  and click on the button Customizing to found where you have to change the settings
    Paul

  • Protected tab titles are not supported (tab TABSTRIP title COMPANY)

    hi gurus
    i got error in infotype like this wat is the problem
    Protected tab titles are not supported (tab TABSTRIP title COMPANY)

    Error message is like this
    Protected tab titles are not supported (tab TABSTRIP title COMPANY)
    Message no. 00119
    Diagnosis
    You cannot print the title on a tab index as the tab index does not support this.
    Procedure
    Check the screen modifications or the Screen Painter definitions of the tab title.
    When you modify the screen, do not set the INPUT attribute of the tab title to '0'.

  • Javax.jms.JMSException: Not supported in XA-backed sessionoutside global tx

    I am trying to setup OracleOJMS provider and tries to access queue and post to queue from a normal jsp for testing.
    I am getting the following
    javax.jms.JMSException: Not supported in XA-backed session outside global transaction
         at oracle.j2ee.ra.jms.generic.RAUtils.make(RAUtils.java:525)
         at oracle.j2ee.ra.jms.generic.RAUtils.toJMSException(RAUtils.java:199)
         at oracle.j2ee.ra.jms.generic.RAUtils.toJMSException(RAUtils.java:210)
         at oracle.j2ee.ra.jms.generic.CommonProducerWrapper.prepareForSend(CommonProducerWrapper.java:350)
         at oracle.j2ee.ra.jms.generic.CommonProducerWrapper.send(CommonProducerWrapper.java:159)
         at _ResourceProvider._jspService(_ResourceProvider.java:112)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.1.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)I have posted query in this link.
    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=14&t=001837
    Can you please help me out?

    Sorry for the jammed one
    Neat one.
    am trying to setup OracleOJMS provider and tries to access queue and post to queue from a normal jsp for testing.
    I am getting the following
    javax.jms.JMSException: Not supported in XA-backed session outside global transaction
    at oracle.j2ee.ra.jms.generic.RAUtils.make(RAUtils.java:525)
    at oracle.j2ee.ra.jms.generic.RAUtils.toJMSException(RAUtils.java:199)
    at oracle.j2ee.ra.jms.generic.RAUtils.toJMSException(RAUtils.java:210)
    at oracle.j2ee.ra.jms.generic.CommonProducerWrapper.prepareForS
    INVOCATION
    <form name="TestResourceProvider" method="GET">
    <%
    // Check if the message has to be enqueued
    if (request.getParameter("Message") != null){
    Context jndiContext = new InitialContext();
    XAQueueConnectionFactory queueCF = (XAQueueConnectionFactory)jndiContext.lookup
    ("java:comp/env/jms/InQueueCF");
    Queue queue = (Queue)jndiContext.lookup("java:comp/env/jms/InQueue");
    QueueConnection queueConnection = queueCF.createQueueConnection();
    // Start the Connection
    queueConnection.start();
    QueueSender sender = queueSession.createSender(queue);
    Message msg = queueSession.createTextMessage(request.getParameter("Message"));
    sender.send(msg);
    queueSession.commit();
    sender.close();
    queueSession.close();
    queueConnection.close();
    %>
    <%
    }else{
    // User can enter the message to be enqueued through here
    %>
    Enter the message to be enqueued
    <INPUT type="text" name="Message">
    <br><br>
    <input type="Submit" value="Enqueue Message">
    <%
    %>
    </form>
    </body>
    </html>
    ---------------------

  • ICP -Cell Does not support Inter company transaction details

    Hi All
    I have trouble in ICP.... in the metadata i configured the ICP related account and entity are correct and plug account a....
    i have written the rules like
    Sub Transaction()
    HS.SupportsTran "S#Fullline.A#111501.C1#FLW_ST.C2#AGINGACCTREC.C3#AGINGSPECS.C4#ALL"
    HS.Supportstran "S#Fullline.A#154501.C1#FLW_LT.C2#AGINGACCTPAY.C3#AGINGSPECS.C4#ALL"
    End Sub 'Transaction
    in the ProcessICP transaction i assigned correct way but i try to save them the message was throw *" Cell Does not support Inter company transaction details"*
    .... Help me urgent
    or another way to create the ICP transaction like load the ICP Data ..if possible then how i do (format)?
    Regards
    Kimi

    Hyperion/Oracle includes examples of most of the product functionality in the sample applications. For ICT you will find examples of the metadata, data, rules, and more in the STAT application. Look under \Financial Management\Sample Apps\Statutory and you will see this syntax in the rules file:
    Sub Transactions()
    HS.SupportsTran "S#ActMon.A#RecltIC.C1#Closing"
    HS.SupportsTran "S#ActMon.A#RecltIC.C1#Increases"
    End Sub
    Also check your scenario settings to ensure the frequency for IC transactions is correct.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Hosting company does not support SQL query with OUTFILE clause

    From my mysql database, I want to allow the user to run a query and produce a csv / text file of our membership database.   Unfortunately,  I just found out my hosting company does not support the SQL query with OUTFILE clause for MySQL database.
    Are there any other options available to produce a file besides me running the query in phpadmin and making the file available to users.
    Thanks.  George

    Maybe this external Export Mysql data to CSV - PHP tutorial will be of help
    Cheers,
    Günter

  • Company not supporting Blackberry Z10

    I'm very disappointed.  I was looking forward to the Z10.  bought it yesterday.  But after spending several hours calling into IT to get it activated on the enterprise server, I learned that my company is not supporting the Z10 and doesn't know if and when it will support it.  So i had to return it and by an iphone. I heard the same thing about another company tonight.  Doesn't look good for Blackberry.  And i loved the phone.

    As the Exec Director for our IT area with 30,000 clients, I can tell you it's no simple thing to offer BES support for these devices yet.  It may seem like a simple thing when people have been buying BB phones for years and activating them on the BES servers, but you have to understand that the BES 10 server is a COMPLETELY new platform.
    We have been testing since the day the BES software came out - we had to build all new servers, install the new software as it was going through name changes and configuration changes over the first couple of weeks.  We have 11 issue tickets registered with BlackBerry currently to address issues we've had configuring the software for our environment.  And we have very advanced support staff that have worked with BES technologies for nearly 10 years.  
    We have basic functionality working - I'm one of the first pilot users on the sytem and it seems to be working okay, but you really need to give it some time as this is similar to introducing a Windows 8 phone into an evnrionment that's never had it before - new phone, new software, new server platform, new issues...
    We plan to have our service available for production in about a month - and we're being very aggressive because we believe this is the best mobile platform out there for a corporate environment.  Even with all the issues we've had, we still firmly believe that...just be patient!  I really hope all the large corporate envrionments are taking the same approach.  

  • Best practice for OID Net Naming Configuration in global company

    I'd like some feedback on what approach to take in configuring Net Service Names in OID for a global company. We have multiple sites with multiple groups of DBA's. We're weighing pro's and con's of a single domain within OID for Net service names vs a separate domain for each distinct group of DBA's that manage service names.
    To the best of my understanding, it is only possible to configure clients to look at a single domain in OID vs ldap.ora parameter default_admin_context. We have users who access databases across different DBA support areas, so we like the idea of a single domain so that any service name within the enterprise can be resolved by users without having service names entered at multiple levels in the directory.
    However, it is also my understanding that to segregate security of administering service names, it is only possible to do so by having different domains within the directory (it is not possible or at least practical to have different levels of security defined in a single flat domain). I also have concerns about the manageability of service names if they are all listed in a single domain. The list could get rather unwieldy to sort through.
    I would be very interested in opinion or feedback on what others are doing.
    Thanks,

    I'd like some feedback on what approach to take in configuring Net Service Names in OID for a global company. We have multiple sites with multiple groups of DBA's. We're weighing pro's and con's of a single domain within OID for Net service names vs a separate domain for each distinct group of DBA's that manage service names.
    To the best of my understanding, it is only possible to configure clients to look at a single domain in OID vs ldap.ora parameter default_admin_context. We have users who access databases across different DBA support areas, so we like the idea of a single domain so that any service name within the enterprise can be resolved by users without having service names entered at multiple levels in the directory.
    However, it is also my understanding that to segregate security of administering service names, it is only possible to do so by having different domains within the directory (it is not possible or at least practical to have different levels of security defined in a single flat domain). I also have concerns about the manageability of service names if they are all listed in a single domain. The list could get rather unwieldy to sort through.
    I would be very interested in opinion or feedback on what others are doing.
    Thanks,

  • Palm says Domino servers not supported (??????) - webOS 2.1.0 IMAP or EAS Sync do not work

    So I've been struggling to get my work email up and running on a new Pre2. All my accounts except my work account sync without any issue. At work we use a Domino 8.5.2 server with Domino Traveler. Users not using the corporate BB's have the option to sync their mail using IMAP or EAS (on Traveler) on the server. Both of these work flawlessly on my Pre (minus) 1.4.5 (which I am still using) and neither works on the Pre2 2.1.0.
    I have been all over the internet, logged a complaint with Palm. Had the problem escalated to Level 3.  HP-Palm has no tech support for WebOs devices in Asia (where I am presently based) and they told me US based level 3 tech support cannot make overseas calls. Tried calling the US tech support myself but it took 30min to get the guy to understand the problem as I had to start from scratch even after giving my complaint ref number. After that no news from them. No call back no email - nothing. Finally wrote an email on their website complaining to HP's CEO. The very next day some guy from tech support in Asia called me and giving reference of my email to Mr.Apotheker told me that he would co-ordinate with the engineers in USa and call me each day to update me on the status of my complaint.
    After 3 calls from the guy during with some more questions answered he finally called me this morning to convey the following to me.
    "The complaint lodged by you has been checked, duplicated at our end and confirmed. However, IMAP email on a Domino server or Domino Traveler EAS synchronization is not supported by webOS 2 so we cannot help me any further. Have a nice day!"
    Wow, I could not believe that this guy was actually serious about this statement. HP-Palm are actually publicly stating that a webOS 2 device syncing with a Domino server is not officially supported. That in my opinion is unbelievable. They cannot possibly have any hopes of being a serious player in the enterprise environment with this level (or lack thereof) of email sync support on the device.
    To anyone who can still help me trouble shoot I have already tried the following:
    - deleted & setup problem account again
    - partial erase
    - full erase
    - full secure erase with a completely new palm profile
    - on server side completely new mail db setup on server
    - trying to click forward and back between email messages
    - setting up a test account for the palm guys to try to log into and confirm duplication of this issue at their end
    Nothing works. The final result is:
    IMAP: it is absolutely impossible to get the IMAP Sync to show folders from our sever. The account gets set up and validates without any problem. But no folders show up on the device. If you click on drafting a new email message and send out a message it may or may not go (random behavior). It shows up in the Outbox on the device and in case it is successfully transmitted it just disappears from device (no sent folder). On the desktop client the sent email appears in the sent folder.
    Conclusion: SMTP relay works at times. IMAP sync for incoming connects but no folders show up on device.
    EAS Sync with Domino Traveler: After trying dozens of different configurations the email starts to sync and all the folders show up. all email headers show up just fine. But whenever I try to open an email it needs anywhere from a couple of seconds to 30-40 seconds while I watch the "retrieving email text" then if I am lucky the email opens with full text but there are a number of email messages which never open and eventually give me an "error - unable to download".
    Conclusion: The email sync with Traveler is completely random. I can read some messages but most show me an error. The contacts search from Global address book on the server works albeit with a 5-10 second delay.
    HP-Palm have given me a reference bug number CSO-7675 and as I understood officially told me that they cannot offer any further help. I don't know if this issue will be addressed in subsequent updates or I'm on my own. If anyone can offer any further help on this issue it would be much appreciated.
    Post relates to: Pre 2 p102ueu (SFR)

    I have tried much of what you have and have the same basic problem. Email sync to Traveler 8.5.2FP2 is erratic at best. Another symptom I see is if sometimes when I open an email from the Inbox, I get the body of a different email! So something is definitely broken. Question is, is it Traveler or WebOS? It seems that WebOS 2.x uses a later version of Active Sync as I can see messages on the Domino console referring to XML tags that are not understood and other error messages. I'm pretty sure Traveler only supports what is needed for the iPhone to sync. It is very annoying and pretty much makes email / celndaring unusable. The calendar on my Pre seems to take a long time to respond after opening and I'm pretty sure it's due to the above issues. I have tried the commonTime mNotes product and that works fine but I would prefer to use Traveler as it is a more elegant solution.

  • Print to PDF - using Snow Leopard (Saving a PDF file when printing is not supported. Instead, choose

    i have a PDF form that i created that is used as a custom proposal that my company sends out to potential clients. the form in its editable state is only used internally. we recently upgraded to snow leopard, but prior to the upgrade, we were able to fill the custom proposal form out using adobe reader, and, as you well know, we weren't able to save that edited document as a PDF with the custom form fields filled out. our work around using adobe reader was to print to a pdf using the adobe pdf printer in the printer dialog. with the addition of snow leopard, however, instead of choosing the adobe pdf printer, we were to choose PDF from the bottom left corner, then Save As PDF, and it would spit out an uneditable pdf that then allowed us to email it to the potential client without them being able to edit it as well as have an internal, digital copy for our records instead of having lots of paper floating around (i know this is also doable using security that disallows the client certain editing privileges, but printing to a pdf is much quicker and more efficient, and the pdf security isn't really that secure at its best).
    in any case, i came across this gem of a post here on the support forums that installs another option from the PDF drop down on the bottom left of the print dialog menu that reads Save As Adobe PDF and is supposed to do exactly what i am trying to get it to do...print to a pdf file from adobe reader.
    http://kb2.adobe.com/cps/509/cpsid_50981.html    
    once i updated to acrobat 9.2 (as the link above suggests 9.1), however, the Save As Adobe PDF does appear in the print dialog menu, but it still gives me the same error that acrobat 8 - 9 gave me while using Snow Leopard — Saving a PDF file when printing is not supported. Instead, choose File > Save — and as i've already explained, you can't save an edited pdf form in reader (as i am the only one in the office with acrobat) and still keep the fields as you've entered them in. the only work around is to print to a pdf but is apparently having some recent problems.
    using acrobat, however, i know that i can save the editable pdf as a new file with the fields customized as i have left them, but it still saves it as an editable pdf and the print to a pdf option still remains the best option...that way we have digital copies internally that are uneditable that can be printed at any time or emailed to the client.
    how can i do print to a pdf, based on what i've written above, using snow leopard and acrobat and reader?

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • SSRS in SharePoint Mode: Reporting Services scale-out deployment is not supported in this edition of Reporting Services [not true]

    Hello,
    We are experiencing some issues with SharePoint 2013 which is driving me insane.
    We have a deployment with two SQL Servers (HA groups) and four SharePoint servers: 2 Application servers, and 2 Web FrontEnd servers.
    We installed SSRS for SharePoint in both application servers. The disc I have used is the MSDN image of SQL Enterprise 2012 w/ SP2.
    ISO name: en_sql_server_2012_enterprise_edition_with_service_pack_2_x64_dvd_4685849.iso
    MD5: 003e14c55fa648ad15f8be1e2439bd06
    The installation completes without any problems. We can start the SSRS SharePoint Service in the first application server without any issues. However when we try to start the second one, we get the following error:
    Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the sql reporting services service in the farm. The SQL Server Reporting Services cannot be started on
    this server unless it is stopped on all other servers in the farm.
    Now I am at a loss here. As I mentioned, we have used an image of SQL Server Enterprise. This is the same image we used on other environment, which worked as expected (we got no such error).
    I have included the text related to the correlation error from the SP logs below.
    Has anyone ever seen this issue before? Very, very strange!
    Regards,
    P.
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://spap-01:5555/_admin/Server.aspx?ServerId=7f7d5eec-3791-44cf-a992-673eaea90f48) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=, ClaimsCount=0 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostAuthenticateRequestHandler). Execution Time=9.742 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.28 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General 6t8h High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.23, Original Level: Verbose] {0} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.28 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Web Controls 88wu High [Forced due to logging gap, Original Level: Verbose] SPGridView.OnRowCreated() - Row.RowType={0}, .RowState={1}, .RowIndex={2}, .DataItemIndex={3} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.37 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General af4yd High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.28, Original Level: Verbose] TenantAppEtag record requested but there is no sitesubscription or tenantId for site {0} so we will use the WebApp Id for the cache. 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.37 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Asp Runtime aj1kp High [Forced due to logging gap, Original Level: Verbose] SPRequestModule.PreSendRequestHeaders 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.43 OWSTIMER.EXE (0x1F10) 0x0B40 SharePoint Foundation Health abire Medium Failed to Sql Query data XEvent collector on sql-01. The error is Object reference not set to an instance of an object.
    01/29/2015 14:13:26.51 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 7034 Critical An attempt to start/stop instance of service Microsoft SQL Server Reporting Services Shared Service on server SPAP-01 did not succeed. Re-run the action via UI or command line on the specified server. Additional information is below. Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.40, Original Level: Verbose] SQL connection time: 0.0821 for Data Source=sql-01;Initial Catalog=SharePoint_Config;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][SharePoint_Config] 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 88b9 High [Forced due to logging gap, Original Level: Verbose] Determining if the current user is a SharePoint Farm Administrator 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 8xqz Medium Updating SPPersistedObject ReportingWebServiceInstance. Version: 1118292 Ensure: False, HashCode: 52212853, Id: 5a4058b9-2ecd-421e-b9ae-818bbc57c8c6, Stack: at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.79 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.57, Original Level: Verbose] SQL connection time: 0.0965 for Data Source=sql-01;Initial Catalog=SharePoint_Config;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][SharePoint_Config] 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.79 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database 8acb High [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.86 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 88ch High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.84, Original Level: Verbose] {0} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.86 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General 8nca Medium Application error when access /_admin/Server.aspx, Error=Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.87 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Runtime tkau Unexpected System.InvalidOperationException: Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.89 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.InvalidOperationException: Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.92 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,2 agb9s,9 b4ly,309 8xqz,331 8nca,15 tkau,8 ajlz0 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.92 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://spap-01:5555/_admin/Server.aspx?ServerId=7f7d5eec-3791-44cf-a992-673eaea90f48)). Execution Time=712.2145 6f83e49c-cc03-d049-90f4-81439b542cf8

    Hi Wynn,
    I appreciate your attempt to address my concerns, but even your reply seems to ignore the fact that I have not only provided the name of the ISO, but the MD5 checksum of the ISO as well. Also this is the first time I am being asked to double-check the version
    of SSRS. The first reply I got to my query simply disregarded the version mismatch.
    As per your request, I have checked under the folder you have specified (C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\WebServices\LogFiles), but unfortunately there are no files under this folder in neither of my two application
    servers.
    We only have logfiles under C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS 
    Is there a way I can turn those logs on?
    In the meantime, we run the SQL Server Discovery tool and I have attached the summary for you to see that it finds the Enterprise Edition of SQL Server:
    Final result: Passed
    Exit code (Decimal): 0
    Start time: 2015-01-29 15:17:44
    End time: 2015-01-29 15:17:56
    Requested action: RunDiscovery
    Machine Properties:
    Machine name: SP-AP-02
    Machine processor count: 4
    OS version: Future Windows Version
    OS service pack:
    OS region: United States
    OS language: English (United States)
    OS architecture: x64
    Process architecture: 64 Bit
    OS clustered: No
    Product features discovered:
    Product Instance Instance ID Feature Language Edition Version Clustered Configured
    SQL Server 2012 Management Tools - Basic 1033 Enterprise Edition 11.2.5058.0 No Yes
    SQL Server 2012 Reporting Services - SharePoint 11.2.5058.0 No Yes
    Package properties:
    Description: Microsoft SQL Server 2012
    ProductName: SQL Server 2012
    Type: RTM
    Version: 11
    SPLevel: 0
    Installation edition:
    User Input Settings:
    ACTION: RunDiscovery
    CONFIGURATIONFILE:
    ENU: true
    HELP: false
    IACCEPTSQLSERVERLICENSETERMS: false
    INDICATEPROGRESS: false
    QUIET: false
    QUIETSIMPLE: false
    UIMODE: Normal
    X86: false
    Configuration file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20150129_151743\ConfigurationFile.ini
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file: The rule result report file is not available.
    The \Setup Bootstrap\Log folder also has several log files that indicates the version of SQL Server that has been installed. For instance here is an entry of the Detail.txt file:
    (01) 2015-01-28 19:10:27 Slp: -- SkuPublicConfigObject : CreateSKUCookie succeeded, new checksum is 195 bytes.
    (01) 2015-01-28 19:10:27 Slp: -- SkuPublicConfigObject : Updated skuCheckSumInfo -> daysLeft=0 sqlEdition='ENTERPRISE' (0x6B9471A8) fileTimeInstalled=0 timeBombValue=0 editionType='Enterprise Edition' edition='Enterprise Edition' writeEditionStrings='True' checkSum=195bytes
    (01) 2015-01-28 19:10:27 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    I hope this help while we don't have any logfiles in the folder you asked me to look into. Please advise me as in how to proceed if logfiles must be generated.
    Regards,
    P.

  • Unable to open message. Format not supported.

    This problem has already  been discussed here however I can provide some more detailed information. Our company runs a network of automatic telemetry stations. The stations send short messages containing some data to the users. Even though the message contains only a plain text and can be displayed on most mobile phones without any problem, it can't be displayed on some Nokia phones, e.g.. N8 and 2630. The model 2630 shows "Message cannot be displayed". The N8 shows "Unable to open message. Format not supported", but the beginning of the message (preview) is readable in the inbox.
    On the sender side the  Wavecom wireless CPU model Q2686 is used. I tried to send various messages using AT+CMGS command but regardless of the content they cannot be displayed on N8 and 2360.
    Please help. If anyone is interested in this problem I can demonstrate it by sending an 'undisplayable' message to his mobile phone number.

    Hi,
    I have N8, and same thing happened to me when i recieved MMS Confg. for using operator internet mobile,  "Message Format not supported"
    about me i change to another GSM operator, and its work now.
    i think u can add an access point manually, go to ur GSM Operator and take the setup details, and from conective > setting > Destinations > Add new acc. pt. 
    Hope this will help u.

  • Version 03.03.00.XO - MLS QOS not supported

    Hi All,
    Anyone face the same problem with the following IOS Version?
    MLS QOS is not supported in global command.
    Switch#sh ver
    Cisco IOS Software, IOS-XE Software, Catalyst 4500 L3 Switch Software (cat4500es8-UNIVERSALK9-M), Version 03.03.00.XO RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Wed 14-Aug-13 07:26 by prod_rel_team
    Cisco IOS-XE software, Copyright (c) 2005-2013 by cisco Systems, Inc.
    All rights reserved.  Certain components of Cisco IOS-XE software are
    licensed under the GNU General Public License ("GPL") Version 2.0.  The
    software code licensed under GPL Version 2.0 is free software that comes
    with ABSOLUTELY NO WARRANTY.  You can redistribute and/or modify such
    GPL code under the terms of GPL Version 2.0.  For more details, see the
    documentation or "License Notice" file accompanying the IOS-XE software,
    or the applicable URL provided on the flyer accompanying the IOS-XE
    software.
    ROM: 15.1(1r)SG2
    Switch uptime is 6 minutes
    System returned to ROM by power-on
    Running default software
    Jawa Revision 3, RadTrooper Revision 0x0.0x41, Conan Revision 0x1449
    Last reload reason: power-on
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    License Information for 'WS-X45-SUP8-E'
        License Level: entservices   Type: Permanent
        Next reboot license Level: entservices
    cisco WS-C4506-E (P5040) processor (revision 2) with 4194304K bytes of physical memory.
    Processor board ID FXS1812Q346
    P5040 CPU at 2.2GHz, Supervisor 8-E
    Last reset from PowerUp
    1 Virtual Ethernet interface
    20 Ten Gigabit Ethernet interfaces
    511K bytes of non-volatile configuration memory.
    Configuration register is 0x2101
    SWITCH(config)#mls qos
                         ^
    % Invalid input detected at '^' marker.
    SWITCH(config)#
    SWITCH(config)#?
    Configure commands:
      aaa                         Authentication, Authorization and Accounting.
      access-list                 Add an access list entry
      access-session              Access Sesion Global Configuration Commands
      agent-server                Modify DNS server properties
      alias                       Create command alias
      ancp                        Configure ANCP
      archive                     Archive the configuration
      arp                         Set a static ARP entry
      async-bootp                 Modify system bootp parameters
      audit                       Router Audit
      authentication              Auth Manager Global Configuration Commands
      auto                        Configure Automation
      banner                      Define a login banner
      beep                        Configure BEEP (Blocks Extensible Exchange
                                  Protocol)
      bfd                         BFD configuration commands
      bfd-template                BFD template configuration
      boot                        Modify system boot parameters
      bridge                      Bridge Group.
      buffers                     Adjust system buffer pool parameters
      bulkstat                    Bulkstat Application
      call-home                   Enter call-home configuration mode
      cdp                         Global CDP configuration subcommands
      cef                         Cisco Express Forwarding
      cisp                        Set CISP parameters
      class-map                   Configure CPL Class Map
      clns                        Global CLNS configuration subcommands
      clock                       Configure time-of-day clock
      cluster                     Cluster configuration commands
      cns                         CNS agents
      comet-server                Configure comet-server properties
      config-register             Define the configuration register
      configuration               Configuration access
      control-plane               Configure control plane services
      crypto                      Encryption module
      cts                         Cisco Trusted Security commands
      default                     Set a command to its defaults
      default-value               Default character-bits values
      define                      interface range macro definition
      device-sensor               IOS Sensor Commands
      diagnostic                  Configure diagnostic information
      dns-server                  Modify DNS server properties
      dnsix-dmdp                  Provide DMDP service for DNSIX
      dnsix-nat                   Provide DNSIX service for audit trails
      do-exec                     To run exec commands in config mode
      dot1x                       IEEE 802.1X Global Configuration Commands
      downward-compatible-config  Generate a configuration compatible with older
                                  software
      eap                         EAP Global Configuration Commands
      emm                         Specify pre-loading of MDF
      enable                      Modify enable password parameters
      end                         Exit from configure mode
      energywise                  EnergyWise Global Configuration Commands
      epm                         EPM Global Configuration Commands
      errdisable                  Error disable
      ethernet                    Ethernet configuration
      event                       Event related configuration commands
      exception                   Exception handling
      exit                        Exit from configure mode
      fallback                    Fallback configuration commands
      fhrp                        Configure First Hop Redundancy Protocols
      file                        Adjust file system parameters
      fips                        FIPS mode after next reload
      flow                        Global Flow configuration subcommands
      format                      Format the output
      global-address-family       Enter address-family base routing topology mode
      help                        Description of the interactive help system
      hostname                    Set system's network name
      hw-module                   Apply command (e.g. shutdown) to specified
                                  hardware target
      hw-module                   Control of individual components in the system
      hw-switch                   Control of individual components in the switch
      id-manager                  ID Pool Manager
      identity                    Identity Configuration Commands
      infra-test                  Configure end2end properties
      interface                   Select an interface to configure
      ip                          Global IP configuration subcommands
      ipc                         Configure IPC system
      ipv6                        Global IPv6 configuration commands
      isis                        Global ISIS configuration subcommands
      issu                        no description
      key                         Key management
      kron                        Kron interval Facility
      l2                          Layer 2
      l2protocol-tunnel           Tunnel Layer2 protocols
      lacp                        LACP configuration
      li-view                     LI View
      license                     Configure License
      line                        Configure a terminal line
      link                        Enable Link State Tracking feature
      lldp                        Global LLDP configuration subcommands
      location                    Global location configuration commands
      logging                     Modify message logging facilities
      login                       Enable secure login checking
      mab                         MAC Authentication Bypass Global Configuration
                                  Commands
      mac                         Global MAC configuration subcommands
      macro                       Macro configuration
      media-proxy                 Global media proxy configuration
      mediatrace                  Mediatrace Application
      memory                      Configure memory management
      metadata                    Metadata Application
      mka                         MACsec Key Agreement (MKA) configuration
      module                      Module
      monitor                     Monitoring different system events
      mvr                         Enable/Disable MVR on the switch
      netconf                     Configure NETCONF
    Thank you.

    Hi,
    QOS implementation has radically changed since the advent of
    sup-7 & later
    You no longer set mls qos as qos is on the engine by default.
    Please see the following links
    http://www.cisco.com/c/en/us/products/collateral/switches/catalyst-4500-series-switches/white_paper_c11-539588.html
    "Ingress QoS: Default Actions
    First and foremost, QoS does not need to be enabled on the Supervisor Engine, it is on by default in compliance with the MQC construct.
    When a packet arrives at an interface, there are two options to take into consideration: is there a policy attached or not? If the packet arrives with or without a marking and there is not a policy attached to the interface, packets will flow through the switch untouched. There are no questions as to where the packet came from or if it has a valid marking. If the packet arrives with or without a marking, and a policy is attached to the interface, the packet will only then be subject to the policy classification."
    And the config guide
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst4500/15-1/XE_330SG/configuration/guide/config/qos_mrg.html#wp1461453
    Hope this helps
    Regards
    Alex

  • "error: thread-local storage not supported for this target"

    I have a program that uses the __thread specifier, to be run on a Solaris 9/UltraSprac.
    I am not able to compile it using gcc 3.4.4 or 4.0.4, it emits the msg "error: thread-local storage not supported for this target".
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o func_stack.o func_stack.c
    Reading specs from /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/specs
    Configured with: ../srcdir/configure --prefix=/opt/gcc/3.4.4 --disable-nls
    Thread model: posix
    gcc version 3.4.4
    /opt/gcc/3.4.4/libexec/gcc/sparc-sun-solaris2.8/3.4.4/cc1 -quiet -v -D_REENTRANT -DMESS func_stack.c -quiet -dumpbase func_stack.c -mcpu=v7 -auxbase-strip func_stack.o -Wall -version -o /var/tmp//cc0poHSN.s
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/../../../../sparc-sun-solaris2.8/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /opt/gcc/3.4.4/include
    /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/include
    /usr/include
    End of search list.
    GNU C version 3.4.4 (sparc-sun-solaris2.8)
            compiled by GNU C version 3.4.4.
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    func_stack.c:16: error: thread-local storage not supported for this target
    func_stack.c:17: error: thread-local storage not supported for this target
    func_stack.c:19: error: thread-local storage not supported for this target
    xs@gamera% gcc -v -D_REENTRANT  -c -o func_stack.o func_stack.c
    Using built-in specs.
    Target: sparc-sun-solaris2.9
    Configured with: /net/clpt-v490-0/export/data/bldmstr/20070711_mars_gcc/src/configure --prefix=/usr/sfw --enable-shared --with-system-zlib --enable-checking=release --disable-libmudflap --enable-languages=c,c++ --enable-version-specific-runtime-libs --with-cpu=v9 --with-ld=/usr/ccs/bin/ld --without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    /pkg/gcc/4.0.4/bin/../libexec/gcc/sparc-sun-solaris2.9/4.0.4/cc1 -quiet -v -I. -iprefix /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/ -D__sparcv8 -D_REENTRANT -DMESS func_stack.c -quiet -dumpbase func_stack.c -mcpu=v9 -auxbase-strip func_stack.o -version -m32 -o /tmp/ccjsdswh.s -r /tmp/cc2w4ZRo.ir
    ignoring nonexistent directory "/pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/../../../../sparc-sun-solaris2.9/include"
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/usr/sfw/lib/gcc/sparc-sun-solaris2.9/4.0.4/include"
    ignoring nonexistent directory "/usr/sfw/lib/../sparc-sun-solaris2.9/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/include
    /usr/sfw/include
    /usr/include
    End of search list.
    GNU C version 4.0.4 (gccfss) (sparc-sun-solaris2.9)
            compiled by GNU C version 4.0.4 (gccfss).
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    func_stack.c:16: error: thread-local storage not supported for this target
    func_stack.c:17: error: thread-local storage not supported for this target
    func_stack.c:19: error: thread-local storage not supported for this targetJust as comparison, the corresponding output of compiling another file which does not have __thread declaration is as follows:
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o common.o common.c
    Reading specs from /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/specs
    Configured with: ../srcdir/configure --prefix=/opt/gcc/3.4.4 --disable-nls
    Thread model: posix
    gcc version 3.4.4
    /opt/gcc/3.4.4/libexec/gcc/sparc-sun-solaris2.8/3.4.4/cc1 -quiet -v -D_REENTRANT -DMESS common.c -quiet -dumpbase common.c -mcpu=v7 -auxbase-strip common.o -Wall -version -o /var/tmp//cc4VxrLz.s
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/../../../../sparc-sun-solaris2.8/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /opt/gcc/3.4.4/include
    /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/include
    /usr/include
    End of search list.
    GNU C version 3.4.4 (sparc-sun-solaris2.8)
            compiled by GNU C version 3.4.4.
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    /usr/ccs/bin/as -V -Qy -s -xarch=v8 -o common.o /var/tmp//cc4VxrLz.s
    /usr/ccs/bin/as: Sun WorkShop 6 update 2 Compiler Common 6.2 Solaris_9_CBE 2001/04/02Note that the last 2 lines seem to suggest that a Sun assembler is used as the back-end of gcc. I am not sure whether the failure to compile the first file (with __thread) was due to the incompatibility of this Sun assembler. In the first case, the error msg was emitted before these 2 lines are printed.
    I further read a post about gcc 3.3.3's inability to compile code that has __thread in it, on a HP-UX 11.11: http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1216595175060+28353475&threadId=1148976 The conclusion seems to suggest that "the 2.17 GNU assembler did not support thread local storage" and gcc sees that and thus disallows TLS.
    If the assembler is the culprit, then does anyone know whether this "Sun WorkShop 6 update 2" assembler in my installation can work with TLS? And how come a Sun assembler becomes the back-end of gcc? I read that gas (the GNU assembler) is the default backend of gcc. (How) can one specify the assembler to be used for gcc?
    As an aside, I am able to compile my file on this same Solaris 9/UltraSparc platform using the Sun Studio 12 C Compiler:
    xz@gamera% cc -V -# -D_REENTRANT  -c -o func_stack.o func_stack.c
    cc: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12
    ### Note: NLSPATH = /pkg/SUNWspro/12/prod/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/pkg/SUNWspro/12/prod/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat
    ###     command line files and options (expanded):
    ### -c -D_REENTRANT  -V func_stack.c -o func_stack.o
    /pkg/SUNWspro/12/prod/bin/acomp -xldscope=global -i func_stack.c -y-fbe -y/pkg/SUNWspro/12/prod/bin/fbe -y-xarch=generic -y-xmemalign=8i -y-o -yfunc_stack.o -y-verbose -y-xthreadvar=no%dynamic -y-comdat -xdbggen=no%stabs+dwarf2+usedonly -V -D_REENTRANT  -m32 -fparam_ir -Qy -D__SunOS_5_9 -D__SUNPRO_C=0x590 -D__SVR4 -D__sun -D__SunOS -D__unix -D__sparc -D__BUILTIN_VA_ARG_INCR -D__C99FEATURES__ -Xa -D__PRAGMA_REDEFINE_EXTNAME -Dunix -Dsun -Dsparc -D__RESTRICT -xc99=%all,no%lib -D__FLT_EVAL_METHOD__=0 -I/pkg/SUNWspro/12/prod/include/cc "-g/pkg/SUNWspro/12/prod/bin/cc -V -D_REENTRANT  -c -o func_stack.o " -fsimple=0 -D__SUN_PREFETCH -destination_ir=yabe
    acomp: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12Interestingly, the output no longer mentions the "/usr/ccs/bin/as: Sun WorkShop 6 update 2" assembler.

    Just as another comparison, I compiled a file without __thread on the Solaris 9/UltraSparc platform using gcc 4.0.4. Not surprisingly it worked. But I no longer see the mention of the Sun assembler as in the case of gcc 3.4.4. Nor did I see the mention of "GNU assembler" as in the case of gcc 4.0.4/Solaris 10/x86. Instead, I saw something called "iropt" and "cg". Does anyone know what they are?
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o common.o common.c
    Using built-in specs.
    Target: sparc-sun-solaris2.9
    Configured with: /net/clpt-v490-0/export/data/bldmstr/20070711_mars_gcc/src/configure --prefix=/usr/sfw --enable-shared --with-system-zlib --enable-checking=release --disable-libmudflap --enable-languages=c,c++ --enable-version-specific-runtime-libs --with-cpu=v9 --with-ld=/usr/ccs/bin/ld --without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    /pkg/gcc/4.0.4/bin/../libexec/gcc/sparc-sun-solaris2.9/4.0.4/cc1 -quiet -v -iprefix /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/ -D__sparcv8 -D_REENTRANT -DMESS common.c -quiet -dumpbase common.c -mcpu=v9 -auxbase-strip common.o -Wall -version -m32 -o /tmp/ccSGJIDD.s -r /tmp/ccKuJz76.ir
    ignoring nonexistent directory "/pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/../../../../sparc-sun-solaris2.9/include"
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/usr/sfw/lib/gcc/sparc-sun-solaris2.9/4.0.4/include"
    ignoring nonexistent directory "/usr/sfw/lib/../sparc-sun-solaris2.9/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/include
    /usr/sfw/include
    /usr/include
    End of search list.
    GNU C version 4.0.4 (gccfss) (sparc-sun-solaris2.9)
            compiled by GNU C version 4.0.4 (gccfss).
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    /pkg/gcc/4.0.4/SUNW0scgfss/4.0.4/prod/bin/iropt -F -xarch=v8plus -xchip=generic -O1 -xvector=no -xbuiltin=%none -xcache=generic -Qy -h_gcc -o /tmp/ccUl4mVM.ircg /tmp/ccKuJz76.ir -N/dev/null -is /tmp/ccSGJIDD.s
    /pkg/gcc/4.0.4/SUNW0scgfss/4.0.4/prod/bin/cg -Qy -xarch=v8plus -xchip=generic -OO0 -T3 -Qiselect-C0 -Qrm:newregman:coalescing=0 -xcode=abs32 -xcache=generic -xmemalign=8i -il /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4//gccbuiltins.il -xvector=no -xthreadvar=no%dynamic -xbuiltin=%none -Qassembler-ounrefsym=0 -Qiselect-T0 -Qassembler-I -Qassembler-U -comdat -h_gcc -is /tmp/ccSGJIDD.s -ir /tmp/ccUl4mVM.ircg -oo common.o

  • I run a studio in Atlanta.  I am doing an upgrade to Protools 11.  Avid does not support Yosemite.  Mavericks is no where to be found on App store.  Had to purchase Mountain Lion.  I am losing money waiting on Apple to "ship" / email me a activation

    I run a studio here in Atlanta.  YEster day morning I called an Apple store to see if I could buy a copy of Mavericks.  They forwarded me to Apple Care.  Apple Care tech and myself could not find Mavericks anywhere on the app store.  Avid does not support Yosemiteam yet, so I had no other choice but to purchase Mountain Lion.  It has been over 24 hours waI ting on Apple to "ship" / email me a code to download from the app store.  I read a lot of horror stories from when they rolled out Mountain Lion in 2012 about it taking 72 hours to receive the codes.  I hope that maybe it doesn't take that l9ng this time because I am losing money by the minute.  Microsoft would have had a code to me in minutes.  This is just crazy.  I have used Apple products for years, but this is very disappointing.  Anyone else ordered Mountain Lion recently?  How long dI'd it take Apple to "ship" you your code via email?  Thanks

    From what I've read on these forums over the past few months, it hasn't gotten any better. An electronic order from any company shouldn't take more than 12 hours for a system to respond to, but people have been waiting up to a week for their redemption code email to arrive. It makes no sense to me why it would take that long.

Maybe you are looking for

  • Jump Menu Not working

    Hello good samaritans.. I need help.. The jump menu in my web page is not working. I already tried inserting a Go button but it still didnt work. I have a website and I created a template, in this template I created dummy jumpmenu first just to see h

  • BPF configuration: parallel and dependent steps

    Hi all, I have a BPF of let say 5 steps regarding 5 input form. step 1 is the main step and inputted by budget team.It is the rates input form. step 2 is the sales volume step and depend on step 1 (like other steps) inputted by sales team. step 3 is

  • 3.12 Upgrade Wiped Out All Media Content, Left Apps

    After being denied too many apps in the App Store b/c they required the new OS, I finally upgraded to 3.12 late last night. It took a while but the upgrade went smoothly. Before disconnecting the Touch from iTunes I verified that all the content (mus

  • Java.util.concurrent.locks.Condition question

    Hi all, what is in practice the difference between condition.await() and condition.awaitUninterruptibly()? Why should I permit to wake up a dormant thread if the condition doesn't hold? What is the "best" solution? Regards, Michele

  • Business Objects Temporary License Keys no longer support OpenSQL

    Hello All Using a Temporary License Key I have been working on a demonstration for a potential customer showing how CR2008 can link to SAP. This has worked perfectly until today when I had to utilize a new Business Objects Temporary License Key. Now