Missing business types

Hi,
I used to have an Email Address and Money type as well as several other types, but now they aren't in the dropdown menu. I still have Person for whatever reason.
I don't know what triggered the problem.
I'm using VS 2013 Community Edition with Office Developer Tools.
I've tried uninstalling and reinstalling VS2013, starting a new project, and checking Google. No one else seems to have this problem.
Any ideas?
Thanks in advance,
Rei
the cows are here to take me home now...

Nope, I don't. But on trying to enable it, I get this error:
Unable to add a reference to this extension for the following reason: Could not load file or assembly 'file:///<project>\_Pvt_Extensions\Microsoft.LightSwitch.Extensions\IDE\Reference\ja\Microsoft.LightSwitch.Extensions.Design.Resources.dll' or one
of its dependencies. Could not find or load a specific file. (Exception from HRESULT: 0x80131621)
The reference to this extension has been removed. You must restart Microsoft Visual Studio in order for the changes to take effect.
I've been having a whole slew of other problems as well, such as VS crashing and corrupting the project when I delete a folder within Screens.
I suspect it has something to do with the Reference\ja: when I first installed Office Tools, it installed the Japanese version, which it didn't like. I uninstalled it and reinstalled English, but apparently there are still remnants of that installation.
Aside from VS2013 and Office Tools, is there anything else I can remove?
the cows are here to take me home now...

