Support, please add a place for the Z30 and fix the "The specified template does not exist or is empty" error on this page

Please get the web site designers to fix this forum.  There is no Z30 "place" and there is an error message that shows up every time.
The specified template does not exist or is empty

Make sure the SharePoint Server is joined to Active Directory. Also validate that the Web Application Application Pool account is running as a Domain User (rather than say Network Service).
Trevor Seward
Follow or contact me at...
&nbsp&nbsp
This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Similar Messages

  • Create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain

    I have a script that needs to be modified to create a folder on the desktop and share with everyone if it does not exist on a Windows 7 PC - No Domain.  Here is the script, need help at bottom
    =======================================================
    Set objShell = CreateObject("WScript.Shell")
    objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
     IF Right(objComputer,3) = "000" Then
    Else
     strShortcut = objShell.SpecialFolders( "Desktop" )  & "\%username% Share.lnk"
      strShortcut = objShell.ExpandEnvironmentStrings(strShortcut)
    Set objLink = objShell.CreateShortcut( strShortcut )
     objComputer=objShell.ExpandEnvironmentStrings("%ComputerName%")
      objServer=Left(objComputer,7) & "-000"
     objLink.Description = objShell.ExpandEnvironmentStrings("%username% Share")
      objLink.TargetPath = objShell.ExpandEnvironmentStrings("\\" & objServer & "\Users\%username%\Desktop\%username% Share")
      objLink.Save
    End If
    =======================================================
    if "C:\Users\%username%\desktop\%username% Share" exits do nothing
    if not create the folder and share it with everyone read only
    ======================================================
    The section directly above is what I need to add, anyone have a clue how to make this work?

    Bill:  Can you suggest a site?  I am in the weeds here trying to get this done yesterday.  I have been reading code and trying to figure this out since yesterday morning.  I have to roll out this image to 2 dozen machines and
    this is holding us back.  Any idea which site I can post to for help?
    The bigger issue is that you have been given the answer to this in many different forms and, because you have no technical background, you fail to see what is being shown to you.  That is why I have repeatedly suggested that you hire a consultant.
    The link to the learning material is at the top o this page.  You can also search the web for Windows consultants.
    In the learning link you can also look up how to manage files. If, in the beginning you had chosen to use the learning materials you might not be in this bind.
    Look up and research the FileSystemObject.
    ¯\_(ツ)_/¯

  • Every time I try to download the new Firefox I get this message when it relaunches, " Invalid Request You requested a page that does not exist. You may have reached this page by clicking on an invalid link or bookmark." What should I do?

    This happens with every browser I try to download that isn't the old 3.0 version of Firefox

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now" "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    If this doesn't help, try ending any Firefox processes and completely restart it. If none of this helps you might consider you could have Malware or something nastier. Connection issues can also cause that error message. I remember having the same issue a couple of years ago and had to completely restart my PC for some reason to get the new Firefox to install. Sorry I don't have any more in depth answer.
    Hope this helped you, have a nice day.

  • I cannot log into facebook. I get the following message: 404 Error - Not Found The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request,

    I am not able to go to the facebook site. www.facebook.com is not working. I get the following error message. 404 Error - Not Found
    The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request, or the file is not accessible in the requested directory. Please verify that:
    * You have used the proper case; requests ARE case-sensitive!
    * You have entered the URL correctly. (i.e. proper directory/filename)
    * You used the FULL URL. (i.e. proper file type: .html, .gif , .jpg, etc.)
    * You use a tilde (~) before user directories. (i.e. www.furcen.org/~jurann/ )
    * The user/file still exists on this server.
    I also get redirected to "Busca Google" when typing www.facebook.com in the address bar.
    == URL of affected sites ==
    http://facebook.com; buscagoogle.com

    I have the same problem and it does not have to do with firefox. Do you have any idea how to fix it through?

  • How to handle "The specified resource does not exist" exception while using entity group transactions to purge WADLogs table

    Hi,
    We have a requirement to purge the Azure WADLogs table on a periodic basis. We are achieving this by using Entity group transactions to delete the
    records older than 15 days. The logic is like this.
    bool recordDoesNotExistExceptionOccured = false;
    CloudTable wadLogsTable = tableClient.GetTableReference(WADLogsTableName);
    partitionKey = "0" + DateTime.UtcNow.AddDays(noOfDays).Ticks;
    TableQuery<WadLogsEntity> buildQuery = new TableQuery<WadLogsEntity>().Where(
    TableQuery.GenerateFilterCondition("PartitionKey",
    QueryComparisons.LessThanOrEqual, partitionKey));
    while (!recordDoesNotExistExceptionOccured)
    IEnumerable<WadLogsEntity> result = wadLogsTable.ExecuteQuery(buildQuery).Take(1000);
    //// Batch entity delete.
    if (result != null && result.Count() > 0)
    Dictionary<string, TableBatchOperation> batches = new Dictionary<string, TableBatchOperation>();
    foreach (var entity in result)
    TableOperation tableOperation = TableOperation.Delete(entity);
    if (!batches.ContainsKey(entity.PartitionKey))
    batches.Add(entity.PartitionKey, new TableBatchOperation());
    // A Batch Operation allows a maximum 100 entities in the batch which must share the same PartitionKey.
    if (batches[entity.PartitionKey].Count < 100)
    batches[entity.PartitionKey].Add(tableOperation);
    // Execute batches.
    foreach (var batch in batches.Values)
    try
    await wadLogsTable.ExecuteBatchAsync(batch);
    catch (Exception exception)
    // Log exception here.
    // Set flag.
    if (exception.Message.Contains(ResourceDoesNotExist))
    recordDoesNotExistExceptionOccured = true;
    break;
    else
    break;
    My questions are:
    Is this an efficient way to purge the WADLogs table? If not, what can make this better?
    Is this the correct way to handle the "Specified resource does not exist exception"? If not, how can I make this better?
    Would this logic fail in any particular case?
    How would this approach change if this code is in a worker which has multiple instances deployed?
    I have come up with this code by referencing the solution given
    here by Keith Murray.

    Hi Nikhil,
    Thanks for your posting!
    I tested your and Keith's code on my side, every thing worked fine. And when result is null or "result.count()<0", the While() loop is break. I found you code had some logic to handle the error "ResourceDoesNotExist" .
    It seems that the code worked fine. If you always occurred this error, I suggest you could debug your code and find which line of code throw the exception.   
    >> Is this an efficient way to purge the WADLogs table? If not, what can make this better?
    Base on my experience, we could use code (like the above logic code) and using the third party tool to delete the entities manually. In my opinion, I think the code is every efficient, it could be auto-run and save our workload.
     >>Is this the correct way to handle the "Specified resource does not exist exception"? If not, how can I make this better?
    In you code, you used the "recordDoesNotExistExceptionOccured " as a flag to check whether the entity is null. It is a good choice. I had tried to deleted the log table entities, but I used the flag to check the result number.
    For example, I planed the query result count is 100, if the number is lower than 100, I will set the flag as false, and break the while loop. 
    >>Would this logic fail in any particular case?
    I think it shouldn't fail. But if the result is "0", your while loop will always run. It will never stop. I think you could add "recordDoesNotExistExceptionOccured
    = true;" into your "else" block.
    >>How would this approach change if this code is in a worker which has multiple instances deployed?
    You don't change anything expect the "else" block. It would work fine on the worker role.
    If any question about this issue, please let me know free.
    Regards,
    Will
    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.

  • Azure Rest API PUT Block Blob Returns "The specified resource does not exist" CORS

    I am trying to upload a file to Azure Blob storage. For some reason when I try to put a new block blob on in the storage it tells me the resource does not exist. I am sure it is something silly I am missing.
    According to the documentation:
    The Put Blob operation creates a new block blob or page blob, or updates the content of an existing block blob. Updating an existing block blob overwrites any existing metadata on the blob. Partial updates are not supported with Put Blob; the content of the
    existing blob is overwritten with the content of the new blob. To perform a partial update of the content of a block blob, use the Put Block List (REST API) operation.
    CORS is setup and that seems okay.
    When I do a preflight and get this:
    Request URL:https://<account>.blob.core.windows.net/test/image.png
    Request Method:OPTIONS
    Status Code:200 OK
    Request Headers
    OPTIONS /test/image.png HTTP/1.1
    Host: <account>.blob.core.windows.net
    Connection: keep-alive
    Cache-Control: no-cache
    Pragma: no-cache
    Access-Control-Request-Method: PUT
    Origin: http://www.<site>.com
    User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36
    Access-Control-Request-Headers: accept, content-type
    Accept: */*
    Referer: http://www.<site>.com/azure/
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Response Headers
    HTTP/1.1 200 OK
    Transfer-Encoding: chunked
    Server: Blob Service Version 1.0 Microsoft-HTTPAPI/2.0
    x-ms-request-id: 0d372e95-1524-460a-ab9c-7973d42a7070
    Access-Control-Allow-Origin: http://www.<site>.com
    Access-Control-Allow-Methods: PUT
    Access-Control-Allow-Headers: accept, content-type
    Access-Control-Max-Age: 36000
    Access-Control-Allow-Credentials: true
    Date: Thu, 27 Feb 2014 22:43:52 GMT
    But when I make the PUT request these are the results.
    Request URL:https://<account>.blob.core.windows.net/test/image.png
    Request Method:PUT
    Status Code:404 The specified resource does not exist.
    Request Headers
    PUT /test/image.png HTTP/1.1
    Host: <account>.blob.core.windows.net
    Connection: keep-alive
    Content-Length: 22787
    Cache-Control: no-cache
    Pragma: no-cache
    x-ms-blob-content-dis; filename = "image.png"
    User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36
    Content-Type: image/png
    x-ms-blob-type: BlockBlob
    Accept: application/json, text/plain, */*
    x-ms-version: 2013-08-15
    Origin: http://www.<site>.com
    x-ms-date: Thu, 27 Feb 2014 23:19:19 GMT
    Referer: http://www.<site>.com/azure/
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Response Headers
    HTTP/1.1 404 The specified resource does not exist.
    Content-Length: 223
    Content-Type: application/xml
    Server: Blob Service Version 1.0 Microsoft-HTTPAPI/2.0
    x-ms-request-id: d5a60c8b-356a-44ff-93af-0ea720b5591f
    x-ms-version: 2013-08-15
    Access-Control-Expose-Headers: x-ms-request-id,Server
    Access-Control-Allow-Origin: http://www.<site>.com
    Access-Control-Allow-Credentials: true
    Date: Thu, 27 Feb 2014 23:22:42 GMT

    Your request must be authenticated to be able to upload a blob. Please see our
    Windows Azure Storage: Introducing CORS blog post for more information on using Shared Access Signatures with CORS.

  • Error 'The application id or shortname (-1) you entered does not exist.'

    Hello,
    When I run the OA page it opens without any errors,but I delegate to Other page for insert record it showing following Error
    , Please help me to resolve this error.
    oracle.apps.fnd.framework.OAException: The application id or shortname (-1) you entered does not exist.
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(Unknown Source)
         at OA.jspService(_OA.java:87)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:392)
         at OA.jspService(_OA.java:80)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Regards,
    Kapil

    Helllo Friends,
    Issue get resolved. On page, there was one field with Item Style 'MessageLOVInput' and I had not given a source for 'External LOV' to that field.
    Thanks,
    Kapil

  • MIGO -Number range for trans./event type WE in year 2012 does not exist

    Hi  to all
    i got one erro while  going do MIGO , error is  
    Number range for trans./event type WE in yar 2012 does not exist .But i checked in OBA7 for the document type WE for that company code i have already maintain number ranges for the year 2011. but system showing error message is  WE in year 2012 does not exist . how it showing .Actually My fiscal year is 2011 . why system asking maintain number ranges WE in year .After that i maintaion number ranges for the fiscal year 2012 . and try to post MIGO but i got the same error .Please help us in this sence
    Error Details :
    Number range for trans./event type WE in yar 2012 does not exist
    Message no. M7562
    Diagnosis
    The number range for document number assignment has not been maintained in the year 2012 for the transaction/event type WE.
    Procedure
    Contact your system administrator.
    If you are authorized to do so, do you want to check the number ranges for the
    u2022     Material documents
    u2022     Reservations?
    Thanks in Advance
    Rajesh

    Hi Tej,
    Even I am getting the same error
    "number range for trans./event type WE in year 2014 does not exist"
    I have maintained the below number range in tcode OMBT,
    Am I missing anything?? Please help!!

  • Number range for trans./event type WA in year 2010 does not exist

    Dear Sir,
    when i used t-code mb1c to initiate the stock, it occured this error message 'Number range for trans./event type WA in year 2010 does not exist'. i've used t-codes(OBMT,FBN1,OBH2), but it still doesn't work. can you tell me how to solve this problem, please?  thanks! the detail error messages as below:
    Number range for trans./event type WA in year 2010 does not exist
    Message no. M7562
    Diagnosis
    The number range for document number assignment has not been maintained in the year 2010 for the transaction/event type WA.
    Procedure
    Contact your system administrator.
    If you are authorized to do so, do you want to check the number ranges for the
    Material documents
    Reservations?

    Follow the below instruction as specified in note 370236.
    Maintain the number range intervals in Transaction OMBT or in Transaction SNUM.  For every interval of the previous year, there should exist an interval with a year specification that is larger than or equal to the current year.Then assign the interval to a number range group.
    The attached analysis report 'ZNRIVCHECK' carries out the following check:
    If the year and the document type are entered, the report checks whether an interval exists for the document type and for the year.
    If the year is entered or the year and the number range object are entered, the program checks whether the intervals of the previous years exist for all of the year-dependent objects in the specified year.Check whether intervals are needed for all entries of the results list and whether the interval was assigned to the number range groups.
    thanks
    G. Lakshmipathi

  • Number range for trans./event type WE in year 2011 does not exist

    hi gurus
                when am trying to post GR it showing me the following error 'Number range for trans./event type WE in year 2011 does not exist' please help me.

    Hi,
    Go to OBA7 and select the transaction event type WL and maintain number range for the year 2011.
    Please check and revert.
    Thanks
    Hrishi

  • ORA-01418: specified index does not exist though the index exist !!

    Hi all,
    This problem occures only sometimes. I'm getting the list of indexes from the user_indexes table and later perform on them a rebuild operation by using the command :
    Alter index index_name coalesce
    This might cause on some indexes to the following error:
    ORA-01418: specified index does not exist
    I know these indexes exist and I didn't find any reson for this situation.
    Does anyone have any idea about it ?
    Thanks,
    Lital

    The index name can be created in sensitive case. Try to use double-quote.
    Alter index "index_name" coalesce;That give something like this :
    SCOTT@demo102> create index "Titi" on emp2(empno);
    Index created.
    SCOTT@demo102> alter index titi coalesce;
    alter index titi coalesce
    ERROR at line 1:
    ORA-01418: specified index does not exist
    SCOTT@demo102> alter index "Titi" coalesce;
    Index altered.
    SCOTT@demo102> Nicolas.
    Add example
    Message was edited by:
    N. Gasparotto

  • "Number range for trans./event type WV in year 2014 does not exist"

    while doing PGI i am getting error as "Number range for trans./event type WV in year 2014 does not exist"
    Thanks,
    Rohit

    Welcome to the forum.  As a new member, I would like to inform you that there are certain rules and regulations applicable to this
    forum which you can find to your right screen where it has also been indicated that posting basic / repeated query is not allowed. Please search in this forum or Google it with the same text, so that you will find many threads discussed on the same topic.  Take the inputs from there and update still if you are not able to resolve.  Meanwhile, this thread would be locked.
    G. Lakshmipathi

  • Number range for trans./event type WA in year 2014 does not exist

    Dear,
    Member As I am unable to post goods receipt through MB1C.
    Error coming-Number range for trans./event type WA in year 2014 does not exist Message no. M7562.
    I have gone through below thread, but still not resolving.
    In OMBT initial screen, clicked  on Group button with pencil figure.
    There, selected  Material documents for goods movements and inventory diffs.
    WA WH WI WL WQ WR WS WZ.
    There,  I have put  2014 and simply copy the number range 4900000000 - 4999999999 with current number as 0.
    I have gone through the previous thread but not yet got solution.
    Thanks & regards,
    Supriyo

    Welcome to the forum.  As a new member, I would like to inform you that there are certain rules and regulations applicable to this
    forum which you can find to your right screen where it has also been indicated that posting basic / repeated query is not allowed. Please search in this forum or Google it with the same text, so that you will find many threads discussed on the same topic.  Take the inputs from there and update still if you are not able to resolve.  Meanwhile, this thread would be locked.
    G. Lakshmipathi

  • Number range for trans./event type WA in year 2011 does not exist.

    hi experts while stock posting iam facing this problem kindly guide me

    Hi akreddi,
    Please search the forum  you will find the answers before posting the thread
    Number range for trans./event type WE in year 2011 does not exist
    no range for trans/event type WA in year 2011 does not exist
    Regards
    Pradeep

  • Number range for trans./event type WE in year 2008 does not exist ?

    Hi,
    When I post goods receipt ( MIGO) I got the error :
    Number range for trans./event type WE in year 2008 does not exist
    When I modify with OMBT  ==>
    1999     0002000000     0002999999     0
    2008     8000000000     9999999999     8000000000
    But I still get the same error , So Could you please help me this ?
    Thanks

    Hi
    With the present settings, you can post the docuemnt in the year 1999 witout any error. But, if your requirement is to post to the current period then you have to maintain the company code for materials for this period.
    To maintain the company code, go to transaction MMPV and enter the company code as 0001, posting period as 05 and year 1993. Once the transaction is complete, again enter for 06/1993. You need to execute the transaction month wise from 05/1993 to 06/2008.
    Alternatively, you can create an LSMW for the same and maintain the company code.
    Finally check whether the period 06/2008 is appearing in OMSY transation.
    Regards,
    Sunil.K

Maybe you are looking for

  • Windows Applications in the Enterprise Portal

    Hi all, we have EP 6.0 SP10 based on NW04 installed. Is there any possibility to integrate Windows Apllications (Windows 'exe' files) in the Enterprise Portal. Best regards

  • Best deal for Non-Retina Macbook Pro?

    I'm looking to buy a new Macbook Pro (Non-Retina) in the next month or two, and I've narrowed it down to these three options. http://www.amazon.com/Apple-MacBook-MD101LL-13-3-Inch-VERSION/dp/B0074703CM/ref= zg_bs_16368311_1 http://store.apple.com/us_

  • TS3989 Photostream.exe has stopped working.  What causes this?

    I keep getting the message that "Photostream.exe has stopped working" on my Windows PC.  What is causing this and how do I fix it?

  • How to wait until html page is completely rendered

    I use a JEditorPane to display HTML and i want to print it to an image. so i tried to load the page (JEditorPane.setPage(URL url)) and wait until the property "page" is fired. Then i printed the component to an image. My problem is that the page wasn

  • Windows 7 Libraries Support Needed

    Windows 7 has a great feature called Libraries that allows you to link multiple directories into a single logical folder. This helps you to organize assets for a project that may be scattered across multiple drives or the network into a single place.