Service file under template folder missing

Hai,
We have installed ITS 6.2 in  a machine.  The templates folder of AGATE does not have service files like BWSP, PZ transaction.
I think after installation standard service files should be in templates folder. Correct me if i am wrong.  Is there any procedure for the Basis team to publish the all the service after installation. .
Please let me know what is the procedure(or configuration) which basis has to do to publish all service files provided by SAP.
Thanks & Regards,
H.K.Hayath Basha.

Hai,
We have another ITS 6.2 server also in which the templates for the service files are under templates folder for example:
D:\Program Files\SAP\ITS\Development\Template
Under this templates we have folders with name BWSP, PZ01, PZ02...
We have another new installation of ITS 6.2 patch 26 in another machine, the folder structure is
D:\Program Files\SAP\ITS\Development\Template
Under this template folder I am not able to see folders like BWSP, PZ01, PZ02.
I am development consultant, in the previous installation I don't know what Basis did to publish the templates for BWSP, PZ01 and PZ02 under the path,
D:\Program Files\SAP\ITS\Development\Template
In the new installation my Basis team member doesn't know what the earlier team member has done to publish the templates for service files.
Please let me know what is the procedure to publish the service file as templates in ITS server.
Thanks & Regards,
H.K.Hayath Basha.
Service files in the templates folder? For sure, you can make this, but
I would recommend to use the correct folder. The structure of the ITS folders
has not been changed, as far as I know.
Another good idea: Read the documentation or use your preferred search method
for finding files like webgui.srvc

