The multi-part identifier "#AIP.agentcode" could not be bound is error coming while executing code

DECLARE @Groupid varchar(50)
DECLARE @Agentcode varchar(50)
Declare @From numeric(20)
Declare @TO numeric(20)
DECLARE @date nvarchar(30)
Declare @tempSelect varchar(max)=''
Declare @tempQuery varchar(max)
declare @sqlstr nvarchar(max)
declare @alias nvarchar(100)
declare @agent1 varchar(4000)
declare @agentid varchar(20)
declare @transvalue varchar(20)
Set @From= 20140801
Set @TO= 20140810
SET @Groupid=2
SET @Agentcode=121
--set @ttotal = @TO - @From
--set @counter = @From
--set @i = 0
set @tempQuery=''
truncate table  jv.dbo.a_tbl_AIP_LOGIN 
insert into jv.dbo.a_tbl_AIP_LOGIN (agentcode)
select distinct   AgentCode   from jv.dbo.aGENT WHERE Flagactive='y' and email like '%@%'
union
SELECT Distinct 
jv.dbo.POLICYADMININFO.AGENTID 
FROM jv.dbo.POLICYADMININFO(NOLOCK)
WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB'  and POLICYADMININFO.AGENTID>0 
Update T set RM_NAME=RMMASTER.rmname,SM_NAME=SM_MASTER.name,REGION=rmmaster.region,AIP_NAME=agent.FirstName     
 from jv.dbo.a_tbl_AIP_LOGIN T
left join jv.dbo.AGENT (NOLOCK) on    t.agentcode=agent.AgentCode
LEFT JOIN jv.dbo.SM_MASTER(NOLOCK) ON AGENT.SMID = SM_MASTER.SMID
LEFT JOIN jv.dbo.RMMASTER(NOLOCK) ON sm_master.Region =rmmaster.region   
--------------------------------------FOR AIP Operation----------------------------------------------------------
if (@groupid=2)
Begin 
select agentcode into #AIP from jv.dbo.a_tbl_aip_login where AgentCode=@Agentcode
SELECT PolicyAdminInfo.AgentID,ORDEFFDATE,isnull(convert(bigint, SUM(cast(TransVal*s1.mf as money))),0) TRANSVAL
into #aipbusiness FROM   jv.dbo.POLICYADMININFO(NOLOCK) 
INNER join #AIP on PolicyAdminInfo.AgentID=#AIP.agentcode
LEFT JOIN jv.dbo.Amwayskuitem_New(NOLOCK) S1 ON S1.SKU_ITEM=POLICYADMININFO.SKUNO  
LEFT JOIN jv.dbo.POLICYINFO(NOLOCK) I ON I.POLICYNO=POLICYADMININFO.ApplNo and I.PRODUCTTYPE=POLICYADMININFO.ProductType
LEFT JOIN jv.dbo.PolicyStatus_new S ON I.PolicyStatus=S.PolicyStatus
WHERE ORDEFFDATE BETWEEN @From AND @TO AND TRANSTYPE = 'NB' 
AND NOT ISNULL(S.EffStatus,'')='CANCELLED' 
GROUP BY  PolicyAdminInfo.AGENTid,ORDEFFDATE
order by agentid
end
set @transvalue ='transval';
while(@From <=@TO )
     Begin
       set @alias=' a'+CONVERT(nvarchar,@From) --as '+@i +' 
--set @tempSelect=@tempSelect + ',' +@alias+'.'+@agentid +','+@alias+'.'+@transvalue ;
set @tempSelect=@tempSelect + ','+@alias+'.'+@transvalue +' ['+replace(convert(nvarchar, jv.dbo.convDatetime(@From),103),'/','-')+']';
--set @tempSelect=@tempSelect + ','+@alias+'.'+@alias 
--set @tempSelect=@tempSelect + ',' +@alias
   set @tempQuery=@tempQuery+' left outer join (select agentid,transval from #aipbusiness where #aipbusiness.ordeffdate='+CONVERT(nvarchar,@From)+')' +  @alias + '  on #AIP.agentcode='
+  @alias +'.agentid'        
set @from =@From +1;
End 
SET @sqlStr  = 'select a_tbl_AIP_LOGIN.Region,a_tbl_AIP_LOGIN.RM_NAME RMName,a_tbl_AIP_LOGIN.SM_NAME SMName,a_tbl_AIP_LOGIN.AIP_NAME AIPName' + @tempSelect +  ' from jv.dbo.a_tbl_AIP_LOGIN' +@tempQuery +' Order by Region,RM_NAME ,SM_NAME
,AIP_NAME '
--select @sqlStr as out
execute sp_Executesql  @sqlStr
--select @tempSelect as out
drop table #aip
drop table #aipbusiness
malik

