Modem problem "no dialtone detected" even if wait for dialtone is not check

I am trying to install a external USB modem (mobile) on my PB 17" but when connecting PPP says no dialtone detected even if the box "wait for dialtone" is unchecked and should be according to the modem supplier.
Is there some way to clear or throw away some settings file in order to get the computer to re-think?
Message was edited by: Andreas Sweden

Hello TribeBuckeyeFan, 
After so much research, I'm sure you were excited to pickup a great DSLR camera and be on your way with some accessories due to bundle offers! I'm sorry to hear that you had such a frustrating experience that may have left you disappointed in your visit. 
Per our Price Match Guarantee, we do not price match bundle offers. As bundles are excluded, your local store would have been following the Price Match Guarantee accurately in denying this request. I apologize if this has caused you any aggravation. With that said, we offer many DSLR camera bundles as you've seen that you are welcome to purchase. 
Sincerely, 
Tasha|Social Media Specialist | Best Buy® Corporate
 Private Message

Similar Messages

  • I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    Plawexki wrote:
    ...  do you know if the contacts, photos, messages etc will be wiped?
    Yes... Everything will be Wiped and Replaced with what is currently on Your Mac.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/
    You may find this information of interest...
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • My phone is in recovery mode before its was off and however ifs get on showing connect to itunes  but now in recovery mode its showing itunes is restoring software on phone and and above its showing waiting for phone but not moving further what shold i do

    my phone is in recovery mode before its was off and however ifs get on showing connect to itunes  but now in recovery mode its showing itunes is restoring software on phone and and above its showing waiting for phone but not moving further what shold i do

    Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.

  • Problem: Out-of-memory condition? : waiting for an available stack

    Hello,
    I'm evaluating jrockit and trying to run in ita java application that I normally
    run with the Sun JVM on WinXP.
    After a few seconds I get the message "Out-of-memory condition? : waiting for
    an available stack".
    I'm running it on an Intel machine, WindowsXP 392Mb RAM.
    I have played with different GC options, heap, stack size, native/thinthreads
    but it always stops around the same point. When I turn -Xverbose:codegen on I
    can see that it's trying to compile a method in my own security manager. The message
    is something like that:
    [codegen] 500 84732 5169 de.irt.mhp.security.MySecurityManager.checkRead(Ljava.lang.String;Ljava.lang.Object;)V:
    7583.59 ms
    [codegen] 500 84732 5170 de.irt.mhp.security.MySecurityManager.checkRead(Ljava.lang.String;Ljava.lang.Object;)V:
    7583.59 ms
    [codegen] 500 84732 5171 de.irt.mhp.security.MySecurityManager.checkRead(Ljava.lang.String;Ljava.lang.Object;)V:
    7583.59 ms
    [JRockit]Out-of-memory condition? : waiting for an available stack
    It looks as though it's in a loop.
    This is the code for this method (the super class of the containing class is SecurityManager):
    public void checkRead(String fileName, Object context) {
    try {
    if(context==null) {
    super.checkRead(fileName);
    } else {
    super.checkRead(fileName, context);
    } catch (SecurityException ex1) {
    // If a file in the persistent storage is accessed we need to consider additional
    MAC/DAC possibilities
    ServiceDomainIdentifier sdi;
    sdi=ServiceDomainIdentifierManager.getInstance().get(fileName);
    FileSystem filesys=(sdi==null)?null:sdi.getFileSystem();
    if(filesys!=null && !filesys.checkReadPermission(fileName)) {
    throw ex1;
    I also use many native methods in different libraries.
    Any ideas?
    Thanks,
    Sibelius

    Hello Staffan,
    Thanks for the info. I had v1.4.1_05 and I have now installed v1.4.2_03.
    Unfortunately, the error still happened at the same point in the code, although
    much earlier on, but this time no message was displayed. It was just stuck there.
    However, I changed the code a little bit (I put the catch block in another private
    function) and now everything works. I'm writing the different snippets down. Perhaps
    it would be interesting to find out why it behaves this way.
    So, can you tell why this code won't works?
    public void checkRead(String fileName, Object context) {
    try {
    if(context==null) {
    super.checkRead(fileName);
    } else {
    super.checkRead(fileName, context);
    } catch (SecurityException ex1) {
    ServiceDomainIdentifier sdi;
    sdi=ServiceDomainIdentifierManager.getInstance().get(fileName);
    FileSystem filesys=(sdi==null)?null:sdi.getFileSystem();
    if(filesys!=null && !filesys.checkReadPermission(fileName)) {
    throw ex1;
    But if I write it like following, it works!
    public void checkRead(String fileName, Object context) {
    try {
    if(context==null) {
    super.checkRead(fileName);
    } else {
    super.checkRead(fileName, context);
    } catch (SecurityException ex1) {
    myFunction(fileName,ex1);
    private void myFunction(tring fileName, SecurityException ex1) {
    ServiceDomainIdentifier sdi;
    sdi=ServiceDomainIdentifierManager.getInstance().get(fileName);
    FileSystem filesys=(sdi==null)?null:sdi.getFileSystem();
    if(filesys!=null && !filesys.checkReadPermission(fileName)) {
    throw ex1;
    Thank you!
    Sibelius
    Staffan Larsen <[email protected]> wrote:
    You didn't mention which version of JRockit this happens with (java
    -version). I would suggest you upgrade to JRockit 1.4.2 if you haven't
    already.
    Regards,
    /Staffan
    Sibelius Segala wrote:
    Hello,
    I'm evaluating jrockit and trying to run in ita java application thatI normally
    run with the Sun JVM on WinXP.
    After a few seconds I get the message "Out-of-memory condition? : waitingfor
    an available stack".
    I'm running it on an Intel machine, WindowsXP 392Mb RAM.
    I have played with different GC options, heap, stack size, native/thinthreads
    but it always stops around the same point. When I turn -Xverbose:codegenon I
    can see that it's trying to compile a method in my own security manager.The message
    is something like that:
    [codegen] 500 84732 5169 de.irt.mhp.security.MySecurityManager.checkRead(Ljava.lang.String;Ljava.lang.Object;)V:
    7583.59 ms
    [codegen] 500 84732 5170 de.irt.mhp.security.MySecurityManager.checkRead(Ljava.lang.String;Ljava.lang.Object;)V:
    7583.59 ms
    [codegen] 500 84732 5171 de.irt.mhp.security.MySecurityManager.checkRead(Ljava.lang.String;Ljava.lang.Object;)V:
    7583.59 ms
    [JRockit]Out-of-memory condition? : waiting for an available stack
    It looks as though it's in a loop.
    This is the code for this method (the super class of the containingclass is SecurityManager):
    public void checkRead(String fileName, Object context) {
    try {
    if(context==null) {
    super.checkRead(fileName);
    } else {
    super.checkRead(fileName, context);
    } catch (SecurityException ex1) {
    // If a file in the persistent storage is accessed we need toconsider additional
    MAC/DAC possibilities
    ServiceDomainIdentifier sdi;
    sdi=ServiceDomainIdentifierManager.getInstance().get(fileName);
    FileSystem filesys=(sdi==null)?null:sdi.getFileSystem();
    if(filesys!=null && !filesys.checkReadPermission(fileName)) {
    throw ex1;
    I also use many native methods in different libraries.
    Any ideas?
    Thanks,
    Sibelius

  • Wait for move complete not waiting for timeout

    Hi,
    I am running a small rotary stage with a 7358 motion controller. Occasionally when I command a new position, the "wait for move complete" seems to get triggered almost immediately even though the move is not complete. Since I have put in a "halt" downstream of this to cover the case where the move times out, the move stops immediately. The problems seems interrmittent but I haven't discovered a pattern yet except that is happens for more often when making a reverse move, i.e. I go to 1000 counts as a forward move and then back to 800 as a reverse.
    Has anyone seen something similar?
    Thanks,
    Dave
    David A. Taylor

    oops syntax error! I put waitComplete, but it's supposed to be moveComplete as the last argument for flex_wait_for_move_complete. Just want to let you guys know that. Thanks!

  • IMessage waiting for activation: could not sign in. Please check your network connection and try again

    My iphone 5 randomly began restarting regularly. Since when it has been on my iMessage is unavalibale, when I go on the settings it says waiting for activation when I try to activate with my apple id it says 'could not sign in. Please check your network settings an try again' this is also happening with face time how can I fix this?

    Try backing up then restoring your device on iTunes via your computer, a few other with the same issue have done this and it has fixed the problem for them so it might be worth a shot :)

  • Waiting for activation have not found a way to fix this

    Ok so I'm overseas and I cannot use cellular data because I don't want to get billed a crazy amount however when using wifi the first week I was here I was able to text and face time with no problem. Then we went for a week to the country with no solid internet connection however we set up a very weak hotspot using a tablet, that's when I noticed I wasn't able to text and I saw the message waiting for activation since it took around 5 mins to load a web page I figured it was just a problem with the internet and I ignored it. Now we are back in the city (where we were when it worked fine the first week) and I still have the same problem, I have read countless articles about how to fix this and nothing seems to work the only option I haven't tried is to wipe the phone and restore it with a backup however i can't do that since I am no where near my computer. So is there any one else having the same waiting for activation problem as me? Is there anything I can do, any help would be much appreciated.

    Hello there, Captnpnut.
    The following Knowledge Base article offers up some great, in-depth and practical steps for troubleshooting the "Waiting for Activation" message:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Particularly relevant for your issue:
    If you see "Waiting for Activation", "Activation unsuccessful", or "An error occurred during activation"
    These messages occur when your iPhone is trying to activate your phone number with iMessage or FaceTime.
    To resolve these status messages, follow these steps. After each step, turn FaceTime and iMessage off and on again in Settings > Messages and Settings > FaceTime.
    Update to the latest version of iOS.
    Make sure that you have a cellular network connection with your cellular provider. You need a cellular network connection to activate iMessage and FaceTime with your iPhone phone number.
    Go to www.apple.com in Safari to make sure that you have a data connection. You need a data connection to activate iMessage and FaceTime with your iPhone phone number.
    Make sure that you can send and receive SMS. You need a valid SMS messaging plan to activate FaceTime and iMessage.
    Make sure that FaceTime hasn't been restricted: tap Settings > General > Restrictions > FaceTime.
    Set iPhone to the correct time zone: tap Settings > General > Date & Time.
    Note: If Set Automatically is on but the incorrect time zone appears, turn Set Automatically off and choose the correct time zone, date, and time.
    Contact your carrier to verify that there are no restrictions, blocks, or filters on text messages. Restrictions, blocks, or filters on text messaging will prevent iMessage and FaceTime registration from completing.
    If "Waiting for Activation" still appears after you perform these steps, turn FaceTime and iMessage off and on in Settings > Messages and Settings > FaceTime. You may need to wait up to 24 hours to complete activation. Most attempts will take less than an hour, but some attempts may take up to 24 hours. If your issue isn't resolved after 24 hours, please contact Apple for assistance. If you've recently performed a remote wipe on your iPhone, wait 24 hours from the time you performed the remote wipe, and then turn iMessage off then back on.You can still activate iMessage and FaceTime with your Apple ID when these status messages appear. You can see that you've activated FaceTime and iMessage with your Apple ID by tapping:
    Settings > FaceTime > You can be reached by FaceTime at:
    Settings > Messages > Send & Receive > You can be reached by iMessage at:
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Shopping Cart Workflow - "Wait for change event" not firing?

    Hi there,
    I have a scenario where if I create a shopping cart above my spending limit it will go into the approver's inbox, that is fine.
    Now if I change the total value of the shopping cart to be within my spending limit the original workflow should be "logically deleted" and a "no step approval workflow" should be triggered.
    I see when the SC workflow triggers it also branches with a "wait for events", so that if it changes etc it will get caught here.
    When I change the SC it does not do anything, the value of the cart changes but it still sits in the approvers inbox and the "no step approval workflow" does not trigger.
    We are busy upgrading to SRM 5.0, it worked perfectly in the SRM 3.0 system we had.
    Any ideas what would cause the "change event" not to fire?
    Thanks for the help
    Lynton

    Hey Masa,
    You are the man!! That solved it.....I have implemented the BBP_WFL_SECUR_BADI and for whatever reason I set the security level to 4 when it should have been 2.
    4     "High" (workflow is never restarted when changes are made)
    3     "Medium" (WF restarted conditionally when changes are made)
    2     "Low" (workflow is always restarted when changes are made)
    1     "None" (changes to the object are not allowed)
    0     "Not defined"
    Thanks for the help
    Lynton

  • My new macbook pro (Mountain Lion) will not log into my 1and1 server to connect to my e mail. My snow leopard macbook does not have this problem - Apple support say it is a 1and1 problem! do I have to wait for an update of Mountain Lion?

    My new macbook pro (Mountain Lion 10.8.1) will not log into my 1and1 outgoing mail server. ( It will receive mail - but does not send)My old Snow Leopard macbook does not have the same problem ( server settings etc. are identical) . Apple Support say its a 1and1 problem , 1and1 say it is an operating System prob - I have tried changing port numbers.

    My eyes just glazed over...Please in the future break down each of your issues with paragraphs separated by two carriage returns. It would be much easier when trying to address your issues.
    Go to Apple menu -> System Preferences -> Keyboard and Mouse -> Mouse
    And edit your mouse settings to do what you want it to do.
    Secondly, this is not the place to vent. If you have a complaint, there is:
    http://www.apple.com/feedback/
    or http://www.apple.com/contact/
    We are just end users here helping other end users.
    Third, from my understanding, it would appear you are concerned about the noise the hard drive makes when it falls asleep? Why not put your machine in screen saver mode instead? Apple menu -> System Preferences -> Energy Saver turn off all Energy Saver settings, or set them to run Never.
    Fourth, if your machine was purchased just a few days ago, you may still be able to get an exchange from the store, quicker than you can get a repair done. You may want to look into that possibility.
    Fifth, it does appear you found the Logic forum. I would persist in asking there how to solve your technical issue with Logic regarding the audio. It may be you don't have to do anything special to the hard drive. Remember audio can be transmitted by wire, avoiding ambient sounds.
    Good luck!

  • My Imac isnt turning on.. anyone have this problem? I havent even had it for a year yet!

    i've tried pressing and holding the button for 30 seconds, i have tried making sure there is power in the outlet- there is.. Other things like the printer and lamp all work when plugged in, but all the sudden my imac wont turn on.
    PLEASE HELP!

    Amplifying on Allen's remark, contact Apple Service, iMac Service or Apple's Express Lane.
    Once you get it resolved, you can find more info by clicking on the Apple icon upper, left-hand corner->About this Mac->More info.
    BTW, get the AppleCare protection plan. Cheapest and best insurance policy available for desktop machines.

  • So i was at school and my phone completely died i plug it in and i cant get past the apple logo even after waiting for along time how can i get passed this ???? please help

    my iphone died completely and when i plug it in i cant get passed the apple logo ; helppppppppppppppp

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...

  • "Wait for sound" code not working in Mac OS X with 11.5

    Here is the code:
    on exitFrame me
         if sound(1) status <>0 then go to the frame
    end
    This worked fine in Director MX 2004, but in Director 11.5 it is causing unpredictable results in Mac OS X (works fine in Windows). Sometimes it stalls on the frame, sometimes it ignores the code, etc. Can someone suggest a solution here? The code should pause the playhead until the sound completes in channel one, then move onto the next frame (like the old "if sound busy" code). Thanks in advance for any help with this. I did search this forums and could not find this issue addressed.

    I may have answered my own question. Does anyone see a problem with this code?
    onexitFrame.me
         if (sound(1).isBusy())then
         _movie.go(_movie.frame)
    end if
    end

  • Detection of MS 982726 for 64bit Office not correct

    Was trying to figure out why the filter update for 64bit windows is showing
    up for all our devices when we are using 32 bit Office 2010. Checked out
    the debug.log and noticed both the 32 and 64 bit detections of the patch are
    looking in the same location. The 64 bit should not be looking in the
    'Program Files (x86)' but in 'Program Files'
    Filename : [MS 982726 Outlook 2010 Junk E-mail Filter Update (December 2012)
    (All Languages) (64Bit).pls]
    OS Platform : [Microsoft Windows 7 Professional x64]
    Library Build : [5.2.2][Sep 25 2012 16:01:07]
    Finished Importing
    Detecting
    File [C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE]
    File Version Found: [14.0.6109.5005], Check Against: <= [15]
    File Version information within specified range
    File [C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE]
    File Version Found: [14.0.6109.5005], Check Against: >= [14]
    File Version information within specified range
    File [C:\Program Files (x86)\Microsoft Office\Office14\OUTLFLTR.DAT]
    File Version Found: [14.0.7605.1090], Check Against: >= [14.0.11829.524]
    File Version information NOT within specified range
    Finished Detecting
    Opening file:
    MS 982726 Outlook 2010 Junk E-mail Filter Update (December 2012) (All
    Languages).pls
    Importing
    Filename : [MS 982726 Outlook 2010 Junk E-mail Filter Update (December 2012)
    (All Languages).pls]
    OS Platform : [Microsoft Windows 7 Professional x64]
    Library Build : [5.2.2][Sep 25 2012 16:01:07]
    Finished Importing
    Detecting
    File [C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE]
    File Version Found: [14.0.6109.5005], Check Against: <= [15]
    File Version information within specified range
    File [C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE]
    File Version Found: [14.0.6109.5005], Check Against: >= [14]
    File Version information within specified range
    File [C:\Program Files (x86)\Microsoft Office\Office14\OUTLFLTR.DAT]
    File Version Found: [14.0.7605.1090], Check Against: >= [14.0.11829.524]
    File Version information NOT within specified range
    Finished Detecting
    Jim Koerner
    Server - ZCM 11.2.2 w/MU1 and Internal Database on Win2008R2x64
    Client - ZCM 11.2.2 w/MU1 on Win7SP1x64

    I will, but my track record on patch fixes is pretty dismal. My system
    management patches on 64bit machines SR has been going on for 8 months but
    supposedly fixed in 11.2.3 and a most other patch SRs were multiple months.
    That’s the main reason I laid off new SRs for them.
    They seem to have a real low priority which I can understand if you are
    talking about a single patch with issues.
    Jim
    "Shaun Pond" wrote in message
    news:[email protected]..
    Jim,
    can you open SRs for these? It's the quickest way to get them updated
    Shaun Pond

  • How can I allow pop-ups even after "Block pop-ups" is NOT checked?

    When I'm on the Google Drive website (https://drive.google.com/) and I click Create > Document, I get the following message:
    "Firefox prevented this page from automatically redirecting to another page."
    My only options on the far right are "Allow", and "[X]" to exit.
    The URL for any new document starts with "https://docs.google.com/".
    Seeing as creating a new Google document forces a new tab to open, I felt that this would fall under "pop-up windows".
    Help, please!

    This is not because of a blocked popup.<br>
    This is an accessability setting.
    You can turn this off, by following these steps:
    #Go to the Firefox Options
    #Select the General Tab
    #Uncheck the Warn me when websites try to reload...
    Please report back soon.

  • "Waiting for real-time target (RT PXI target) to respond" error when the program waits interrupts

    Hi there,
    I have developed an application to detect interrupts generated by a electronic card and act in consequence. The program has been developed in labview but it calls a dll; that was created with labwindows. The dll is programmed to open the visa communication, enable events and install the interrupt handler and when an interrupt is detected, it reads the value of the different registers of the card and returns it to labview to visualize them. 
    The problem is that when the program waits for an interrupt, a prompt appears with the message "Waiting for real-time target (RT PXI target) to respond" and the only option I have is to click on the button to disconnect from the pxi or just wait. If I wait and I generate an interrupt, the prompt disappears and the application visualize the data like it was expected. 
    To wait for the interrupt the following code has been programmed in the function:
                    while (flag == 0)
                                    Sleep (1000);
    When an interrupt occurs, the value of flag changes to 1 and the function continue without any problem. I am not really sure, but probably here is the problem and probably this is not the best way to wait for an interrupt because the sleep function suspends the thread for the configured time, but at least the computing load in the PXI is between 0% and 1%. I was wondering if somebody knows how to wait for an interrupt without "lost" the communication with the PXI and if there is a better way to do it. 
    Any answer will be welcome and thanks for them,
    Jaime
    Solved!
    Go to Solution.

    Hello Naity,
    First of all, in which thread runs the waiting process? Is it scheduled in another thread than the function setting the flag?
    It scheduled in the same thread that I use to configure the communications and configure the card. Anyway, here is the pseudo code of the function interrupt that I programmed under labwindows,.
    char* interrupt(void)
    1. Open visa communications
    2.Install handler interrupt --> status = viInstallHandler (instr, VI_EVENT_PXI_INTR, IntrHandler, VI_NULL);   // the function IntrHandler will be called when an interrupt occurs
    3. Enable event PXI interrupt
    4. Wait
    while (flag == 0)
                  Sleep (1000);
    5. Visualize the data coming from the interrupt (registers and values measured with the card)
    6. Uninstall handler interrupt
    7. Close visa session
    The interrupt handler function IntrHandler is called immediately when an interrupt occurs and the pseudo code is like this
    ViStatus _VI_FUNCH IntrHandler(ViSession instr, ViEventType etype, ViEvent event, ViAddr userhandle)
    1. Disable some functions of the card to avoid damages. 
    2. Read registers and put them in a buffer
    3. Change the value of flag ---> flag = 1;
    In labview, I call the function interrupt with a call library function node (see the capture attached) and the program reads and saves the data from returned from the function.
    Secondly, I am not sure this method is the most elegant. You could for example register an event with the function and, insteand of setting a flag to 1, trigger the event and schedule it in another thread (if the function is thread safe). This could reduce your CPU Load even more and seem a bit cleaner to me.
    I've never used events before in labwindows but I will try to do it in this way. But anyway, I suppose that I should; somehow, wait the event to occurs in labview while the waiting for the event is programmed inside the dll...and probably the same prompt that i am trying to avoid is going to appear again, because I am not returning the "control" to labview (I mean, labview executes the dll and waits for the event to occur. Then the execution of the labview program is stopped in the call library function node executing the dll)
    Third point, which environment of development are you using?
    I am working with LV 2010 sp1 and Labwindows cv 10.0.1 and with the real time module.
    I did also another test, I divided the program in different functions, one to initialize the communication, another to wait until a interrupt has been detected and the other to obtain the data from the interrupt and close communications. With labview I call first with the call library function node the function to initialize, later I call inside a while loop the wait function like this
    int waitAseconds (double seconds, short stop_waiting)
    if(flag==1 || stop_waiting == 1)
    flag = 1; //to detect the stop_waiting button
    printf("flagAA =1 stop waiting = %d time = %d\n", stop_waiting, clock());
    return flag;
    else
    SleepUS(seconds*1000000);
    //a++;
    printf("flag a= %d stop waiting = %d time = %d\n", flag, stop_waiting, clock());
    return flag;
     and when the program detects an interrupt, the function returns to labview the flag and stops the loop. Finally, it reads the values and close communications. 
    In this way, the prompt appears but after running the application for 10 or 20 minutes and also i checked that there is a time gap between the executions in the loop.
    Thanks for your reply and your help,
    Jaime
    Attachments:
    capture.png ‏40 KB

Maybe you are looking for

  • Iphoto unable to import images from card or from desktop

    A recent update to the operating system for my imac with Maverick has rendered my iphoto incapable of importing images, creates a mirror shift of the frontpage as it is opened up and requires a long time for iphoto to open. When I try to import a pho

  • AR Aging vs. GL

    Hello all, At March 31, 2009 our Year End, we ran an aging report, the report did not match our GL. The report was out by (29.60)usd and no trace of that amount in the report. After running the report today it balances and we have found the USD curre

  • Update and Case Statement

    Dear All, I got stuck with the following statement. The error "ORA-00904: "DOC"."CRED_RPT_RCPT_IND": invalid identifier" seems make no sense. I checked the column and it looks right to me. Can someone help? Thanks! SQL> update zz_supplier_documentati

  • Authority Check on B_USERSTAT not working

    Hi Gurus, I have a simple question on authority check that I cant quite understand. Basis has created auth key : ZWP_CCS, where by user with the auth key can create,change, delete. so, in my code, I have implemented the following. However, it seems t

  • Script for copying contracts

    Looking a script to copy contacts from outlook 2010 to office 365. Thanks This topic first appeared in the Spiceworks Community