Similar Messages

  • BizTalk 2013 R2 Accelerator for HL7 is missing MSH_26_GLO_DEF.xsd file under templates

    BizTalk 2013 R2 Accelerator for HL7 is missing MSH_26_GLO_DEF.xsd file under templates. Can anyone please help me on this. 
    Is there a way to report this issue to Microsoft?

    Hi Sandeep,
    Thanks for your feedback in BizTalk forum.
    From your description above, I can hardly give precise troubleshooting for this issue, please give more explanation about what happens.
    >> Is there a way to report this issue to Microsoft?
    If you cannot determine your answer here or on your own, consider opening a support case with us. Visit this link to see the various support options that are available to better meet your needs: 
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Please let me know if there is anything that I can do to help.
    Best regards,
    Angie
    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.
    Click
    HERE to participate the survey.

  • How to retrieve full flash solution from WSP if not than how to retrieve ascx files from Template folder in SharePoint 2013 ?

    How to retrieve ascx file from the Template folder in SharePoint2013
    My issue is, I have WSP only so I changed into zip and got my all web parts and also one dll file after that decrypted dll and got some C# code
    mixing with some system generated code but not ascx file that is for front-end part. So my question is how we can retrieve full flash solution if not, at least ascx files So if we were on SharePoint 2010 we could have got those file from __Template__
    folder but It’s on SharePoint 2013 and not able to get ascx.
    If we can do so, than will be easy to get the task to be done
    Suggestions would highly be appreciated. Thanks in Advance.
    Ashish

    Hi Amit,
    you can not move specific changes from Dev to production.
    but you can follow this process to make your workflow as it is as in Dev:
    Create a new workflow on the new list in Product.
    Create at least one step, one condition and one action in this workflow.
    1. In Dev server open your .xomal file as XML and copy the entire contents.
    2.In Production server Open your .xoml file as XML and Paste the entire contents
    3. repeat this operation for the xoml.rules file
    4.Double click the .xoml file for the new workflow to open the workflow in the Workflow Designer and click Check Workflow to verify no errors and then click Finish to ensure the workflow is saved.
    Whenever you need to make changes apply the same.
    Please Mark Answer and Vote me if it will to resolve your issue

  • Auto unzip files under downloads folder

    - any downloaded files will go to "downloads folder" on the dock.
    - any "zip" type of files will unzip(decompress) on it's own under "downloads folder" right after the download action is completed.
    my question:
    1. is it safe for the zip file to unzip by itself? will I somehow get virus this way?
    (if there are any virus in the zip file).
    2. is there any way to turn this auto unzip feature off?
    (note that: it only unzips on it's own under "downloads folder" on the dock right after download is completed.)

    1. This shouldn't be a problem, but you can never be too safe.
    2. If you are downloading your files using Safari, do the following:
    Safari > Preferences... > General (Tab) > Open "safe" files after downloading (Uncheck)

  • Query Count files under Specific folder in Sccm?

    Hello!
    I try to create a Query in sccm. There I want to count files under a specific folder. If folder on the client have less than 35 files, show the name of that computer. How should I begin to create that Query? Should I use criteria Software files Count?
    Greetings
    Emil

    I think for this task you will find it easier to create a report instead. Queries are based on WQL which has some limitations.
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • How  to read all files  under a folder directory in FTP site

    Hi Experts,
    I use this SQL to read data from a file in FTP site. utl_file.fopen('ORALOAD', file_name,'r');
    But this need to fixed file name in a directory. However, client generate output file with auto finename.
    SO do we have any way to read all file by utl_file.fopen('ORALOAD', file_name,'r');
    We need to read all file info. because client claim for security issue and does not to overwirte output file name,
    we must find a way to read all file in output directory.
    Thanks for help!!!
    Jim

    If you use Chris Poole's XUTL_FTL package, I believe that contains functions that allows you to query the directory contents.
    http://www.chrispoole.co.uk/apps/xutlftp.htm
    Edited by: BluShadow on Jan 13, 2009 1:54 PM
    misread the original post

  • Files under each child folder

    hi all,
    i want to write a program which will list all files under each folder in the structure e.g
    c:\1xml\1.html
    c:\1xml\hello\hello.java
    c:\1xml\hello\hi\file.xml
    etc
    following codes only shows me one level.
    can any one hint me to resolve this issue?
    String dirName = "C:\\1xml";File dir = new File(dirName);System.out.println(dir.getAbsolutePath());if(!dir.isDirectory()) {      System.out.println("File: " + dir.getName() + " is not a valid directory" );} else {      File[] allFiles = dir.listFiles(); for (int i = 0; i < allFiles.length; i++) {      String s = allFiles[i].getName(); System.out.println("File: " + s + " found");}

    i have put the code tag..can u help?
    thanks,
    /s
    c:\1xml\1.html
    c:\1xml\hello\hello.java
    c:\1xml\hello\hi\file.xml
    etc
    following codes only shows me one level.
    can any one hint me to resolve this issue?
    <pre>
    String dirName = "C:\\1xml";File dir = new File(dirName);System.out.println(dir.getAbsolutePath());if(!dir.isDirectory()) { System.out.println("File: " + dir.getName() + " is not a valid directory" );} else { File[] allFiles = dir.listFiles(); for (int i = 0; i < allFiles.length; i++) { String s = allFiles.getName(); System.out.println("File: " + s + " found");}
    </pre>

  • Any Recommended Purging policy for files in Archive folder?

    Hi All,
    Is there any recommended purge policy for files stored under Archive folder after import from ready folder.We need to delete files that are piling up the Archive,but wondering is there any recommendations.
    Thanks

    Hi,
    Yes it is possible to delete the files under Archive folder. Just follow the below steps:
    1. Create a text file which contain the below lines:
    cd {MDM Installation Path}\Server\......\Archive
    del star . star /q
    Note: Instead of writing "star" use star symol
    E.g. C:\Program Files\SAP MDM 5.5 Server\Distributions\Test-MDM_MSQL\Test-Repo\Inbound\Remote_sys\Inbound_port\Archive
    2. Save the file with .bat extension.
    3. You can schedule this file using Windows Schedular. For this go to Start -> Programs -> Accessories -> System Tools -> Scheduled Tasks and create a new one by double clicking on it. Select the bat file created and accordindly schedule it like daily, weekly etc.
    4. Now whenever the task is due it automatically executes the commands written in bat file and deletes all the files from Archives folder :).
    Its working fine at my end...
    Kindly Reward points and update the thread status
    Regards,
    Jitesh Talreja

  • Unable to open connection to MS Access 2013 .accdb file Under WCF Web Service Project Using Windows 8.1 64bit

    I am encountering the following error when trying to connect to an Access 2013 database:
    The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.
    I have Visual Studio 2013 SP3 running on Windows 8.1 64bit OS which also has Office 2013 installed (which includes MS Access 2013).  My project is a WCF web service using .NET Framework 4.5.1 using any cpu as target.  I have tried reluctantly
    to install the older drivers as described by in the below article:
    https://social.msdn.microsoft.com/Forums/en-US/1d5c04c7-157f-4955-a14b-41d912d50a64/how-to-fix-error-the-microsoftaceoledb120-provider-is-not-registered-on-the-local-machine?forum=vstsdb
     and also went through the "Add Data Source" wizard in the Project menu to have the connect string automatically built.  Even with the automatically built connect string I can not connect to the .accdb file from within my WCF web service.
    What's odd is if I use the Database Explorer in Visual Studio it has no problem connecting the my Access file.  I inspected the connect string and tried to use it as well but still get the same error. Even stranger is that I have no problem connecting
    to the Access DB in an ASP.NET project on the same PC. I am also able to connect to the Access file using a simple Windows Forms application.  So I'm wondering if it has something to do with trying to connect to the Access file from a WCF web service
    project.
    What I'd like to know is if anyone has been able to get this to work in an environment as I described above as a 64bit WCF web service project?  I tried to switch my project to 32bit but when I do I get a different error which reads:
    System.BadImageFormatException: Could not load file or assembly 'file:
    Almost to the point of trying to get this web service project done with SQL Express but would like to know if it can be done with MS Access 2013.  Any information anyone can provide to help me get past this issue is greatly appreciated. Thanks.

    Have you installed the 64-bit Access driver on your machine? See
    Data Source Names and 64-Bit Operating Systems for the differences in odbcad32. Call %SystemRoot%\system32\odbcad32.exe to check the drivers.
    How do you host your service? Stand-alone or IIS or embedded to another application? Keep in mind that IIS7 runs it in its application pool which is defaullt 64bit. Thus the bad image exception, when compiling your service as 32bit.
    When you need the Access database for your service to store informtation, then I would switch to SQL Server (Express) or XML files depending on your actual needs.
    Also check whether your account under which your service is run has the necessary NTFS file permissions on the access file and the folder. This is getting even more complex when it's a remote folder.

  • Missing all files of a folder and the pst file cannot be repaired

    All files under folder Inbox\TechSupport suddenly are missing.  The Folder Size window shows this folder has a size of 180719KB.
    I used "C:\Program Files\Microsoft Office\Office15\SCANPST.EXE" to try to fix the post files a few times, the problems remains.  No matter how many times I run SCANPST.EXT on this pst file, it always find the following error:
    Internal errors were found in this file. They must be repaired for this file to work correctly.
    Here is the log:
    Microsoft (R) Inbox Repair Tool
    © 2012 Microsoft Corporation. All rights reserved.
    Version 15.0.4667.1000
    **Beginning NDB recovery
    **Attempting to open database
    **Attempting to validate header
    **Attempting to validate AMap
    !!AMap page <@416752640> has csFree of 7, but should have 255
    **Attempting to validate BBT
    **Attempting to validate NBT
    **Attempting to validate BBT refcounts
    **Attempting to validate header NID high-water marks
    **Beginning PST/OST recovery
    **Attempting to recover all top-level objects
    **Store created by build: 15.4667
    **Attempting to walk all folders
    **Attempting to locate any orphaned folders/messages
    **Performing final HMP validation
    **Attempting to check top-level objects for consistency
    **Updating folder hierarchy
    **Attempting to fix original file
    **Attempting to copy back BBT
    **Attempting to copy back NBT
    Any tip to remedy this will be greatly appreciated.
    Hong

    Thanks for the update, Hong.
    If we copy some emails to TechSupport folder, are those emails still visible in the TechSupportfolder?
    Although it doesn't look like a view problem, we may also try to open Outlook with /cleanviews switch to seek our fortune. To do this, exit Outlook, press Windows key + R to open the Run command, type
    outlook /cleanviews and press Enter. We may also try to search for the missing emails using Instant Search to see if there is any result.
    In addition, we may also try to use the MFCMAPI tool to look into the TechSupport folder and check if we can see and open the missing emails. To do this, please follow the steps below:
    1. Download MFCMAPI tool: http://mfcmapi.codeplex.com/
    2. Exit Outlook and start MFCMAPI.exe.
    3. Click Session > Logon, choose your profile and click
    OK.
    4. Double-click the PST file that has this issue from the list.
    5. In the opened new window, expand Root Container > Top of Outlook data file > Inbox.
    6. Find and right-click the TechSupport folder under Inbox, select Open contents table.
    7. In the opened new window, check if you can see your emails in the upper portion of the window. If so, double-click an item to see if you can open the email in Outlook window.
    Please let me know the result.
    Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • I restored my bookmarks from a resent .json file, but one folder is now empty and one is missing.

    Hi,
    Because of reasons my computer needed to be refreshed. My old firefox profile folder was saved though, and with that the bookmarkbackups. As the title says I restored my bookmarks from a resent .json file, but one folder (containing probably about a hundred bookmarks) is now empty and one other is missing completely.
    In some places I have a 5 levels deep folder structure for my bookmarks, but since the folders missing are from different levels I don't think this is the problem.
    The now empty folder contained six or seven other folders, that in turn contained a lot of bookmarks with titles including non-alphanumerical characters. †?|&*()<-/., to be precise. However, if I restore a very old .json (from september 2013) the folders are present and contain the mentioned bookmarks - albeit much fewer, since the file is old. A few other bookmarks still present also contain the mentioned characters, so this is probably not the problem either.
    The folder that is completely missing just contained a lot of bookmarks that were to be sorted.
    When opening the more recent .json files (I have a whole month of automatic backups to choose from) in the firefox scratchpad it would seem that the bookmarks are missing alltogether, so I suppose that there is not much to do about it (please correct me if I'm wrong), but I definitely want to report the bug.
    Is there anything at all to do about it?
    Thanks,
    Hanna

    If the bookmarks aren't present in the JSON backup then it is likely that you got a corrupted places.sqlite file at some time that caused the backup not working properly.
    Did you try all the backups?
    Note that the xxxx part of the bookmarks-####-##-##_xxxx.json file name shows the number of bookmarks in the file.

  • Assign Analytic Servers under Projects folder in Shared Services

    Hello experts,
    The problem is that: we are migrating dev environment to a new test environment. All is done, but when I try to assign "Administrator" role for Essbase server to an especific user, I can't see "Analytic Servers" option under Projects folder in Shared Services (where is Essbase server in dev environment).
    How can I assign that role if I can't see Essbase server in Shared Services? Can I assign it? How?
    Thanks for your time!
    Best Regards
    Edited by: user1654709 on 31-ago-2012 10:37

    Hi,
    You can do the following:
    1. Launch the MaxL Prompt and connect to Essbase Server using the Administrative user
    2. Execute the following:
    alter system resync sss;
    alter application all reregister;
    If the Essbase security is externalized, the above commands will execute successfully. If Essbase is not registered to Shared Services, then you execute the following command:
    MAXL> display system security mode;
    +.....If it is 1 then run the alter command:+
    MAXL> alter system set sss_mode <ENFORCE-PWD-SPEC>;
    Please read http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref.pdf page 671 regarding <ENFORCE-PWD-SPEC> option to decide (depending on number of users on the system) what "password option" is best for you.
    After successful, externalization of security, then execute again the following:
    MAXL>alter system resync sss;
    MAXL>alter application all reregister;
    Hope it helps....
    KosuruS
    Edited by: KosuruS on Sep 6, 2012 12:02 PM
    Edited by: KosuruS on Sep 6, 2012 12:03 PM

  • How to write content of the file under folder

    Hi Experts,
    I have following scenario, I have list of files under folder in local desktop(for eg D:\mani)
    I have only filename, using this filename i want to search and get content of the particular file and write in some other location? how to do that? give your suggestions?
    Regards,
    P.Manivannan

    You could go two ways here:
    The first possibility requires that (a) you know what operating system you are working with, and (b) you only need to copy the file, and not do anything else with the contents of it. In this case, probably the easiest way to do this is to use a Runtime exec command for the file you want to copy:
    java.lang.Runtime.getRuntime().exec( "cp D:\mani D:\mani2" );Otherwise, if you need your code to be portable, you can't assume anything about the operating system. Since java.io.File doesn't provide a copy method, you will need to read the entire contents of the file into the vm, and then write them out to a new file. Also, if you need to use the contents of your file in some other way, as well, then you also need to read the entire contents into the vm. In this second case, how you read the file may depend on what kind of data the file contains.
    In general, the following code should work for you:
    final FileInputSteam  fis = new FileInputStream ( new File( "D:\mani"  ) );
    final FileOutputStream fos = new FileOutputStream( new File( "D:\mani2" ) );
    final byte [] buf = new byte[ 1024 ];
    int bytesRead;
    while ( ( bytesRead = fis.read( buf ) ) != 0 )
        fos.write( buf, 0, bytesRead );Don't forget to catch or throw IOException.
    Hope this helps.
    - Adam

  • When saving files under options the file name is duplicated how to remove extra folder with the same name

    Under Firefox Options I clicked Saving Files under Downloads but the file name appears twice and an extra folder with the same name is created within the folder i.e.:
    G:\Akbar's Songs\HAMARA FORUMS DOWNLOADS\HAMARA FORUMS DOWNLOADS
    As you can see the folder is repeated, how can I correct this?
    Also the music files I download from a site downloads as WinRar file and I need to open it. Is there an option where the files open automatically in the folder I have selected?
    Many thanks for your help.

    The "beta" version is for testing and may be more prone to problems, so I suggest trying the regular version (9.20) even though it hasn't been updated since 2010.

  • I want to make a schedular which read xml files from a folder ,import in Indesign template then export as a pdf....

    i want to make a schedular probably in Coldfusion or using javascript ,  which read xml files from a folder ,import in Indesign template then export as a pdf....

    I don't think you understand: I want to open Dreamweaver and build a brand new site, then when I am done I want to host the dreamweaver site on the Business Catalyst platform. I dont want to use anything in BC to build the site, I just want to use the hosting platform. I do not want to import a BC site into dreamweaver or anything like that. I just want to use BC the same way I would use godaddy, or uhost or any other hosting provider. Based on your response you said that "of course its possible to build a BC site in Dreamweaver" I dont want to build a BC site, I want to build a Dreamweaver site and host it on the BC platform. Like I said before it doesnt seem like this is possible. As of now we can only build a new site in MUSE and integrate it into BC without using a BC template. Can you understand what I am saying. I DONT WANT TO USE A BC TEMPLATE, I WANT NOTHING TO DO WITH BC WHILE I AM BUILDING THE SITE WITH DREAMWEAVER, JUST LIKE MUSE DOES.

Maybe you are looking for

  • Where is the button menu in this flash, normally it's in windows.

    help!

  • LaCie electron 22 blue

    hi i would like to know if it possible to connect the LaCie electron 22 blue (4) to the newest mac mini. thanks

  • Securing report path in address bar for 10g Reports

    I am using the following code to run report developed in reports 10g using windows. Report is running but it shows all the path in the address bar. like http://rep_server:8889/reports/rwservlet?report=d:\Sticker_rpt&desformat=pdf&destype=cache&paramf

  • IWork - Pages Will not Open

    I reviewed a previous post of the same problem, the solutions provided did not fix my problem. When I open Pages or Numbers they crash immediately. I have re-installed the software, deleted the .plist files etc. still no luck. Anyone with suggestions

  • Finding / skipping CSV errors in files

    I have a user that refuses to check his CSV files for errors prior to uploading them into a bulk mailing system and then complains when the system gives him an error. Does anyone know a good place to find information on how to either delete a faulty