Similar Messages

  • 0CRM_SRV_IBASE_TRAN - business types are missing ?

    Hi
    Can anyone explain me how BWA1 works in relation to DataSource 0CRM_SRV_IBASE_TRAN.  When I excute the datasource in RSA3, it only deliveres data for  u201CBusiness Transaction Typeu201D BUS2000116 and BUS2000117. I figured it was just a matter of maintaining the dataSource in BWA1. I added a new line containing BUS2000112, but that did not help much, I still only got BUS2000116 and BUS2000117. I have transaction data that contains data for BUS2000112 (0CRM_SALES_CONTR_I), so I would asume that 0CRM_SRV_IBASE_TRAN would deliver the matching master data. Iu2019m quite u201Dnewu201D to CRM data extracting, and I am afraid that there is something essensial that I have  missed.  Iu2019m used to work with extracting data from ERP but CRM seem to be a lot more complex.
    How do I get 0CRM_SRV_IBASE_TRAN to delivere data for  u201CBusiness Transaction Typeu201D BUS2000112 ?
    Kind regards
    Anders Toft

    Hi,
    We also had the same problem but we did the same thing .. we added the required Business type using TCODE BWA1under the tab Selection conditions and it worked for us.
    We have not done anyother activity.. but there can be the issue of Authorization the user required to have SAP_ALL  in profiles.
    Please check the user profile wtih which you are checking in RSA3 & same is applicable to background user from BI.
    Kindly check the same.
    Thanks
    Dipika
    Edited by: Dipika Tyagi on Mar 14, 2011 8:12 AM

  • SOAPException: faultCode=SOAP-ENV:Protocol; msg=Missing content type

    I have a WSDL file for which I have created a Web Service stub/skeleton through jdeveloper(version 10.1.2.3.0). Below is the complete code which has been generated by developer. Now whenever i try to run this file in jdeveloper I get the following exception. Please let me know how to resolve this issue.
    Also error message is received at the following line of code:
    *msg.send(endpointURL, ""<<some URL>>", requestEnv);*
    {code}
    *Exception Message*
    {code}
    [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Missing content type.]
    at org.apache.soap.transport.TransportMessage.read(TransportMessage.java:249)
    at oracle.soap.transport.http.OracleSOAPHTTPConnection.post(OracleSOAPHTTPConnection.java:973)
    at oracle.soap.transport.http.OracleSOAPHTTPConnection.send(OracleSOAPHTTPConnection.java:722)
    at org.apache.soap.messaging.Message.send(Message.java:125)
    at mypackage.NPVNSDLStub.PANDetails(NPVNSDLStub.java:88)
    at mypackage.NPVNSDLStub.main(NPVNSDLStub.java:41)
    {code}
    *Code generated by Jdeveloper*
    {code}
    package mypackage;
    import oracle.soap.transport.http.OracleSOAPHTTPConnection;
    import org.apache.soap.encoding.SOAPMappingRegistry;
    import org.w3c.dom.Element;
    import java.util.Vector;
    import oracle.jdeveloper.webservices.runtime.WrappedDocLiteralStub;
    import java.net.URL;
    import org.apache.soap.Envelope;
    import org.apache.soap.Body;
    import org.apache.soap.messaging.Message;
    import java.util.Properties;
    * Generated by the Oracle JDeveloper 10g Web Services Stub/Skeleton Generator.
    * Date Created: Wed Feb 29 18:39:33 IST 2012
    * WSDL URL: file:/C:/WS/sample.wsdl
    public class NPVNSDLStub extends WrappedDocLiteralStub
    public NPVNSDLStub()
    m_httpConnection = new OracleSOAPHTTPConnection();
    public static void main(String[] args)
    try
    NPVNSDLStub stub = new NPVNSDLStub();
    stub.PANDetails("aaaaa8888a");
    catch(Exception ex)
    ex.printStackTrace();
    private String _endpoint = "<<some URL>>";
    public String getEndpoint()
    return _endpoint;
    public void setEndpoint(String endpoint)
    _endpoint = endpoint;
    private OracleSOAPHTTPConnection m_httpConnection = null;
    private SOAPMappingRegistry m_smr = null;
    public String PANDetails(String Request) throws Exception
    URL endpointURL = new URL(_endpoint);
    Envelope requestEnv = new Envelope();
    Body requestBody = new Body();
    Vector requestBodyEntries = new Vector();
    String wrappingName = "PANValidationRequest";
    String targetNamespace = "<<namespace url>>";
    Vector requestData = new Vector();
    requestData.add(new Object[] {"Request", Request});
    requestBodyEntries.addElement(toElement(wrappingName, targetNamespace, requestData, false));
    requestBody.setBodyEntries(requestBodyEntries);
    requestEnv.setBody(requestBody);
    Message msg = new Message();
    msg.setSOAPTransport(m_httpConnection);
    *msg.send(endpointURL, "<<some URL>>", requestEnv);*
    Envelope responseEnv = msg.receiveEnvelope();
    Body responseBody = responseEnv.getBody();
    Vector responseData = responseBody.getBodyEntries();
    return (String)fromElement((Element)responseData.elementAt(0), java.lang.String.class);
    {code}
    Edited by: EJP on 2/03/2012 17:22: added code tags, but your indentation needs fixing                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Kishore,
    See the links referenced in these threads.
    Web Services and R12
    Re: Web Services and R12
    Integrated SOA Gateway
    Re: Integrated SOA Gateway
    Regards,
    Hussein

  • Error in CLR: InvalidOperationException - The current type is an interface and cannot be constructed. Are you missing a type mapping?

    Hi, I'm trying to execute a .NET assembly's method from SQL Server 2012 Express, but I'm stuck with this error calling the sp:
    Microsoft.Practices.ServiceLocation.ActivationException: Activation error occured while trying to get instance of type ISymmetricCryptoProvider, key "TripleDESCryptoServiceProvider" ---> Microsoft.Practices.Unity.ResolutionFailedException:
    Resolution of the dependency failed, type = "Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.ISymmetricCryptoProvider", name = "TripleDESCryptoServiceProvider".
    Exception occurred while: while resolving.
    Exception is: InvalidOperationException - The current type, Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.ISymmetricCryptoProvider, is an interface and cannot be constructed. Are you missing a type mapping?
    At the time of the exception, the container was:
      Resolving Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.ISymmetricCryptoProvider,TripleDESCryptoServiceProvider
     ---> System.InvalidOperationException: The current type, Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.ISymmetricCryptoProvider, is an interface and cannot be constructed. Are you missing a type mapping?
    System.InvalidOperationException:
       en Microsoft.Practices.ObjectBuilder2.DynamicMethodConstructorStrategy.ThrowForAttemptingToConstructInterface(IBuilderContext context)
       en BuildUp_Microsoft.Practices.EnterpriseLibrary.Security
    Microsoft.Practices.ServiceLocation.ActivationException:
       en Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type serviceType, String key)
       en Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance[TService](String key)
       en Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.Cryptographer.GetSymmetricCryptoProvider(String symmetricInstance)
       en Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.Cryptographer.DecryptSymmetric(String symmetricInstance, String ciphertextBase64)
       en ...
    Is there any limitation by design for Interface instantiation from CLR database?
    Any help I will appreciate, thanks a million!!

    Bob, thanks for your response.. Yes, the code works fine outside of SQLCLR. This is the class I'm trying to instantiate, I'm using it to envolve Cryptographer, an Enterprise Library 5.0 class actually, so I have no control to test it without referring the
    interface.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.Practices.EnterpriseLibrary.Security.Cryptography;
    using System.Security.Cryptography;
    using Microsoft.SqlServer.Server;
    using System.Data.SqlTypes;
    namespace Cars.UtileriasGlobales.Helpers
        /// <summary>
        /// Clase que permite encriptar y desencriptar cadenas de textos utilizando
        /// TripleDESCryptoServiceProvider de Enterprise Library 5.0
        /// </summary>
        public static class Cryptography
            #region Metodos
            [SqlProcedure]
            public static void DesencriptarSQLServer(SqlString cadena, out SqlString cadenaDesencriptada)
                cadenaDesencriptada = !String.IsNullOrEmpty(cadena.ToString()) ? Cryptographer.DecryptSymmetric("TripleDESCryptoServiceProvider", cadena.ToString().Replace(" ", "+"))
    : String.Empty;
            #endregion
    I have collected all the dependent assemblies in one directory 'C:\migrate', so the create assembly finish ok. This is the script to create the assembly I'm using:
    sp_configure 'clr enable', 1
    GO
    RECONFIGURE
    GO
    ALTER DATABASE cars SET TRUSTWORTHY ON
    GO
    CREATE ASSEMBLY CryptographyEntLib5
    AUTHORIZATION dbo
    FROM 'C:\migrate\Cars.UtileriasGlobales.dll'
    WITH PERMISSION_SET = UNSAFE
    GO
    CREATE PROCEDURE usp_Desencriptar
    @cadena nvarchar(200),
    @cadenaDesencriptada nvarchar(MAX) OUTPUT
    AS EXTERNAL NAME CryptographyEntLib5.[Cars.UtileriasGlobales.Helpers.Cryptography].DesencriptarSQLServer
    GO
    DECLARE @msg nvarchar(MAX)
    EXEC usp_Desencriptar 'Kittu And Tannu',@msg output
    PRINT @msg

  • Split balance sheet report by different business types

    Hi Expert,
    Recently, one of my entity with new business type required to setup and target live by May-2011. Currently, we are using profit center accounting for P&L report. With the new business type, they would like to split the balance sheet report by that.
    Can expert please share with me how can I achieve to split the balance sheet by different business types? Your kind help is appreciated.
    Regards,
    Kang Ring

    Dear:
                 For business area definition you have to do certain customization in SPRO In enterprise structure....definition for Financial Accounting... define business area and for enabling Business area wise balance sheets to ****(Financial Accounting Global Standard) in SPRO...Enter Global Parameters.... and enable Business area balance sheet.
    Regards
    Edited by: Atif Farooq on Mar 4, 2011 10:53 AM

  • Error: REPORT/PROGRAM statement missing , program type is I (include).

    Hi,
    I have created a REPORT Program (Z Program) and also created a TOP INCLUDE. I am NOT using Function module. When I tried to syntex check the INCLUDE, system is giving
    following error:
    REPORT/PROGRAM statement missing, program type I (Include).
    Can you help me in resolving this error.
    Currently TOP include has only one statement to declare a Constant.
    Thanks,

    hi,
    take your program in se80.
    double click on the program name. Right click on it and press Activate. All the include will get activated and the problem will get solved.
    Regards,
    Renjith Michael.
    http://www.sourceveda.com/

  • Missing business area in FG line item

    Hi All,
    We are starting a new company code that implements business areas. We've linked the business areas to our plants and division and also configured that the sales area picks up the business area from our plants and division. However, when we post outbound delivery through VL01N, the line item for Finished Goods account (in FI doc) does not get the business area. When we check the COS account, it has a business area. Only the FG account doesn't. Isn't it supposed to be automatically derived? Please advice what may be the cause of this and what we can do so that the FG line item would get the same BA. Thank you!

    Hi,
    Please check SD-FI: missing Business Area (GSBER) in the customer line item
    BR

  • MM - Price determination per business types

    Hello,
    I need to determine multiple price determination for the same material purchased to same vendor.
    Indeed, depending on the business type (purchase for production, for trial or for aftersales), one single material can have different price towards the same supplier.
    The business type must be set up at purchase order item level, and depending on the business type, a different price must be determined.
    Do you know how to proceed? Can the field “sub-item category” be used in the pricing procedure?
    Any other idea?
    Thank you for your help,
    Nathalie

    If you want to a single material can contain multiple price..
    And all valuation will be as per different price, then the better option will be split valuation.
    Here you have to use valuation type for each material which you want to set the different price..
    Suppose you want to use price 10 for material which will be purchased, then you can use one valuation type for the material..
    And you want to use price 20 for material which will be used for trial, then you can use another valuation type for the material.
    Both valuation type can contain different valuation class and different price but material will be only one...
    Regards
    Dev

  • Missing movement type data in 0IC_C03 cube

    Hi Gurus ,
    i  have deltas running for 0ic_c03 cube in B1 7.0 i have used transformations for loading cube .
    In a report of this cube for plant material stock,  i can c the quantities matching with MB51  report of R/3 where as the values are not matching for sum material ( negative stock values with 0 qtys )
    i found that a movement type 121 data is missing in BW
    i have read thread on the forum suggesting  to work on OMJJ transaction and make 121 movement type as statistics relevant.
    But i want to know how this action will effect on R/3 update controlling ?
    any inputs will b a grt help
    Edited by: Rajesh Dalwadi on Jan 13, 2009 12:09 PM

    Hi,
    We faced lot of problems with missing movement type, fo that we taken correct confirmation from MM team and then added it in Update Rules and deleted the data in Cube and then Re-Initialized the Cube.
    To do this, you need ECC Down Time. I'm talking about BW 3.5. I think in BI7, it may be easy, (without taking down time, pls check).
    Thanks
    Reddy

  • Missing inline type when compile glsl2agal with flascc

    I'm trying to compile Glsl2Agal [https://github.com/adobe/glsl2agal] using flascc on windows and I get the following  errors(all samples build correctly.).As anyone have an idea where I could start looking? Ths. all !
    chencheng01@PC-05093 /cygdrive/d/FlasCC/samples/glsl2agal-master
    $ make FLASCC="/cygdrive/d/flascc/sdk" FLEX="/cygdrive/d/flascc/AirSdk"
    peflags --cygwin-heap=500 "/cygdrive/d/flascc/sdk/usr/bin/llc.exe"
    /cygdrive/d/flascc/sdk/usr/bin/llc.exe: initial Cygwin heap size: 500 (0x1f4) MB
    cd swc && PATH="/cygdrive/d/flascc/sdk/usr/bin":"/cygdrive/d/FlasCC/samples/glsl2agal-master/instal l/usr/bin":"/usr/local/bin:/usr/bin:/cygdrive/d/Program Files
    /Java/jdk1.7.0_71/bin:/cygdrive/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/cygdrive/c/Program Files (x86)/Intel/iCLS Client:/cygdrive/c/Program File
    s/Intel/iCLS Client:/cygdrive/c/Program Files/Common Files/Microsoft Shared/Windows Live:/cygdrive/c/Program Files (x86)/Common Files/Microsoft Shared/Windows L
    ive:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cy gdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program F
    iles (x86)/Windows Live/Shared:/cygdrive/c/Program Files/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c
    /Program Files/Microsoft SQL Server/100/DTS/Binn:/usr/bin:/usr/X11R6/bin" CC=gcc CXX=g++ CFLAGS=-O4 CXXFLAGS=-O4 cmake -D SDK="/cygdrive/d/flascc/sdk" .
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /cygdrive/d/FlasCC/samples/glsl2agal-master/swc
    cd swc && PATH="/cygdrive/d/flascc/sdk/usr/bin":"/cygdrive/d/FlasCC/samples/glsl2agal-master/instal l/usr/bin":"/usr/local/bin:/usr/bin:/cygdrive/d/Program Files
    /Java/jdk1.7.0_71/bin:/cygdrive/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/cygdrive/c/Program Files (x86)/Intel/iCLS Client:/cygdrive/c/Program File
    s/Intel/iCLS Client:/cygdrive/c/Program Files/Common Files/Microsoft Shared/Windows Live:/cygdrive/c/Program Files (x86)/Common Files/Microsoft Shared/Windows L
    ive:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cy gdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program F
    iles (x86)/Windows Live/Shared:/cygdrive/c/Program Files/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c
    /Program Files/Microsoft SQL Server/100/DTS/Binn:/usr/bin:/usr/X11R6/bin" CC=gcc CXX=g++ CFLAGS=-O4 CXXFLAGS=-O4 make -j6
    make[1]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[2]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    [100%] Built target glsl2agal
    错误: 缺少内置类型 Object                              //That's mean missing inline type Object
    1 error found
    make[3]: *** [CMakeFiles/agal_optimizer] Error 1
    make[3]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[2]: *** [CMakeFiles/agal_optimizer.dir/all] Error 2
    make[2]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    Makefile:11: recipe for target `swc' failed
    make: *** [swc] Error 2

    I'm trying to compile Glsl2Agal [https://github.com/adobe/glsl2agal] using flascc on windows and I get the following  errors(all samples build correctly.).As anyone have an idea where I could start looking? Ths. all !
    chencheng01@PC-05093 /cygdrive/d/FlasCC/samples/glsl2agal-master
    $ make FLASCC="/cygdrive/d/flascc/sdk" FLEX="/cygdrive/d/flascc/AirSdk"
    peflags --cygwin-heap=500 "/cygdrive/d/flascc/sdk/usr/bin/llc.exe"
    /cygdrive/d/flascc/sdk/usr/bin/llc.exe: initial Cygwin heap size: 500 (0x1f4) MB
    cd swc && PATH="/cygdrive/d/flascc/sdk/usr/bin":"/cygdrive/d/FlasCC/samples/glsl2agal-master/instal l/usr/bin":"/usr/local/bin:/usr/bin:/cygdrive/d/Program Files
    /Java/jdk1.7.0_71/bin:/cygdrive/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/cygdrive/c/Program Files (x86)/Intel/iCLS Client:/cygdrive/c/Program File
    s/Intel/iCLS Client:/cygdrive/c/Program Files/Common Files/Microsoft Shared/Windows Live:/cygdrive/c/Program Files (x86)/Common Files/Microsoft Shared/Windows L
    ive:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cy gdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program F
    iles (x86)/Windows Live/Shared:/cygdrive/c/Program Files/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c
    /Program Files/Microsoft SQL Server/100/DTS/Binn:/usr/bin:/usr/X11R6/bin" CC=gcc CXX=g++ CFLAGS=-O4 CXXFLAGS=-O4 cmake -D SDK="/cygdrive/d/flascc/sdk" .
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /cygdrive/d/FlasCC/samples/glsl2agal-master/swc
    cd swc && PATH="/cygdrive/d/flascc/sdk/usr/bin":"/cygdrive/d/FlasCC/samples/glsl2agal-master/instal l/usr/bin":"/usr/local/bin:/usr/bin:/cygdrive/d/Program Files
    /Java/jdk1.7.0_71/bin:/cygdrive/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/cygdrive/c/Program Files (x86)/Intel/iCLS Client:/cygdrive/c/Program File
    s/Intel/iCLS Client:/cygdrive/c/Program Files/Common Files/Microsoft Shared/Windows Live:/cygdrive/c/Program Files (x86)/Common Files/Microsoft Shared/Windows L
    ive:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cy gdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program F
    iles (x86)/Windows Live/Shared:/cygdrive/c/Program Files/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/DAL:/cygdrive/c/Program Files (x86)/Intel/Intel(R) Management Eng
    ine Components/IPT:/cygdrive/c/Program Files (x86)/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c/Program Files/Microsoft SQL Server/100/Tools/Binn:/cygdrive/c
    /Program Files/Microsoft SQL Server/100/DTS/Binn:/usr/bin:/usr/X11R6/bin" CC=gcc CXX=g++ CFLAGS=-O4 CXXFLAGS=-O4 make -j6
    make[1]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[2]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Entering directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[3]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    [100%] Built target glsl2agal
    错误: 缺少内置类型 Object                              //That's mean missing inline type Object
    1 error found
    make[3]: *** [CMakeFiles/agal_optimizer] Error 1
    make[3]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[2]: *** [CMakeFiles/agal_optimizer.dir/all] Error 2
    make[2]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/cygdrive/d/FlasCC/samples/glsl2agal-master/swc'
    Makefile:11: recipe for target `swc' failed
    make: *** [swc] Error 2

  • AIR 14 Beta - Missing builtin type Object

    I get "Missing builtin type Object" error message in Flash Builder after updating to AIR 14 Beta from projects that do NOT include AIR libraries.
    Tried the usual Clean Projects > re-open projects > re-launch Flash Builder without any luck this time..

    Download the "FlashPlayer 14 beta global swc" from Download Adobe Flash Player 14 Beta for Desktops - Adobe Labs.
    Then add it to eclipse\plugins\com.adobe.flash.compiler_4.7.0.349722\AIRSDK\frameworks\libs\player\14.0

  • Missing Character Types at iWork08

    Iv a relative new MB Pro (app. 6 weeks) and the brand new iWork08. When I started iWork the Mac gives following error: "Missing character type: Copperplate", Missing caracter type: BlackmoorLetPlain".
    I am wondering, because the Apple out of the box solution (hard- and software from one vendor) did not work. What is the problem an who can help?
    Harry

    See if this earlier discussion helps:
    http://discussions.apple.com/thread.jspa?messageID=5095412&#5095412

  • Flash Player 9 & "Missing Content-Type"

    Hello to everybody.
    A Flash Movie located in &quot;domain_A&quot; reads a
    data file (*.xml) from a
    WebServer connected to Internet with a DynDNS dynamic DNS
    service.
    With FlashPlayer 8 it will work very good (I've used this for
    about 2 years). Now, with FPlayer 9 it's impossible to read
    the
    data file.The error is :&quot;Ignoring policy file at
    (URL) due to missing
    Content-Type&quot;.
    May You tell me where I can insert Content-type ?
    I have these files in the root:
    crossdomain.xml (the policy file), index.xml (the data file)
    and
    xml.spi and NOT html file.
    Thanks for all.
    Claudio
    Italy

    well I managed to generate some good news. I attempted
    installing the version 9 again and it didn't work so I went
    throught the install list and located the subdirectory it was
    attempting to ubsuccessfully install into and deleted the entire
    subdirectory and reinstalled again. this time it correctly
    installed version 9 and when I rebooted and ran the version checker
    it finally responded with the correct version 9 within the correct
    oS win 98. I think what had happened is I accidently clicked the
    uopgrade icon and it overwrote version 9 with version 10 and
    wouldn't allow me to rewrite the version 9 back into its original
    location. anyways it is now working and I'll know better that to
    authorize a version upgrade on the 98 system.

  • I am missing "Paper Type/Quality"...

    I am missing "Paper Type/Quality" in my printer settings menu.  How can I find or fix this?

    http://h10010.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01856359&lc=en &product=4231406
    While searching for this problem further online I think I found my answer on hp's website... I wish I saw this sooner but the above link directs to a page that explains how HP printers are not supported by the more recent operating systems.  Mine was specifically listed as a "Printer models not supported in Mac OS X v10.6, OS X v10.7, or OS X v10.8"
    I am assuming this is the answer to my problem and that I may indeed shop for a new printer... ugh.
    Thanks again for anyone who tried to help!

  • Missing Connection Types in Report Data Source Properties

    I am running three installations of SharePoint 2013 with SQL 2012 for Business Intelligence, with Kerberos working.
    I have been having intermittent issues with SQL Reporting Services in a multi-server configuration, but finally had it working in all three environments.  We discovered many of our issues were caused by master page customizations which we have now disabled
    temporarily while we work on function issues.
    However, we started having a new problem with Reporting Services on just ONE of the environments, and we are not sure what happened.  Most everything appears to still be working, except Reporting Services. I have verified that features are enabled
    in both the farm and the site collection, as well as insured managed content types are being allowed on the target document libraries.  I also verified the Reporting Service properties and database connections.  However, I have found two clear symptoms
    which I can find no other information regarding (in logs or in online searches):
    1) If we try to create a new "Report Data Source" using the SharePoint UI, it will open a new Data Source Properties window, but in the "Data Source Type" field, there are no values available for me to select my connection type (e.g.,
    Microsoft SQL Server).
    2) In Central Administration, while administering the Reporting Services Service Application, I can manage a majority of the settings, including System Settings, Manage Jobs, Key Management, etc.  However, if I click on the link for "E-mail Settings,"
    I get the dreaded "Sorry Something went wrong screen," with an error saying that "Object reference is not set to an instance of an object."
    So I am hoping someone has an idea of where I can look for additional information on this issue, or even better, knows what I am missing to get Reporting Services functional again in this environment!
    Thanks in advance for any help provided.
    Elohir

    However, we started having a new problem with Reporting Services on just ONE of the environments, and we are not sure what happened.
    Hi Elohir,
    I assume you are installing Reporting Services SharePoint mode for SharePoint 2013, you need to:
    1. Install "Reporting Services – SharePoint" and "Reporting Services add-in for SharePoint Products" on the SharePoint server that the SSRS service will run on.  All other SP servers only need the "Reporting Services
    add-in for SharePoint Products."   
    2. Run the Insall-SPRSService and Install-SPRSServiceProxy on Central Admin and SSRS server.
    3. Start SSRS Service only on desired SSRS servers.
    http://msdn.microsoft.com/en-us/library/jj219068.aspx
    Since the issue occurs only to one of the environments, please provide more information about your multi-server configuration, and point out the server where the issue occurs.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • Failure to register with Shared Services

    Planning 9.3.1 At Time = 0, we had created groups in Shared Services that were provisioned to our planning app. We could see the groups and corresponding uses come through into planning. Now at Time = 1, we notice that in Shared Services our planning

  • Database issues after starting data guard

    Hi. We run OEM12c in Linux. All is working well and we monitor several targets and DBs. In our QA db server, sun solaris 11 running oracle 10g, we started to test data guard configuration for several instances we are running there. our standy server

  • Cron expression

    we have a bpel proces which reads a file using file adapter and insert records into DB. my requirement is to schedule the process to run in every 20 mints. I am able to schedule the process using DBMS_SCHEDULER. Now I wanted to schedule the same proc

  • Iphone changes time in calendar sync with Mac?

    Can anyone help? I have a 24" mac running Leopard 10.5.7 and an iPhone 3G. When I sync the two any calendar events I have on the Mac arrive on the iPhone with the time changed by 8hrs (it moves them 8 hours earlier). Does anyone know what I have to d

  • Edge Certificate Not Appearing After Import

    Having trouble assigning a public certificate to the Edge External Interface. I imported the Root CA Cert. to Computer Store along with intermediate CA Cert. and imported the Certificate issued using the Lync Wizard. However when I go to assign, noth