Query connector status

Hi folks,
Can anyone tell me how to query the status of a connector via either Powershell or SDK?
I can find pretty much everything except for:
a)Start time
b)Finish time
c) is running?
Many thanks
Steve

You're looking for a connector's "SyncStatus" object.
SyncStatus objects are related to each connector. They keep track of start/end times and current status.
The class name is "Microsoft.SystemCenter.LinkingFramework.SyncStatus"
The relationship class between the connector object and the sync status object is "Microsoft.SystemCenter.LinkingFramework.DataSourceHostSyncStatus"
Here's a quick line of C# to get the sync status object related to your connector:
//Connect to your management group
EnterpriseManagementGroup emg = new EnterpriseManagementGroup("myGroup");//Get the relationship we'll need
ManagementPackRelationship relDataSourceHostSyncStatus = emg.EntityTypes.GetRelationshipClass(new Guid("1548950D-6CEA-D9C1-11EC-53701FBCBBEC")); //Microsoft.SystemCenter.LinkingFramework.DataSourceHostSyncStatus
//Get your connector from the connector framework. Your Id is a Guid (you may have to look it up in the MT_Connector table in SQL, unless you already know it)
EnterpriseManagementConnector emcMyConnector = emg.ConnectorFramework.GetConnector(new Guid("<my connector's Id>"));
//Get all related sync status objects via the DataSourceHostsSyncStatus relationship
IList<EnterpriseManagementObject> lstSyncStatus = emg.EntityObjects.GetRelatedObjects<EnterpriseManagementObject>(emcMyConnector.ConnectorObject.Id, relDataSourceHostSyncStatus, TraversalDepth.OneLevel, ObjectQueryOptions.Default);
//Get the sync status object from the returned list..there should only be one sync status object per connector.
EnterpriseManagementObject emoSyncStatus = null;
foreach(EnterpriseManagementObject emo in lstSyncStatus)
emoSyncStatus = emo;
After you have your sync status object, you can see the "LastRunStartTime", "LastRunFinishTime", "SyncPercent", and "Status". Status is an enumeration with values like "Running, finishedsuccess, neverrun, unknown,
funishedwitherror, and runningwitherror"
Example:
ManagementPackClass mpcSyncStatus = emg.EntityTypes.GetClass(new Guid("2D4AFD51-D2FF-92C6-266F-2B6060000DAE")); //Microsoft.SystemCenter.LinkingFramework.SyncStatus
Console.Writeline(emoSyncStatus[mpcSyncStatus,"LastRunStartTime"].Value.ToString());
Console.Writeline(emoSyncStatus[mpcSyncStatus,"LastRunFinishTime"].Value.ToString());
Console.Writeline(emoSyncStatus[mpcSyncStatus,"Status"].Value.ToString());
Console.Writeline(emoSyncStatus[mpcSyncStatus,"SyncPercent"].Value.ToString());
Note that the .Value.ToString() calls will fail if Value is null..always check to see if the value has something in it :)

