306 error

For some unknow reason, iTunes would not open.  Many attempts to "fix" failed and the last resolution was to create a new user ID for my desktop computer.
iTunes and assoctiated programs were deleted in the proper order
I turned off my firewall protection
Unplugged my external device (additional memory)
Downloaded iTunes again
iTunes opened....EXCEPT I can not connect to the internet.
I can immediately switch users and have internet connection....but itunes will not open.
If no settings on my computer have changed.......why?

iTunes: Advanced iTunes Store troubleshooting - Support - Apple
This is what I find. Hope this helps.

Similar Messages

  • MSG 306 ERROR

    I am getting a MSG 306 ERROR. I think it is because one field is 30 Characters and other field is TEXT. Just guessing. Here is the code,  error message and DDL.
    Select SD.Sales_Order As [SO #]
    ,SD.SO_Line As [Ln]
        ,Cast(Min(SD.Status)   As Varchar(1)) As [SS] ---Ln Status
    ,MIN(SH.Sales_Rep) As [Rep]
    ,MIN(SH.Customer)  As [Cust ID]
    ,Min(SD.Material)  As [Material/Part Number]
    ,(Case when SD.Material like '%CUSTOM-SPECIAL%'              then SD.Ext_Description
                  when SD.Material Not like '%CUSTOM-SPECIAL%'           then SD.Description
                  else '' end) [Description]
    ,MIN(Case when PATINDEX('Ship complete', SH.Comment)>0       then 'SC'
                  when PATINDEX('In CustomerID', SH.Comment)>0           then 'ICSL'
                  when SH.Ship_Via = 'Cust Stock'                        then 'CSTK'
             when SH.Ship_Via = 'Install'                       then 'INST'
             when SD.Status = 'Hold'                            then 'HOLD'
             else '' end) [Txt]
    ,MIN(Case when PATINDEX('SO Given to Ron F', SH.Note_Text)>0 then 'RON F'
             when SD.Job IS null                                then ''
             When SD.Job IS Not null                            then SD.Job
             else '' end) [Linked]
    ,MIN(ISNULL(SD.PO,'')) As [PO]                      ---- Linked PO
    ,Cast(MIN(ISNULL(J.Status,''))As Varchar(1))As [St] ---- Job Status
    ,Cast(SUM((SD.Order_Qty - SD.Shipped_Qty) * (100 - SD.Discount_Pct) * SD.Unit_Price / 100) As Decimal(7,2)) As [Ext Amt]
    ,Min(SD.Order_Qty)As [Ord]
    ,Min(SD.Picked_Qty)As [Pick]
    ,MIN(SD.Backorder_Qty)As [BO]
    ,Cast(Min(SH.Order_Date) As Date) As [Ord Date]
    ,Min(M.Lead_Days)As [LD]
    ,Cast(Min(SD.Promised_Date) As Date) As [Promised]
    from [PRODUCTION].dbo.SO_Detail As SD
    INNER JOIN [PRODUCTION].dbo.SO_Header As SH
    on SD.Sales_Order = SH.Sales_Order
    and(SD.Status = 'Open' 
                    or  SD.Status = 'Backorder'
                    or  SD.Status = 'Hold' ) 
    INNER JOIN [PRODUCTION].dbo.Material As M
    on SD.Material = M.Material
    LEFT OUTER JOIN [PRODUCTION].dbo.Job As J
    On SD.Job = J.Job
    Group by SD.Promised_Date, SD.Sales_Order, SD.SO_Line, SD.Description, SD.Ext_Description
    Order by SD.Promised_Date, SD.Sales_Order, SD.SO_Line
    ERROR MESSAGE
    Msg 306, Level 16, State 2, Line 39
    The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.
    DDL
    SO_DETAIL
    USE [PRODUCTION]
    GO
    /****** Object:  Table [dbo].[SO_Detail]    Script Date: 05/06/2014 15:45:55 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[SO_Detail](
    [SO_DetailKey] [dbo].[KeyNum] IDENTITY(1,1) NOT NULL,
    [SO_Detail] [dbo].[KeyNum] NULL,
    [Sales_Order] [dbo].[Key10] NOT NULL,
    [SO_Line] [dbo].[T_6] NOT NULL,
    [PO] [dbo].[Key8] NULL,
    [Line] [dbo].[T_6] NULL,
    [Material] [dbo].[T_30] NULL,
    [Ship_To] [int] NULL,
    [Drop_Ship] [bit] NOT NULL,
    [Quote] [varchar](50) NULL,
    [Job] [dbo].[Key10] NULL,
    [Status] [dbo].[T_9] NOT NULL,
    [Make_Buy] [dbo].[T_1] NOT NULL,
    [Unit_Price] [float] NOT NULL,
    [Discount_Pct] [float] NOT NULL,
    [Price_UofM] [dbo].[UofM] NOT NULL,
    [Total_Price] [money] NOT NULL,
    [Deferred_Qty] [float] NOT NULL,
    [Prepaid_Amt] [money] NOT NULL,
    [Unit_Cost] [float] NOT NULL,
    [Order_Qty] [float] NOT NULL,
    [Stock_UofM] [dbo].[UofM] NOT NULL,
    [Backorder_Qty] [float] NOT NULL,
    [Picked_Qty] [float] NOT NULL,
    [Shipped_Qty] [float] NOT NULL,
    [Returned_Qty] [float] NOT NULL,
    [Certs_Required] [bit] NOT NULL,
    [Taxable] [bit] NOT NULL,
    [Commissionable] [bit] NOT NULL,
    [Commission_Pct] [float] NOT NULL,
    [Sales_Code] [dbo].[T_UCode] NULL,
    [Note_Text] [text] NULL,
    [Promised_Date] [datetime] NULL,
    [Last_Updated] [datetime] NOT NULL,
    [Description] [dbo].[T_30] NULL,
    [Price_Unit_Conv] [float] NULL,
    [Rev] [dbo].[T_8] NULL,
    [Tax_Code] [dbo].[T_15] NULL,
    [Ext_Description] [text] NULL,
    [Cost_UofM] [dbo].[T_4] NULL,
    [Cost_Unit_Conv] [float] NULL,
    [Res_Type] [smallint] NULL,
    [Res_ID] [dbo].[T_50] NULL,
    [Res_Qty] [float] NULL,
    [Partial_Res] [bit] NULL,
    [Prepaid_Trade_Amt] [money] NULL,
    [ObjectID] [uniqueidentifier] NOT NULL,
     CONSTRAINT [PK_SO_Detail] PRIMARY KEY NONCLUSTERED 
    [SO_DetailKey] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 90) ON [PRIMARY]
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[SO_Detail]  WITH NOCHECK ADD  CONSTRAINT [FK_SOH_on_SODetl] FOREIGN KEY([Sales_Order])
    REFERENCES [dbo].[SO_Header] ([Sales_Order])
    ON DELETE CASCADE
    GO
    ALTER TABLE [dbo].[SO_Detail] NOCHECK CONSTRAINT [FK_SOH_on_SODetl]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Drop_Ship]  DEFAULT ((0)) FOR [Drop_Ship]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Status]  DEFAULT ('Open') FOR [Status]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Make_Buy]  DEFAULT ('M') FOR [Make_Buy]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Discount_Pct]  DEFAULT ((0)) FOR [Discount_Pct]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Price_UofM]  DEFAULT ('ea') FOR [Price_UofM]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Deferred_Qty]  DEFAULT ((0)) FOR [Deferred_Qty]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Prepaid_Amt]  DEFAULT ((0)) FOR [Prepaid_Amt]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Order_Qty]  DEFAULT ((0)) FOR [Order_Qty]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Backorder_Qty]  DEFAULT ((0)) FOR [Backorder_Qty]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Picked_Qty]  DEFAULT ((0)) FOR [Picked_Qty]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Certs_Required]  DEFAULT ((0)) FOR [Certs_Required]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Taxable]  DEFAULT ((0)) FOR [Taxable]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Commissionable]  DEFAULT ((0)) FOR [Commissionable]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Commission_Pct]  DEFAULT ((0)) FOR [Commission_Pct]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SO_Detail_Last_Updated]  DEFAULT (getdate()) FOR [Last_Updated]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  CONSTRAINT [DF_SODetail_PriceUofM]  DEFAULT ((1)) FOR [Price_Unit_Conv]
    GO
    ALTER TABLE [dbo].[SO_Detail] ADD  DEFAULT ((0)) FOR [Prepaid_Trade_Amt]
    GO
    SO_HEADER
    USE [PRODUCTION]
    GO
    /****** Object:  Table [dbo].[SO_Header]    Script Date: 05/06/2014 15:46:43 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[SO_Header](
    [Sales_Order] [dbo].[Key10] NOT NULL,
    [Customer] [dbo].[Key10] NOT NULL,
    [Ship_To] [dbo].[KeyNum] NULL,
    [Contact] [dbo].[KeyNum] NULL,
    [Sales_Rep] [dbo].[Key6] NULL,
    [Order_Taken_By] [dbo].[Key6] NULL,
    [Ship_Via] [dbo].[T_UCode] NULL,
    [Tax_Code] [dbo].[T_UCode] NULL,
    [Terms] [dbo].[T_UCode] NULL,
    [Sales_Tax_Amt] [money] NOT NULL,
    [Sales_Tax_Rate] [float] NOT NULL,
    [Order_Date] [datetime] NOT NULL,
    [Promised_Date] [datetime] NULL,
    [Customer_PO] [dbo].[T_20] NULL,
    [Status] [dbo].[T_8] NOT NULL,
    [Total_Price] [money] NOT NULL,
    [Currency_Conv_Rate] [float] NOT NULL,
    [Trade_Currency] [dbo].[KeyNum] NULL,
    [Fixed_Rate] [bit] NOT NULL,
    [Trade_Date] [datetime] NULL,
    [Note_Text] [text] NULL,
    [Comment] [text] NULL,
    [Last_Updated] [datetime] NOT NULL,
    [User_Values] [int] NULL,
    [Source] [dbo].[T_20] NULL,
    [Prepaid_Tax_Amount] [money] NULL,
     CONSTRAINT [PK_SO_Header] PRIMARY KEY NONCLUSTERED 
    [Sales_Order] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 90) ON [PRIMARY]
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  CONSTRAINT [DF_SO_Header_Sales_Tax_Amt]  DEFAULT ((0)) FOR [Sales_Tax_Amt]
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  CONSTRAINT [DF_SO_Header_Sales_Tax_Rate]  DEFAULT ((0)) FOR [Sales_Tax_Rate]
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  CONSTRAINT [DF_SO_Header_Total_Price]  DEFAULT ((0)) FOR [Total_Price]
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  CONSTRAINT [DF_SO_Header_Currency_Conv_Rate]  DEFAULT ((1)) FOR [Currency_Conv_Rate]
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  CONSTRAINT [DF_SO_Header_Fixed_Rate]  DEFAULT ((1)) FOR [Fixed_Rate]
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  CONSTRAINT [DF_SO_Header_Last_Updated]  DEFAULT (getdate()) FOR [Last_Updated]
    GO
    ALTER TABLE [dbo].[SO_Header] ADD  DEFAULT ((0)) FOR [Prepaid_Tax_Amount]
    GO
    MATERIAL
    USE [PRODUCTION]
    GO
    /****** Object:  Table [dbo].[Material]    Script Date: 05/06/2014 15:47:31 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Material](
    [Material] [dbo].[Key30] NOT NULL,
    [Primary_Vendor] [dbo].[Key10] NULL,
    [User_Values] [dbo].[KeyNum] NULL,
    [Shape] [dbo].[Key10] NULL,
    [Location_ID] [dbo].[Key10] NOT NULL,
    [Sales_Code] [dbo].[T_15] NULL,
    [Description] [dbo].[T_30] NULL,
    [Type] [dbo].[T_1] NOT NULL,
    [Status] [dbo].[T_8] NOT NULL,
    [Pick_Buy_Indicator] [dbo].[T_1] NOT NULL,
    [Class] [varchar](10) NULL,
    [Rev] [dbo].[T_8] NULL,
    [Stocked_UofM] [dbo].[UofM] NOT NULL,
    [Purchase_UofM] [dbo].[UofM] NOT NULL,
    [Cost_UofM] [dbo].[UofM] NOT NULL,
    [Price_UofM] [dbo].[UofM] NOT NULL,
    [Selling_Price] [float] NULL,
    [Standard_Cost] [float] NOT NULL,
    [Average_Cost] [float] NULL,
    [Last_Cost] [float] NULL,
    [On_Order_Qty] [float] NULL,
    [Order_Point] [float] NULL,
    [Reorder_Qty] [float] NOT NULL,
    [Lead_Days] [smallint] NOT NULL,
    [UofM_Conv_Factor] [float] NOT NULL,
    [Lot_Trace] [bit] NOT NULL,
    [Rd_Whole_Unit] [bit] NOT NULL,
    [Ext_Description] [text] NULL,
    [Make_Buy] [dbo].[T_1] NOT NULL,
    [Vendor_Reference] [dbo].[T_30] NULL,
    [Drawing] [varchar](30) NULL,
    [Use_Price_Breaks] [bit] NOT NULL,
    [Note_Text] [text] NULL,
    [Last_Updated] [datetime] NOT NULL,
    [GL_Account] [dbo].[T_100] NULL,
    [Price_Unit_Conv] [float] NULL,
    [Holder_ID] [dbo].[T_50] NULL,
    [Job] [dbo].[T_10] NULL,
    [Tax_Code] [dbo].[T_15] NULL,
    [Taxable] [bit] NULL,
    [IS_Length] [float] NULL,
    [IS_Width] [float] NULL,
    [IS_Weight_Factor] [float] NULL,
    [IS_Thickness] [float] NULL,
    [Stock_Item] [dbo].[T_50] NULL,
    [Affects_Schedule] [bit] NULL,
    [ObjectID] [uniqueidentifier] NOT NULL,
    [Shape_OID] [uniqueidentifier] NULL,
    [Tooling] [bit] NULL,
    [IsSerialized] [bit] NOT NULL,
    [MaxUsage] [int] NULL,
    [ShelfLife] [float] NULL,
    [ShelfLifeUofM] [varchar](10) NULL,
     CONSTRAINT [PK_Material] PRIMARY KEY NONCLUSTERED 
    [Material] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 90) ON [PRIMARY]
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[Material]  WITH NOCHECK ADD  CONSTRAINT [FK_Loc_on_Matl] FOREIGN KEY([Location_ID])
    REFERENCES [dbo].[Location] ([Location_ID])
    GO
    ALTER TABLE [dbo].[Material] NOCHECK CONSTRAINT [FK_Loc_on_Matl]
    GO
    ALTER TABLE [dbo].[Material]  WITH NOCHECK ADD  CONSTRAINT [FK_Shap_on_Matl] FOREIGN KEY([Shape])
    REFERENCES [dbo].[Shapes] ([Shape])
    GO
    ALTER TABLE [dbo].[Material] NOCHECK CONSTRAINT [FK_Shap_on_Matl]
    GO
    ALTER TABLE [dbo].[Material]  WITH NOCHECK ADD  CONSTRAINT [FK_UVal_on_Matl] FOREIGN KEY([User_Values])
    REFERENCES [dbo].[User_Values] ([User_Values])
    GO
    ALTER TABLE [dbo].[Material] NOCHECK CONSTRAINT [FK_UVal_on_Matl]
    GO
    ALTER TABLE [dbo].[Material]  WITH NOCHECK ADD  CONSTRAINT [FK_Vend_on_Matl] FOREIGN KEY([Primary_Vendor])
    REFERENCES [dbo].[Vendor] ([Vendor])
    GO
    ALTER TABLE [dbo].[Material] NOCHECK CONSTRAINT [FK_Vend_on_Matl]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Selling_Price]  DEFAULT ((0)) FOR [Selling_Price]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Standard_Cost]  DEFAULT ((0)) FOR [Standard_Cost]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Average_Cost]  DEFAULT ((0)) FOR [Average_Cost]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Last_Cost]  DEFAULT ((0)) FOR [Last_Cost]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_On_Order_Qty]  DEFAULT ((0)) FOR [On_Order_Qty]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Order_Point]  DEFAULT ((0)) FOR [Order_Point]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Reorder_Qty]  DEFAULT ((0)) FOR [Reorder_Qty]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Lead_Days]  DEFAULT ((0)) FOR [Lead_Days]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_UofM_Conv_Factor]  DEFAULT ((0)) FOR [UofM_Conv_Factor]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Lot_Trace]  DEFAULT ((0)) FOR [Lot_Trace]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Rd_Whole_Unit]  DEFAULT ((0)) FOR [Rd_Whole_Unit]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Use_Price_Break]  DEFAULT ((0)) FOR [Use_Price_Breaks]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_Last_Updated]  DEFAULT (getdate()) FOR [Last_Updated]
    GO
    ALTER TABLE [dbo].[Material] ADD  CONSTRAINT [DF_Material_PriceUofM]  DEFAULT ((1)) FOR [Price_Unit_Conv]
    GO
    ALTER TABLE [dbo].[Material] ADD  DEFAULT ((0)) FOR [IsSerialized]
    GO
    ALTER TABLE [dbo].[Material] ADD  DEFAULT ((0)) FOR [MaxUsage]
    GO
    ALTER TABLE [dbo].[Material] ADD  DEFAULT ((0)) FOR [ShelfLife]
    GO
    JOB
    USE [PRODUCTION]
    GO
    /****** Object:  Table [dbo].[Job]    Script Date: 05/06/2014 15:50:24 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Job](
    [Job] [dbo].[Key10] NOT NULL,
    [Sales_Rep] [dbo].[Key6] NULL,
    [Customer] [dbo].[Key10] NULL,
    [Ship_To] [dbo].[KeyNum] NULL,
    [User_Values] [dbo].[KeyNum] NULL,
    [Quote] [dbo].[Key10] NULL,
    [Contact] [dbo].[KeyNum] NULL,
    [Ship_Via] [dbo].[T_15] NULL,
    [Terms] [dbo].[T_15] NULL,
    [Tax_Code] [dbo].[T_15] NULL,
    [Sales_Code] [dbo].[T_15] NULL,
    [Top_Lvl_Job] [dbo].[T_10] NULL,
    [Type] [dbo].[T_8] NOT NULL,
    [Order_Date] [datetime] NOT NULL,
    [Status] [dbo].[T_8] NOT NULL,
    [Status_Date] [datetime] NOT NULL,
    [Part_Number] [dbo].[T_30] NULL,
    [Rev] [dbo].[T_10] NULL,
    [Description] [dbo].[T_30] NULL,
    [Ext_Description] [text] NULL,
    [Drawing] [varchar](30) NULL,
    [Build_To_Stock] [bit] NOT NULL,
    [Order_Quantity] [int] NOT NULL,
    [Extra_Quantity] [int] NULL,
    [Pick_Quantity] [int] NULL,
    [Make_Quantity] [int] NOT NULL,
    [Split_Quantity] [int] NULL,
    [Completed_Quantity] [int] NULL,
    [Shipped_Quantity] [int] NULL,
    [FG_Transfer_Qty] [int] NULL,
    [Returned_Quantity] [int] NULL,
    [In_Production_Quantity] [int] NOT NULL,
    [Assembly_Level] [smallint] NULL,
    [Certs_Required] [bit] NOT NULL,
    [Time_And_Materials] [bit] NOT NULL,
    [Open_Operations] [smallint] NULL,
    [Scrap_Pct] [float] NOT NULL,
    [Est_Scrap_Qty] [int] NULL,
    [Est_Rem_Hrs] [float] NULL,
    [Est_Total_Hrs] [float] NULL,
    [Est_Labor] [money] NULL,
    [Est_Material] [money] NULL,
    [Est_Service] [money] NULL,
    [Est_Labor_Burden] [money] NULL,
    [Est_Machine_Burden] [money] NULL,
    [Est_GA_Burden] [money] NULL,
    [Act_Revenue] [money] NULL,
    [Act_Scrap_Quantity] [int] NULL,
    [Act_Total_Hrs] [float] NULL,
    [Act_Labor] [money] NULL,
    [Act_Material] [money] NULL,
    [Act_Service] [money] NULL,
    [Act_Labor_Burden] [money] NULL,
    [Act_Machine_Burden] [money] NULL,
    [Act_GA_Burden] [money] NULL,
    [Priority] [smallint] NULL,
    [Unit_Price] [float] NULL,
    [Total_Price] [money] NULL,
    [Price_UofM] [dbo].[T_4] NULL,
    [Currency_Conv_Rate] [float] NOT NULL,
    [Trade_Currency] [dbo].[KeyNum] NULL,
    [Fixed_Rate] [bit] NOT NULL,
    [Trade_Date] [datetime] NULL,
    [Commission_Pct] [float] NULL,
    [Customer_PO] [dbo].[T_20] NULL,
    [Customer_PO_LN] [dbo].[T_6] NULL,
    [Sched_End] [datetime] NULL,
    [Sched_Start] [datetime] NULL,
    [Quantity_Per] [float] NULL,
    [Profit_Pct] [float] NULL,
    [Labor_Markup_Pct] [float] NOT NULL,
    [Mat_Markup_Pct] [float] NOT NULL,
    [Serv_Markup_Pct] [float] NOT NULL,
    [Labor_Burden_Markup_Pct] [float] NOT NULL,
    [Machine_Burden_Markup_Pct] [float] NOT NULL,
    [GA_Burden_Markup_Pct] [float] NOT NULL,
    [Lead_Days] [smallint] NULL,
    [Profit_Markup] [dbo].[T_1] NULL,
    [Prepaid_Amt] [money] NULL,
    [Split_To_Job] [bit] NOT NULL,
    [Note_Text] [text] NULL,
    [Comment] [text] NULL,
    [Last_Updated] [datetime] NOT NULL,
    [Order_Unit] [dbo].[T_4] NULL,
    [Price_Unit_Conv] [float] NULL,
    [Holder_ID] [dbo].[T_50] NULL,
    [Source] [dbo].[T_20] NULL,
    [Order_Taken_By] [dbo].[T_50] NULL,
    [Plan_Modified] [bit] NULL,
    [ObjectID] [uniqueidentifier] NOT NULL,
    [Released_Date] [datetime] NULL,
    [Prepaid_Tax_Amount] [money] NULL,
    [Prepaid_Trade_Amt] [money] NULL,
    [Last_Updated_By] [dbo].[T_50] NULL,
     CONSTRAINT [PK_Job] PRIMARY KEY NONCLUSTERED 
    [Job] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 90) ON [PRIMARY]
    ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[Job]  WITH NOCHECK ADD  CONSTRAINT [FK_Addr_on_Job] FOREIGN KEY([Ship_To])
    REFERENCES [dbo].[Address] ([Address])
    GO
    ALTER TABLE [dbo].[Job] NOCHECK CONSTRAINT [FK_Addr_on_Job]
    GO
    ALTER TABLE [dbo].[Job]  WITH NOCHECK ADD  CONSTRAINT [FK_Cust_on_Job] FOREIGN KEY([Customer])
    REFERENCES [dbo].[Customer] ([Customer])
    GO
    ALTER TABLE [dbo].[Job] NOCHECK CONSTRAINT [FK_Cust_on_Job]
    GO
    ALTER TABLE [dbo].[Job]  WITH NOCHECK ADD  CONSTRAINT [FK_Empl_on_Job] FOREIGN KEY([Sales_Rep])
    REFERENCES [dbo].[Employee] ([Employee])
    GO
    ALTER TABLE [dbo].[Job] NOCHECK CONSTRAINT [FK_Empl_on_Job]
    GO
    ALTER TABLE [dbo].[Job]  WITH NOCHECK ADD  CONSTRAINT [FK_UVal_on_Job] FOREIGN KEY([User_Values])
    REFERENCES [dbo].[User_Values] ([User_Values])
    GO
    ALTER TABLE [dbo].[Job] NOCHECK CONSTRAINT [FK_UVal_on_Job]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Build_To_Stock]  DEFAULT ((0)) FOR [Build_To_Stock]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Order_Quantity]  DEFAULT ((0)) FOR [Order_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Extra_Quantity]  DEFAULT ((0)) FOR [Extra_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Pick_Quantity]  DEFAULT ((0)) FOR [Pick_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Make_Quantity]  DEFAULT ((0)) FOR [Make_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Split_Quantity]  DEFAULT ((0)) FOR [Split_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Completed_Quantity]  DEFAULT ((0)) FOR [Completed_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Shipped_Quantity]  DEFAULT ((0)) FOR [Shipped_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_FG_Transfer_Qty]  DEFAULT ((0)) FOR [FG_Transfer_Qty]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Returned_Quantity]  DEFAULT ((0)) FOR [Returned_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_In_Production_Quantity]  DEFAULT ((0)) FOR [In_Production_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Assembly_Level]  DEFAULT ((0)) FOR [Assembly_Level]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Certs_Required]  DEFAULT ((0)) FOR [Certs_Required]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Time_And_Materials]  DEFAULT ((0)) FOR [Time_And_Materials]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Open_Operations]  DEFAULT ((0)) FOR [Open_Operations]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Scrap_Pct]  DEFAULT ((0)) FOR [Scrap_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Scrap_Qty]  DEFAULT ((0)) FOR [Est_Scrap_Qty]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Rem_Hrs]  DEFAULT ((0)) FOR [Est_Rem_Hrs]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Total_Hrs]  DEFAULT ((0)) FOR [Est_Total_Hrs]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Labor]  DEFAULT ((0)) FOR [Est_Labor]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Material]  DEFAULT ((0)) FOR [Est_Material]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Service]  DEFAULT ((0)) FOR [Est_Service]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Labor_Burden]  DEFAULT ((0)) FOR [Est_Labor_Burden]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_Machine_Burden]  DEFAULT ((0)) FOR [Est_Machine_Burden]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Est_GA_Burden]  DEFAULT ((0)) FOR [Est_GA_Burden]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Revenue]  DEFAULT ((0)) FOR [Act_Revenue]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Scrap_Quantity]  DEFAULT ((0)) FOR [Act_Scrap_Quantity]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Total_Hrs]  DEFAULT ((0)) FOR [Act_Total_Hrs]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Labor]  DEFAULT ((0)) FOR [Act_Labor]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Material]  DEFAULT ((0)) FOR [Act_Material]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Service]  DEFAULT ((0)) FOR [Act_Service]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Labor_Burden]  DEFAULT ((0)) FOR [Act_Labor_Burden]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_Machine_Burden]  DEFAULT ((0)) FOR [Act_Machine_Burden]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Act_GA_Burden]  DEFAULT ((0)) FOR [Act_GA_Burden]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Priority]  DEFAULT ((5)) FOR [Priority]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Unit_Price]  DEFAULT ((0)) FOR [Unit_Price]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Total_Price]  DEFAULT ((0)) FOR [Total_Price]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Currency_Conv_Rate]  DEFAULT ((1)) FOR [Currency_Conv_Rate]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Fixed_Rate]  DEFAULT ((1)) FOR [Fixed_Rate]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Commission_Pct]  DEFAULT ((0)) FOR [Commission_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Quantity_Per]  DEFAULT ((1)) FOR [Quantity_Per]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Profit_Pct]  DEFAULT ((0)) FOR [Profit_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Labor_Markup_Pct]  DEFAULT ((0)) FOR [Labor_Markup_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Mat_Markup_Pct]  DEFAULT ((0)) FOR [Mat_Markup_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Serv_Markup_Pct]  DEFAULT ((0)) FOR [Serv_Markup_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Labor_Burden_Markup_Pct]  DEFAULT ((0)) FOR [Labor_Burden_Markup_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Machine_Burden_Markup_Pct]  DEFAULT ((0)) FOR [Machine_Burden_Markup_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_GA_Burden_Markup_Pct]  DEFAULT ((0)) FOR [GA_Burden_Markup_Pct]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Lead_Days]  DEFAULT ((0)) FOR [Lead_Days]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Prepaid_Amt]  DEFAULT ((0)) FOR [Prepaid_Amt]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Split_To_Job]  DEFAULT ((0)) FOR [Split_To_Job]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_Job_Last_Updated]  DEFAULT (getdate()) FOR [Last_Updated]
    GO
    ALTER TABLE [dbo].[Job] ADD  CONSTRAINT [DF_JOB_PriceUofM]  DEFAULT ((1)) FOR [Price_Unit_Conv]
    GO
    ALTER TABLE [dbo].[Job] ADD  DEFAULT ((0)) FOR [Prepaid_Tax_Amount]
    GO
    ALTER TABLE [dbo].[Job] ADD  DEFAULT ((0)) FOR [Prepaid_Trade_Amt]
    GO
    SWProduction

    1.The best solution is not to use text, ntext, and image data types
    If you can, it is highly rcommend to fix the tables structure
    2. we can not use your DDL since it is not complete. Your table create query include data type that we dont have like:
    CREATE TABLE [dbo].[SO_Detail](
    [SO_DetailKey] [dbo].[KeyNum] IDENTITY(1,1) NOT NULL,...
    Therefore we can not check your specific situation :-(
    3. If you have to use text, ntext data types then
    * Read this old blog (Not related to you corent problem but you should know this!): SQL Server support NTEXT/TEXT, but SSMS does not
    http://ariely.info/Blog/tabid/83/EntryId/120/SQL-Server-support-NTEXT-TEXT-but-SSMS-does-not.aspx
    * As v.vt wrote, Convert the data in the query from TEXT/NTEXT into VARCHAR/NVARCHAR and the query should work OK
    [Personal Site] [Blog] [Facebook]

  • 306 Error Printing with Time Capsule 2TB

    I just upgraded from a 1st Generation Time Capsule (500GB) to a 4th Generation Time Capsule (2TB).  I have a Canon MP600 printer connected via USB to the Time Capsule.  In my previous setup, this worked flawlessly and other computers on the network could print to this device.  With the new setup, I'm receiving a 306 Error printing to the printer via the new Time Capsule. 
    I have:
    Reset the printer system information.
    Rest the TC to default settings, attached the USB for the printer, and restarted the device.
    Tested the USB direct connection to my printer (works fine).
    I feel like this has to be related to the new TC...wondering if I've got a setting mixed up.
    Any help would be great - I've reviewed most of the postings related to this subject, but this one feels different as it involves an upgrade to new TC and I'm not trying to use a wireless printer. 
    Bryant

    First, restart your MacBook Pro and your Time Capsule. This solves the problem in most of the cases.
    If it doesn't work, see > http://pondini.org/TM/C12.html

  • Getting a 306 error when trying to connect to the store. i just downloaded latest version

    i can't connect to the itunes store i keep getting a 306 error message.. saying unable to connect to the network.. thus can't restore my ipod classic

    Perhaps try the iTunes Store loads partially or returns "Error 306" or "Error 10054" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • 11222 and 306 error!

    Hello!
    I've been surfing the past half hour for an answer to my question, but everything seems to be windows-related. Am I the first mac user who cannot get into the iTunes shop after the latest update? I keep getting the two errors 11222 and 306. Can anyone help me?

    Hello karbak,
    Thanks for the question, and welcome to Apple Support Communities.
    I found the following relevant information relating to error 306 in iTunes, please see the steps included for Mac:
    iTunes Store loads partially or returns "Error 306" or "Error 10054"
    Proxies, parental control settings and software, security or filtering software, or a bad iTunes Store cache can cause this.
    To address proxies, Remove Internet Options proxy settings and connect to the Internet without a proxy.
    To reset iTunes Store cache:
    1. In iTunes, choose iTunes > Preferences (Mac) or Edit > Preferences (PC).
    2. Click the Advanced tab.
    3. Click the "Reset cache" button.
    4. Click OK and see if the issue is resolved.
    Adjust Parental Controls in iTunes:
    1. Open iTunes.
    2. Access iTunes preferences:
         1. On a Mac: From the iTunes menu, choose Preferences.
         2. On a Windows PC: From the Edit menu, choose Preferences.
    3. Click the Parental Controls tab.
    4. Remove restrictions on Parental Controls.
    For more information on parental controls or content filtering software, see iTunes 10.5 for Windows: May see performance issues and blank iTunes Store.
    For more information on other security software, see iTunes: Troubleshooting security software issues.
    For additional information and error messages, see the following resource:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Thanks,
    Matt M.

  • Error 306, error 306

    I am connected to the internet, when i do diagnostics in itunes it shows this on the first 2 categories and then on the third category says i am not connected.  Error message 306 keeps coming up.  I am using firefox in windows 8, how can i resolve this.

    Perhaps try the iTunes Store loads partially or returns "Error 306" or "Error 10054" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • How do i fix 306 error i tunes for mac

    I have a netgear WRN 2000 router and cannot access itunes store error 306

    Open Terminal
    Copy and Paste this command, it will clear the path to the Application Support folder.
    sudo chmod -R 777 /Library/Application\ Support/Adobe
    Enter password if asked. Sometimes the Terminal will not supply dots to echo the characters, so enter it blind and press Enter.

  • TS1424 Error 306

    Can someone update on 306 error when connecting to  iTunes stores......." I tunes not connect to I tunes store. An unknown error has occurred (306)"

    Perhaps try the iTunes Store loads partially or returns "Error 306" or "Error 10054" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Mp620 error 306

    Hi,
    Did a search and it wasn't much help, so I'm posting.
    Every time I go to print wirelessly I have to fix something, do this, do that, and it's very frustrating. I bought a wireless printer for convenance, and so far I haven't experienced that a bit.
    Here what I'm getting:
    /usr/libexec/cups/backend/canonijnetwork failed
    Error Number : 306 A communication error has occurred. Make sure that the printer is plugged in, powered-on, and properly connected to your computer. Then try printing again.
    Thanks for any help in advance

    Hi Marc,
    Thanks for trying those steps. The issue we have now is that we don't know if the error is a result of the printer losing a connection/dropping off the wireless when the 306 error occurs or if the error is related to some other driver malfunction. So I suggest we work on the latter and replace your current drivers and network tool with the latest versions available.
    You mentioned that you have tried some other Canon drivers. I want you to try the MP620 v10.26.1 driver and the IJ Network Tool v2.70. If don't already have these versions you can use the links below.
    The Canon driver files are located in HD > Library > Printers > Canon > BJPrinter. Please trash the contents of this folder and then empty the trash so that we can start again with a clean slate. Note that in order to empty the trash you might have to stop the Canon IJ Network Tool, which can be done via Activity Monitor.
    With the trash emptied, restart your Mac and then install this version of printer driver and Canon IJ Network Tool.
    To ensure you have the correct driver installed after you add the network printer, go to Options & Supplies and under the General tab ensure you have v10.26.1.
    Hopefully this gets you printing more than a couple of lines. I suggest you try TextEdit first - I've never liked using Word as a test application.
    Let me know how that all goes...
    Pahu

  • "Cannot complete iTunes store request..." error solved

    As posted elsewhere here, repeated clicking between "iPhone" and any other header such as "Music" or "Playlists" in the iTunes browser has solved this error message:
    "Cannot complete iTunes store request - network connection was reset. Make sure your connection is active and try again."
    After about 45 minutes I got the message: "Restoring iPhone from backup"
    It is now sloowwly restoring my original iPhone (No usb 2.0 on the old PowerBook G4 400)
    Hammered Apple servers = tried patience. Keep trying!

    I don't know if this will help you guys, but it worked for me...
    I've been having the exact same problem since upgrading to iTunes 9. Installed the recent update to 9.0.1.8 with no change--still no icons when the Store comes up, long vertical layout, 306 error when clicking on anything.
    I'm on an older Windows box with XP installed, Safari 4.0.3, iTunes 9.0.1.8. I use Firefox for the web. Though it WAS installed, I had never used Safari on this machine. Went to take a look at Safari and see if there was anything wrong.
    I found that Safari was NOT set up properly to get through my Firewall--again, I had never used it before. As soon as I got the internet settings right in Safari and made sure it could get to the web properly, I re-launched iTunes and lo and behold the Store worked properly. This was NOT a problem with iTunes 8. Apparently everything with Safari needs to be kosher before the iTunes 9 Store will work.
    Maybe you all have done this already, but it immediately solved the problem for me. Hope this helps someone.

  • Kompile Make Error

    I know this is a pretty old program but I just found it again over at Kde-apps.org but Im getting make errors when I try and build it, someone had a pkgbuild for the previous version in the AUR but that didnt work either. If someone could tell me whats wrong that would be great, if not oh well its not a necessary program its just flashy and useful.
    Good - your configure finished. Start make now
    Making all in doc
    Making all in .
    Making all in en
    Making all in po
    Making all in src
    In file included from main.cpp:33:
    kompileprofiledialog.h:23:25: error: kdialogbase.h: No such file or directory
    In file included from main.cpp:31:
    /opt/qt/include/qtooltip.h:56: error: function definition does not declare parameters
    /opt/qt/include/qtooltip.h:91: error: function definition does not declare parameters
    In file included from kompileprofilewidget.h:23,
    from kompileprofiledialog.h:25,
    from main.cpp:33:
    kompileprofilewidgetbase.h:37: error: 'WFlags' has not been declared
    In file included from main.cpp:33:
    kompileprofiledialog.h:27: error: expected class-name before '{' token
    kompileprofiledialog.h:27: warning: 'class KompileProfileDialog' has virtual functions and accessible non-virtual destructor
    In file included from kompileprofileselectionwidget.h:23,
    from main.cpp:34:
    kompileprofileselectionwidgetbase.h:27: error: 'WFlags' has not been declared
    In file included from kompilewidget.h:29,
    from main.cpp:35:
    /opt/qt/include/qtimer.h:49: error: function definition does not declare parameters
    /opt/qt/include/qtimer.h:85: error: invalid use of incomplete type 'struct QTimer'
    /usr/include/QtGui/qwindowdefs.h:82: error: forward declaration of 'struct QTimer'
    In file included from kompilewidget.h:32,
    from main.cpp:35:
    kompilewidgetbase.h:35: error: 'WFlags' has not been declared
    In file included from main.cpp:35:
    kompilewidget.h:37: error: ISO C++ forbids declaration of 'KDialogBase' with no type
    kompilewidget.h:37: error: expected ';' before '*' token
    kompilewidget.h:59: error: 'WFlags' has not been declared
    main.cpp:55: error: 'KCmdLineLastOption' was not declared in this scope
    main.cpp:56: error: braces around scalar initializer for type 'KCmdLineOptions'
    main.cpp: In function 'int main(int, char**)':
    main.cpp:61: error: no matching function for call to 'KAboutData::KAboutData(const char [8], const char [8], const char [4], const char [87], KAboutData::LicenseKey, const char [27], int, int, const char [28])'
    /usr/include/kaboutdata.h:255: note: candidates are: KAboutData::KAboutData(const KAboutData&)
    /usr/include/kaboutdata.h:249: note: KAboutData::KAboutData(const QByteArray&, const QByteArray&, const KLocalizedString&, const QByteArray&, const KLocalizedString&, KAboutData::LicenseKey, const KLocalizedString&, const KLocalizedString&, const QByteArray&, const QByteArray&)
    main.cpp:62: error: no matching function for call to 'KAboutData::addAuthor(const char [18], int, const char [28])'
    /usr/include/kaboutdata.h:290: note: candidates are: KAboutData& KAboutData::addAuthor(const KLocalizedString&, const KLocalizedString&, const QByteArray&, const QByteArray&)
    main.cpp:64: error: no matching function for call to 'KCmdLineArgs::addCmdLineOptions(KCmdLineOptions [1])'
    /usr/include/kcmdlineargs.h:400: note: candidates are: static void KCmdLineArgs::addCmdLineOptions(const KCmdLineOptions&, const KLocalizedString&, const QByteArray&, const QByteArray&)
    main.cpp:68: error: 'class KApplication' has no member named 'isRestored'
    main.cpp:83: error: 'locateLocal' was not declared in this scope
    main.cpp:85: error: 'class KConfig' has no member named 'readEntry'
    main.cpp:87: error: 'KDialogBase' was not declared in this scope
    main.cpp:87: error: 'installdialog' was not declared in this scope
    main.cpp:87: error: expected type-specifier before 'KDialogBase'
    main.cpp:87: error: expected `;' before 'KDialogBase'
    main.cpp:94: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:100: error: no matching function for call to 'KMessageBox::warningYesNoCancel(NULL, QString, QString, QString, QString)'
    /usr/include/kmessagebox.h:512: note: candidates are: static int KMessageBox::warningYesNoCancel(QWidget*, const QString&, const QString&, const KGuiItem&, const KGuiItem&, const KGuiItem&, const QString&, QFlags<KMessageBox::Option>)
    main.cpp:109: error: 'class KompileProfileDialog' has no member named 'adjustSize'
    main.cpp:111: error: 'class KompileProfileDialog' has no member named 'exec'
    main.cpp:114: error: 'KDialogBase' was not declared in this scope
    main.cpp:114: error: 'installdialog' was not declared in this scope
    main.cpp:114: error: expected type-specifier before 'KDialogBase'
    main.cpp:114: error: expected `;' before 'KDialogBase'
    main.cpp:121: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:149: error: no matching function for call to 'KFileDialog::getOpenFileName(const char [1], const QString, NULL, QString)'
    /usr/include/kfiledialog.h:358: note: candidates are: static QString KFileDialog::getOpenFileName(const KUrl&, const QString&, QWidget*, const QString&)
    main.cpp:154: error: 'KDialogBase' was not declared in this scope
    main.cpp:154: error: 'installdialog' was not declared in this scope
    main.cpp:154: error: expected type-specifier before 'KDialogBase'
    main.cpp:154: error: expected `;' before 'KDialogBase'
    main.cpp:157: error: 'split' is not a member of 'QStringList'
    main.cpp:158: error: 'split' is not a member of 'QStringList'
    main.cpp:159: error: 'split' is not a member of 'QStringList'
    main.cpp:161: error: 'locateLocal' was not declared in this scope
    main.cpp:162: error: no matching function for call to 'QDir::entryList(const char [10])'
    /usr/include/QtCore/qdir.h:168: note: candidates are: QStringList QDir::entryList(QFlags<QDir::Filter>, QFlags<QDir::SortFlag>) const
    /usr/include/QtCore/qdir.h:170: note: QStringList QDir::entryList(const QStringList&, QFlags<QDir::Filter>, QFlags<QDir::SortFlag>) const
    main.cpp:168: error: 'class QStringList' has no member named 'grep'
    main.cpp:170: error: 'class QStringList' has no member named 'grep'
    main.cpp:179: error: 'compatible_dialog' was not declared in this scope
    main.cpp:179: error: expected type-specifier before 'KDialogBase'
    main.cpp:179: error: expected `;' before 'KDialogBase'
    main.cpp:180: error: 'KListBox' was not declared in this scope
    main.cpp:180: error: 'profiles_list' was not declared in this scope
    main.cpp:180: error: expected type-specifier before 'KListBox'
    main.cpp:180: error: expected `;' before 'KListBox'
    main.cpp:184: error: 'class QString' has no member named 'setLength'
    main.cpp:185: error: 'iconLoader' is not a member of 'KGlobal'
    main.cpp:185: error: 'Toolbar' is not a member of 'KIcon'
    main.cpp:190: error: 'KDialogBase' is not a class or namespace
    main.cpp:193: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:200: error: 'split' is not a member of 'QStringList'
    main.cpp:201: error: 'split' is not a member of 'QStringList'
    main.cpp:205: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:214: error: 'split' is not a member of 'QStringList'
    main.cpp:215: error: 'split' is not a member of 'QStringList'
    main.cpp:220: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:229: error: 'locateLocal' was not declared in this scope
    main.cpp:231: error: 'split' is not a member of 'QStringList'
    main.cpp:232: error: 'split' is not a member of 'QStringList'
    main.cpp:237: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:250: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:261: error: 'locateLocal' was not declared in this scope
    main.cpp:263: error: 'class KConfig' has no member named 'readEntry'
    main.cpp:265: error: 'KDialogBase' was not declared in this scope
    main.cpp:265: error: 'installdialog' was not declared in this scope
    main.cpp:265: error: expected type-specifier before 'KDialogBase'
    main.cpp:265: error: expected `;' before 'KDialogBase'
    main.cpp:273: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:279: error: no matching function for call to 'KMessageBox::warningYesNoCancel(NULL, QString, QString, QString, QString)'
    /usr/include/kmessagebox.h:512: note: candidates are: static int KMessageBox::warningYesNoCancel(QWidget*, const QString&, const QString&, const KGuiItem&, const KGuiItem&, const KGuiItem&, const QString&, QFlags<KMessageBox::Option>)
    main.cpp:287: error: 'KDialogBase' was not declared in this scope
    main.cpp:287: error: 'load_profile' was not declared in this scope
    main.cpp:287: error: expected type-specifier before 'KDialogBase'
    main.cpp:287: error: expected `;' before 'KDialogBase'
    main.cpp:293: error: 'KDialogBase' is not a class or namespace
    main.cpp:297: error: 'installdialog' was not declared in this scope
    main.cpp:297: error: expected type-specifier before 'KDialogBase'
    main.cpp:297: error: expected `;' before 'KDialogBase'
    main.cpp:306: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:308: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:330: error: no matching function for call to 'KFileDialog::getOpenFileName(const char [1], const QString, NULL, QString)'
    /usr/include/kfiledialog.h:358: note: candidates are: static QString KFileDialog::getOpenFileName(const KUrl&, const QString&, QWidget*, const QString&)
    main.cpp:335: error: 'KDialogBase' was not declared in this scope
    main.cpp:335: error: 'installdialog' was not declared in this scope
    main.cpp:335: error: expected type-specifier before 'KDialogBase'
    main.cpp:335: error: expected `;' before 'KDialogBase'
    main.cpp:336: error: 'locateLocal' was not declared in this scope
    main.cpp:337: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:344: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:350: error: 'class KApplication' has no member named 'setMainWidget'
    make[2]: *** [main.o] Error 1
    make[1]: *** [all-recursive] Error 1
    make: *** [all] Error 2
    Making install in doc
    Making install in .
    Making install in en
    /bin/install -c -p -m 644 index.docbook /usr/local/kde/share/doc/HTML/en/kompile/index.docbook
    /bin/install -c -p -m 644 index.cache.bz2 /usr/local/kde/share/doc/HTML/en/kompile/
    Making install in po
    /bin/install -c -p -m 644 it.gmo /usr/local/kde/share/locale/it/LC_MESSAGES/kompile.mo
    Making install in src
    In file included from main.cpp:33:
    kompileprofiledialog.h:23:25: error: kdialogbase.h: No such file or directory
    In file included from main.cpp:31:
    /opt/qt/include/qtooltip.h:56: error: function definition does not declare parameters
    /opt/qt/include/qtooltip.h:91: error: function definition does not declare parameters
    In file included from kompileprofilewidget.h:23,
    from kompileprofiledialog.h:25,
    from main.cpp:33:
    kompileprofilewidgetbase.h:37: error: 'WFlags' has not been declared
    In file included from main.cpp:33:
    kompileprofiledialog.h:27: error: expected class-name before '{' token
    kompileprofiledialog.h:27: warning: 'class KompileProfileDialog' has virtual functions and accessible non-virtual destructor
    In file included from kompileprofileselectionwidget.h:23,
    from main.cpp:34:
    kompileprofileselectionwidgetbase.h:27: error: 'WFlags' has not been declared
    In file included from kompilewidget.h:29,
    from main.cpp:35:
    /opt/qt/include/qtimer.h:49: error: function definition does not declare parameters
    /opt/qt/include/qtimer.h:85: error: invalid use of incomplete type 'struct QTimer'
    /usr/include/QtGui/qwindowdefs.h:82: error: forward declaration of 'struct QTimer'
    In file included from kompilewidget.h:32,
    from main.cpp:35:
    kompilewidgetbase.h:35: error: 'WFlags' has not been declared
    In file included from main.cpp:35:
    kompilewidget.h:37: error: ISO C++ forbids declaration of 'KDialogBase' with no type
    kompilewidget.h:37: error: expected ';' before '*' token
    kompilewidget.h:59: error: 'WFlags' has not been declared
    main.cpp:55: error: 'KCmdLineLastOption' was not declared in this scope
    main.cpp:56: error: braces around scalar initializer for type 'KCmdLineOptions'
    main.cpp: In function 'int main(int, char**)':
    main.cpp:61: error: no matching function for call to 'KAboutData::KAboutData(const char [8], const char [8], const char [4], const char [87], KAboutData::LicenseKey, const char [27], int, int, const char [28])'
    /usr/include/kaboutdata.h:255: note: candidates are: KAboutData::KAboutData(const KAboutData&)
    /usr/include/kaboutdata.h:249: note: KAboutData::KAboutData(const QByteArray&, const QByteArray&, const KLocalizedString&, const QByteArray&, const KLocalizedString&, KAboutData::LicenseKey, const KLocalizedString&, const KLocalizedString&, const QByteArray&, const QByteArray&)
    main.cpp:62: error: no matching function for call to 'KAboutData::addAuthor(const char [18], int, const char [28])'
    /usr/include/kaboutdata.h:290: note: candidates are: KAboutData& KAboutData::addAuthor(const KLocalizedString&, const KLocalizedString&, const QByteArray&, const QByteArray&)
    main.cpp:64: error: no matching function for call to 'KCmdLineArgs::addCmdLineOptions(KCmdLineOptions [1])'
    /usr/include/kcmdlineargs.h:400: note: candidates are: static void KCmdLineArgs::addCmdLineOptions(const KCmdLineOptions&, const KLocalizedString&, const QByteArray&, const QByteArray&)
    main.cpp:68: error: 'class KApplication' has no member named 'isRestored'
    main.cpp:83: error: 'locateLocal' was not declared in this scope
    main.cpp:85: error: 'class KConfig' has no member named 'readEntry'
    main.cpp:87: error: 'KDialogBase' was not declared in this scope
    main.cpp:87: error: 'installdialog' was not declared in this scope
    main.cpp:87: error: expected type-specifier before 'KDialogBase'
    main.cpp:87: error: expected `;' before 'KDialogBase'
    main.cpp:94: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:100: error: no matching function for call to 'KMessageBox::warningYesNoCancel(NULL, QString, QString, QString, QString)'
    /usr/include/kmessagebox.h:512: note: candidates are: static int KMessageBox::warningYesNoCancel(QWidget*, const QString&, const QString&, const KGuiItem&, const KGuiItem&, const KGuiItem&, const QString&, QFlags<KMessageBox::Option>)
    main.cpp:109: error: 'class KompileProfileDialog' has no member named 'adjustSize'
    main.cpp:111: error: 'class KompileProfileDialog' has no member named 'exec'
    main.cpp:114: error: 'KDialogBase' was not declared in this scope
    main.cpp:114: error: 'installdialog' was not declared in this scope
    main.cpp:114: error: expected type-specifier before 'KDialogBase'
    main.cpp:114: error: expected `;' before 'KDialogBase'
    main.cpp:121: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:149: error: no matching function for call to 'KFileDialog::getOpenFileName(const char [1], const QString, NULL, QString)'
    /usr/include/kfiledialog.h:358: note: candidates are: static QString KFileDialog::getOpenFileName(const KUrl&, const QString&, QWidget*, const QString&)
    main.cpp:154: error: 'KDialogBase' was not declared in this scope
    main.cpp:154: error: 'installdialog' was not declared in this scope
    main.cpp:154: error: expected type-specifier before 'KDialogBase'
    main.cpp:154: error: expected `;' before 'KDialogBase'
    main.cpp:157: error: 'split' is not a member of 'QStringList'
    main.cpp:158: error: 'split' is not a member of 'QStringList'
    main.cpp:159: error: 'split' is not a member of 'QStringList'
    main.cpp:161: error: 'locateLocal' was not declared in this scope
    main.cpp:162: error: no matching function for call to 'QDir::entryList(const char [10])'
    /usr/include/QtCore/qdir.h:168: note: candidates are: QStringList QDir::entryList(QFlags<QDir::Filter>, QFlags<QDir::SortFlag>) const
    /usr/include/QtCore/qdir.h:170: note: QStringList QDir::entryList(const QStringList&, QFlags<QDir::Filter>, QFlags<QDir::SortFlag>) const
    main.cpp:168: error: 'class QStringList' has no member named 'grep'
    main.cpp:170: error: 'class QStringList' has no member named 'grep'
    main.cpp:179: error: 'compatible_dialog' was not declared in this scope
    main.cpp:179: error: expected type-specifier before 'KDialogBase'
    main.cpp:179: error: expected `;' before 'KDialogBase'
    main.cpp:180: error: 'KListBox' was not declared in this scope
    main.cpp:180: error: 'profiles_list' was not declared in this scope
    main.cpp:180: error: expected type-specifier before 'KListBox'
    main.cpp:180: error: expected `;' before 'KListBox'
    main.cpp:184: error: 'class QString' has no member named 'setLength'
    main.cpp:185: error: 'iconLoader' is not a member of 'KGlobal'
    main.cpp:185: error: 'Toolbar' is not a member of 'KIcon'
    main.cpp:190: error: 'KDialogBase' is not a class or namespace
    main.cpp:193: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:200: error: 'split' is not a member of 'QStringList'
    main.cpp:201: error: 'split' is not a member of 'QStringList'
    main.cpp:205: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:214: error: 'split' is not a member of 'QStringList'
    main.cpp:215: error: 'split' is not a member of 'QStringList'
    main.cpp:220: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:229: error: 'locateLocal' was not declared in this scope
    main.cpp:231: error: 'split' is not a member of 'QStringList'
    main.cpp:232: error: 'split' is not a member of 'QStringList'
    main.cpp:237: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:250: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:261: error: 'locateLocal' was not declared in this scope
    main.cpp:263: error: 'class KConfig' has no member named 'readEntry'
    main.cpp:265: error: 'KDialogBase' was not declared in this scope
    main.cpp:265: error: 'installdialog' was not declared in this scope
    main.cpp:265: error: expected type-specifier before 'KDialogBase'
    main.cpp:265: error: expected `;' before 'KDialogBase'
    main.cpp:273: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:279: error: no matching function for call to 'KMessageBox::warningYesNoCancel(NULL, QString, QString, QString, QString)'
    /usr/include/kmessagebox.h:512: note: candidates are: static int KMessageBox::warningYesNoCancel(QWidget*, const QString&, const QString&, const KGuiItem&, const KGuiItem&, const KGuiItem&, const QString&, QFlags<KMessageBox::Option>)
    main.cpp:287: error: 'KDialogBase' was not declared in this scope
    main.cpp:287: error: 'load_profile' was not declared in this scope
    main.cpp:287: error: expected type-specifier before 'KDialogBase'
    main.cpp:287: error: expected `;' before 'KDialogBase'
    main.cpp:293: error: 'KDialogBase' is not a class or namespace
    main.cpp:297: error: 'installdialog' was not declared in this scope
    main.cpp:297: error: expected type-specifier before 'KDialogBase'
    main.cpp:297: error: expected `;' before 'KDialogBase'
    main.cpp:306: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:308: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:330: error: no matching function for call to 'KFileDialog::getOpenFileName(const char [1], const QString, NULL, QString)'
    /usr/include/kfiledialog.h:358: note: candidates are: static QString KFileDialog::getOpenFileName(const KUrl&, const QString&, QWidget*, const QString&)
    main.cpp:335: error: 'KDialogBase' was not declared in this scope
    main.cpp:335: error: 'installdialog' was not declared in this scope
    main.cpp:335: error: expected type-specifier before 'KDialogBase'
    main.cpp:335: error: expected `;' before 'KDialogBase'
    main.cpp:336: error: 'locateLocal' was not declared in this scope
    main.cpp:337: error: 'class KConfig' has no member named 'writeEntry'
    main.cpp:344: error: type '<type error>' argument given to 'delete', expected pointer
    main.cpp:350: error: 'class KApplication' has no member named 'setMainWidget'
    make[1]: *** [main.o] Error 1
    make: *** [install-recursive] Error 1
    Last edited by brando56894 (2009-05-06 21:12:39)

    thats what i thought when i saw that many errors, it was a dev build anyway. its from sometime in 2007...

  • I get the following Error

    Hi All,
    I have created a Search Input in which when i enter the Table Name, It should show up the Field Name, Field Text, Length, Offset and Type.
    But when i debug the Widget it is showing me the following error.
    I'm working on Eclipse Europa..
    Can someone help me out in this Regard.
    Welcome to Yahoo! Widgets 4.5.1 (build 10A39) on 01/21/08 12:47:46.796
    Type '/help' for help.
    Deprecation Notice: 'debug' is deprecated in version 4.0 and later. Use <settings> instead.
    Loaded Widget 'customWidget' from D:\Eclipse\customWidget\Main.kon
    01/21/08 12:47:47.140: customWidget version is @buildNum@
    Main.kon (Included file 'js/utils/PlatformUtil.js')
    Main.kon (Included file 'js/utils/DomUtil.js')
    Main.kon (Included file 'js/utils/CommonUtil.js')
    Main.kon (Included file 'js/utils/Common.js')
    Main.kon (Included file 'js/utils/Timer.js')
    Main.kon (Included file 'js/utils/DataLoader.js')
    Main.kon (Included file 'js/utils/RFCRequest.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/Skin.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinCell.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinConfiguration.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinCustomDraw.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinImage.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinInput.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinList.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinElementStyle.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinEvents.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinComponent.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinText.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinLabel.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinViewDefinition.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinViewDraw.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/XmlUtil.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/ConfigurationReader.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/SkinUtil.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/ResourcesReader.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/ResourceBundle.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/Components.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/ComponentEvents.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/ComponentProperties.js')
    js/utils/PlatformUtil.js (Included file 'js/skinlib/WidgetUtil.js')
    Main.kon (Included file 'js/skinlib/SkinLib_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.About/js/c.About.js')
    js/utils/PlatformUtil.js (Included file 'components/c.About/js/c.About_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Feedback/js/c.Feedback.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Feedback/js/Animation.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Feedback/js/c.FeedbackController.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Feedback/js/c.Feedback_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Footer/js/Footer.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Footer/js/c.Footer_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Header/js/Header.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Header/js/c.Header_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.SearchInput/js/SearchInput.js')
    js/utils/PlatformUtil.js (Included file 'components/c.SearchInput/js/c.SearchInput_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/tasks/Task.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/tasks/TaskSet.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/tasks/JavaChecker.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/tasks/FoundationChecker.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/tasks/WidgetDeployer.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/TaskViewer.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/StartupServices.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/ActivityLogger.js')
    js/utils/PlatformUtil.js (Included file 'components/c.StartupManager/js/c.StartupManager_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Table/js/Table.js')
    js/utils/PlatformUtil.js (Included file 'components/c.Table/js/c.Table_Include.js')
    js/utils/PlatformUtil.js (Included file 'components/c.TellToFriend/js/c.TellToFriend.js')
    js/utils/PlatformUtil.js (Included file 'components/c.TellToFriend/js/c.TellToFriend_Include.js')
    Error while including file 'components/Main/js/controller/Controller.js' (js/utils/PlatformUtil.js: Line 306)
    Error while including file 'components/Main/js/Main_Include.js' (js/utils/PlatformUtil.js: Line 306)
    12:47:47! [Components.includeComponentFiles] Failed including component file: components/Main/js/Main_Include.js
    Main.kon (Included file 'components/Main/js/Main.js')
    01/21/08 12:47:47.468: Starting deployment
    01/21/08 12:47:47.468: Deployment Finished
    12:47:47! [Components.create] cAbout : c.About
    12:47:47! [Components.create] cFeedback : c.Feedback
    12:47:47! [Components.create] cFeedbackHeader : c.Header
    12:47:47! [Components.create] cFeedbackFooter : c.Footer
    12:47:47! [Components.create] cMainTable : c.Table
    12:47:47! [Components.create] cSearchInput : c.SearchInput
    12:47:47! [Components.create] cMainHeader : c.Header
    12:47:47! [Components.create] cMainFooter : c.Footer
    ReferenceError: Controller is not defined (Main.js: Line 20)
    Regards,
    Sai

    Hello Sai,
    Please check the below steps once more, ofcourse you would have done these already.
    1) SAP WIDGET FOUNDATION is running in your system
    2) Have you changed widget preferences of the downloaded widget from SAP, by right clicking on the widget and changed your service provider name .
    Regards,
    Kiran I
    Hi Sai,
    After these even you are getting similar error. Then the mistake would be the table name you have given in the search. It should be given in CAPITAL letters. for ex: try giving SFLIGHT and run your query provided if you have above step ready.
    This will surely solve your issue bcoz iam able to create the same message in my system what you are getting "QUERY table issue"
    Do let me know the status.
    Regards,
    Kiran I

  • I keep getting error 205 when downloading CC on a 2nd computer. PC, Windows 7. We had turned off anti-virus and ran cleaner

    I keep getting error 205 when downloading CC on a 2nd computer. PC, Windows 7. We had turned off anti-virus and ran cleaner. Any suggestions of how else to do it? I have creative cloud installed on another computer, but do not see the .exe file on it so I can't copy and move it.

    I found this log.  Is there a way to ftp the file or get it through email?
    04/03/15 08:13:32:710 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 3396 | ****************Starting LBS workflow*******************
    04/03/15 08:13:32:912 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 3396 | LBS launched in LEGACY mode
    04/03/15 08:13:33:005 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | ACCC System requirements check passed
    04/03/15 08:13:33:785 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 5428 | Product locale not specified in the product information file
    04/03/15 08:13:33:785 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 5428 | Product name not specified in the product information file
    04/03/15 08:13:33:785 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | Bootstrap LBS is successful
    04/03/15 08:13:33:803 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | Bootstrapper Lock acquired
    04/03/15 08:13:33:821 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | LBS Lock acquired
    04/03/15 08:13:33:844 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | Deployment lock check passed
    04/03/15 08:13:33:861 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | The resolved URL for package service is https://prod-rel-ffc.oobesaas.adobe.com/adobe-ffc-external/core/v1/applications?name=Creat iveCloud&name=CCLBS&osVersion=6.1.1&platform=win32
    04/03/15 08:13:35:173 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 5428 | Successfully downloaded application xml at path C:\Users\Blatte1\AppData\Local\Temp\{C0981016-EE83-444B-9F00-2D580FC13CC6}\applications.x ml
    04/03/15 08:13:35:235 | [ERROR] |  | ACC | LBS | WorkflowManager |  | FileUtils | 5428 | Failed to get version of file at path :C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll Error
    04/03/15 08:13:35:235 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 5428 | Failed to get the PIM version from location: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll
    04/03/15 08:13:38:378 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:39:374 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:40:364 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:41:356 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:42:346 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:43:339 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:44:331 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:45:324 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:46:314 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:47:394 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:48:397 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 6680 | Segment 0 of size 777130 is Invalid
    04/03/15 08:13:48:854 | [WARN] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 8144 | A user retryable error has occured while downloading the file. errotType = -60 extendedErrorCode = 417
    04/03/15 08:13:48:935 | [WARN] |  | ACC | LBS | PDM | PackageDownloadManager |  | 4156 | Manifest file could not be downloaded
    04/03/15 08:13:49:146 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 5428 | Failed in DOWNLOAD PIM
    04/03/15 08:13:56:667 | [INFO] |  | ACC | LBS | ETS |  |  | 3396 | Waiting for the async thread to get the task completed
    04/03/15 08:13:56:667 | [INFO] |  | ACC | LBS | ETS |  |  | 5308 | Async thread is completed. Now exiting from function.
    04/03/15 08:13:56:668 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 3396 | ****************Closing LBS workflow*******************
    04/03/15 08:14:51:529 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 6764 | ****************Starting LBS workflow*******************
    04/03/15 08:14:51:557 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 6764 | LBS launched in LEGACY mode
    04/03/15 08:14:51:633 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | ACCC System requirements check passed
    04/03/15 08:14:52:137 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 2108 | Product locale not specified in the product information file
    04/03/15 08:14:52:137 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 2108 | Product name not specified in the product information file
    04/03/15 08:14:52:138 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Bootstrap LBS is successful
    04/03/15 08:14:52:155 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Bootstrapper Lock acquired
    04/03/15 08:14:52:173 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | LBS Lock acquired
    04/03/15 08:14:52:194 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Deployment lock check passed
    04/03/15 08:14:52:211 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | The resolved URL for package service is https://prod-rel-ffc.oobesaas.adobe.com/adobe-ffc-external/core/v1/applications?name=Creat iveCloud&name=CCLBS&osVersion=6.1.1&platform=win32
    04/03/15 08:14:53:528 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Successfully downloaded application xml at path C:\Users\Blatte1\AppData\Local\Temp\{F7CC0F61-C090-43B1-A0E4-A85ECBEAC0A6}\applications.x ml
    04/03/15 08:14:53:577 | [ERROR] |  | ACC | LBS | WorkflowManager |  | FileUtils | 2108 | Failed to get version of file at path :C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll Error
    04/03/15 08:14:53:578 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Failed to get the PIM version from location: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll
    04/03/15 08:14:59:411 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:00:404 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:01:396 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:02:957 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:03:949 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:05:025 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:06:316 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:07:306 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:08:297 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:09:289 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:10:281 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7700 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:10:425 | [WARN] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 8168 | A user retryable error has occured while downloading the file. errotType = -60 extendedErrorCode = 417
    04/03/15 08:15:10:499 | [WARN] |  | ACC | LBS | PDM | PackageDownloadManager |  | 7984 | Manifest file could not be downloaded
    04/03/15 08:15:10:709 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Failed in DOWNLOAD PIM
    04/03/15 08:15:17:071 | [ERROR] |  | ACC | LBS | WorkflowManager |  | FileUtils | 2108 | Failed to get version of file at path :C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll Error
    04/03/15 08:15:17:071 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Failed to get the PIM version from location: C:\Program Files (x86)\Adobe\Adobe Creative Cloud\utils\AdobePIM.dll
    04/03/15 08:15:19:766 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:20:781 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:21:775 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:22:767 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:23:768 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:24:814 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:25:808 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:26:821 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:27:817 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:28:811 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:29:808 | [ERROR] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 2572 | Segment 0 of size 777130 is Invalid
    04/03/15 08:15:30:285 | [WARN] |  | ACC | LBS | PDM | PDMWorkflowManager |  | 7160 | A user retryable error has occured while downloading the file. errotType = -60 extendedErrorCode = 417
    04/03/15 08:15:30:367 | [WARN] |  | ACC | LBS | PDM | PackageDownloadManager |  | 4148 | Manifest file could not be downloaded
    04/03/15 08:15:30:572 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 2108 | Failed in DOWNLOAD PIM
    04/03/15 08:16:41:099 | [INFO] |  | ACC | LBS | ApplicationFacade |  |  | 7008 | ****************Starting LBS workflow*******************
    04/03/15 08:16:41:130 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 7008 | LBS launched in LEGACY mode
    04/03/15 08:16:41:191 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 6628 | ACCC System requirements check passed
    04/03/15 08:16:41:733 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 6628 | Product locale not specified in the product information file
    04/03/15 08:16:41:734 | [INFO] |  | ACC | LBS | ProductInfo |  |  | 6628 | Product name not specified in the product information file
    04/03/15 08:16:41:734 | [INFO] |  | ACC | LBS | WorkflowManager |  |  | 6628 | Bootstrap LBS is successful
    04/03/15 08:16:41:751 | [ERROR] |  | ACC | LBS | WorkflowManager |  |  | 6628 | Failed to acquire Bootstrapper Lock

  • [SOLVED] DWM patch error

    Hi. I want to apply the Bottom Stack patch to my dwm. I did for 5.6 but i don't know how
    This is my PKGBUILD
    # $Id: PKGBUILD 3133 2009-09-28 09:01:18Z spupykin $
    # Maintainer: Sergej Pupykin <[email protected]>
    # Contributor: Dag Odenhall <[email protected]>
    # Contributor: Grigorios Bouzakis <[email protected]>
    pkgname=dwm
    pkgver=5.7.2
    pkgrel=1
    pkgdesc="A dynamic window manager for X"
    url="http://dwm.suckless.org"
    arch=('i686' 'x86_64')
    license=('MIT')
    options=(zipman)
    depends=('libx11')
    install=dwm.install
    source=(http://code.suckless.org/dl/dwm/dwm-$pkgver.tar.gz \
    config.h bstack.c)
    md5sums=()
    build() {
    cd $srcdir/$pkgname-$pkgver
    cp $srcdir/config.h config.h
    patch -p0 -i /home/kismet/.dwm/patch/bstack.c
    make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 || return 1
    make PREFIX=/usr DESTDIR=$pkgdir install || return 1
    install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE && \
    install -m644 -D README $pkgdir/usr/share/doc/$pkgname/README
    I don't how exactly put the patch.. this is the error i get
    ~/.dwm makepkg -efi
    ==> Creando el paquete: dwm 5.7.2-1 i686 (mié dic 16 18:02:39 CET 2009)
    ==> Comprobando Dependencias en tiempo de Ejecución...
    ==> Comprobando Dependencias en tiempo de Compilación...
    ==> PRECAUCIÓN: Saltando obtención de fuentes -- usando el arbol src/ existente
    ==> PRECAUCIÓN: saltando pruebas de integridad -- usando el arbol src/ existente
    ==> PRECAUCIÓN: Saltando extracción de las fuentes -- usando src/tree existente
    ==> Eliminando directorio pkg/ existente...
    ==> Entrando a un ambiente fakeroot...
    ==> Comenzando build()...
    patch: **** Only garbage was found in the patch input.
    dwm build options:
    CFLAGS = -std=c99 -pedantic -Wall -Os -I. -I/usr/include -I/usr/include/X11 -DVERSION="5.7.2" -DXINERAMA
    LDFLAGS = -s -L/usr/lib -lc -L/usr/lib/X11 -lX11 -L/usr/lib/X11 -lXinerama
    CC = cc
    CC dwm.c
    En el fichero incluído de dwm.c:274:
    config.h:37:20: error: bstack.c: No existe el fichero o el directorio
    In file included from dwm.c:274:
    config.h:44: error: 'bstack' no se declaró aquí (no en una función)
    make: *** [dwm.o] Error 1
    ==> ERROR: Falló la compilación.
    Abortando...
    ~/.dwm
    What's happen?
    Last edited by kismet010 (2010-02-08 05:51:28)

    well, new error..
    applying another patch:
    patch -i ~/.dwm/src/dwm-5.7.2/bstack.c
    patch -i ~/.dwm/src/dwm-5.7.2/dwm-5.7.2-pertag.diff
    get this:
    ~/.dwm makepkg -efi
    ==> Creando el paquete: dwm 5.7.2-1 i686 (mié dic 16 19:28:13 CET 2009)
    ==> Comprobando Dependencias en tiempo de Ejecución...
    ==> Comprobando Dependencias en tiempo de Compilación...
    ==> PRECAUCIÓN: Saltando obtención de fuentes -- usando el arbol src/ existente
    ==> PRECAUCIÓN: saltando pruebas de integridad -- usando el arbol src/ existente
    ==> PRECAUCIÓN: Saltando extracción de las fuentes -- usando src/tree existente
    ==> Eliminando directorio pkg/ existente...
    ==> Entrando a un ambiente fakeroot...
    ==> Comenzando build()...
    patch: **** Only garbage was found in the patch input.
    patching file dwm.c
    Reversed (or previously applied) patch detected! Assume -R? [n]
    Apply anyway? [n] y
    Hunk #1 FAILED at 120.
    Hunk #2 succeeded at 303 with fuzz 2 (offset 30 lines).
    Hunk #3 FAILED at 1475.
    Hunk #4 FAILED at 1493.
    Hunk #5 FAILED at 1534.
    Hunk #6 FAILED at 1645.
    Hunk #7 FAILED at 1665.
    Hunk #8 FAILED at 1937.
    7 out of 8 hunks FAILED -- saving rejects to file dwm.c.rej
    dwm build options:
    CFLAGS = -std=c99 -pedantic -Wall -Os -I. -I/usr/include -I/usr/include/X11 -DVERSION="5.7.2" -DXINERAMA
    LDFLAGS = -s -L/usr/lib -lc -L/usr/lib/X11 -lX11 -L/usr/lib/X11 -lXinerama
    CC = cc
    CC dwm.c
    In file included from config.h:37,
    from dwm.c:254:
    bstack.c: En la función 'bstack':
    bstack.c:7: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:11: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:12: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:12: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:13: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:13: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:13: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:13: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:17: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:18: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:18: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:19: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:20: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:20: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:20: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:20: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:22: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:25: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:25: error: puntero deferenciado a tipo de dato incompleto
    bstack.c:26: error: puntero deferenciado a tipo de dato incompleto
    dwm.c: En el nivel principal:
    dwm.c:281: error: redefinición de 'struct Monitor'
    dwm.c:306: error: redefinición de 'struct Monitor'
    make: *** [dwm.o] Error 1
    ==> ERROR: Falló la compilación.
    Abortando...
    ~/.dwm
    Edit: same error (without hunks) althought not patching for bstack.c
    Last edited by kismet010 (2009-12-16 18:36:13)

  • Encounter an error when create initial full deployment

    Hi all,
    I initiated a full deployment after configure the deployment agent in the admin console, when the deployment process goes to about 57%, it indicated the following error.
    Deployment Status: atg.deployment.common.Resources->ERROR_APPLY : Error Applying
    Last Execution Time: 160.672 seconds
    Total Execution Time: 160.672 seconds
    Deployment Failed 57% atg.deployment.common.Resources->ERROR_APPLY : Error Applying
    Error Message:
    atg.deployment.common.Resources->DEP_ERR_DISTRIUBTED_EXCEPTION : Deployment '3300003' to target 'tar296' encountered a system level deployment error during data transfer.
    Deployment Errors
    Error Message Asset Timestamp
    Deployment Failed xsku2509_8:clothing-sku 2011-07-01 02:38:44.669
    Can someone help me resolving this error? thank you.
    here is the error log
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager     item = repositoryMarker:mark505672 cause = atg.deployment.DistributedDeploymentException: Destination item productTranslation:xlatexprod2160 is null
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.repository.RepositoryWorkerThread.deployItem(RepositoryWorkerThread.java:1062)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.repository.RepositoryWorkerThread.processMarkerForReferenceUpdatePhase(RepositoryWorkerThread.java:334)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:540)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:307)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager     message = Deployment Failed time = Fri Jul 01 01:46:08 CST 2011 atg.deployment.DeploymentFailure@193520d     atg.deployment.DistributedDeploymentException: Destination item productTranslation:xlatexprod2160 is null
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.repository.RepositoryWorkerThread.deployItem(RepositoryWorkerThread.java:1062)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.repository.RepositoryWorkerThread.processMarkerForReferenceUpdatePhase(RepositoryWorkerThread.java:334)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:540)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager          at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:307)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968247     /atg/deployment/DeploymentManager     
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968794     /atg/deployment/DeploymentManager     Unexpected error occurred. DeploymentWorkerThread terminated prematurely.     atg.deployment.DistributedDeploymentException: Exceeded allowable error count (0)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968794     /atg/deployment/DeploymentManager          at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:652)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968794     /atg/deployment/DeploymentManager          at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:307)
    **** Error     星期五 七月 01 01:46:08 CST 2011     1309455968794     /atg/deployment/DeploymentManager     
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer     ---     atg.deployment.common.DeploymentException: atg.deployment.common.Resources->DEP_ERR_DISTRIUBTED_EXCEPTION : Deployment '3300002' to target 'Production' encountered a system level deployment error during data transfer.
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer          at atg.deployment.common.ResourceUtil.exception(ResourceUtil.java:306)
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer          at atg.deployment.adapter.DistributedDeploymentAdapter.deployData(DistributedDeploymentAdapter.java:2238)
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer          at atg.deployment.adapter.DistributedDeploymentAdapter.transferData(DistributedDeploymentAdapter.java:305)
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer          at atg.deployment.server.Deployment.run(Deployment.java:1688)
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer          at java.lang.Thread.run(Thread.java:662)
    **** Error     星期五 七月 01 01:46:13 CST 2011     1309455973841     /atg/epub/DeploymentServer

    Based on what you have pasted, it seems you have hit an error:
    /atg/deployment/DeploymentManager item = repositoryMarker:mark505672 cause = atg.deployment.DistributedDeploymentException: Destination item productTranslation:xlatexprod2160 is null
    We will need to see the entire log file (possibly with debugging on the concerned repository) to figure out the cause of this issue. But does it work if you cancel the failed deployment, delete and recreate the target with the same topology and run an initial deployment?
    If you would like the deployment to continue, you can increase the DeploymentManager.maxFailureCount to allow for the deployment to proceed beyond this single error:
    /atg/deployment/DeploymentManager Unexpected error occurred. DeploymentWorkerThread terminated prematurely. atg.deployment.DistributedDeploymentException: Exceeded allowable error count (0)
    Nitin

Maybe you are looking for

  • N73 displays answer phone icon even though i have ...

    N73 displays answer phone icon even though i have no message. Any ideas? Its not who i am underneath. But what i do that defines me. You are here for a reason Superman. "Come to me son of Jor-EL. KNEEL BEFORE ZOD"

  • File or picture upload in survey tool

    Hi, we want to use survey tool for gathering some information from customer location. Here there is a need to to provide a facility to user to load a file or picture.First of all can i do this using survey tool if so can anybody pls provide the way o

  • Connecting to Snow Leopard iMac via iPhone?

    Anyone know of an app to allow remote desktop login/access to an iMac from your iPhone?

  • DISABLE" ALL user web/internet addresses/sites in a PDF?

    Professionally & Personally - I use, make, and Read many PDF files daily [reports, documents, & books]; I have many "many" thousands of PDF documents in my Archives. A. Background: 1.    I have heard, since Acrobat 5, many security specialist have de

  • Quality inspection option in delivery tab in purchase order.

    Dear QM gurus , We have a requirement in which the user is making an Stock transfer PO and he wants the default selection of quality inspection in delivery tab of PO . Kindly note that we have already activated the inspection types(including 01 with