Hello,
In your dynamic SQL you are trying to access the local temporary table #AIP, which was created in the stored procedure. You run the dynamic SQL with sp_Executesql, which starts as a separate session, where you can't access the local temp table from the other
session; this don't work.
Use a global temp table, which will cause other issues, or run everything as one big dynamic SQL statement.
Olaf Helper
[ Blog] [ Xing] [ MVP]

Similar Messages

  • Error: The multi-part identifier "SourceView.MonitoringClassId" could not be bound

    We have a strange error with multiple views under "Configuration Items". First of all with some users the error happens almost every time and there are a few users where this never happens. If it happens the following errors appear in the SCSM
    console and the server evtentlog after clicking on a view.
    Currently it looks like domain administrators don't face this problem. But SCSM admins and regular SCSM users have the same problem.
    Eventlog:
    Data Access Layer rejected retry on SqlError:
    Request: Composite_Select_Path_00000000-0000-0000-0000-000000000000 -- (ManagedTypeId_SubqueryJoin0_00=880e7a50-afab-74d9-1e74-8a4ca50640b0), (ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B0=47101e64-237f-12c8-e3f5-ec5a665412fb), (CustomerName_97197BF6_C0B3_78BA_4B4A_A34047F47DCA0=%XName+YName%)
    Class: 16
    Number: 4104
    Message: The multi-part identifier "SourceView.MonitoringClassId" could not be bound.
    SCSM Console Error:
    Date: 01.07.2014 14:58:05
    Application: Service Manager Console
    Application Version: 7.5.3079.0
    Severity: Error
    Message: An error occurred while loading the items.
    Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportException: The Full adapter threw an exception. See the FullUpdate property to see the exception.
    at Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportAdapter.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
    at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
    at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
    Is there a way to troubleshoot this or can someone point me in the right direction?
    I read that some of those "Full adapter"-errors should be fixed with SCSM R2 UR2. But it didn't help here.

    Hi,
    Did you create any custom views? what is the common views between the end users facing this problem.
    Regards
    Antoine AL Ibry

  • The multi-part identifier "p.p#" could not be bound.

    Hi,
    When i executed the below query , i have an error :(
    select s# from s where exists (select * from spj where spj.s# = s.s# and spj.p# = p.p#)
    and relation is :
    S(s#,sname,city) s# is primary key
    p(p#,pname,color) p#
    is primary key
    j(j#,jname,city)  j#
    is primary key
    SPJ(S#,p#,j#,qty) s# and p# and j# is foreign key

    I see table "s" and "spj" in your query, but I don't see any table (alias) "p"; where is it?
    Hi,
    I change query with 
    select s# from s
    where exists (select * from p where pname='test' and exists (select * from spj where spj.s#=s.s#
    and spj.p# = p.p#))
    and the problem is solved. But can you explain the query? How it runs?(step by step?) Thank you

  • Multi-part identifier dtss.DocumentID could not be bound

    Below is my query
    Getting error
    The multi-part identifier "dtss.DocumentID" could not be bound.
    SELECT sb.BoxID,sbls.Locationcode,sbl.LocationName,sbls.DateEntered
    From data_document.dbo.StorageBox sb
    inner join data_document.dbo.StorageBoxLocations sbls
    on sb.storageBoxID
    = sbls.storageBoxID
    inner join data_document.dbo.StorageBoxLocation sbl
    ON sbls.LocationCode
    = sbl.LocationCode
    Inner Join CVDocuments cvds
    on dtss.DocumentID
    = cvds.DocumentID
    INNER JOIN CVFact cvf
    ON cvf.CVID
    = cvds.CVID
    INNER JOIN Employee e
    ON e.Employeeid
    = cvf.EmployeeID
    inner join data_document.dbo.DocumentStorageBox dsb
    ON dsb.StorageBoxID
    = sb.StorageBoxID
    Can anybody help me. 
    Mary Sunish

    Where is this dtss object defined -> dtss.DocumentID?
    Can you check the dtss alias which is not defined on of the objects?
    --Prashanth

  • The multi-part identifier could not be bound.

    Hi!
    Somebody can tell me what I'm doing wrong on this code (see below) because I'm getting this message
    (Msg 4104, Level 16, State 1, Line 1. The multi-part identifier "dbo.tdbComments.cmsComments" could not be bound.)
    SELECT [to].odsProduct, tsd.sndInvoice, tsd.sndSerialID, tsd.sndTicketNo, tsd.sndStationID, ps.psName, CONVERT(varchar(8),tsd.sndDate,1) AS [Scanned Date], 
    CONVERT(varchar(8),tsd.sndLaborDay,1) AS [Labor day], tsd.sndEmployeeID, u.EmpName, tc.cmsComments AS [Comentarios]
    FROM dbo.tdbScanDetail tsd
    INNER JOIN dbo.proStation ps ON ps.psID = tsd.sndStationID
    INNER JOIN UserPlenimex.dbo.Users u ON u.EmpID = tsd.sndEmployeeID
    INNER JOIN dbo.tdbOrders [to] ON tsd.sndSerialID = odsSerial
    INNER JOIN dbo.tdbComments tc ON odsInvoice = sndInvoice
    WHERE tsd.sndInvoice = '55370.0870'
    GROUP BY [to].odsProduct, tsd.sndInvoice, tsd.sndTicketNo, tsd.sndSerialID, tsd.sndStationID, ps.psName, tsd.sndDate, tsd.sndLaborDay, tsd.sndEmployeeID, u.EmpName, dbo.tdbComments.cmsComments
    ORDER BY tsd.sndStationID

    try
    SELECT [to].odsProduct
    ,tsd.sndInvoice
    ,tsd.sndSerialID
    ,tsd.sndTicketNo
    ,tsd.sndStationID
    ,ps.psName
    ,CONVERT(VARCHAR(8), tsd.sndDate, 1) AS [Scanned Date]
    ,CONVERT(VARCHAR(8), tsd.sndLaborDay, 1) AS [Labor day]
    ,tsd.sndEmployeeID
    ,u.EmpName
    ,tc.cmsComments AS [Comentarios]
    FROM dbo.tdbScanDetail tsd
    INNER JOIN dbo.proStation ps ON ps.psID = tsd.sndStationID
    INNER JOIN UserPlenimex.dbo.Users u ON u.EmpID = tsd.sndEmployeeID
    INNER JOIN dbo.tdbOrders [to] ON tsd.sndSerialID = odsSerial
    INNER JOIN dbo.tdbComments tc ON odsInvoice = sndInvoice
    WHERE tsd.sndInvoice = '55370.0870'
    GROUP BY [to].odsProduct
    ,tsd.sndInvoice
    ,tsd.sndTicketNo
    ,tsd.sndSerialID
    ,tsd.sndStationID
    ,ps.psName
    ,tsd.sndDate
    ,tsd.sndLaborDay
    ,tsd.sndEmployeeID
    ,u.EmpName
    ,dbo.tdbComments
    ,tc.cmsComments
    ORDER BY tsd.sndStationID
    Thanks
    Manish
    Please click Mark as Answer if my post solved your problem and click
    Vote as Helpful if this post was useful.

  • "Your disk could not be partitioned" "An error occurred while partitioning the disk"

    hello, i am operating on a model a1286 mbp mid 2009 laptop, with 4 gb ram 360 gb hdd,
    snow leapord updated to maverick,
    bootcamped w/ win 7 32-bit
    i tried in mac os x maverick to use bootcamp assistant to partition my bootcamp 180 gb partition to be erased and then to start the install of 64-bit.
    the partitioning was stuck at about 17 percent for an hour, so i quit the bootcamp assistant - ive seen on reddit this was a bad thing to do, but i did it anyway because i saw someone posted about being to reboot and do a hdd repair then reboot and try to partition again
    now when i startup my rEfit program that shows me option of loading mac os x maverick or Bootcamp Legacy Os instead of bootcamp win 7 32-bit
    when i tried partioning again its asking me to free up space for 28 gb in bootcamp assistant , i did that, inserted win 7 64-bit dvd install and hit continue dialogue button in bootcamp assistant
    this is where i see i only have 145 gb used in mac os x with 18 gb free and in the windows side 14 gb
    status partitioning disk,
    but then i get an error message saying the partition failed with errors
    i googled and saw i had togo into single user mode by pressing cmd-s during boot and typing /sbin/fsck -fy
    i got a msg saying this command function is not recognized. - along those lines
    how do i reboot and start a repair of the disk?
    also i did a repair file permisions in disk utility but forgot to put back the power cord, so the battery drained and i assume the repair file permissions didnt finish and the mbp just auto shutdowned
    is there a command i could enter into the EFI shell? or single user mode? to repair the hdd partition in the mac os x maverick and the bootcamp legacy os side since the first time i tried erasing everything on the win 7 32-bit side bootcamp assistant got stuck at 17 percent partitioning then I voluntarily quit the program = now i cant partition bca gives me error of:
    "Your disk could not be partitioned" "An error occurred while partitioning the disk"
    thanks in advance,
    -r

    Is that the complete error message? Are you trying to partition the correct drive? It may be that you do not have enough contiguous free space on the drive for the partition.

  • "A technical error during invocation : Could not invoke service reference" Error message while calling a service from BPM

    Hi Experts,
    We are facing a issue while calling a Automated activity from BPM process, the process gets suspended and the BPM logs says "Process XYZ suspended, A technical error during invocation: Could not invoke service reference name fdhueoegghejietyhsjk6886 Component name ABC " We have already checked the mapped service reference and provider system. Gone through the below link, but no help.
    http://http://wiki.scn.sap.com/wiki/display/TechTSG/Sending+a+message+from+SAP+NetWeaver+BPM+process+to+PI+fails+via+automated+activity?original_fqdn=wiki.sdn.sap.com
    Any pointers or suggestions to fix up this issue will be highly appreciated. Thanks in advance.
    Regards,
    Mohit Jaju

    The details/ID in NWDS Service Reference must exactly match the SOA configuration. Sometimes it's possible you have changed the reference or the group itself and something changed to become mismatched.
    It's possible they don't match - but the SG itself will show green in NWA since the service exists and responds on the target system. Does the ID listed in the error match what is shown in the NWDS project?
    regards, Nick

  • Error coming while executing the query in analyzer

    HI,
    Any body help me in this matter.
    when i execute the qurey in bex its showing error message coming with popup box.
    Error is showing like this.
    "no value found"
    " Exception 1 when calling WB_HTML_HELP_URL_GEToccured"
    but when i click on "OK" button its showing result.can any body tell me why its showing error message like this .
    regards
    mahesh

    Hi ,
          It happens because of the improper connectivity and configuration.In case of Web Reports so many pop ups will appear because of improper config..As long as you are getting the reports its ok,,,Should be taken care of Basis
    Regards
    Siva

  • SQL Server 2005: Multi-part identifier could not be bound

    Hello,
    I use IBM WebSphere Portal and am desperately trying to move data from the default Cloudspace Database to MS SQL Server 2005, of course following the official guidelines.
    What happens is that WebSphere's Configuration Wizard fails because of an error caused by the SQL Script. Trouble is, I can't bring it to work not even in the SQL Server Management Studio.
    What follows is the code generated by the script. The error is caused by the last "check"-constraint (colored in red).
    CREATE TABLE community.APP_DESC (
    OID BINARY(18) NOT NULL,
    TYPE INTEGER NOT NULL,
    APP_NAME NVARCHAR(255) NOT NULL,
    IS_ACTIVE INTEGER NOT NULL,
    JSR_VERSION NVARCHAR(255),
    GUID NVARCHAR(255),
    WEB_MOD_OID BINARY(18),
    WEB_MOD_SL BINARY(18),
    WSRP_PROD_OID BINARY(18),
    WSRP_PROD_SL BINARY(18),
    DEFAULT_LOCALE NVARCHAR(64),
    CREATED BIGINT NOT NULL,
    MODIFIED BIGINT NOT NULL,
    WSC_GROUP_ID NVARCHAR(255),
    CONSTRAINT PK20 PRIMARY KEY NONCLUSTERED (OID),
    CONSTRAINT FK20A FOREIGN KEY (WEB_MOD_OID) REFERENCES community.WEB_MOD (OID) ON DELETE CASCADE,
    constraint FK20B FOREIGN KEY (WSRP_PROD_OID) REFERENCES community.WSRP_PROD (OID) ON DELETE CASCADE,
    CONSTRAINT CC20A CHECK (((community.APP_DESC.WEB_MOD_OID IS NULL) AND (community.APP_DESC.WEB_MOD_SL IS NOT NULL)) OR ((community.APP_DESC.WEB_MOD_OID IS NOT NULL) AND (community.APP_DESC.WEB_MOD_SL IS NULL)))
    And that's what SQL Server 2005 told me:
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_OID" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_SL" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_OID" could not be bound.
    Msg 4104, Level 16, State 1, Line 1
    The multi-part identifier "community.APP_DESC.WEB_MOD_SL" could not be bound.
    BTW, as this is a generated script I do not have the possibility to change it. Because it has been released by IBM I am rather convinced that it is correct - therefore I was wondering whether SQL Server 2005 has a known bug that makes it refuse "check"-constraints.
    Any hint is very appreciated.
    Thanks in advance,
    adapter

    THe problem is that is was probably not made for SQL Server 2005. It should read:
    CONSTRAINT PK20 PRIMARY KEY NONCLUSTERED (OID),
    CONSTRAINT FK20A FOREIGN KEY (WEB_MOD_OID) REFERENCES community.WEB_MOD (OID) ON DELETE CASCADE,
    constraint FK20B FOREIGN KEY (WSRP_PROD_OID) REFERENCES community.WSRP_PROD (OID) ON DELETE CASCADE,
    CONSTRAINT CC20A CHECK (((APP_DESC.WEB_MOD_OID IS NULL) AND (APP_DESC.WEB_MOD_SL IS NOT NULL)) OR ((APP_DESC.WEB_MOD_OID IS NOT NULL) AND (APP_DESC.WEB_MOD_SL IS NULL)))
    The meaning of the first identifier changed in SQL Server 2005, as this is now the Schema and not the owner. DO you have a chance of using a SQL Server 2000 computer ? In terms of licences you will have a downgrade licence for the SQL Server, otherwise you should ping the IBM guys to provide a compatible script.
    HTH, Jens K. Suessmeyer.
    http://www.sqlserver2005.de

  • Claims Based Authentication SPSecurityTokenService.Issue() failed: The security token username and password could not be validated.

    Please excuse the lousy table...Its late :-)
    I have a multi-server SP2010 farm.  Patched up to
    Configuration database version: 14.0.6106.5002
    My goal is to have a claims based web application that authenticated to ADAM for Extranet.  I have configured the servers exactly to MSDN and technet specs (following this spec to the
    letter (
    http://technet.microsoft.com/en-us/library/ee806882.aspx) to allow the forms side of the web app to authenticate to ADAM.
    IT WORKS IN DEV!!! , which is a single server farm.  However, it does not work in production.  I get the following:
    Claims Auth log entries:
    1:06:25 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    f2ut
    Verbose
    Authenticated with login provider. Validating request security token.
    1:06:25 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Verbose
    Using membership provider 'ADAMProvider'.
    1:06:25 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Verbose
    Doing password check on '[email protected]'.
    1:06:46 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Verbose
    Failed password check on '[email protected]'.
    1:06:46 AM
    w3wp.exe (0x0EDC)               
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    0
    Unexpected
    Password check on '[email protected]' generated exception: 'System.ServiceModel.FaultException`1[Microsoft.IdentityModel.Tokens.FailedAuthenticationException]: The security
    token username and password could not be validated. (Fault Detail is equal to Microsoft.IdentityModel.Tokens.FailedAuthenticationException: The security token username and password could not be validated.).'.
    1:06:46 AM
    w3wp.exe (0x0EDC)                      
    0x1790
    SharePoint Foundation        
    Claims Authentication        
    fo1t
    Monitorable
    SPSecurityTokenService.Issue() failed: System.ServiceModel.FaultException`1[Microsoft.IdentityModel.Tokens.FailedAuthenticationException]: The security token username and password
    could not be validated. (Fault Detail is equal to Microsoft.IdentityModel.Tokens.FailedAuthenticationException: The security token username and password could not be validated.).
    1:06:46 AM
    w3wp.exe (0x1B34)                      
    0x08A0
    SharePoint Foundation        
    Claims Authentication        
    fsq7
    High   
    Request for security token failed with exception: System.ServiceModel.FaultException: The security token username and password could not be validated.    
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message response)    
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)  
      at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)    
    at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo)
    1:06:46 AM
    w3wp.exe (0x1B34)                      
    0x08A0
    SharePoint Foundation        
    Claims Authentication        
    8306
    Critical
    An exception occurred when trying to issue security token: The security token username and password could not be validated..
    1:06:46 AM
    w3wp.exe (0x1B34)                      
    0x08A0
    SharePoint Foundation        
    Claims Authentication        
    f2un
    Verbose
    Form authentication failed.
    I have tried EVERYTHING (well, nt everything, I don’t have the fix I suppose). 
     I found plenty out there and nothing directly correlates with this issue. 
    I searched on all parts of the errors I got.
    This contains an interesting blurb about setting up access for the apppool id correctly. 
    That’s not the case for me.  It works in dev and the same id are used there. 
    http://sharepoint-2010-world.blogspot.com/2011/03/adam-forms-based-authentication-in.html
    This was good but it doesn’t give specs on what the environment looks like:
    http://social.msdn.microsoft.com/Forums/en/sharepoint2010general/thread/557143a6-4b36-4939-bb7f-d62a9335fd18
    The was interesting…but I am patched up beyond the June 2011 CU so it’s a moot point:
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/9b8368ef-c5e5-4ead-b348-7b2b5587cfc8
    Any and all help would be greatly appreciated!

    Hi.
    You say its a multiserver farm, do you have more than one web server then?
    If thats the case, have you tried accessing the site on each server directly?
    Found this for you, maybe that can help?
    Troubleshooting Exceptions: System.ServiceModel.FaultException`1
    http://msdn.microsoft.com/en-us/library/bb907220.aspx
    and this:
    SharePoint 2010 Claims Authentication - The security token username and password could not be validated reoccurring every morning
    http://social.technet.microsoft.com/Forums/pl-PL/sharepoint2010setup/thread/383f1f9b-5c4a-4e19-b770-2a54b7ab1ca1
    and
    This seems to be a good guide:
    http://donalconlon.wordpress.com/2010/02/23/configuring-forms-base-authentication-for-sharepoint-2010-using-iis7/
    Good luck
    Thomas Balkeståhl - Technical Specialist - SharePoint - http://blksthl.wordpress.com

  • The Group Policy Client service failed the sign-in The universal unique identifier (UUID) type is not supported

    Hi guys,
    we created a custom WIM Image (Windows 8 Enterprise) with MDT 2012.
    Sysprept the Image, Deployed via SCCM 2012 SP1.
    Computers are Domainjoined. Error with standard Domain User.
    On some computers (not every computer) and not with every user on the first logon following error message arises:
    The Group Policy Client service failed the sign-in The universal unique identifier (UUID) type is not supported
    It works, when you log in a second time but this error isn't very nice. 
    Is there a solution for that?
    Kind Regards
    Martin

    Hi,
    The service is responsible for applying settings configured by administrators for the computer and users through the Group Policy component. This issue can be caused by various reasons based on the computer environment.
    Can you find any information in event log about this issue?
    Here is the related blog in which the steps can solve most of such issues if the issue continuously happen.
    http://blogs.msdn.com/b/moiqubal/archive/2012/03/04/how-to-fix-quot-the-group-policy-client-service-failed-the-logon-access-denied-quot-error.aspx
    Also, you can refer to the similar thread about this issue:
    http://social.technet.microsoft.com/Forums/en-US/4a644219-50ee-494d-b965-e64a8555109e/the-group-policy-client-service-failed-the-signin-the-universal-unique-identifier-uuid-type-is
    Since this issue can be related to SCCM, to better help you, please submit a new thread for further help:
    https://social.technet.microsoft.com/Forums/en-US/home?category=systemcenter2012configurationmanager
    Hope these could be helpful.
    Kate Li
    TechNet Community Support

  • "the activex control for flash player could not be registered" - Solutions Roundup

    I recently ran into this problem on my computer:
    http://at32.s3.amazonaws.com/flash_install_problems2.jpg
    I am a Flash developer (as in I write SWFs, I don't work for Adobe).  and when I updated IE to 10.2, "the activex control for flash player could not be registered".  Since I am a developer, I also have Firefox and Chrome installed, with Flash running without problems.  For a long time now, Internet Explorer has used a different version (ActiveX) to the other browsers, which use plugins.  I am a strong supporter of Flash, it's great to develop with and has a very wide feature set which is growing all the time, unlike fixed technologies/standards.  However, the weakest part is the install process - I don't understand why their is a Download Manager.  Google Chrome does it's best (so far) by managing the install/update process entirely in the background.  Anyway, it was in my best interest to try and get to the bottom of this.
    For the record, on the problem machine I have Windows 7 with IE8, but I have seen almost  identical symptoms with IE9, Windows XP SP3, as well as various  iterations of Flash Player (10.0, 10.1, 10.2 and even some final  editions of version 9).
    First I tried the standard support here:
    http://kb2.adobe.com/cps/191/tn_19166.html
    Basically, doing the manual uninstall and manual install of the latest version (without using the download manager, or have IE open).  This did not work.  I also tried the Microsoft "subinacl" program, together with "reset_fp10.bat".  This didn't work either.  However, you should try all of these things first before progressing further.
    A quick note about people who had tried running the following at a command prompt: "secedit /configure /cfg %windir%\repair\secsetup.inf /db secsetup.sdb /verbose"
    I didn't do this, because on investigating further it didn't seem to work with Windows 7, only Windows XP, Windows 2000 or Windows 2003 - though there was a few threads where this had fixed the problem for some users.
    For my solution, it is recommended you use the manual uninstall / installers, so you should have them downloaded ready to use.
    I then heard about problems with permissions in the registry with the key: HKEY_LOCAL_MACHINE\Software\Classes\shockwaveflash.shockwave
    So I opened regedit.exe (start - run - typed "regedit.exe"), navigated to the key and sure enough, I couldn't open it - permission denied - even though I had an administrator account.  If for some reason, you can access this key (and any subkeys), then it's likely the following fix will not resolve the problem.
    I then done further diagnosis, by using Process Monitor to try and install Flash Player, and I got the following:
    http://at32.s3.amazonaws.com/flash_install_problems.gif
    This shows all the access denied errors the Flash Player install was experiencing when trying to write to the registry key.  This confirmed that this was the problem.  I only stress this because several people said it was unwise to tinker with the registry.  Though this is common advice, this is the only known fix for this precise problem at present, since you need to manually adjust the permissions yourself.  I don't know who is at fault here - Microsoft or Adobe - but let's just get Flash fixed...
    The solution:
    Firstly, you may want to backup your registry, or the exact key.  I didn't do this so I've provided no instructions on how to, but it is recommended for the paranoid.  Also make sure as much software is closed down as possible - browsers, IM software, any junk in your system tray. As way of example, I happened to have "BBC iPlayer" installed and running in the background which uses Adobe AIR and Flash Player, so I exited that too.
    1) Open regedit (start - run - type "regedit.exe").  You may need to right click on it and select "Run As Administrator", but I didn't as my account was already administrator.
    2) Navigate to the key. HKEY_LOCAL_MACHINE\Software\Classes\shockwaveflash.shockwave
    Click on it to confirm that you cannot access it (you will get an error) - if their are no problems - this probably isn't the cause of your issues.
    3) Right click on it and click Permissions, and ignore any message that may pop up.
    4) Under "Group or Usernames" click "Add".  Type your account name name, or "Administrators" in the box, then "Check Names" to format it correctly, then Ok.
    5) Now on the next screen click the checkbox to enable Full Control (this will also automatically enable "Read" permission too).
    6) Click Advanced, then the "Owner" tab at the top.  You will see that their is no "Current Owner".  This is what we will now fix.
    7) Click on your name to change the owner to (I went for Administrators).  Also enable the checkbox entitled "Replace Owner on subcontainers and objects".  Then click Ok.  You will get an error message, which you can try clicking Retry to, but hit Cancel - this is not a problem.
    8) Click Ok a couple of times and this part of your registry is now fixed.
    9) Now it's a simple case of running the manual Flash uninstall program, then finally the manual Flash installer (for Active X - not the Firefox/Chrome plugin versions).  To my surprise, after a couple of days looking into this - I finally had a solution and Flash in IE once more.  If you are using Firefox too you may find Flash is no longer installed their (the uninstaller removed it).  In this case just install via the Adobe site or try to watch a video on You Tube and you will be prompted or linked to the install.
    Hope this provides a good round up of the possible solutions to this problem.  Hopefully Microsoft or Adobe can find out what causes this issue in the first place so we don't have to go down this route for much longer.  Chrome's implementation of Flash shows how effortlessly things can work!

    They will stay on the screen.  However, Process Monitor is only intended for advanced users.  It is recommended that users try to navigate to the troublesome registry key using regedit, and see if they can access it or not without an error.  This is far easier than trying to use Process Monitor, which is very complicated.
    I used Process Monitor to confirm that it was just that key which was causing the problem, and not others.  Process Monitor is not to be confused with the new Resource Monitor which is accessible via Task Manager in Windows 7 (and possibly Vista).  If you must experiment (and Process Monitor is very useful for diagnosing many deep-level problems if you know what you're looking for) Process Monitor can be downloaded from here:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    It replaces the older Sysinternals "FileMon" and "RegMon".  For those interested in the technical side, I had to setup a number of filters to be able to get the results display as in the screenshot.  First of all to just show Registry events.  Then to just show events from the manual Flash activeX installer executable.  The I added a filter to show only non-successfull results.  And finally, for the purposes of the screenshot, added a filter to just show those with "Access Denied", since other non-critical errors are also picked up due to missing keys because installation has not yet been fully completed I guess.   When experimenting, most of these filters were applied using the "is not" boolean logic, which will make sense if you experiment with the program.
    Without adding any filters, it picks up so many events (hundreds per second) that it's otherwise unusable.  e.g. 40,000 events within the first few seconds of opening the program. For this reason, I recommend simply using Regedit to diagnose the problem with the particular Flash registry key.

  • When you try to send or to receive email in Outlook 2010, you may receive one of these error messages: 0x8004010F: Outlook data file cannot be accessed. or 0x8004010F: The operation failed. An object could not be found.

    0x8004010F: The operation failed. An object could not be found.
    1. reviewed Profile instructions
    2. Ran SytTools thinking it would fix the error. NO although I could send received I ended up with a giant pst 
    3. Back to Profile Instructions.
    4. Set up new profile with my email address. email address tested well. Run Outlook. loads as outlook data PST
    and  gmail address PST.  Deleted all the Gmail subscriptions to improve speed. Original error was gone but have two GIGANIC PST FILES.
    5. Set up another new profile with my email address and a named pst.  Run Outlook under that Profile -
    comes up with newly named pst and the gmail addrress pst (although I can't figure out where that pst is located. Will not let me use email address as default Profile.  Tried different approaches and still ended up always with the gmail address pst.  Deleted
    all profiles but email address and comes   up.
    6. Should I just go ahead and use the gmail address pst  I need to import data or download data from gmail
    to get last years correspondence.e
    7. Outlook is my lifeblood, I am in communications and every submitted email gets moved to a file with an update.
    Help?
    8. One option is to merge psts but might make worse mess.
    Thanks.  Beautiful Beach weather here!

    To resolve error 0x8004010F , identify the current location of your default Outlook data file, and then create a new Outlook profile.
    Step 1- Locate the default Outlook data file
    Click Start, and then click Control Panel.
    In Control Panel, click Mail.
    In the Mail Setup - Outlook dialog box, click Show Profiles.
    Select your current Outlook profile, and then click Properties.
    In the Mail Setup - Outlook dialog box, click Data Files.
    Select the Data Files tab in the Account Settings dialog box, and then note the name and location of the default data file for your profile (a check mark will denote the default data file).
    Click Close.
    Step 2 - Create a new Outlook profile
    Step 3 - Configure your new Outlook profile as the default profile
    More detailed steps you can refer to this KB article:
    http://support.microsoft.com/kb/2659085

  • HT1473 iTunes message saying the song names for this cd could not be found online when it's iTunes store, What's up with that?

    I just purchased The Very Best Of Eagles CD, Popped it into my drive so excited to own the copy but when I tired to copy it to my Library I get this message saying the song names for this cd could not be found online when it's in the iTunes store, What's up with that?    Is there any way to get track information and artwork without Having to manually inter all the info?  

    iTunes gets track information from Gracenote's database, so iTunes must be able to reach gracenote.com and the CD must have been entered there by some purchaser already (all CD information in Gracenote is provided by we users). If these are common, commercially-distributed CDs, it may be that there is a firewall or privacy filter blocking access to gracenote.com. If these are unusual, independently-released or rare CDs, they just may not be in Gracenote yet. In the case of a custom CD where it's a compilation, Gracenote probably won't be able to identify them (it goes by complete albums, comparing the number and length of the tracks to try and figure out what album it is).
    Hope this helps.

  • The song names for this CD could not be found online

    I've been trying to copy some of my cds to itunes, but it does not recognize any of the track names. The error message: "The song names for this CD could not be found online. Do you still want to import the songs?"
    I've tried with a dozen CDs and is always the same.

    iTunes gets track information from Gracenote's database, so iTunes must be able to reach gracenote.com and the CD must have been entered there by some purchaser already (all CD information in Gracenote is provided by we users). If these are common, commercially-distributed CDs, it may be that there is a firewall or privacy filter blocking access to gracenote.com. If these are unusual, independently-released or rare CDs, they just may not be in Gracenote yet. In the case of a custom CD where it's a compilation, Gracenote probably won't be able to identify them (it goes by complete albums, comparing the number and length of the tracks to try and figure out what album it is).
    Hope this helps.

Maybe you are looking for

  • How do I avoid error message when saving combined files?

    I combined about 350 .pdf files into a single .pdf file using Acrobat 8 Pro.  Total file size is about 3.5GB.  I can assemble them in a correct order but saving them results in the following error message:  "The document could not be saved.  A file I

  • After the last OSX update, my wifi no longer turns on. How can I fix this?

    I did the update to 10.8.4, and immediately afterwards, I had no WIFI. Under system preferrences, it says that wifi is not turned on. If i attempt to turn it on via the task bar icon, it attempts to load networks, but can't find any. If I go to syste

  • Will you be able to buy unlocked iPhone 5s from retail stores in Canada on the 21st?

    Hi, This might be the wrong section, but it seems to be the closest fit for my question? Anyways, I am planning on buying the iPhone 5 on the 21st in Canada. My plan is to go around 3:30 in the morning(last year I went at 5:30 and was something like

  • Attaching JPEG photos Can Not Be Opened on PC

    Recently, recipients of Emails from me (sent on Mac) who have PC can not open any of the jpeg pictures I attach to the emails. I have set the Mail to make attachments PC friendly, and have also changed the attached pictures to icons. On the PC's, app

  • Can't update Apple TV to 6.0

    I tried to update Applt TV but it says it is up to date with 5.3.  Should I even bother updateing with all these other problems I have been reading about?  Is this an apple software problem or did apple stop the update?