Service Desk - third party interface using XI content

Dear all,
I am looking for any guide/documents or any procedure to connect a third party interface to solution manager service desk using the XI content available in Solution Manager. I have got information about how to use web services to meet the requirement or even using Business connectors. But I heard that from solman 7.0 onwards, we can use XI feature inbuilt in Soluton Manager for this.
Does anyone has any idea about this? If you have done this before, could you please share how to proceed?
Thanks a lot for any help..
Rajeev

Hi,
U can find the
XI contents available for downloads from  from SAP Service Marketplace.    
https://websmp204.sap-ag.de/swdc > Downloads>  Support Packages and Patches ¨ Entry by Application Group--> SAP Content --> Process Integration Content (XI Content).
Cheers,
Siva Maranani.

Similar Messages

  • Create a Web Service to connect a third party tool using ABAP.

    Hi Guru's,
    I wanted to create a web service to access a third party tool for fetching data from it. Can anyone guide me on how to do that and what are the basic needs that we should have to use Web services? To execute a web service, do we need a J2EE engine?
    Thanks & Regards,
    Veerabhadra Rao A.

    Hi Rich,
    Thanks for your immediate response.
    Can you please explain me the technical point of view for fetching the data from a third party application using web service? Which method would be correct for this (i.e., BAPI/FM/FG/Message Interface)? What is the step by step process to fetch data? If I use a function module, how do I pass the data to the web service? Can you give me some more inputs to it?
    Please help.
    Thanks & Regards,
    Veera.

  • ABAP source code to connect to third party systems using web service calls?

    Hi all,
              can any one provide an example ABAP source code to connect to third party systems using web service calls? The base system is CRM.

    Do you want to call a web service in a remote system, or do you want to provide a web service?
    If you want to call a web service you should create a proxy object via SE80. Open your development package, right click on the tree entry and choose: Create -> Enterprise Service / Web Service -> Proxy Object and provide the needed information (including the WSDL description file). You may then use the proxy object to call the web service (if the connection and everything else works right).
    See [http://help.sap.com/saphelp_nw04/helpdata/en/9b/dad1ae3908ee44a5caf57e10918be9/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/9b/dad1ae3908ee44a5caf57e10918be9/content.htm]

  • Help me!    How to use it as a web service from third party application?

    After using JDeveloper to develop BSSV object e.g. JP550010, how to use it as a web service from third party application?
    TKS!

    Obviously the OP is working on a project for the Bead Society of Southeastern Virginia http://www.bssv.org. Oh, wait, maybe he's researching the Blueberry Shoestring Plant Virus http://abbreviations.yourdictionary.com/bssv
    :D
    John

  • Third Party Interface

    Hi Experts.
    I want some clarification, we are implementing BPM - Solution Manager. I was checking the BPM Monitors Catalog. I didnt find any thirdparty interface monitoring.
    Our client has SAP and it has got some thirdparty interface such as Vertex, BSI, Delego which are tax ware and payroll interface.
    Does BPM can monitor these 3 rd Party tools.
    I read that BPM only communicates with thrid party interface with only IDOC. Is it correct to say BPM can only be communicated with third party interface with IDOC?
    Can some one guide me on this subject.
    Appreciate your response.
    Kevin

    Hi Kevin,
    Please review the following links for documents which explain Solution Manager monitoring steps/configuration.
    http://help.sap.com > Documentation > SAP Solution Manager > SAP Solution Manager 3.2 SP06
    http://service.sap.com/solutionmanager > Media library > Demo scripts > System Monitoring
    http://help.sap.com/saphelp_nw04/helpdata/en/02/411841a66af223e10000000a155106/frameset.htm
    Hope these help you out!
    Thanks,
    Mark

  • How to send job postings to multiple third party sites using the XML output

    Dear Friends,
    We are Implementing Irecruitment for our client, Client requirement is how can we send job postings to multiple third party sites using the XML output from i-Recruitment
    With regards
    Surya
    .

    Can you be more specific about your Requirement. In General, Please navigate to iRecruitment Recruiter Responisbility.
    Then Select, Setup > Recruiting Sites. Here, you can configure your Third Party Websites information and attach stylesheets. The default mode oracle sends the vacancy information is HR-XML Format.
    If you would like to select more sites information select "Add Another Row".
    Then, you can see this information while "New Vacancy Creation Process".
    iRecruiter.
    Edited by: iRecruiter on Oct 18, 2009 7:43 AM

  • How to file data from sap server to third party-tibco using EDI-Idoc?

    Hi all,
    I need to send data from sap server to third party system in th form of file.
    Please guide me how to send data file from sap server to third party-tibco using edi-idoc?
    Also guide the configuration ti be done for EDI.
    Thank you.

    1)create file port
    2)TCP-IP RFC destination with a program RFCEXEC to be executed on application server
    3)Dummy distribution model
    4)Partner pofile of type other han LS

  • Allow desktop interaction within Azure Cloud Service with third-party desktop app (automated via code)

    Hello,
    I am developing a wrapper service as Worker Role which will take request from Service Bus and automate a third-party desktop app to produce an output file and then upload result back to our web server.  The automation is accomplished with the app's
    built-in .Net remoting based API.  This all works on my local development machine.  I am using code as below to start the desktop app.  In Azure:
    If I am not logged on to RDP and run the app as SYSTEM (or whatever the default WorkerRole account is), it waits forever for the MainWindowHandle.
    if I start the app manually in the RDP and try to get a reference to the running process (again as SYSTEM), I get Access Denied from WaitForInputIdle.
    if I start the app from code as the RDP user (ProcessStartInfo assign user/pass), I get InvalidOperationException - the app might not have a graphical interface from the WaitForInputIdle.
    Could anyone suggest the proper strategy for starting processes in a Worker Role that must create a window?
    For reference, I only care about the window to the extent that I need to make sure it's there.  All other interaction with the process is via the .Net Remoting API.
    private void GetOrStartThirdPartApp()
    _process = Process.GetProcessesByName("ThirdPartApp").FirstOrDefault();
    if (_process == null)
    _process = new Process();
    _process.StartInfo.Arguments = string.Format(@"-I ""{0}""", config.GetSetting("RolePath"));
    _process.StartInfo.WorkingDirectory = config.GetSetting("WorkingFolder");
    _process.StartInfo.FileName = config.GetSetting("ExecutablePath");
    _process.StartInfo.LoadUserProfile = true;
    _process.StartInfo.UseShellExecute = false;
    if (config.GetSettingAsBoolean("StartThirdPartAppWithRunAs", false))
    _process.StartInfo.UserName = "user";
    var password = new SecureString();
    foreach (var c in "thepassword".ToCharArray())
    password.AppendChar(c);
    _process.StartInfo.Password = password;
    _process.Start();
    while (_process.MainWindowHandle == IntPtr.Zero) Thread.Sleep(50);
    _process.WaitForInputIdle();
    _process.Exited += _process_Exited;

    I'd keep the app with the UI and the queue reader in the same process and account - not a worker role.  On start up you launch the desktop application and the queue reader in the same account, one after another.
    From what I've experienced, two users don't have the same
    Window Stations, so you can't pass a window handle in a different logged-in account across that boundary.  Read the Window Station documentation - you may find something that helps.
    You could use other techniques like sockets to communicate cross-process and cross-window station, too.
    Darin R.

  • Service of third party material

    dear experts ,
    I have a scenario wherein i want to sell a third party machine to a customer wherein my client acts as a middle man & no sale purchase agreements are made directly with the vendor & customer.
    Further my client also wants to provide regular maintenance service for the same material .
    How can this be mapped in SAP ?
    Thanks

    Hi
    Third party sales means that material is not manufactured by us and the same is supplied to our customer from a third party vendor
    We receive the sales order from our customer
    Up on receipt of sales order or saving a purchase requestion is created automatically by the system
    Then MM department process this purchase requestion and make a PO and that is send to a vendor
    The vendor delivers the goods to our customer and he gives us the invoice
    Upon receipt of invoice from the vendor we bill our customer
    This a normal third party process
    These whole settings are controlled by item category group and item category and schedule line category
    For a third party material item category group defined in sales org data 2 tab of MMR is BANS
    The item category determined in sales order will be TAS
    The schedule line category determined in sales order will be CS
    Thre are some very important settings in item category TAS and schedule line category CS which controls these whole 3rd Party Sales
    There is another process is also practised (not so commonly) sometimes that is from vendor we take the goods to our plant and inturn we deliver to our customer
    The item category determined in this case is TAB
    the issue i think relates to this
    Regards
    Raja

  • How to configure my servomotor and third party servodrive using Servo Tune

    I am trying to configure a small servomotor using a PCI 7342 motion controller and a third party servo power drive. When powered up, the motor spins at max rpm and when run, the Auto Tune function doesn't seem to have any effect other than changing the motor direction and running at -max rpm. So far as I know, the motor is set up correctly and encoder is fully functional. I have tried the default servo settings in MAX and also custom settings of what I deem to be correct for the system. The Auto Tune returns values for PID as 0, 32767, 0 respectively and changing these does have a slight effect on accelerations, but the motor has never been stabilised at 0rpm. I have changed the encoder connectio
    ns (as suggected by fozzy 27/02/2002) but to no avail. I'm at a total loss.... Please Help!! Cheers.

    i had the same problem with my servomotor from Thorlabs. what happens when you step the servo? does it travel until it hits the hardware limit? mine did this as it wasnt recieving any feedback from the encoder, im in the process of getting an exchange at the moment. luckily i had another servo to diagnose the prob.
    dan
    dsmol@cyllene*uwa*edu*au

  • Service order third party

    Hi,
    I am working on service scenario. Post processing of sales.
    We are creating service order ECC. First we have to check warratny for product.
    we have to create service order for product. we dont have resources to repair it.
    Some third party provides services to repair the product.
    Third party will send invoice to us.
    This is exactly  similar to third party order in sales scenario.Please can you tell me how to proceed third party service order.
    What is the order type:  is there any order type in ECC. (like or sales).
    What is the iem categary group for procure new services for repair the lab top.
    How can i do item categary determination for third party services procurement porcess. Awaiting for great suggestions.
    Thanks
    john

    Hi
       Yes. It is like third party order process. But you have to customize according to meet ur requirement.

  • Suggestion for Iridium I/O third party tool use in production environment. Is Good or bad to use?

    Hello Everyone,
    we are planing to use Iridium I/O third party tool in one of our critical production environment to improve the performance.
     but i want to know is it recommended  for such type of critical servers?.
    if i use this tool find any performance improvement.

    Hi Baraiya,
    Iridium I/O is certified by Microsoft. It can help to fix SQL Server performance instead of just pointing out performance problems . Benefits of using Iridium include the following aspects. Refer to:
    Iridium I/O for SQL Server.
    •Faster transactions
    •Faster batch jobs
    •Reduced blocking and deadlocking
    •Faster sorting in tempdb
    •Speeds up queries from 3rd Party apps that can't be tuned
    •Speeds up queries that are already "fully tuned"
    •Speeds up the 95% of queries that the DBA never has time to tune
    In addition, there will be no impact on the SQL databases when Iridium is removed. Personally, I recommend you install the Iridium I/O in a test environment, and check if it meets your requirement, then use it in the production server.
    For more details , you can also review this blog:
    SQL SERVER – Iridium I/O – SQL Server Deduplication that Shrinks Databases and Improves Performance.
    Thanks,
    Lydia Zhang

  • Reading a line from a third party software using call dll function.

    Hi,
    I am using a third party software in Lab VIEW.
    I am having trouble using one of the functions defined in the dll.
    I have the VI attached here, As u can see in the VI I am not sure how to use the function
    LCOM_MasterGetLine in the fourth sequence.....
    This has three parameters and they are
    (int ID,char*Buffer,int Length)
    What basically happens with this function is this...
    /* ROUTINE LCOM_MasterGetLine
    It Reads line of maximally Length characters from Slave ID into Buffer and the parameters are
    * ARGUMENT(S) ID ... Slaves ID
    * Buffer ... Where do you want chars (at least Length+1 in size)
    *Length ... How many at most (should be less than LCOM_MAXLEN)
    Can
    any one help me how to define the input parameters for this function, for example in the fourth part of the Vi attached here.
    What I understand from the function is that, the third party software when it sends a line, that line is stored in the input parameter...buffer ...that is defined to the dll.
    Can any one help me how to then read what line has been sent from the third party software.
    I am including the dll file and also the header file here.
    Thanks a lot,
    Ajit
    Attachments:
    New_Folder.zip ‏30 KB

    One problems with your solution:
    LCOM_MasterGetLine(int ID,char*Buffer,int Length)
    You should allocate a buffer large enough in LabVIEW and pass it to the Call Library Node. The dll function needs som space to actually scribble in whatever it wants to do.
    Check out the attachement this should more or less be what you will need.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions
    Attachments:
    ex.vi ‏45 KB

  • What's a good third party to use with an unwanted rarely used iPod Shuffle?

    Hello.
    I don't want to use Apple's iTunes. I have these updated operating systems (OSes): Debian (Linux) stable, Windows XP Pro. SP3, and Mac OS X (10.5.8 and 10.8.2). I noticed Windows asked me to format it since its FS was unreadable to it, but Debian could read its HPS (no write). I assume I could format it as FAT32 and use it as an 7 GB USB flash drive, but I'd like to use its screen too if possible.
    Thank you in advance and happy new year.

    Charles,
    I cannot speak on behalf of hooking this model of monitor up to a mini, however I do have a 19" Planar monitor at home hooked up to an old G4 tower via VGA, and the 19" Planar monitor that I have at work is hooked up via digital to my G4 15" PowerBook. I love both of these Planar 19" LCD monitors, and have absolutely no complaints. Planar's three year warranty is nice, and their tech support is top notch. I had an issue with the monitor at work, and I had a replacement on my desk in two days. Returning the bad monitor in the pre-paid box that the new one came in made things effortless. We have a few Planar's in the school district that I work in, and have no major issues with any of them.
    Not too sure what the most recent pricing is on this model, but CDW was selling them for around $225-$230 delivered right to your door.
    Hope this helps.

  • APO integration with third party system using XI.

    Hello friends,
      Has anyone done XI configuration for APO with legacy system. Needed APO content for XI.
    Regards,

    Hi,
    U can find the
    XI contents available for downloads from  from SAP Service Marketplace.    
    https://websmp204.sap-ag.de/swdc > Downloads>  Support Packages and Patches ¨ Entry by Application Group--> SAP Content --> Process Integration Content (XI Content).
    Cheers,
    Siva Maranani.

Maybe you are looking for

  • Needs sample ABAP code for field routine

    Dear Expert, There is a field "Pay Scale Group" in my DSO which stores the data in the format AA1/B1/CCC2/DD2/EEE1, A1/BB2/CC2/DDD3/EE2 etc. These data has to be transferred to InfoCube where "pay Scale Group" in the InfoCube will store the data like

  • How can I change java.policy at runtim on client machines using java webst?

    Hi, I have to change java.policy to launch my application through webstart to provide one RuntimePermission "permission java.lang.RuntimePermission "getClassLoader";" Its because of a bug in java bug "_http://bugs.sun.com/bugdatabase/view_bug.do?bug_

  • Best practice steps for Hyper-V virtual server

    Hello, I need help in below questions. Please help. Q1) What are the best practice steps to create a VM with Hyper-V? Q2) What is the best practice for virtual network cluster? Q3) What are the domain controllers? and how to upgrade it from 2003 doma

  • Image at selection-screen

    Hi all... I had displayed am image at selection-screen. But the problem is that, the image is been over-lapping on the out-put screen also... Here is the sample code which I had used can any one find a solution for this.... Thanks in advance REPORT 

  • Transferring data to a new computer

    Hi. Not sure if this is a good place to ask (if the solution to this might be in another thread, and you can redirect me, please do) - my brother is giving me his 15 inch MacBook Pro and I'm looking for instructions on how to transfer all the data on