View to be parameterize and to be called from Access or Excel...advice?

Hi guys, a couple of question: I was asked to automatically run the query below. That's mean I should no longer run manually the query changing the date and that part of query:  FOR archived
   IN (
     [201411], [201412]...                 Some suggestion how I can achieve the result? I was thinking to build a stored procedure with parameter but I'm not
totally sure...the view below:
alter view ChargePivot as
with cte as (
select nmonth, customer, [element code], [element charge],archived from Archive where Archived between'2014-11-05' and '2014-11-07'
or Archived between'2014-12-03' and '2014-12-05'
), cte2 as (select nmonth, customer, [total], CONVERT(varchar(6), archived, 112) as archived
from cte where [clothes] in ('valentino','armani')),
cte3 as (
select customer, archived,Nmonth, SUM(CAST([total] AS DECIMAL (20,4))) AS charge from cte2 group by
customer, nmonth, archived)
select * from cte3
PIVOT
sum(charge)
FOR archived
IN (
[201411], [201412]
) AS PivotTableAlias

Sorry this
select nmonth, customer,
[element code], [element charge],archived
from Archive where
Archived between'2014-11-05'
and '2014-11-07'
or Archived between'2014-12-03'
and '2014-12-05'
should have been
select nmonth, customer,
[clothes], [total],archived
from Archive where
Archived between'2014-11-05'
and '2014-11-07'
or Archived between'2014-12-03'
and '2014-12-05'

Similar Messages

  • I can no longer open numbers and am therefore barred from access to important accounts - what do i do next

    I can no longer open numbers and am therefore barred from access to important accounts.What do I do next?

    Hi mp,
    If you updated to OS X Mavericks, there may have been an automatic update to Numbers 3. Numbers 3 will be in your Applications folder. Numbers '09 has not been replaced. Look for Numbers '09 (Numbers 2.3) in a folder called iWork '09 inside your Applications folder. You can run both versions of Numbers at the same time.
    I have icons for both versions on my Dock. Drag each to the Dock from Applications folder and Applications > iWork '09 folder. Right click on each and Options > Keep in Dock. Now you have the choice of which to use.
    Numbers 2 (3 column chart) on the left. Numbers 3 (4 column chart) on the right.
    If a document won't open, try opening from within each version. Or right click on the document and Open With...
    You can Export a Numbers 3 document back to Numbers '09 with Menu > Export > Numbers '09...
    Post back if you have problems.
    Regards,
    Ian.

  • HT1349 I have purchased a new PC and am being blocked from accessing my itunes account why ???

    I have purchased a new PC and am being blocked from accessing my itunes account why???

    You are being blocked how ?
    If you mean that your library isn't showing then it won't automatically appear on it. You can authorise your iTunes account on it via the Store > Authorise This Computer menu option (with iTunes 11 pressing Alt-S should get the Store menu to appear). You will then need to either download your content onto it (what you can re-download will show under Purchased link under Quicklinks on the right-hand side of the iTunes store homepage), or copy if from your old computer or your backup.
    If you are referring to something else ... ?

  • Possible to pick and choose a call from the queue? (UCCX)

    Hi All,
    I have one main UCCX queue that outside callers are placed in and I recently created an internal queue that's only reachable by internal transfers. I'm hoping to assign higher level CSRs to this new queue and use it for escalations. I was wondering if it's possible to let these escalation CSRs view the queue and select calls to answer rather than having calls automatically routed to them.
    Thanks for reading,
    Gary

    Hi Gary
    No, afraid not... callers will be served in the order determined by UCCX, which is typically FIFO. You can bump up the 'priority' of a call from within the script, but this would be based on script logic, not by the Agents cherry picking...
    Regards
    Aaron
    Please rate helpful posts...

  • Stolen iPhone 4 and follow-up Call from Apple

    Hey guys,
    My girlfriends iPhone 4 (32GB locked to Rogers) was stolen about a week and a half ago. She had Find My iPhone on it and we used it to lock and clear the phone right away, but since the phone was already turned off we were not able locate it. We get an e-mail the next day from the app saying that the lock and message were sent, which means the person who stole it probably turned it on. We still weren't able to locate the phone using the app so we just assumed they re-formatted the phone, cleared it, and logged out of iCloud. We thought end of story, we lost an iPhone, but there's nothing we could do. We go to an Apple store, tell them the phone was stolen and they proceed to use Find My iPhone to clear and lock the phone again (they say they weren't allowed to brick it and we weren't given the option to report it stolen).
    Anyways, fast forward to a week later (night of Monday, Nov 5, 2012). We get a call from apple (call center 512-674-2000). The caller is Betty who works for Apple and she asks us if we have sold an iPhone on kijiji/eBay recently. We tell them that we've actually recently had the phone stolen and ask if someone's returning it. They say not quite, just that someone was tryign to contact apple with the iPhone's serial code. Unfortunately at this point the phone is very low on batter (<10%) so we ask if they can call back at another number. Betty says okay. We don't get a call back.
    We call back the apple number that called us, but the call center is closed (it was around 8:15 EST). So we call the Apple Canada Hotline (we're from Toronto). The issue gets escalated to a manager and they're pretty much saying there's no notes on why the call was made. There definately has to be a reason for apple to call us asking if the phone was sold right? They tell us to call the number that called us earlier the following day to see if we can contact Betty who called us earlier. However, they do tell us that they ahve on their record that Betty called us, and prior to that, someone called with an issue about the stolen iPhone's serial code (we had not called in).
    So we wait until the next day can call the 512 number. Pretty much we keep getting passed around with people telling us they can't do anything since there's no notes on the file and they can't redirect us to Betty.
    My question is: There HAD to be a reason why they called us right? The phone was stolen at a friends house, where we thought we knew everybody. If we can get any information on who the original call was from maybe we can find out who stole the phone? Has anyone had a similar experience or does anyone have any advice on what to do? I'm sure apple knows something, but they are just not telling us. Sorry for the lengthy post, just wanted to get all the details out there! Thanks for any help!

    But if an issue is reported using the serial code of the stolen product, could they not tell me what number it was called from?
    I understand that they can't do much, but I just wanted to know the original reason why Apple called us in the first place to ask whether we sold the iphone on kijiji or eBay recently.

  • ADF BC and direct database call from ActionListener Method

    Hi
    I have an ADF BC application which generates a simple form . In the submit button I am calling a Java method which makes a direct database connection. The application hangs when the method does the executeUpdate() method
    public void onSubmit(ActionEvent actionEvent) {
    DBSequence prdSequenct=((DBSequence) resolveExpression("#{bindings.ProductId.inputValue}"));
              int productId = new Integer(prdSequenct.toString()).intValue();
              String productName = (String) resolveExpression("#{bindings.ProductName.inputValue}");
    update(productName,productId);
    public void update(String productName,int productId) {
    String str ="update products set product_name=? where product_id =?";
    Connection con=null;
    PreparedStatement pstmt= null;
    try {
    con = new DatabaseConnection().getConnection();
    pstmt= con.prepareStatement(str);
    pstmt.setString(1, productName)
    pstmt.setInt(2, productId)
    pstmt.executeUpdate();
    } catch (SQLException e) {
    e.printStackTrace();
    }finally {
    try
    pstmt.close();
    con.close();
    }catch(SQLException sqle) {
    sqle.printStackTrace();
    when I submit the form the update() method hangs at executeUpdate();
    If I run the update() method from a standalone java its works fine.Can anybody tell what could be the issue ?
    Thanks
    Suneesh
    Edited by: Suneesh Raman on Aug 18, 2010 10:14 AM

    I am using jDev Studio Edition Version 11.1.1.2.0 . Infact I need to call a PL/SQL api from the onSubmit method which I set in the action listener of submit button of the form.
    My getConnection method is :
         public Connection getConnection() throws SQLException {
              DriverManager.registerDriver(new OracleDriver());
              Connection con =
              DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","rme_pbkr", "rme_pbkr");
              OracleDataSource ods = new OracleDataSource();
              ods.setUser("rme_pbkr");
              ods.setPassword("rme_pbkr");
              ods.setURL("jdbc:oracle:thin:@localhost:1521:XE");
    System.out.println("::: con = :::"+con);
              return ods.getConnection();
    Does that mean we cannot make a db connection from the actionlistener implementation method ?
    How to put the method in AM implementation class ? Just write a public void method there and call from onSubmit button actionlistener through some binding ?
    Thanks
    Suneesh

  • How can I find out the incoming call and out going call from my orher chine

    How will I know if my friend knows who I call

    It is not you who have blocked them. The caller has opted to block their number from displaying on caller id displays. You can find out who it is by answering the phone. In the future, if the caller dials (I believe) *82 before your phone number (in the us anyway) the number should appear. Ask them to do this in the future. Some medical facilities and women's shelters have caller Id blocked for privacy reasons.

  • Request dispatcher and jsp pages called from servlets

              Given the following webapp directory structure:
              root/
              jsp/
              ..all jsp files
              web-inf/
              classes/
              /servlets
                   ..all servlet files
              /com
              ..all other java class files
              I have the jsp directory coded as: jspdir = "/jsp/" (and have tried variations
              on this theme)
              I try to open a new jsp page with the following code in a servlet in the above
              servlet directory:
                   RequestDispatcher rd;
                   rd = getServletContext().getRequestDispatcher(jspdir + myjsp.jsp);
                   rd.forward(req, res);
              rd continues to return null.
              The jsp pages are not registered in the web.xml file for this webapp, if that
              makes any difference.
              Does anyone have any suggestions?     
              [problem.txt]
              

    I create a small sample and put these files into /jsp in my war context
              it works fine, please send me the example code you are using and the
              environment description of the deployed application
              I attached my samples, that work
              Filip
              ~
              Namaste - I bow to the divine in you
              ~
              Filip Hanik
              Software Architect
              [email protected]
              www.filip.net
              "Bill Blackmon" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Yes, I am able to access the jsp pages with the url listed.
              >
              > "Filip Hanik" <[email protected]> wrote:
              > >The weblogic servlet engine, is by default mapping anything that ends
              with
              > >*.jsp to be a JSP.
              > >so there shouldn't be a problem. You didn't answer my first question,
              > >are you able to access your JSP through the browser?
              > >http://localhost:7001/root/jsp/myjsp.jsp
              > >
              > >Filip
              > >
              > >--
              > >~
              > >Namaste - I bow to the divine in you
              > >~
              > >Filip Hanik
              > >Software Architect
              > >[email protected]
              > >www.filip.net
              > >"Bill Blackmon" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >> The code you are reading in the message here was pasted in and
              > >> looks bad, so maybe that's what you are referring to? The dispatcher
              code
              > >is called
              > >> in the service() method of the servlet.
              > >> I have a suspicion that the jsp directory needs to be defined someplace
              > >-
              > >weblogic.properties
              > >> or web.xml?, though I don't see this in any of the examples that come
              > >with
              > >the product.
              > >>
              > >>
              > >>
              > >> "Simon Ng" <[email protected]> wrote:
              > >> >
              > >> >Hello Bill,
              > >> > Did you put a <BR>
              > >> >return;
              > >> ><BR>
              > >> >statement right after the dispatcher.forward() statement? Well, I am
              > >assuming
              > >> >your
              > >> >code is in the doPost() or doGet() methods.
              > >> >
              > >> >Simon
              > >> >
              > >> >
              > >> >"Filip Hanik" <[email protected]> wrote:
              > >> >>if you do http://localhost:7001/root/jsp/myjsp.jsp
              > >> >>
              > >> >>do you get a result?
              > >> >>
              > >> >>make sure you have the right character case on the filename.
              > >> >>
              > >> >>Filip
              > >> >>
              > >> >>--
              > >> >>~
              > >> >>Namaste - I bow to the divine in you
              > >> >>~
              > >> >>Filip Hanik
              > >> >>Software Architect
              > >> >>[email protected]
              > >> >>www.filip.net
              > >> >>"Bill Blackmon" <[email protected]> wrote in message
              > >> >>news:[email protected]...
              > >> >>>
              > >> >>> Given the following webapp directory structure:
              > >> >>> root/
              > >> >>> jsp/
              > >> >>> ..all jsp files
              > >> >>> web-inf/
              > >> >>> classes/
              > >> >>> /servlets
              > >> >>> ..all servlet files
              > >> >>> /com
              > >> >>> ..all other java class files
              > >> >>>
              > >> >>>
              > >> >>> I have the jsp directory coded as: jspdir = "/jsp/" (and have tried
              > >> >>variations
              > >> >>> on this theme)
              > >> >>> I try to open a new jsp page with the following code in a servlet
              > >in
              > >> >the
              > >> >>above
              > >> >>> servlet directory:
              > >> >>> RequestDispatcher rd;
              > >> >>> rd = getServletContext().getRequestDispatcher(jspdir + myjsp.jsp);
              > >> >>> rd.forward(req, res);
              > >> >>>
              > >> >>> rd continues to return null.
              > >> >>>
              > >> >>> The jsp pages are not registered in the web.xml file for this
              webapp,
              > >> >>if
              > >> >>that
              > >> >>> makes any difference.
              > >> >>>
              > >> >>> Does anyone have any suggestions?
              > >> >>>
              > >> >>
              > >> >>
              > >> >
              > >>
              > >
              > >
              >
              [filipInclude.jsp]
              [filipForward.jsp]
              [filip.jsp]
              

  • How to get string which is return from a method and method is called from a filter

    Can anyone please guide me how i will get a string on a template, this string value is return by method which is called through 'ValidateStandered' filter.
    My problem is when i CheckIn a document, i am implementing some validation of duplicated document and duplicated document is identified by some metadata value.
    if metadata value of CheckIn document(current document) is same with existing document then filter will return ddocname and ddoctitle of existing document on a template(user can see the ddocname of existing item).

    please find error logs also:
    intradoc.data.DataException: !csDbCouldNotBind,getValueOfDuplicateDocument
            at intradoc.jdbc.JdbcQueryUtils.buildQuery(JdbcQueryUtils.java:107)
            at intradoc.jdbc.JdbcWorkspace.buildQuery(JdbcWorkspace.java:736)
            at intradoc.jdbc.JdbcWorkspace.createResultSet(JdbcWorkspace.java:639)
            at CheckInRestrictionFilter.CheckInRestrictionFilter.getResultSet(CheckInRestrictionFilter.java:108)
            at CheckInRestrictionFilter.CheckInRestrictionFilter.doFilter(CheckInRestrictionFilter.java:57)
            at intradoc.shared.PluginFilters.filterWithAction(PluginFilters.java:114)
            at intradoc.shared.PluginFilters.filter(PluginFilters.java:68)
            at intradoc.server.DocServiceHandler.validateStandard(DocServiceHandler.java:1251)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
            at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:324)
            at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
            at intradoc.server.Service.doCodeEx(Service.java:620)
            at intradoc.server.Service.doCode(Service.java:592)
            at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)
            at intradoc.server.Service.doAction(Service.java:564)
            at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)
            at intradoc.server.Service.doActions(Service.java:559)
            at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1346)
            at intradoc.server.Service.executeSubServiceCode(Service.java:4109)
            at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1222)
            at intradoc.server.Service.executeServiceEx(Service.java:4104)
            at intradoc.server.Service.executeService(Service.java:4088)
            at intradoc.server.Service.doSubService(Service.java:3998)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
            at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
            at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
            at intradoc.server.Service.doCodeEx(Service.java:637)
            at intradoc.server.Service.doCode(Service.java:592)
            at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)
            at intradoc.server.Service.doAction(Service.java:564)
            at intradoc.server.Service.doScriptableAction(Service.java:4050)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86)
            at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310)
            at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295)
            at intradoc.server.Service.doCodeEx(Service.java:637)
            at intradoc.server.Service.doCode(Service.java:592)
            at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1693)
            at intradoc.server.Service.doAction(Service.java:564)
            at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)
            at intradoc.server.Service.doActions(Service.java:559)
            at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415)
            at intradoc.server.Service.executeActions(Service.java:545)
            at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751)
            at intradoc.server.Service.doRequest(Service.java:1974)
            at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)
            at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
            at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1355)
            at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1732)
            at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:223)
            at sun.reflect.GeneratedMethodAccessor130.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
            at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
            at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
            at idcservlet.ServletUtils.executeContentServerIntegrateMethodOnConfig(ServletUtils.java:1680)
            at idcservlet.IdcFilter.doFilter(IdcFilter.java:457)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
            at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
            at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
            at java.security.AccessController.doPrivileged(Native Method)
            at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
            at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
            at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
            at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
            at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3739)
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3705)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2282)
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2181)
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1491)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • If notifications are set to "view in lock screen," and I can swipe to access the app, does that mean I then can access everything without logging on?

    I'm concerned with security, so I wonder if by setting my notifications OFF to "view in lock screen" I can then gain access to all other apps as well. That would seem to trade security for convenience. Or does that permit access ONLY to the one app that sent the notification?

    Hey Eric,
    Thanks for taking the time. Unfortunately no that does not solve it. Same as swipe it will get me there and it will show separate programs spaced out. The issue I am having is that all my open word files are bunched up in a pile on top of each other. I can see the edges of each one but I want them to be separated from each other enough that I can visually identify what file is what.
    Again, thanks for trying, it is appreciated.

  • How does ip4s identify and address the caller from Contacts on the outgoing message to a caller?

    A friend has the iP4s and has this featured activated.

    Here ya go:
    http://itunes.apple.com/us/app/youmail/id308331524?mt=8

  • Make and receive voice calls from/to PC with iphone

    Dear,
    I am looking for a app for following :
    I have a PC running Vista or Windows 7
    I have a hardwired headset + microphone connected to the PC (is essential because I am running also a voice operated software tool on the pc).
    I connect my iphone 4 with the pc by USB cable
    I want to make/receive calls by using this PC application.
    Can someone help me with this ? Any alternative ideas ?
    BR
    Dany

    http://support.apple.com/kb/ts2802
    Jackson

  • Java from cmd and Java called from Forms Services

    I apologize in advance if this is not place where i did must question.
    Anyway this is:
    From cmd on win xp If I run java -version I get:
    C:\Documents and Settings\Administrator>java -version
    java version "1.4.2_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_06-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_06-b03, mixed mode)
    While i installed JVM 1.6 and this is called from my forms services(OC4J)
    What I missing?
    Thanks in advance and sorry for my question

    *%JAVA_HOME\bin%* isn't the correct way to add the reference to the JAVA_HOME variable. You want *%JAVA_HOME%\bin*, notice the closing % sign comes after the name of the variable you created earlier (*JAVA_HOME*) and that causes its value to be prepended to \bin.
    Edited by: nogoodatcoding on May 18, 2009 7:33 PM

  • Im visiting alaska and receive calls from other carriers

    Im visiting alaska and cannot receive calls from other carriers. Other than verizon or cricket. Please help. Not even home phones im from texas visiting missing all my calls. I can text and receive text

    The messAge say when someone calls is The number or code you dialed is incorrect

  • Silent Sales calls and International scam calls

    I am registered with TPS. I still get calls from call centres and numerous international calls from "microsoft" etc. The call centre calls seem to be almost all from PPI Claims Companys but most wont respond when asked for details. International calls are almost all scams attempting to obtain bank details and money from unsuspecting persons. I can handle all of these calls but it is the nuisance of receiving these calls almost daily. If I complain to TPS my full name, address and telephone number are supplied to whoever I am complaining about. This is the last thing I want these people to know.
    How can I stop these calls ?. BT want a monthly subscription and state that International calls cannot be blocked. Can anyone advise on how to stop all these unwanted calls ?. I feel like disposing of my landline phone and going all mobile.

    Terryjobling wrote:
    How can I stop these calls ?. BT want a monthly subscription and state that International calls cannot be blocked. Can anyone advise on how to stop all these unwanted calls ?. I feel like disposing of my landline phone and going all mobile.
    Firstly, you are not alone. Many of us have these problems.
    If you subscribe to BT caller display, then " international" calls and "number unavailable" calls are displayed on the screen, (if you are quick enough to read it).
    I have my cordless phone set so that it does not  connect on picking the phone up from it's base.
    You can then decide whether to answer. They can leave a message if it's important. They soon decide that it's not worth the effort ringing your number, and the frequency of calls reduces.
    (If you do answer the calls they know that you are there and will continue to call.)
    Perhaps it's more to add to your phone bill, but it's worth it to reduce the aggravation. 

Maybe you are looking for

  • How do I add "--with-mssql" to my php in 10.5 Server

    Hi, I am afraid of messing something up and would like to know what is the safest way to go about this. I have installed FreeTDS successfully on the mac, so nothing should be standing in my way of getting mssql functions to work in php. Is there some

  • Help with batch processing

    Hi, I am having trouble with batch processing. I want to apply adaptive noise reduction (ANR) to several files from the same source tapes. So, following the help instructions, I create a script from one file. When I try to apply it to the other files

  • RE: Accessing multiple Env from single Client-PC

    Look in the "System Management Guide" under connected environments page 72. This will allow services in your primary environment to find services in your connected environment. However, there is a bug reported on this feature which is fixed in 2F4 fo

  • Encountering STATUS_CODE_ERROR

    Hi, This is the first time I'm encountering this weird error. Every time I try to log in to my Apple ID in the Mac App Store or trying to update an app, an error shows up: "STATUS_CODE_ERROR". Here's a screenshot: https://www.dropbox.com/s/arfk1rpp9e

  • Send notifications during R12 Payment process

    Hello, Does anyone know how to send notifications during the Payment process in R12. For example, I would like to send a mail to the Treasury department after the Payables department is done with invoice selection and confirmation of payments. This e