Service Solution

Hi All,
I want to frame a query which will give me call wise solutions entered in the service -> Service Call -> Solutions.
I am unable to find a link between OSCL i.e. SERVICE CALL MASTER & OSLT i.e. SOLUTIONS MASTER tables.
Apart from item code i did not found any link column.
If i use that then the solutions are not getting listed call wise.
Pls. help.
Thanks
Malhaar

Hi Malhar
Try This
SELECT     T0.[callID],T0.customer, T0.custmrName, T1.ItemCode, T2.ItemName, T1.SltCode, T1.Subject, T1.Cause, T1.Descriptio,  T3.srcPath, T3.trgtPath,
                      T3.FileName, T3.FileExt, T3.Date, T0.userSign
FROM         OSCL AS T0 Left outer join
                      ATC1 AS T3 ON T0.userSign = T3.UsrID CROSS JOIN
                      OSLT AS T1 left outer join
                      OITM AS T2 ON T1.itemCode = T2.ItemCode
Thanks,
Srujal Patel

Similar Messages

  • Service Solution Component for Adapter Service

    For Transport adapter Service do we have to provide any service solution component in the project lifecycle workbench?

    Yes, You have to define Adapter Services in Project Life Cycle Workbench

  • ITunes was unable to load dataclass information from Sync Services-Solution

    Hello all. I recently upgraded to iTunes 9.1.1.12 on a laptop with Windows XP Pro and the latest iPhone OS (as of May 16,2010). Right after that, I started getting the "iTunes was unable to load dataclass information from Sync Services" error message. After I dismissed that window, it would go ahead and indicate that it was synching for a minute or two, and then indicate (in iTunes) that it was backing up the iPhone. This will run forever unless cancelled and the phone would not synch.
    After reading various solutions that worked for others (install Mobile Me, reinstall itunes, run diagnostics, all with numerous reboots in between), this is what worked for me:
    1) Open up Windows Services, and stop the Apple Mobile Device and iPod Service, and mark them as manual (as opposed to Automatic).
    2) Deinstall iTunes
    3) Delete the c:\program files\common files\apple folder (and all sub folders within). This is where the services are stored, and when I did all of these steps without doing this step, it didn't fix my problem. By deleting this folder, you insure that the iTunes install reinstalls these. You should see the services that were stopped in step 1, running again after the install is done. Note: I don't use Safari or QuickTime on my laptop, so I can't say whether or not this step would have any impact on those apps.
    4) Reinstall iTunes.
    5) Connect the iphone to your computer.
    6) At this point, I still got the dataclass error, so I immediately cancelled the synch.
    7) Run the diagnostics for the iphone (connectivity and synch).
    8) At this point, two DOS windows launched, and I did get another error about being able connect to the synch server.
    9) Closed the error message and disconnected the iphone (the phone at this point did not indicate that a synch was occurring).
    10) Reconnected the iphone and, voila, it's been working fine ever since.
    Hope this helps someone else out until Apple deals with the 9.1.1.12 (and .11) issues with synching.

    Either do Windows Control Panel → Administrative Tools and then picking "Services" or typing "Services.msc" in the Run command on Start menu.

  • Knowledge Management/Document Servicing Solution

    Hi Team,
    One of our existing BI portal application is undergoing a heavy KM transformation. There are estimated 300 GB of document utilization.What SAP POrtal solution should be ideally used here. We are on SAP BI Java 7.4
    We are moving towards wit FSDB or just FS and fine tuning caches and indexes.
    We might implement TREX as well.
    WEBDAV is also another solution
    Regards,
    Varun Biswas

    Anyone? Which would have a better performance, FSDB. WEBDAV or File System repository?
    Regards,
    VB

  • Mobile Field Service Solution

    Mobile Field force automation is important for modern service and maintenance companies. Field service activities bring about a lot of daily administration based on their mobile business process. Filling in, correcting, checking and transferring of [_work orders_|http://www.odysseemobile.com/en/Field_Service/Service_work_order.aspx] or e-mail into the ERP system is a time-consuming process for employees doing field work or working at the office. With Odyssee Mobile Field Force you know exactly where your employees are and which parts of the job they have already finished. This increases the availability of your personnel and the productivity of your Field Service Team.
    [_Mobile Field Service Solutions_|http://www.odysseemobile.com/en/Field_Service/Mobile_field_force_automation.aspx]
    [_Mobile ERP Interface to SAP_|http://www.odysseemobile.com/en/Industries/Mobile_ERP.aspx]

    Hi,
    This metalink note should help you :
    How to Automatically Download New Customized Files for MFS Laptop? [ID 738456.1]
    Regards,
    Mohammed

  • Managed Services/Solution

    Hey everyone,
    I'm an Apple IT solutions provider and have see a ton of PC managed solutions, that provide 24/7/365 monitoring to let you know the slightest thing that may go wrong with a server and or a network. I was wondering if there are any such solutions for a mac environment. Either one that I can provide by use of software or one that I might be able to partner up with. I've looked around but haven't found any yet. Thanks for the help
    -Mike
    12" Powerbook G4 1.33   Mac OS X (10.4.7)  

    Hey everyone,
    I'm an Apple IT solutions provider and have see a ton of PC managed solutions, that provide 24/7/365 monitoring to let you know the slightest thing that may go wrong with a server and or a network. I was wondering if there are any such solutions for a mac environment. Either one that I can provide by use of software or one that I might be able to partner up with. I've looked around but haven't found any yet. Thanks for the help
    -Mike
    12" Powerbook G4 1.33   Mac OS X (10.4.7)  

  • Di Event Service - Solution...

    Hi
    If you encountered a situation in which the queue is created - all the logs look OK but you're still not getting it ... 
    The problem is in SQL configuration: your <b>'Ole Automation' </b> is disabled so the sp_OACreate cannot be called.
    <a href="http://technet.microsoft.com/en-us/library/ms191188.aspx">technet.microsoft.com</a>
    <u>To view status:</u>
    EXEC sp_configure 'Ole Automation Procedures';
    GO
    <u>To enable:</u>
    sp_configure 'show advanced options', 1;
    GO
    RECONFIGURE;
    GO
    sp_configure 'Ole Automation Procedures', 1;
    GO
    RECONFIGURE;
    GO
    Regarding Not Finding the Host:
    The DIListener assumes that the SQL Server and the Machine name are the same. When you send a company to
    eService = new B1DIEventsService(oCompany);
    The D.L. tries to connect to a machine named as the server (in case you have named them Machine\SQL2005 and Machine\SQL200) it will not work
    I just got my machine name from the registry and:
    #string sServer = oCompany.Server;
    #oCompany.Server = m_ServerName;
    #eService = new B1DIEventsService(oCompany);
    #// Connect to the B1DIEventServer
    #eService.Connect(new B1DIEventsConnectionLostDelegate(OnConnectionLostListener));
    #oCompany.Server = sServer;
    works for me...
    Trinidad: can you please add this to your Installation Doc? 10X. 
    HTH..
    J.

    Thanks a lot for sharing your findings ;o)
    I have added a section called SDK Tools -> DIEventService in the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/wiki?path=/display//b1/faq">b1 wiki</a> page pointing to your thread.
    I'll make the DIEventService documentation point to this page asap.
    Best Regards
    Trinidad.

  • Microsoft Office can't find your license for this application - multiple copies of Office 2013 x32 failing to start, Software Protection Service timing out

    We're experiencing a growing problem with our users in several different domains running in to Microsoft Office 2013 x32 'activation' issues.  We use KMS for licensing, which works properly, but some of the machines (~20-30 out of 1000+) sporadically
    throw the following error:
    'Microsoft Office can't find your license for this application.  Microsoft Office will now exit.'
    We know it's not an issue with the licenses per se, since they work on and off and we can force KMS activation correctly / talk to the KMS servers.
    It appears to be an issue with the Software Protection service not starting properly.  In Event Viewer, we see the following:
    'Software protection service failed to start due to the following error- the service did not respond in a timely fashion.
    Event 7000'
    This is occurring on a variety of machines in a variety of environments, all fully patched with the latest Office updates.  It's inconsistent, and the 'manually restart the Software Protection Service' solution is not viable as it's occurring on many
    different workstations.  Office repairs have also been unsuccessful.  
    Has anyone else come across this? Or have any idea why the Software Protection Service might be sporadically failing?  Maybe an Office update in the last 2-3 months?
    Thanks for any info.

    We're experiencing a growing problem with our users in several different domains running in to Microsoft Office 2013 x32 'activation' issues.  We use KMS for licensing, which works properly, but some of the machines (~20-30 out of 1000+) sporadically
    throw the following error:
    'Microsoft Office can't find your license for this application.  Microsoft Office will now exit.'
    We know it's not an issue with the licenses per se, since they work on and off and we can force KMS activation correctly / talk to the KMS servers.
    It appears to be an issue with the Software Protection service not starting properly.  In Event Viewer, we see the following:
    'Software protection service failed to start due to the following error- the service did not respond in a timely fashion.
    Event 7000'
    This is occurring on a variety of machines in a variety of environments, all fully patched with the latest Office updates.  It's inconsistent, and the 'manually restart the Software Protection Service' solution is not viable as it's occurring on many
    different workstations.  Office repairs have also been unsuccessful.  
    Has anyone else come across this? Or have any idea why the Software Protection Service might be sporadically failing?  Maybe an Office update in the last 2-3 months?
    Thanks for any info.

  • Get native file in ucm (ucm and terastack solution working together)

    Hi,
    We use oracle universal content management server (ucm). A lot of files are stored on the hard disk of the system using this content management system. Now we are using Terastack Solution (http://www.hie-electronics.com/) to create backup of the data. The TeraStack Solution is an optical data storage system designed and manufactured to improve performance through affordable and reliable data storage management. Terastack solution archives (writes) all files to dvds and then a module of it truncates all these files to zero byte in size to save disk space. Now terastack solution watches all archived files. If an application tries to open such a file, it intercepts this, blocks this request, then restores the file from the dvd. During this process calling application just waits for the file to open. After restoring terastack solution sends a signal to the calling application, and the file with full contents is opened in the application.
    Now here is the problem:
    Files are check-in oracle content server. Terastack solution has burned these files to dvd and made these files to zero byte in size. Now when we click a link in content server to get a checked-in file (native file), terastack solution intercepts it, restore the file from dvd, then an open/save dialog box open to either open or save the file to a location. We save the file to a folder, open this file and come to know that there is no content in the file. It is still a zero byte file.
    When we checked the file at original location (remember ucm stores files in vault folder), we came to know that file is actually restored successfully by the terastack solution but the content server returned a zero byte file. When we click the link for the same file again to get native file in ucm then we get a fully restored file. i.e. on the first try to get native file we get a zero byte file although it is restored by terastack solution successfully. And on the second try we get file with full contents. On the second try, file has already been restored by terastack solution during the first try and terastack solution ignores files greater than zero byte in size, that’s why client gets a correct file on second try. Having size greater than zero means file is already restored.
    The link in ucm that is used to get native file does not point directly to the desired file. It calls some code in ucm that transmit the required file back to the client. Something like this:
    http://localhost/idc/idcplg?IdcService=GET_FILE&dID=11&dDocName=test_06&allowInterrupt=1
    I think what is going on here is, when we click on a link to get native file that is zero byte in size, content server creates a response for the file, append the size of the file (currently zero) to the header of the response along with other info, and then tries to transmit the file to the client. At this point, terastack solution intercept the request and restore the file. After restoring terastack solution send signal to calling application that file is restored. But the server has already created request for the file and it is not updated during or after the restore, that’s why client gets zero byte file.
    What I want is somehow force the content server to wait until file is fully restored by terastack solution and then transmit the fully restored file to client. Is there any configuration setting for ucm that will achieve the goal?
    Any setting in bin/intradoc.cfg or config/config.cfg or something else?
    Need help.
    Environment:
    OS: Windows XP SP3
    Content Server 10gR3 (Deployed to: IIS, JDK used: v1.5)
    TeraStack Solution (Deployed to: JBoss)

    Thank you for your reply. Although the links to weblayout version of files works perfectly with terastack, but we want to take backup of files in vault folder. Is it possible to change the links that are use to get native file? Can we somehow make these links to directly point to vault files? If yes please tell us how.
    A custom java service to download the native file can also work. Can you please give us a sample code and how to implement it in ucm?
    Please provide one of the solutions. I’m a new comer to ucm, so please provide instructions in more details.
    BTW, I tested the restoration of file using a test dotnet web application. I added code that downloaded a user selected file to the client. The code we used is as under:
    1. FileInfo fi = new FileInfo(filepath);
    2. Response.Clear();
    3. Response.AddHeader("Content-Disposition", "attachment; filename=" + fi.Name);
    4. Response.AddHeader("Content-Length", fi.Length.ToString());
    5. Response.ContentType = GetFileContentType(fi.Extension);
    6. Response.TransmitFile(fi.FullName);
    7. Response.End();
    GetFileContentType() function is a simple function to get content type of a file type.
    Line#4 is important here. A file is zero byte in size when a request to download a file is received by the server, and the server just appends content-length=0 in the header. So even the file is restored by the terastack afterwards, client still receives a zero byte file. At this stage our test application has the same problem, not getting a native file with full contents.
    We removed line# 4 and tried again to download a file thru our test web application. This time client got file with full contents after the file is restored. So we think this Content-Length header is the one that needs to be handled.
    You may find this information useful if you decide to build a java service solution.

  • Ask the Expert: Integrating Cisco Identity Service Engine (ISE) 1.2 for BYOD

    With Eric Yu and Todd Pula 
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions  about integrating Cisco ISE 1.2 for BYOD with experts Eric Yu and Todd Pula.
    Cisco Bring Your Own Device (BYOD) is an end-to-end architecture that orchestrates the integration of Cisco's mobile and security architectures to various third-party components. The session takes a deep dive into the available tools and methodologies for troubleshooting the Cisco BYOD solution to identify root causes for problems that stem from mobile device manager integration, Microsoft Active Directory and certificate authority services, and Cisco Enterprise Mobility integration to the Cisco Identity Services Engine (ISE). 
    Todd and Eric recently delivered a technical workshop that helps network designers and network engineers understand integration of the various Cisco BYOD components by taking a deep dive to analyze best practice configurations and time-saving troubleshooting methodologies. The content consisted of common troubleshooting scenarios in which TAC engineers help customers address operational challenges as seen in real Cisco BYOD deployments.
    Eric Yu is a technical leader at Cisco responsible for supporting our leading-edge borderless network solutions. He has 10 years of experience in the telecommunications industry designing data and voice networks. Previous to his current role, he worked as a network consulting engineer for Cisco Advance Services, responsible for designing and implementing Cisco Unified Communications for Fortune 500 enterprises. Before joining Cisco, he worked at Verizon Business as an integration engineer responsible for developing a managed services solution for Cisco Unified Communications. Eric holds CCIE certification in routing and switching no. 14590 and has two patents pending related to Cisco's medianet.   
    Todd Pula is a member of the TAC Security and NMS Technical Leadership team supporting the ISE and intrusion prevention system (IPS) product lines. Todd has 15 years of experience in the networking and information security industries, with 6 years of experience working in Cisco's TAC organization. Previous to his current role, Todd was a TAC team lead providing focused technical support on Cisco's wide array of VPN products. Before joining Cisco, he worked at Stanley Black & Decker as a network engineer responsible for the design, configuration, and support of an expansive global network infrastructure. Todd holds his CCIE in routing and switching no. 19383 and an MS degree in IT from Capella University.
    Remember to use the rating system to let Eric and Todd know if you have received an adequate response.
    Because of the volume expected during this event, Eric and Todd might not be able to answer every question. Remember that you can continue the conversation in the Security community, subcommunity AAA, Identity and NAC, shortly after the event. This event lasts through November 15, 2013. Visit this forum often to view responses to your questions and the questions of other Cisco Support Community members.

    Hi Antonio,
    Many great questions to start this series.  For the situation that you are observing with your FlexConnect configuration, is the problem 100% reproducible or is it intermittent?  Does the problem happen for one WLAN but not another?  As it stands today, the CoA-Ack needs to be initiated by the management interface.  This limitation is documented in bug CSCuj42870.  I have provided a link for your reference below.  If the problem happens 100% of the time, the two configuration areas that I would check first include:
    On the WLC, navigate to Security > RADIUS > Authentication.  Click on the server index number for the associated ISE node.  On the edit screen, verify that the Support for RFC 3576 option is enabled.
    On the WLC, navigate to the WLANs tab and click on the WLAN ID for the WLAN in question.  On the edit screen, navigate to Security > AAA and make sure the Radius Server Overwrite interface is unchecked.  When this option is checked, the WLC will attemp to send client authentication requests and the CoA-Ack/Nak via the dynamic interface assigned to the WLAN vs. the management interface.  Because of the below referenced bug, all RADIUS packets except the CoA-Ack/Nak will actually be transmitted via the dynamic interface.  As a general rule of thumb, if using the Radius NAC option on a WLAN, you should not configure the Radius Server Overwrite interface feature.
    Bug Info:  https://tools.cisco.com/bugsearch/bug/CSCuj42870
    For your second question, you raise a very valid point which I am going to turn into a documentation enhancement request.  We don't currently have a document that lists the possible supplicant provisioning wizard errors that may be encountered.  Please feel free to post specific errors that you have questions about in this chat and we will try to get you answers.  For most Android devices, the wizard log file can be found at /sdcards/downloads/spw.log.
    As for product roadmap questions, we won't be able to discuss this here due to NDA.  Both are popular asks from the field so it will be interesting to see what the product marketing team comes up with for the next iterration of ISE.
    Related Info:
    Wireless BYOD for FlexConnect Deployment Guide

  • Web Service best practice question

    Hi ! I'm designing a web service solution and I'm trying to figure out the best way to solve a simple situation. I haver some products at my company which need query by consumers, I need some way to let them provide some sort of unique identifier for the product in order for me to return the product complete description. Unfortunately the products are specific to my company and there is no industry standard to do the search (like an ISBN for books). So I'm considering make an adicional service to just return the products database ID in order to enable the consumer make the actual query using this ID. Is there a better way to handle this situation ??
    Thanks everyone !

    services should be idempotent and stateless.
    that means that transitions and workflow should be the responsibility of the client.
    %

  • SSAS(SQl Server Analysis Services).

    Hello Sir,
    We have created an OLAP cube using Business Intelligence Development Studio(BIDS) with
    SQL Server Analysis Services(SSAS) using our data Source which is working fine & for reporting we are connecting the cube with
    MS-Excel through data Connections & we are able to generate the reports with the cube data by filtering & Customizing according to the requirement of reports within the same server instance. But when we want to deploy the cube onto
    the different server (basically on users server) to generate the respective reports we are facing problem. As the end user is not going to have access to the SQL Server Business Intelligence Development Studio how can we deploy the cube. As, we are using ODBC
    connections.
    As this is our first project through SSAS, we kindly need some support to proceed forward. 
    So, Please find the Queries related to the enclosed description as above.
    Queries related to SSAS Cube:
    What are the steps involved to deploy a OLAP cube created in one server to another server?
    Is there any third party tool required for it?
    Thanks in advance.
    Regards,
    Praveen.

    Hi Praveen,
    The following link tells you what you need to know; -
    http://technet.microsoft.com/en-us/library/ms166576(v=sql.105).aspx
    I confirm you do not need a third party tool to deploy a cube and empower your users to access this cube.
    So in summary; -
    Within your Analysis Services solution within BIDs; -
    1) Right click your mouse over the Analysis Services database icon, which is immediately below the solution icon.
    2) Select the sub tab "Deployment".
    3) Enter the name of the server you need to deploy to.
    4) Click "OK".
    5) Right click your mouse (again) over the Analysis Services database icon, which is immediately below the solution icon.
    6) Select "Deploy"
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

  • Alternative for BW Open HUb Services.

    Hi All,
    We have recently implemented Open Hub Services solution for our clients, where data is being extracted from BW CUBEs to FLAT FILES. Now we came to know that we need separate License to use Open Hub Services. In the current context it's not possible to get the License immediately as it's more than the budget.
    Can anybody throw some light, which all other way we can use to get the data extracted to Flat Files other than BW.
    We are on BW 3.5
    Regards,
    Kironmoy Banerjee
    Edited by: Kironmoy Banerjee on Nov 13, 2009 11:47 AM

    Hi Banerjee,
    You can use Analysis Process Designer
    In SAP BW, data from various databases from systems available in the company are collected, consolidated, managed and prepared for evaluation purposes. There is often further, valuable potential in this data.
    It deals with completely new information that is displayed in the form of meaningful connectivity between data but that is too well hidden or complex to be discovered by simple observation or intuition.
    The Analysis Process Designer (APD) makes it possible to find and identify these hidden or complex relationships between data in a simple way. Various data transformations are provided for this purpose, such as statistical and mathematical calculations, and data cleansing or structuring processes.
    The analysis results are saved in BW data targets or in a CRM system. They are available for all decision and application processes and thus can be decisive (strategically, tactically, operatively).
    Examples of analysis processes include the calculation of ABC classes, determination of frequency distribution or of scoring information.
    For more info go through the below link
    http://help.sap.com/SAPHELP_ERP2004/helpdata/EN/49/7e960481916448b20134d471d36a6b/content.htm
    Regards,
    Marasa.

  • Backup as a service

    Hi guys,
    We are a small IT service provider and MS partner. We don't use SCCM for config management, and our alternative product has a file-level / VM backup option that we are using for our clients.
    All of our clients are connected to us via VPN, MPLS or point to point link.
    One issue we are facing, is that our backup solution is purely file based - meaning SQL, AD, Exchange and SharePoint backups and restores are somewhat tricky. In particularly with the issue around truncating log files, not to mention lack of quick way to
    do a single item restore as the solution we are using is not VSS aware. (It just backs up file and VM's)
    I've been toying with the idea of using DPM, hosted at our head office as a "Premium" backup service to our clients who run Exchange, SQL etc. Some initial issues I'm thinking of is how does DPM deal with backing up machines that are not in the
    same forest, and may not even have any forest trusts? Can self-service be delegated in this scenario? Are there any "gotchas" that I should be aware of in piloting a "DPM as a Service" solution?
    Just curious if anyone else has done anything similar?
    Thanks - Steve

    For protecting data sources in untrusted domains, please check out following link:
    http://technet.microsoft.com/en-us/library/hh757801.aspx
    You can go over this to understand DPM end-user recovery:
    http://technet.microsoft.com/en-us/library/jj627988.aspx
    Regards, Trinadh [MSFT] This posting is provided AS IS with no warranties, and confers no rights. If you found the reply helpful, please MARK IT AS ANSWER. Looking for source of information for DPM? http://blogs.technet.com/b/dpm/ http://technet.microsoft.com/en-in/library/hh758173.aspx

  • SAP for professional services

    Hello All,
    We have an ECC 5.0 system.
    We already use the ESS & MSS funtionality. We are looking to use the SAP for Professional services solution for India.
    Kindly let us know what are the pre-requisites and also let me know what are the components to be activated in transaction sfw5.
    Thanks.
    Regards,
    Chandru

    Dear Ravi,
    As suggested, please take this with SAP directly.
    Regards,
    Rakesh

Maybe you are looking for

  • How can I reach a person with Verizon Wireless

    Due to Hurricane Sandy I have a bill payment problem.  I called my bank this morning to see if they were open.  They were.  I drove to the bank to make a deposit and they had already closed so I could not make the deposit.  Tomorrow is a wait and see

  • Can I set the AuthoredContents.xml path?

    Hi, I need help about the following issue:      Can I set the path where Ill have the authoredContents.xml and how? I need to put the authored content.xml in a different path of root directory. Maybe , its possible setting by FlashVars? Thanks

  • H.323 slow start problem

    I work with Cisco AS5350XM GW , version 12.3 (12r)PI6b. I tried to make a call scenario with protocol H.323 only from TS trough Cisco gateway back to same TS. The call scenario with h.323 fast start was successful, but when I switched to slow start,

  • Hash() in coldfusion equivalent in java

    Hi, I have a hash function in coldfusion which i want to implement in java. The coldfusion hash function in my case DOES NOT take any algorithm as a parameter. In java I have seen that to use message digest we have to specify an algorithm. Can it be

  • Having issues with new version of iTunes and my iPod...

    I recently upgraded to the newest version of iTunes, and now I can't view my iPod's songs or add songs to my iPod through iTunes. Whenever I click on my iPod, iTunes freezes up and I have to close it. In fact, sometimes iTunes freezes up as I'm playi