SCCM collection by IE version

Could SCCM create collections by IE vesion? (ex:  one collection for clients with IE8 and another collection for clients without IE8 )
Thanks!

try this for computers whcih doesnt have IE8:
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,
SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ResourceId
not in (select SMS_R_System.ResourceId from  SMS_R_System inner join
SMS_G_System_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID = SMS_R_System.ResourceId
where SMS_G_System_SoftwareFile.FileName = “iexplore.exe” and SMS_G_System_SoftwareFile.FileVersion like “8.%”)
more Via
http://eskonr.com/2010/04/sccm-reportcollection-for-computers-with-internet-explorer-with-different-versions/
//Eswar Koneti @ www.eskonr.com

Similar Messages

  • SCCM 2012 R2 client version 1101 and 1104 queries

    There are several samples of collection query code for SCCM 2012 R2 client version 5.00.7958.1000, which is the base R2 client version. Patches can change this to 5.00.7958.1101 and 5.00.7958.1104. But there is a problem. These two patches
    display as 1101 and 1104 when you go to Control Panel\Configuration Manager\General tab but when you go to Programs and Features and look in there the DisplayVersion is 5.00.7958.1000--so all query code samples are unable to different between the base versions
    and version 1101 and 1004. I have been unable to find out how to write a query that finds version s 1101 and 1104. Does anyone know how to do this? Thanks.

    Use ClientVersion from SMS_R_System within a console query or ClientVersion0 from V_R_system in a SQL query.
    Even this can be deceptive though because the agent only reflects the highest version number of one of its subcomponets. This post, specific to 2007, describes the complexity: http://blog.configmgrftw.com/configmgr-client-hotfix-versioning/.
    Specific to your question though, why do you care if either of these hotfixes are distributed to your clients? 2905002 is only necessary during WinPE (and if you are actually not using download on demand content during OSD) and 2910552 is only applicable
    if you are rolling out Win 8.1 using a single TS to your XP systems using a refresh methodology.
    Jason | http://blog.configmgrftw.com

  • How to create a group in SCOM 2012 R2 based on SCCM Collection?

    Is there a way to create a group in SCOM 2012 R2 based on sccm collection? I am planning to use that group for maintenance mode.
    Thanks, Samer

    Hi,
    I think you could query all the collectin members from SCCM database then use powershell to add them to a specific OU.
    How to Create Groups in Operations Manager
    http://technet.microsoft.com/en-us/library/hh298605.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SCCM collection Query - Wrong output

    Hi 
    We are working on Creating Dynamic SCCM collection which get populated based on following two condition
    1) Belongs to a Test OU in AD
    2) Doesn't have scom agent installed
    We have been trying to work out why following query doesn't populate collection with correct object instead populate by every object that exist in this OU. Seems like condition after AND is totally ignored. is there anything I am doing wrong here
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceID =
    SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "AD.local/Servers/DEV/Test" and SMS_G_System_SERVICE.DisplayName != "Microsoft Monitoring Agent"
    Where as below query is working and condition after AND is calculated and collection get populated with right objects.
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceID =
    SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "AD.MONASH.EDU/Managed/Servers/DEV/OCIO/SplunkTest" and SMS_G_System_SERVICE.DisplayName = "Microsoft Monitoring Agent"
    We tried with different combination such as "not like", "is null" etc etc. seems to us that as soon as we try have negative criteria after AND that criteria has been ignored.
    To my little knowledge of SQL query, condition after AND is not optional and has to meet, if it doesn't query should return no value.
    is this same with SCCM collection query? will appreciate if some one can shade some light here.
    Thank you in advance. 

    Thank you All for the reply
    Our End Goal is to be able to automate software/configuration deployment based on criteria we set. SCOM is first of the rank if you like and we want this to be hands off approach so when a server move into certain OU based on criteria server get populated
    into SCCM collection and SCCM pushes out software/configuration packages out to the server.
    but having said that if we have to create two collection to satisfy our two criteria than most likely we will need number of collections depending on numbers and types of criteria. This will make managing collection and their relationship more challenging
    and not sure if that is the path we want to take. This will need to be discussed through unless we find better solution.
    Thank you again

  • Script to Multiple computer accounts to existing SCCM collection

    Hi,
    I am looking for a script to add multiple computers to a existing SCCM collection. But unable to find a proper one. Below link is talking about the same, but unable to find the script.
    http://social.technet.microsoft.com/wiki/contents/articles/20254.vbscript-to-add-multiple-systems-into-a-collection-sccm.aspx?wa=wsignin1.0
    Please suggest,
    Thanks,
    DSB
    Shabi Basha D

    Yes, I know this is an old post, but I’m trying to clean them up.
    Take a look at the CM07 SDK for this type of thing.
    http://msdn.microsoft.com/en-ca/library/cc145334.aspx
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM collection query to create ESX host machines

    Hello Everyone
    I am looking SCCM collection query to create  ESX host collection. Any one can share the query to create EST host machines collection please

    For the actual ESXi hosts you can't.
    For host machines, that would be a query for all virtual servers, like this one:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.IsVirtualMachine = "True"
    Make sure you limit the above query to servers collection or you can expand it to include servers, like this:
    select SMS_R_System.ResourceId, SMS_R_System.ResourceType, SMS_R_System.Name, SMS_R_System.SMSUniqueIdentifier, SMS_R_System.ResourceDomainORWorkgroup, SMS_R_System.Client from  SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceId
    = SMS_R_System.ResourceId where SMS_R_System.IsVirtualMachine = "True" and SMS_G_System_OPERATING_SYSTEM.Caption like "%server%"

  • Installation of Master Collection CS3 (disc version for Windows)  on a laptop without optical drive

    Installation of Master Collection CS3 (disc version for Windows) -  is there any possibility of installing my legitimately purchased MC-CS3 on a new laptop without optical drive? Perhaps through a download link or will tranfering all Adobe files from my old to my new computer do the trick as well? Or do I necessarily have to buy an external optical drive? Thank you for answering.

    No need to buy an optical drive and don't try transferring, it rarely works.
    Download the installer from Download CS3 products
    Install then enter your serial number to license it.

  • SCCM Collection query to get the Linux machines details

    Hi,
    Can I get the SCCM collection query to create list of Linux  machines . Please help me to get 

    Hi,
    Yes, you can.
    You use collections to manage groups of Linux and UNIX servers in the same way you use collections to manage other client types. Collections can be direct membership collections or query based collections that identify client operating systems, hardware
    configurations, or other details about the client that are stored in the site database. 
    For more information, please review the link below:
    How to Manage Linux and UNIX Clients in Configuration Manager
    http://technet.microsoft.com/en-us/library/jj573941.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SCCM 2012 - Trying Evaluation version

    Hello all,
    I'm trying out the 180 day evaluation version of SCCM 2012 R2 downloaded from Microsoft as part of a small POC, (VHD format) which is pre-configured and installed with all the pre-requisites.
    As part of this exercise, I wanted to perform a simple discovery of devices in SCCM 2012 but after enabling all the "discovery methods" I do not see any devices in the collection after running the discovery. The VHD format is configured with a
    'contoso' domain and this feature is 'locked' as a result I'm not able to configure this 'vhd' format to our internal domain to help discovery. 
    My question: is there a way to by-pass this domain and perform discovery or is this a limitation in the evaluation version of SCCM? or am I missing something?
    Any help on this is appreciated.
    thanks

    I don't believe so.  You should just download the bits from the VLC and install it for yourself.  You could have a small test environment in no time at all.  Collocate your PS and SQL server, add a DP, and you should be close to lab testing. 
    Make sure you are not running discovery across your whole environment if this is just a lab. 
    Best, Jacob I'm a PC.

  • SCCM Collection with IE9 Installed Clients

    Hello ,
    I would like to create a Collection on SCCM with all IE9 Clients . Because some clients downloaded and install the stand alone version of IE9 and others get the IE9 from our WSUS ,
    i cant count the exact number of IE9 installed clients . i have tried a lot of queries but i didnt get the right results except from the computers which installed and registered the IE9 on Add/Remove Programs .
    The query for the collection is :
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID
    = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.Publisher = "Microsoft Corporation" and SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName = "Internet Explorer" and SMS_G_System_ADD_REMOVE_PROGRAMS.Version like "9"
    That query doesnt return all the computers with the Intenet Explorer 9 installed , just only the computers with stand alone installation .
    Any ideas ?
    Thanks a lot
    D.S.

    Yes, i do
    Are you able to see any details of installed softwares and add remove program details in Resource explorer in SCCM console?
    Anoop C Nair - This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not
    actually answer your question. This can be beneficial to other community members reading the thread.
    Sure ,  I can .
    Have you seen the note provided in the above post?
    Notes: To find the clients that have not yet installed IE 9, simply change "like" to "not like" when checking the file verison number. Also, if you see oddities in the memberships, keep in mind that this is based off of the .EXEs
    polled and listed in the SCCM database, so when in doubt, use Resource Explorer within the ConfigMgr console to see if the "iexplore.exe" file has been inventoried.
    Anoop C Nair - This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not
    actually answer your question. This can be beneficial to other community members reading the thread.
    Have you checked the below point ? If yes can you please share the screen shot ?
    use Resource Explorer within the ConfigMgr console to see if the "iexplore.exe" file has been inventoried.
    Anoop C Nair - This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. |Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not
    actually answer your question. This can be beneficial to other community members reading the thread.
    You mean the Resource Explorer from a client ? RightClick on Client ->Start->Resource Explorer ?
    I have enable the Software Inventory Client Agent on Clients from central site properties .

  • Why is member count 100 for all users sccm collection

    hello,
    I have SCCM 2012 SP1 -4, and have enabled user discovery but "all users" collection does not goes above 100 member count.
    I do have more 1500 users in AD, all related setting are at default.
    Disable \enabling was no help, 
    no component shows warning or error.
    Thanks

    Hi. what about adusrdis.log? and are you correctly configuring AD user discovery? see this for example
    http://www.windows-noob.com/forums/index.php?/topic/4428-using-sccm-2012-rc-in-a-lab-part-3-configuring-discovery-and-boundaries/

  • SCCM collection report for software NOT on a workstation

    One of the default reports in SCCM generates a report on the number of software titles in a collection using 2 prompts(Collections, Software Title)
    SELECT DisplayName0, Count(ProdID0) AS 'Green', Publisher0, Version0, @CollID as CollectionID
    FROM v_Add_Remove_Programs arp
    JOIN v_FullCollectionMembership fcm on arp.ResourceID=fcm.ResourceID
    WHERE ((Publisher0 = @softwarename) OR (DisplayName0 = @softwarename) )
    and fcm.CollectionID=@CollID
    GROUP BY DisplayName0, Publisher0, Version0 
    ORDER BY Publisher0, Version0
    The following lists all collections with the total membership.
    SELECT @CollID.Name, v_Collection.Comment,v_Collection.CollectionID, COUNT(*) as [Members] FROM v_Collection,v_FullCollectionMembership
    where v_Collection.CollectionID=v_FullCollectionMembership.CollectionID 
    group by v_Collection.Name ,v_Collection.Comment,v_Collection.CollectionID 
    order by v_Collection.Name
    How can we get the total membership from the collection prompt in the top statemenent and subtract the "Count(ProdID0)" to get the number of computers without the software title?

    i dont understand your question completely.why do you want to subtract the count(prodID) from total membership of collection ? you know that ,count(prodID) and count membership(collection) are two complete different things and they are not related at all.
    can you please be more specific ,what you are trying to achieve ? 
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • SCCM Collection query

    Dear,
    I have created collection name it (No iTunes) and add below query to find computer does not have iTunes and in collection Limiting option selected other collection where all computer account stored but this does not apply as need.
    would you please assist.
    Select * from SMS_R_System inner join
    SMS_G_System_Add_REMOVE_PROGRAM on
    SMS_G_System_Add_REMOVE_PROGRAM.ResourceID =
    SMS_R_System.ResourceID where
    SMS_G_System_ADD_Remove_PROGRAM.DIsplayName != “iTunes”
    [email protected]

    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,
    SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,
    SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client
    from SMS_R_System where SMS_R_System.ResourceId
    not in (SELECT SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID
    FROM SMS_G_System_ADD_REMOVE_PROGRAMS
    WHERE SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "itunes%" )
    Keep in mind that this will only find x86 versions of iTunes.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • How do I import collections from PE version 5 to PE version 10

    Have changed my computer and installed the latest version of PE. I have saved the collection structure in PE v.5 as an XML file and imported this into V10 but this only imports the collection headings and NOT the photos associated with the collections.
    Can somebody please advise me how I can transfer my photo collections from v.5 to v.10?

    Hi Steve,
    This is how it's supposed to work. Exporting albums into an XML only keep record of albums, cetagories and proper heirarchy we want to move between the catalogs/computers.
    If you want to move all the photographs with albums from one machine to other, I would recommend to look at following articles before you decide to do anything -
    http://bit.ly/nzcmK7
    And
    http://bit.ly/nTqkFc

  • Error in Sync user from SCCM collection to Intune CLOUDUSERSYNC:LOG

    Hello I'm trying to setup SCCM SP1 with Intune, al seems to work fine until I add or remove users to the Collection to permit device enrollment.
    The errors are:
    Starting user delta sync, raise failure status messages = True
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:39
    5184 (0x1440)
    Total received users from SCCM to be removed from cloud = 1
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:39
    5184 (0x1440)
    ERROR: RemoveLicensedUsers exception System.ServiceModel.FaultException: Fault occurred~~~~Server stack trace: ~~   at System.ServiceModel.Security.IssuanceTokenProviderBase`1.DoNegotiation(TimeSpan timeout)~~   at System.ServiceModel.Security.IssuanceTokenProviderBase`1.GetTokenCore(TimeSpan
    timeout)~~   at System.IdentityModel.Selectors.SecurityTokenProvider.GetToken(TimeSpan timeout)~~   at System.IdentityModel.Selectors.SecurityTokenProvider.GetToken(TimeSpan timeout)~~   at System.ServiceModel.Security.SecurityProtocol.TryGetSupportingTokens(SecurityProtocolFactory
    factory, EndpointAddress target, Uri via, Message message, TimeSpan timeout, Boolean isBlockingCall, IList`1& supportingTokens)~~   at System.ServiceModel.Security.TransportSecurityProtocol.SecureOutgoingMessageAtInitiator(Message& message, String
    actor, TimeSpan timeout)~~   at System.ServiceModel.Security.TransportSecurityProtocol.SecureOutgoingMessage(Message& message, TimeSpan timeout)~~   at System.ServiceModel.Security.SecurityProtocol.SecureOutgoingMessage(Message& message,
    TimeSpan timeout, SecurityProtocolCorrelationState correlationState)~~   at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)~~   at System.ServiceModel.Channels.ServiceChannel.Call(String
    action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)~~   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)~~   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage
    message)~~~~Exception rethrown at [0]: ~~   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)~~   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)~~
      at Microsoft.WindowsIntune.SccmIdsUserSync.Proxy.ISyncIdsUser.RemoveLicensedUsers(Guid[] userIds)~~   at Microsoft.ConfigurationManager.DmpConnector.UserSync.UserSyncServiceClient.RemoveLicensedUsers(Guid[] userIds)
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:41
    5184 (0x1440)
    STATMSG: ID=10001 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_CLOUD_USERSYNC" SYS=systemcenter.domain.inet SITE=GFE PID=2540 TID=5184 GMTDATE=jue ene 30 17:11:41.103 2014 ISTR0="RemoveLicensedUsers" ISTR1="Fault occurred"
    ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:41
    5184 (0x1440)
    ERROR: User delta sync failed with exception: System.ServiceModel.FaultException: Fault occurred~~~~Server stack trace: ~~   at System.ServiceModel.Security.IssuanceTokenProviderBase`1.DoNegotiation(TimeSpan timeout)~~   at System.ServiceModel.Security.IssuanceTokenProviderBase`1.GetTokenCore(TimeSpan
    timeout)~~   at System.IdentityModel.Selectors.SecurityTokenProvider.GetToken(TimeSpan timeout)~~   at System.IdentityModel.Selectors.SecurityTokenProvider.GetToken(TimeSpan timeout)~~   at System.ServiceModel.Security.SecurityProtocol.TryGetSupportingTokens(SecurityProtocolFactory
    factory, EndpointAddress target, Uri via, Message message, TimeSpan timeout, Boolean isBlockingCall, IList`1& supportingTokens)~~   at System.ServiceModel.Security.TransportSecurityProtocol.SecureOutgoingMessageAtInitiator(Message& message, String
    actor, TimeSpan timeout)~~   at System.ServiceModel.Security.TransportSecurityProtocol.SecureOutgoingMessage(Message& message, TimeSpan timeout)~~   at System.ServiceModel.Security.SecurityProtocol.SecureOutgoingMessage(Message& message,
    TimeSpan timeout, SecurityProtocolCorrelationState correlationState)~~   at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)~~   at System.ServiceModel.Channels.ServiceChannel.Call(String
    action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)~~   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)~~   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage
    message)~~~~Exception rethrown at [0]: ~~   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)~~   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)~~
      at Microsoft.WindowsIntune.SccmIdsUserSync.Proxy.ISyncIdsUser.RemoveLicensedUsers(Guid[] userIds)~~   at Microsoft.ConfigurationManager.DmpConnector.UserSync.UserSyncServiceClient.RemoveLicensedUsers(Guid[] userIds)~~   at Microsoft.ConfigurationManager.DmpConnector.UserSync.CloudUserUpload.RemoveLicensedUsers(List`1
    userIds, List`1 userNames)~~   at Microsoft.ConfigurationManager.DmpConnector.UserSync.ConnectorUserSync.NotifyAccountRemoval(DatabaseOperation dbOperations, Dictionary`2 receivedUsers, Boolean sendStatusMessages, Boolean& statusMessagesSent)~~  
    at Microsoft.ConfigurationManager.DmpConnector.UserSync.ConnectorUserSync.PerformDeltaSync(Boolean sendStatusMessages)
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:41
    5184 (0x1440)
    STATMSG: ID=10002 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_CLOUD_USERSYNC" SYS=systemcenter.domain.inet SITE=GFE PID=2540 TID=5184 GMTDATE=jue ene 30 17:11:41.108 2014 ISTR0="" ISTR1="" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:41
    5184 (0x1440)
    UserSync: Failed to perform delta sync. error = Unknown error 0x80131501, 0x80131501
    SMS_CLOUD_USERSYNC 30/01/2014 18:11:41
    5184 (0x1440)
    The connector and the Site System Role seems to be fine.

    After install CU3 for SCCM SP1 the issue is solved.

Maybe you are looking for

  • Free item gets confirmed before main item if credit limit is exceeded

    Hi, I am facing an issue,My stock balance is 10000,in sales order ordered main item is 11000 and free items is 1100.IF the credit limit is not activated for the customer means,Scheduled quantities is coming perfect. Now,The customer's credit limit go

  • Org unit relation ship periods

    Dear All, Scenario:- I have created a root or unit,under this root org unit i have created additional org units but the validity period box contains to validity periods are there. organisational unit  : Link text string : The above two will be displa

  • Function module needed

    is there a finction module which converts the format of the amount from __,__,__,__.__ to __.__.__.__,__ ? Please help. i need the solution immediately. Thanx in advance.

  • ESS SCs customisation best practice?

    Hi, I'm customising ESS screens.  I want to know what is the standard and best practice to customise ESS components.  Lets say after I import in NWDI and start making changes in NWDS, then checkin, then build and test it successfully, this approach i

  • Exit Code: 34 , erreur 34 quand je veux installer illustrator et photoshop

    aider moi !?