Similar Messages

  • Connector Status not updating

    As a result of a dramatic failure of communication the SCSM workflow AD account was deleted and recreated, after some muching about everything in SCSM is now working normally again except the config manager and AD connectors are not updating their status.
    I initially thought they were not running at all but I have confirmed that they are in fact synchronizing data from their respective sources and its just the display of the status that is not updating.  I tried deleting them and recreating them and
    now they display no status i.e. the start time, finish time, status, and Percentage columns are all blank.
    I have done a bit of research and believe that the problem is that the relationships between the Connectors and their respective SyncStatus objects is missing/broken, and for some reason creating new Connectors either does not establish a corresponding
    SyncStatus object or does but does not relate it to the connector.
    I have a couple of reasons for this hypothesis first is when I run this powershell*:
    $connectorDispName="Your Connector Name Here"
    #Following will return in instance of Microsoft.EnterpriseManagement.ServiceManager.Sdk.Connectors.ADConnector
    $myConnector=Get-SCSMConnector -DisplayName $connectorDispName
    #Get the EMO object for relationship lookup
    $emoConnObj=$myConnector.ConnectorObject
    #Relationship id can be retrieved with following:
    #Get-SCRelationship -Name 'Microsoft.SystemCenter.LinkingFramework.DataSourceHostSyncStatus'|select id
    $relationshipId='1548950d-6cea-d9c1-11ec-53701fbcbbec'
    #Find the matching relationship object (with the above relationshipId)
    $relationshipObject=Get-SCRelationshipInstance -sourceInstance $emoConnObj|?{$_.RelationshipId -eq $relationshipId}
    #$relationshipObject.TargetObject contains an EMO.
    #Grab the id and use Get-SCClassInstance to return a type of Microsoft.SystemCenter.LinkingFramework.SyncStatus
    $syncStatusObj=Get-SCClassInstance -Id $relationshipObject.TargetObject.Id
    The following error is returned:
    Get-SCClassInstance : Cannot validate argument on Parameter 'Id'. The argument is null or empty. Provide an argument that is not null or empty, and then try the command again.
    At D:\tools\scripts\ConnectorSyncStatus.ps1:14 char:40
    + $syncStatusObj=Get-SCClassInstance -Id $relationshipObject.TargetObject.Id
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (:) [Get-SCClassInstance], ParameterBindingValidationException
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.SystemCenter.Core.Commands.GetSCClassInstanceCommand
    Possibly the Powershell is incorrect but this result implies to me that the Get-SCRelationshipInstance call is returning a null value for the syncstatus object which is being fed into the Get-SCClassinstance call.
    My second reason for this hypothesis is the following SQL results:
    select RelationshipTypeId from dbo.RelationshipType
    where dbo.relationshiptype.RelationshipTypeName = 'Microsoft.SystemCenter.LinkingFramework.DataSourceHostSyncStatus';
    1548950D-6CEA-D9C1-11EC-53701FBCBBEC
    select * from dbo.relationship
    where RelationshipTypeId = '1548950D-6CEA-D9C1-11EC-53701FBCBBEC';
    Returns no results.
    This implies to me that there are no instances of the relationship linking a Connector to its corresponding SyncStatus object.
    I am not an SQL or Powershell expert but I know enough to be dangerous, so does my reasoning seem correct? And if so how could I fix this?
    Thanks In advance
    * this Powershell is not of my own devising, I cribbed it from
    Steve IAnson in this question:
    Query Connector Status

    Yes there is every 1 minute there is a squence of entires as follows:
    Source: Lfx Service
    Event: ID 3334
    Data:
    Error setting status for property &. Error:The relationship source specified in the discovery data item is not valid.
    Relationship source ID: ae5465d3-2565-c7d3-0de2-acc994c1e928
    Rule ID: eb496966-4fb7-45bd-bdda-b689af383733
    Instance:
    <?xml version="1.0" encoding="utf-16"?>
    <RelationshipInstance TypeId="{1548950d-6cea-d9c1-11ec-53701fbcbbec}" SourceTypeId="{71f6cfcd-99b3-3a07-471d-bb9c4bf5ba76}" TargetTypeId="{2d4afd51-d2ff-92c6-266f-2b6060000dae}">
    <Settings />
    <SourceRole>
    <Settings>
    <Setting>
    <Name>29906075-e9fc-7bc4-487b-f964f91d6532</Name>
    <Value>1e6592a2-96c3-4b99-a50a-c04ee2a793e6</Value>
    </Setting>
    </Settings>
    </SourceRole>
    <TargetRole>
    <Settings>
    <Setting>
    <Name>29906075-e9fc-7bc4-487b-f964f91d6532</Name>
    <Value>1e6592a2-96c3-4b99-a50a-c04ee2a793e6</Value>
    </Setting>
    </Settings>
    </TargetRole>
    </RelationshipInstance>
    Status data:ConnectorId:ec4a037e-e0f0-47a2-b7e7-7932eba2a0ac;
    BaseManagementEntityId:e22fffb2-9b85-de47-fe3d-875914b21797;
    LastRunStartTime:25/11/2014 2:00:44 AM;
    LastRunFinishTime:25/11/2014 2:02:57 AM;
    NextSyncTime:27/11/2014 2:00:00 AM;
    Status:FinishedSuccess;
    SyncPercent:100;
    MaxValue:100;
    MinValue:0;.
    Source:OpsMgr SDK Service
    Event ID: 26319
    Data:
    An exception was thrown while processing ProcessDiscoveryData for session ID uuid:e47c3453-2524-44af-a9d9-2475e3a204a6;id=3.
    Exception message: The relationship source specified in the discovery data item is not valid.
    Relationship source ID: ae5465d3-2565-c7d3-0de2-acc994c1e928
    Rule ID: eb496966-4fb7-45bd-bdda-b689af383733
    Instance:
    <?xml version="1.0" encoding="utf-16"?>
    <RelationshipInstance TypeId="{1548950d-6cea-d9c1-11ec-53701fbcbbec}" SourceTypeId="{71f6cfcd-99b3-3a07-471d-bb9c4bf5ba76}" TargetTypeId="{2d4afd51-d2ff-92c6-266f-2b6060000dae}">
    <Settings />
    <SourceRole>
    <Settings>
    <Setting>
    <Name>29906075-e9fc-7bc4-487b-f964f91d6532</Name>
    <Value>1e6592a2-96c3-4b99-a50a-c04ee2a793e6</Value>
    </Setting>
    </Settings>
    </SourceRole>
    <TargetRole>
    <Settings>
    <Setting>
    <Name>29906075-e9fc-7bc4-487b-f964f91d6532</Name>
    <Value>1e6592a2-96c3-4b99-a50a-c04ee2a793e6</Value>
    </Setting>
    </Settings>
    </TargetRole>
    </RelationshipInstance>
    Full Exception: Microsoft.EnterpriseManagement.Common.DiscoveryDataInvalidRelationshipSourceException: The relationship source specified in the discovery data item is not valid.
    Relationship source ID: ae5465d3-2565-c7d3-0de2-acc994c1e928
    Rule ID: eb496966-4fb7-45bd-bdda-b689af383733
    Instance:
    <?xml version="1.0" encoding="utf-16"?><RelationshipInstance TypeId="{1548950d-6cea-d9c1-11ec-53701fbcbbec}" SourceTypeId="{71f6cfcd-99b3-3a07-471d-bb9c4bf5ba76}" TargetTypeId="{2d4afd51-d2ff-92c6-266f-2b6060000dae}">
    <Settings />
    <SourceRole>
    <Settings>
    <Setting>
    <Name>29906075-e9fc-7bc4-487b-f964f91d6532</Name>
    <Value>1e6592a2-96c3-4b99-a50a-c04ee2a793e6</Value>
    </Setting>
    </Settings>
    </SourceRole>
    <TargetRole>
    <Settings>
    <Setting>
    <Name>29906075-e9fc-7bc4-487b-f964f91d6532</Name>
    <Value>1e6592a2-96c3-4b99-a50a-c04ee2a793e6</Value>
    </Setting>
    </Settings>
    </TargetRole>
    </RelationshipInstance>
    at Microsoft.EnterpriseManagement.Mom.DiscoveryDatabaseAccess.ManagementStoreWriter.BulkUpsertRelationshipInstances(DiscoveryDatabaseApi dbApi, DiscoveryDataInstance discoveryDataInstance, Boolean isCalledByWorkflow, TypeSpaceData typeSpaceData)
    at Microsoft.EnterpriseManagement.Mom.DiscoveryDatabaseAccess.ManagementStoreWriter.BulkAddUpdate(DiscoveryDataInstance discoveryDataInstance, Boolean isCalledByWorkflow, TypeSpaceData typeSpaceData, DiscoveryDatabaseApi dbApi)
    at Microsoft.EnterpriseManagement.Mom.DiscoveryDatabaseAccess.ManagementStoreWriter.Write(DiscoveryDataInstance discoveryDataInstance, Boolean isCalledByWorkflow, TypeSpaceData typeSpaceData, DiscoveryDatabaseApi dbApi)
    at Microsoft.EnterpriseManagement.Mom.DiscoveryDatabaseAccess.DiscoveryPackageProcessor.ProcessWithNoRetryUnauthorized(DiscoveryDatabaseApi dbApi, Boolean useProcessContext)
    at Microsoft.EnterpriseManagement.ServiceDataLayer.DiscoveryDataManager.DiscoveryPackageIncrementalProcessingHandler.ProcessIncrementalDiscoveryData(DatabaseConnection databaseConnection)
    at Microsoft.EnterpriseManagement.ServiceDataLayer.DiscoveryDataManager.DiscoveryPackageIncrementalProcessingHandler.Process()
    at Microsoft.EnterpriseManagement.Mom.DiscoveryDatabaseAccess.DiscoveryPackageProcessor.ProcessWithRetry(HandleProcessing handleProcessing, RetryPolicy retryPolicy)
    at Microsoft.EnterpriseManagement.ServiceDataLayer.DiscoveryDataManager.ProcessDiscoveryDataWithRetry(DatabaseConnection dbconnection, Guid discoverySourceId, IList`1 sdkEntityInstances, IDictionary`2 streams, IContext context)
    at Microsoft.EnterpriseManagement.ServiceDataLayer.ConnectorFrameworkConfigurationService.ProcessDiscoveryData(Guid discoverySourceId, IList`1 entityInstances, IDictionary`2 streams, ObjectChangelist`1 extensions)
    Source:DataAccessLayer
    Event ID: 33333
    Data:
    Data Access Layer rejected retry on SqlError:
    Request: ProcessRelationshipStagingForUpsert -- (TransactionId=732419), (DiscoverySourceId=eb496966-4fb7-45bd-bdda-b689af383733), (TimeGenerated=26/11/2014 9:31:53 PM), (PerformHealthServiceCheck=False), (HealthServiceId=), (RETURN_VALUE=1)
    Class: 16
    Number: 777980002
    Message: The specified relationship doesn't have a valid source.

  • How to define a BW/BI system in Portal using BI SAP Query Connector.

    Hi,
      How to define a BW/BI system in Portal using BI SAP Query Connector.
    Portal>System Administration>System Configuration-->Portal Content >New System (from PAR)>com.sap.portal.systems.bi-->
    How to retrive the parameters required from a BI 7.0 System.
    Thanks

    Hi,
    You can refer to this link:
    http://help.sap.com/saphelp_nw70/helpdata/EN/c9/b0c8ce704d40fbb18312f8e65b4b0b/content.htm
    Hope it will be helpful.
    Best Regards,
    Assaf Klieger

  • Display Connector:   Status:     No Display Connected

    Display Connector:
      Status:          No Display Connected

    From System Profiler, please post the "Machine Model" information from its Hardware Overview page. There are quite a few MBP variants today and knowing the exact variant helps others help you.
    Example: the Machine Model" info for my Late 2007 MBP 15" is "MacBookPro3,1" and this very accurately identifies the computer for troubleshooting purposes.
    If the machine model reports a number higher than "4,1" you have a newer MBP that's covered in this forum section:
    http://discussions.apple.com/category.jspa?categoryID=251

  • BI SDK - BI SAP Query Connector

    Hi together,
    when I use the BI SAP Query Connector, I have a problem
    in getting any further as establishing the connection.
    When I list all tables (IBIRelational::getTable()) I get some "strange" names. I do not understand where these objects come from, since I cannot find them in the DDIC. I have expected either tables, or SAP Queries in that list.
    Is there an example about the BI SAP Query connector? The examples of the BI SDK only explain MDX/JDBC in detail, these are working fine.
    Maybe somebody has worked with the SAP Query Connector and can help me.
    Thanks a lot
    KB

    Thanks for the hint, though I do not completely get what you mean. I guess I have missed something here, since I do not have an example for this (MDX / JDBC I found with the SDK).
    Below is how I open the connection, which is working (I get the tables). But I have no idea how I can can select something on this (as said, missing an example).
    From what I have read I should be able to invoke a SAP Query and retrieve results. Any hint is appreciated.
    KB
    mcf = (ManagedConnectionFactory) Class.forName(com.sap.ip.bi.sdk.dac.connector.sapq.SapqManagedConnectionFactory.class.getName()).newInstance();
    cf = (IConnectionFactory) mcf.createConnectionFactory();
    cs = Utilities.getConnectionSpec(connProp, cf);
    connection = (IBIConnection) cf.getConnectionEx(cs);
    IBIRelational rel = connection.getRelational();
    List foundTables =
    rel.getObjectFinder().findTable((String) null, (String) null, "%");

  • BI SAP Query Connector Heatmap Error - Empty display in Visual composer

    Hi,
    I am trying to create an Heatmap iview in SAP Visual Composer using BI SAP Query Connector.
    While using the Heatmap template, we are able to see the data but finally when we deploy  and run the iview we see empty screen.
    Any inputs is highly appreciated.
    Regards,
    Sreeram

    Hi,
    thanks for your time and help. Its a relevant blog but unfortunately doesnot solve my problem.
    I am using BI SAP Query Connector system instead of BI JDBC. While creating the Heatmap I am able to select the fields and see the output in table format, but finally the chart is not appearing. its blank.
    IGS is configured correctly, able to reach backend to select tables, select fields. After deployment and when the ivew is run I dont even see any heatmap, but a blank container.
    Please suggest if you have any clues regarding this.
    Regards,
    Sreeram

  • How to query Process Status from database in Project Server 2010

    Hello All,
    I am using Project Server 2010. 
    I need to query Process Status  from SQL. 
    where can I find Process Status in Database. 
    Thanks,
    Rohit

    Hi Rohit,
    you will not be able to find this information in reporting DB - the only database queries are supported.
    If you really want to go for an unsupported solution, you should be able to find related tables and how to join them in stored proc "MSP_WEB_SP_QRY_Statusing_ReadStatus" in published database.
    Regards
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • Integrating BI based on the BI SAP QUERY CONNECTOR

    Hi,
    I'am new to BI,i want to use BI in VC,for this i need to integrate BI based on BI SAP QUERY CONNECTOR.
    Anybody please provide me a clear  documentation on this integration.
    With Regards,
    Praveen

    Hi experts,
    I am trying to change workbook settings to display repeated key values.
    When doing so, I get a SQL Error and the result is 'No applicable data.'
    However, my when my co - worker tries to change the same setting in the same workbook, the setting gets changed.
    I have no clue what's going on.
    Any ideas?
    Points will be assigned.

  • BI SAP Query Connector test fails!

    BI SAP Query Connector test is failing in Portal 7.0 SP6
    Scuccessfully tested BI SAP Query connector using the
    URL : http://<myhost>:51200/TSapq/servlet/TestSapq
    But when i try to test from the portal its failing
    The Connection properties are defined both in Connection Connector in Visual admin as well as Portal as follows and user mapping is done as follows.
    Application Server  myhost.xxx.net
    Client  : 010
    Message Server  : myhost.xxx.net
    Query Area  : x
    System Number : 12
    System Name : BWT_SAPQ
    Master Language : en
    User Management
    Logon Method : SAPLOGONTICKET
    User Mapping : Admin, User
    In User Administration i have maped the BWT_SAPQ system and provided user id and password.
    Below is test result
    Test Connection with Connector
    Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this system object
    Results
    Retrieval of default alias successful
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    Would really appreciated your help on this.
    Thanks,
    Srinivas

    hi Aamod;
    it seems like you already have your BI SAP Query system working properly, if you can use it in the BI Integration Wizard. what's the problem you're seeing in VC?
    systems created with the BI SAP Query Connector are relational systems and therefore expose tables and fields in VC. via the BI Connector, these systems are 'lent' BI functionality and you can use these tables in the BI Integration Wizard, as you've seen. you might therefore call these "relational BI systems" (just like systems created with the BI JDBC Connector are).
    if you have consulted the System Landscape documentation on configuring properties for a BI SAP Query System (<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/4b/9afe3323d14005a283dee9101c66fc/frameset.htm">here</a>) and you're still having problems connecting with the BI SAP Query Connector, i'd suggest you write up a CSS message.
    hope it helps;
    -m

  • QUERY FOR STATUS OF SALES ORDER

    Hi Experts,
    Here my Client required one query for status of the Sales Order line item wise and by when material will be  ready after giving clients PO no. sales order NO. Clients name etc.
    Please give me guide to write this query.
    Regards
    Madhu

    Hi,
    Try this link,
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d2/cb4759455611d189710000e8322d00/frameset.htm
    Cheers,
    Shailabh

  • Message: 'user' missing BI SAP Query Connector Test

    Dear all,
    The BI SAP Connector test to SAP R/3 system D01 results in :
    Portal version is EP7 SP15. Any help will be greatly appreciated.
    Error> occured >Tue Mar 31 13:42:56,777<
    RfcException:
    message: 'user' missing
    Return code: RFC_INVALID_PARAMETER(19)
    error group: 101
    key: RFC_ERROR_PROGRAM
    at com.sap.mw.rfc.api.RfcOptions.checkLogonData
    (RfcOptions.java:201)
    at com.sap.mw.rfc.api.RfcOptions.checkParameters
    (RfcOptions.java:498)
    at com.sap.mw.rfc.api.RfcApi.RfcOpen(RfcApi.java:707)
    at com.sap.mw.jco.MiddlewareJRfc$Client.connect
    (MiddlewareJRfc.java:1018
    at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
    at
    com.sap.ip.bi.sdk.dac.connector.sapq.impl.Connection.connectDB(Connec
    tion.java:333)
    at com.sap.ip.bi.sdk.dac.connector.sapq.impl.Connection.connect
    (Connecti
    on.java:128)
    at
    com.sap.ip.bi.sdk.dac.connector.sapq.SapqManagedConnection.<init>(Sap
    qManagedConnection.java:117)
    at
    com.sap.ip.bi.sdk.dac.connector.sapq.SapqManagedConnectionFactory.cre
    ateManagedConnection(SapqManagedConnectionFactory.java:117)
    Best Regards, Neeta

    hi Aamod;
    it seems like you already have your BI SAP Query system working properly, if you can use it in the BI Integration Wizard. what's the problem you're seeing in VC?
    systems created with the BI SAP Query Connector are relational systems and therefore expose tables and fields in VC. via the BI Connector, these systems are 'lent' BI functionality and you can use these tables in the BI Integration Wizard, as you've seen. you might therefore call these "relational BI systems" (just like systems created with the BI JDBC Connector are).
    if you have consulted the System Landscape documentation on configuring properties for a BI SAP Query System (<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/4b/9afe3323d14005a283dee9101c66fc/frameset.htm">here</a>) and you're still having problems connecting with the BI SAP Query Connector, i'd suggest you write up a CSS message.
    hope it helps;
    -m

  • Help with sql query the status of  A/P Reserve Invoice

    Hi,
    I am trying to write a query which lists all A/P Reserve Invoice info with OPEN status.
    I check the OPCH table and cannot find the rule to tell the status.
    The "DocStatus" field has two values only: 'O' for open and 'C' for closed.
    However, the status of A/P Reserve Invoice are OPEN, CLOSED, DELIVERED, PAID, etc.
    I try to use DocStatus field to filter, but the result does not match what I see in SAP.
    Could you please give me some hints about how to get the data I need? Thank you.
    Best regards,
    Sylvia
    Edited by: csylvia on Jun 23, 2011 5:54 AM

    Hi Darius,
    Thanks for your reply.
    However, I don't know what is the relationship between Purchase order and A/P Reserve Invoice.
    Do you mean using "SELECT T0.DocEntry FROM OPCH T0, OPOR T1 WHERE T0.DocNum = T1.DocNum AND T1.DocStatus = 'O';" to query the A/P Reserve Invoice data with OPEN status?
    But the result is not what I want.
    The result of "*SELECT * FROM OPOR WHERE DocStatus = 'O';*" is also not.
    I'd like to query A/P Reserve Invoice list with OPEN status, and I try the following sql query:
    SELECT DocEntry FROM OPCH WHERE DocStatus = 'O' AND InvntSttus = 'O';
    The result is close to what I need, but it's not exactly correct.
    Moreover, I don't think the sql query conditions is accurate.
    Please give me some advice. Thank you.
    Best regards,
    Sylvia

  • Crystal Report Missing SAP InfoSet, SAP BW Query Connector

    Hi,
    I have installed SAP GUI  for Windows 7.2 (Compilation 2) and Crystal Report 2008 SP2 then following by installed SAP Integration Kits 3.1 SP3 on my workstation. However, when i launch my Crystal Report designer, it do shows SAP toolbar however when i click on one of the icon (eg: Setting) the entire CR will hung and prompt me error and exit automatically.
    Beside that, i could not find any connector for SAP (Eg: SAP InfoSet, SAP BW Query and etc) when i create a new blank report by click on the New Connection.
    Appreciated anyone know this could assist on this.
    Thank You.
    Regards,
    CK

    Hi Ingo,
    Thanks for your prompt reply. I will sort it out and ensure the release version will be the same as Inter Kits.
    By the way, i saw your post regarding the Integration Kits installation and configuration. However, i still need some clarification; appreciated you could assist me on this.
    I have installed SAP BOXI3.1 SP3 on an LINUX machine (Redhat Enterprise 5) and the server was running fine without connecting to BW or SAP eCIBS.
    Now, i have to establish the connectivity to BW (InfoCuve and BW Query) and SAP eCIBS system. As my customer requirement was required to using WEBI, CR and Xcelsius for connecting to BW for getting the data and then using scheduler in BOE for performing report distribution. Some of the report will connecting to SAP eCIBS directly and that will using our Client's machine for creating the report (using CR2008) and then publish to the BOE platform for report scheduling and distribution.
    My question, i wish to install SAP Inter Kits and downloaded Inter. Kits for SAP Solution 3.1 SP3 from service market place. When i refer to the document from help.sap.com; there are couple of section but i wish to know which are the perquisite section that i wish to install and configure?
    Eg: System Requirement which are installing SAP RFC SDK and SAP JCO SDK into my BOE server, then following my create a logon token. How to to that? It also require to install SAP Java Connector and SAP GUI, does these two available for LINUX OS as well?
    The steps in doc was confuse, appreciated your kind help.
    THanks.
    Regards,
    CK.

  • SCCM sql query Client status if active or not in specific Collection

    I would like to create an sql report to show if config manager client is active or not in specific Collection
     ,  im  using  the  query  belong to  "ManoharPusala"
    Thank  you  so  much    which  is  
    SELECT S.Name0 as 'Computer Name', S.User_Name0 as 'User Name',Case when CS.ClientActiveStatus='1' then
    'Active' When CS.ClientActiveStatus='0' then 'Inactive' end as 'Client Active Status' FROM v_R_System S inner Join v_CH_ClientSummary CS on S.ResourceId=CS.ResourceID
    is  working  as  well  but  i  want  to  modify  it  to query  form  a  specific  Collection
     ,  please  help  me  . 
    Thanks  

    Hi,
    Please try to add "Join _RES_COLL_collectionID as coll on s.Name0=coll.name" to the end of the query.
    SELECT S.Name0 as 'Computer Name', S.User_Name0 as 'User Name',Case when CS.ClientActiveStatus='1' then 'Active' When CS.ClientActiveStatus='0' then 'Inactive' end as 'Client Active Status' FROM v_R_System S inner Join v_CH_ClientSummary CS on S.ResourceId=CS.ResourceID join _RES_COLL_PRI0000A as coll on S.Name0=coll.name
    Best Regards,
    Joyce

  • Monthly Sales Order query Doc Status problem

    Hi Experts,
    I am having an problem while making a total monthly sales order query in which I am not getting the document status which are Open - Printed. Also note that these document which are open printed are not having any target document.
    SELECT T0.[DocStatus],T1.[TargetType],T0.[CANCELED],T0.[CardCode], T0.[CardName], T0.[NumAtCard], T5.[SeriesName], T0.[DocNum], T0.[DocDate], T0.[DocDueDate], T0.[DocTotal],T0.[Max1099]'Total Before Discount',T0.[TotalExpns],T4.[descript]'Territory',T2.[SlpName]'Employee Name'
    ,T0.[discsum]  FROM ORDR T0  ,RDR1 T1,OSLP T2,OCRD T3,OTER T4,NNM1 T5  where  T0.DocEntry = T1.DocEntry AND T0.SlpCode = T2.SlpCode AND T0.CardCode = T3.CardCode
    AND T3.Territory = T4.territryID AND T0.Series = T5.Series and T0.[CANCELED]='N' and T1.[TargetType] is not null
    My mission for the above query is to have Total Monthly Sales Orders with value exluding the cancelled and closed sales sales ( close here means - which are manually done by right click on sales order screen and selecting Close )
    Please guied how to solve this issue because in the back end for Sales Order which have turned to deleivery are showing doc status as closed and the sales order which are manually closed are also showing doc status as closed. How to diffrentiate between them.
    Waiting for a positve feedback.
    Regards,
    Rahul

    Try this one:
    SELECT DISTINCT T0.[DocStatus],T0.[CardCode], T0.[CardName], T0.[NumAtCard], T5.[SeriesName],
    T0.[DocNum], T0.[DocDate], T0.[DocDueDate], T0.[DocTotal],T0.[Max1099]'Total Before Discount',
    T0.[TotalExpns],T4.[descript]'Territory',T2.[SlpName]'Employee Name',T0.[discsum]
    FROM DBO.ORDR T0
    INNER JOIN DBO.RDR1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN DBO.OSLP T2 ON T0.SlpCode = T2.SlpCode
    INNER JOIN DBO.OCRD T3 ON T0.CardCode = T3.CardCode
    INNER JOIN DBO.OTER T4 ON T3.Territory = T4.territryID
    INNER JOIN DBO.NNM1 T5 ON T0.Series = T5.Series
    where  T0.[CANCELED]='N' and T1.[TargetType] != -1
    Thanks,
    Gordon

Maybe you are looking for

  • Session Time Out Message on Portal

    Hi Guys, We do have an application with out logging in, user can come to our application. The session time out will be 10 min. I am configuring the session time in web.xml But when session timed out i need to forward to a session timeout jsp, when th

  • Can't preview jpg in Camera RAW filter after Photoshop update

    I just updated my Photoshop cc and now when I open jpg in the Camera RAW filter. I get a blue box with big X.

  • Links in email not opening in Firefox, only reach homepage.

    When I click on a link in my mail program (Apple mail 4.3), I used to open Firefox on my homepage and also open a tab with the link. Since the 3.6.10 upgrade, Firefox only opens on my homepage. I have to then go back to the mail program and re-click

  • Double-click won't open photo in new window

    so double clicking a photo in my library used to open it in a separate window where i could have a closer look or edit the photo, only, now, when i double-click a photo, the separate window opens, flashes the photo for a millisecond and then appears

  • ACR-PS-?-I'm new

    Been recovering from back surgery so I now have all the time to-Switch to Adobe. And learn it's apps. Advanced photographer. I've been using Apple Aperture since it came out but I just can't take the slowness of this application. Amazing. So I moved