ORDS Template with parameter does not work

Hello everybody,
I can not get working a RESTful Service using the ORDS_SERVICES -API (ORDS version 3.0.0.343.07.58), same Query without parameter (hardcoded product_id) works fine.
declare
l_module_id number;
l_template_id number;
l_handler_id  number;
l_parameter_id number;
begin
ORDS_SERVICES.delete_module(p_name => 'test_parameter');
l_module_id := ORDS_SERVICES.create_module(p_name => 'test_parameter',
                            p_uri_prefix => '/test_parameter',
                            p_items_per_page => 10,
                            p_status => 'PUBLISHED',
                            p_comments => null);
l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                           p_uri_template => '/demo_product_info_10/',
                           p_priority => 0,
                           p_etag_type => 'HASH',
                           p_etag_query => null,
                           p_comments => null);
l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                           p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
         p_source => 'select mimetype, product_image from demo_product_info where product_id = 2',
         p_format => 'DEFAULT',
         p_method => 'GET',
         p_items_per_page => null,
         p_mimes_allowed => null,
         p_comments => null);
/* now same result but with parameter */
l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                           p_uri_template => '/demo_product_info/{product_id}',
                           p_priority => 0,
                           p_etag_type => 'HASH',
                           p_etag_query => null,
                           p_comments => null);
l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                           p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
         p_source => 'select mimetype, product_image from demo_product_info where product_id = :product_id',
         p_format => 'DEFAULT',
         p_method => 'GET',
         p_items_per_page => null,
         p_mimes_allowed => null,
         p_comments => null);
l_parameter_id := ORDS_SERVICES.add_parameter(p_handler_id => l_handler_id,
                           p_name =>  'product_id',
         p_bind_variable_name => 'product_id',
         p_source_type => 'URI',
         p_param_type => 'INT',
         p_access_method => 'IN',
         p_comments => null);
commit;
end;
The first template works fine:
http://localhost:8080/ords/xxx/test_parameter/demo_product_info_10/
shows a jpeg image of a wallet.
The second template does not work:
http://localhost:8080/ords/xxx/test_parameter/demo_product_info/10/
fails with error:
mapped request using: BasePathMapper [basePath=/xxx/] to: SCHEMA:apex|XXX
Choosing: oracle.dbtools.http.dispatch.DispatchMetaData as current candidate with score: MetaDataScore [score=0, matchedMethod=  GET: {10299, false}
  common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
, matchedPattern= /test_parameter/demo_product_info/{product_id}
common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=null, pagination=null, requiresPrivilege=null, transport=null]
methods:
  GET: {10299, false}
  common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
stack trace:
oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: INT
at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
at oracle.dbtools.http.filters.FilterChainImpl.doFilter(FilterChainImpl.java:51)
at oracle.dbtools.http.cors.CORSFilter.doFilter(CORSFilter.java:35)
at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
I changed the add_parameter-call p_param_type => 'INT' to be  p_param_type => 'STRING'
then error remains the same and strack trace says
oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: STRING
at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
Could you please confirm and fix,
kind regards,
Tom

This is a guess, but I suspect that ords_services.add_parameter() is not required at all.
Also, your URL /demo_product_info/10/ should not have the trailing slash (according to your template URI).
For more information, I suggest you look here:
ords.3.0.0.343.07.58.zip\ords.war\scripts\migrate\core\ords_migrate.plb
The migration package will show what is usually done for templates that already exist within APEX 4.2. I checked my templates and the ones with URI variables {in-curly-brackets} contain no records in apex_040200.wwv_flow_rt$parameters.
-Kris

Similar Messages

  • Save a published Access services database site as a template with contents does not work

    Hi
    I have a Access site on the SharePoint. I wanted the site to be duplicated to another subsite, I then did the usual - save site as a template with contents and made a copy of it, however it does not work. I have been getting the error as stated below
     error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'Default'. (rsErrorExecutingCommand)
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    However, it works if I make a local copy and publish it to the subsite? How does access services work on SharePoint and why the template option can't be chosen.

    Hi cally, check the following links for possible solutions:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/1e2b77ba-4cfa-4aa3-97e4-b7b39fbd46fd/error-with-ssrs-report-that-has-a-sharepoint-list-data-connection-ssrs-r2-and-sharepoint-2010?forum=sqlreportingservices
    http://blog.mikehacker.net/2012/05/16/sharepoint-2010-access-services-reporting-with-sql-2012/
    cameron rautmann

  • Date parameter does not work in SharePoint 2010 report using SQL 2008 Server Reporting Service

    Here is the settings:
    SharePoint 2010 with SQL server 2008 reporting services configured
    When create a report for a SP list using SQL server report builder (3.0) the date parameter does not work.
    The data parameter is set as "date and time" type and field name equals the col name in the SP list
    When run the report, the whatever dates I select, the result is always the same, so the parameters do not take any effect.
    Is any step missing?
    Thanks for any advice !

    Hi ,
    How did you configure you "date and time" type parameter and field name equals the col name in the SP list?
    Have you tested if other type parameter worked?
    Have you tried typing the date format as 20140722 in your date parameter filed before run the report?
    http://whitepages.unlimitedviz.com/2012/02/using-sharepoint-filters-with-reporting-services-parameters-for-personalized-reports/
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • HT4235 iPod nano 6th generation, syncing with audiobooks does not work now, had been working.  Sync test says:  No iPod touch, iPhone, or iPad found.  Connectivity test OK, no physical problems, iTunes shows the iPod.  Any clues what to do?

    iPod nano 6th generation, syncing with audiobooks does not work now, had been working.  Sync test says:  No iPod touch, iPhone, or iPad found.  Connectivity test OK, no physical problems, iTunes shows the iPod.  Any clues what to do?

    Hmm.. Thank you for the response.
    Have you tried using the iPod with another user account or computer, to help narrow down whether the problem lies with the computer, account, or the iPod itself?
    Maybe try reformatting it, using the tools provided by Windows. Instructions on how to reformat your iPod can be found in this article.
    http://www.methodshop.com/gadgets/ipodsupport/erase/index.shtml
    B-rock

  • Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. Thanks.

    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work. Please help. I am getting lots of spelling errors as the MacBook laptop screen is too small. Thank you so much! .

    Contentmom6 wrote:
    Brand new Mac user help please! How do you connect a 17" monitor to the MacBook? I have the monitor plugged into the Mac, but the F8 that I am used to with PC does not work.
    Normally, you just connect the monitor to the MacBook using a VGA adaptor that you can buy from an Apple Store.  Now try System Preferences > Displays > Detect Displays.  You should now be able to select a display mode for the monitor.  If it still doesn't work, then I'd check that everything is properly connected.  I've had problems with colours disappearing due to a faulty connection in the VGA adaptor.
    Bob

  • Serial number provided with download does not work, now what?

    serial number provided with download does not work, now what?

    Chrish29593217 you are welcome to contact our directly at Contact Customer Care.  What Adobe software title are you facing difficulties with?

  • Hello, all of a sudden I fell down my system and completely erased all bookmarks. Your progress with restoration does not work, send me ansver,please

    Hello, all of a sudden I fell down my system and completely erased all bookmarks. Your progress with restoration does not work, write me of bookmarks could not be loaded. Please advice on everything because I came and they seriously need it.

    Did your computer crash or did Firefox crash causing the loss of the bookmarks?
    You can check for problems with the places.sqlite database file in the Firefox Profile Folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    See also:
    *http://kb.mozillazine.org/Lost_bookmarks
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes

  • Sorting based on a parameter does not work

    Hi All
    I am using BI Publisher Reports with Siebel CRM 8.1.1.6. I have declared a parameter called "inputsort" in the CRM application as well as in the template by using <?param@begin:inputsort?> within the template. I can display the current value of the parameter using <?$inputsort?> without issues.
    However, when I try using this parameter for sorting, it doesn work:
    The report is created for a list of event attendees. When I do this, sorting works:
    <?for-each:EeventsEventCheckAttendee?><?sort:ContactLastName?>
    BUT when I do this, sorting does not work:
    <?for-each:EeventsEventCheckAttendee?><?sort:$inputsort?>
    although the parameter $inputsort does have a value of "ContactLastName".
    What could be the reason??

    never mind, I found the solution myself. For some reason, the correct way is:
    <?for-each:EeventsEventCheckAttendee?><?sort:./*[name(.) = $inputsort]?>
    I don't know why, but it works.

  • Web template with HTML framset not working after transport

    Hi,
    I've built a frameset which consists of two web-templates (role-menu and content area) those two are combined together using plain HTML which does not acontain any web items (uploaded via WAD). This works fine in development. After transporting to our QA environment all the templates have been transported with concode 0, but the frameset does not get loaded. I always get an "Error loading template ...". The two templates which contain web items work fine when used stand-alone.
    When looking in transport connection I see the following message:
    "Object ZWF_WEB_FRAMESET (Web Template Name) could not be collected for object ()"
    I also see the same behavior on another transport of a template. Nine out of ten ar fine, but one, all are exact copies - only the query used is different, does not work either. The query that is used has been transported and is working.
    Has anybody an idea what could cause this?
    Is there a way to regenerate templates (like RSRT for queries) ?
    Thanks in advance
    Bernd Dümmel
    KODAK Stuttgart
      using ve created a

    Did you upload the video?
    Did you provide the correct path to your HTML object?

  • Synching contacts with Outlook does not work

    I have a Mac (with the contacts application), an iPhone and an iPad as well as an iCloud account. Synching contacts between all 4 of them works perfectly. However, synching contacts with Outlook 2011 does not work anymore. It used to, then I had some trouble with the synching with the iCloud (due to the fact that I had to change the Apple ID from the one I use for iTunes to the one I use for the Cloud), and since then contacts do not replicate with Outlook anymore. I can deactivate and reactivate the synching in Outlook as much as I want, no change.
    Any ideas? Thanks!

    So it sounds like you have contacts from multiple mail accounts syncing to/from your iPhone.  They will all appear there as long as their respective accounts are checked under contacts/groups(upper left of contact screen).
    As far as contacts created on the iPhone, if you select Outlook as your default account for contacts, all contacts created on the iPhone will sync with Outlook.  I'm assuming your Outlook syncs with an Exchange Server.
    You could connect the iPhone to iTunes and sync all of your contacts to say, a desktop version of Outlook.  You could then import that set of contacts into the Exchange version of Outlook.

  • Sync with Itunes does not work

    Hi,
    I reinstalled latest Itunes completly but still sync with outlook 2007 does not work.
    Itunes says Sync finished, but nothing is synced.
    Here is the log:
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ===================
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] iTunes.exe begins
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ===================
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] "C:\Programme\iTunes\iTunes.exe"
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ALLUSERSPROFILE=C:\Dokumente und Einstellungen\All Users
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] APPDATA=C:\Dokumente und Einstellungen\mispde\Anwendungsdaten
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] asl.log=Destination=file;OnFirstLog=command,environment
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] CIHOLOSCLI=C:\Programme\Seagate Software\Open Olap\
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] CLASSPATH=.;C:\Programme\Java\jre6\lib\ext\QTJava.zip
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] CommonProgramFiles=C:\Programme\Gemeinsame Dateien
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] COMPUTERNAME=MISPDE0
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ComSpec=C:\WINDOWS\system32\cmd.exe
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] FPNO_HOSTCHECK=NO
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HARVESTHOME=C:\Programme\CA\AllFusion Harvest Change Manager
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HOME=C:\Programme\Computer Associates International, inc.\CCC Harvest
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HOMEDRIVE=C:
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HOMEPATH=\Dokumente und Einstellungen\mispde
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] LOCALHARVESTHOME=C:\Programme\CA\AllFusion Harvest Change Manager
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] LOGONSERVER=\\ERLCNDC1
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] NewEnvironment1=C:\Programme\Vodafone\Vodafone Mobile Connect\"Optimization Client"
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] NUMBEROFPROCESSORS=2
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] OS=Windows_NT
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] Path=C:\Programme\Gemeinsame Dateien\Apple\Apple Application Support\;C:\Programme\Gemeinsame Dateien\Microsoft Shared\Windows Live;C:\Programme\CA\SharedComponents\PEC\bin;C:\WINDOWS\system32;C:\WINDOWS;C: \WINDOWS\System32\Wbem;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;C:\oracle\ora102\bin;L:\deployment files\runtime;L:\development\client;D:\FOUNDA~1\fnd301\deployment files\runtime;D:\FOUNDA~1\fnd301\development\client;C:\Programme\Samsung\Samsun g PC Studio 3\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Programme\CA\AllFusion Harvest Change Manager;C:\Programme\QuickTime\QTSystem\;C:\Programme\Gemeinsame Dateien\Microsoft Shared\Windows Live
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PERL5LIB=C:\oracle\ora102\perl\lib\5.8.3\MSWin32-x86;C:\oracle\ora102\perl\lib\ 5.8.3;C:\oracle\ora102\perl\5.8.3\lib\MSWin32-x86-multi-thread;C:\oracle\ora102\ perl\site\5.8.3;C:\oracle\ora102\perl\site\5.8.3\lib;C:\oracle\ora102\sysman\adm in\scripts
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_ARCHITECTURE=x86
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_LEVEL=6
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_REVISION=0f0b
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ProgramFiles=C:\Programme
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] QTJAVA=C:\Programme\Java\jre6\lib\ext\QTJava.zip
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] RTARCH=i86_w32
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] RTHOME=C:\Programme\CA\SharedComponents\PEC
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SESSIONNAME=Console
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SQLBASE=C:\Oracle\ora102\NETWORK\ADMIN
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SystemDrive=C:
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SystemRoot=C:\WINDOWS
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] TEMP=C:\DOKUME~1\mispde\LOKALE~1\Temp
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] TMP=C:\DOKUME~1\mispde\LOKALE~1\Temp
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] TNS_ADMIN=C:\Oracle\ora102\NETWORK\ADMIN
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERDNSDOMAIN=CORPNET.IFSWORLD.COM
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERDOMAIN=CORPNET
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERNAME=mispde
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERPROFILE=C:\Dokumente und Einstellungen\mispde
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] VS90COMNTOOLS=C:\Programme\Microsoft Visual Studio 9.0\Common7\Tools\
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] windir=C:\WINDOWS
    [3068 @ Wed Jun 09 10:45:52 2010] [(unknown facility) iTunes.exe] receive_message: Could not receive secure message: -1
    [3068 @ Wed Jun 09 10:45:52 2010] [(unknown facility) iTunes.exe] readthread: Could not receive message
    [7028 @ Wed Jun 09 10:47:00 2010] [_ISDVLog SyncServer.exe] Cancelling all sync plans.
    [7028 @ Wed Jun 09 10:47:00 2010] [_ISDVLog SyncServer.exe] Goodnight, Gracie.
    Please help me!

    *I just spoke with two different senior advisors from Apple one whose name was Matt and the other whose name was Zachary. They both were extremely rude and were not helpful at all. I explained the same exact scenario to them about how I just updated to iTunes 9.1.1 and that now my iPhone will not sync.*
    The ONLY help they could give me was to purchase a plan for either 29.99 or 69.99
    The reason no one from Apple will help us is because this company is based on greed. I am sure they knew about this bug that prevents thousands of users from syncing but I am also sure they assumed that we would pay the 29.99 or 69.99 for them to fix the problem. I honestly feel as though this is a scam to make more profit off of us.
    There is absolutely NOTHING they can do to help they said except for me to purchase one of those two plans they offer. My question is WHY THE **** SHOULD I PAY FOR SOMETHING THAT I AM NOT AT FAULT FOR? It should be there moral duty and responsibility to fix this bug yet because they know they will profit from it they have no intentions on doing so. The only thing I can really suggest is calling Apple and telling them how you feel. The more people who voice there opinions the better (just be prepared for them to tell you the ONLY thing they can do to fix the problem THEY created is by making YOU pay more money to fix it).
    I am extremely disappointed as a loyal Apple customer and this has seriously made me reconsider ever buying another Apple product.
    This company is morally and ethically wrong.

  • Sending by mail an Invoice with VF02 does not work

    Hi guys,
    When using VF02 to send by mail an invoce form, the functional consultant is in trouble since it does not work. I am ABAP consultant, and before starting to debug the huge amount of lines of code behind this transaction, I think there might be a more straight solution. When setting the invoice number and entering this transaction, we accessed Goto->Header->Output. The output table to enter our fields appears. Here we set ZXXX as output type and External send like the Medium. When I press enter, the line is automatically filled with the rest of fields. Then we go to Further Data and choose the Send Immediatelly (when saving the application) option. Get back and press Save button. After it, a message "Please enter a communication strategy" is shown and the SD consultant told me that the correct option is MAIL (in fact, this option is part of the F4 help, with "email" as descriptive text) in the Communication strategy field. She told me it should be all to send a mail with the invoice. We did not fill the Logical destination nor checked "Print immediatelly" or "Release after output" checkboxes since they are not useful in this case. So when finally Save button is pressed, a message appears: " ", and then a dialog box appears with the following message: " Express document "Update was terminated" received from author "GILBERTO PARGA"". The mail received in my inbox is only a error message with title "Update was terminated" and the content is the following:
    Update was terminated
    System ID....   XXX
    Client.......   999
    User.....   SOMEBODY
    Transaction..   VF02
    Update key...   XXXXXXXXXXXXXXXXXXXXXX
    Generated....   12.05.2011, 20:37:27
    Completed....   12.05.2011, 20:37:27
    Error Info...   Output device not defined.
    The system is SAP ECC 6.0. Note that the message indicates no output device was defined, but since we are using email instead of print output, it does not matter. I have filled the field with the same result. I have read from Internet it could be a configuration trouble (the SD consultant checked it before, according herself) or even a Basis issue. Anyway, do you know the possible causes and possible solutions (like OSS Notes) for this trouble? The print output works fine, by the way.  Thank you all for your help.

    Hi,
    If you maintain method EXTERNAL SEND then in communication method you have to specify Communication strategy as CS01(Internet/letter)
    If you maintain method simple mail then in communication method you have to maintain RECIPIENT and RECIPIENT TYPE
    Also check the number range assignment for billing type for error "Update was terminated"
    you might be assigned numbers which are already consumed.
    kapil

  • IPad with Verizon does not work in Alaska.

    If you live in Alaska and considering an iPad with Verizon don't do it.  It does not work anywhere in Alaska.  I recently purchased an iPad while travelling in the lower 48.  The Apple sales people displayed the Verizon coverage map which displays wireless coverage for the populated parts of Alaska but what they missed is that you have to change the map to the Verizon Pre-Paid coverage and look for purple colored areas.  There are none for Alaska.  The map defaults to Extended 3G coverage in Alaska but that does not apply to the iPad.
    I was on the phone with one of their Pre-Paid support people and they confirmed no coverage for Alaska.  By the way, the Pre-Paid phone support is at 888-294-6830 but that number is not accessible from Alaska.  From Alaska you have to first call 800-922-0204, Option 6, ask to be transferred to the Pre-Paid support number.  Verizon - Alaska is a state of the USA!!!!
    So all I can do is use the thing via my home wireless network.  I cancelled the data plan and will need to turn it back on when I again travel south.  Looks like I should have stuck with AT&T.  At this point I have to return the iPad and get one specific to AT&T.
    DG

    So I finally figured out how to access my Verizon account on their web site.  There is actually a phone number associated with the account.  My iPhone is with AT&T so the Verizon iPad is my first experience with Verizon.  I looked for the plan you mentioned but don't see it.  Can you provide more detail?  What I currently have is what Verizon calls the "Prepaid Cellular Data" plan.  That gets me 1GB of data per month and it automatially renews each month billed to my credit card.  Is that the same?  If so then the Extended 3G network does ot work here in Alaska.

  • Application Parameter does not work on migrating

    We have encountered this various times.
    When we add an application parameter to an existing application, it does not work on migrating.
    We have to make a new service (application) and then attach the parameter to it, then it works.
    What is the reason for this behavior?
    Eg: I added the parameter WDDISABLEUSERPERSONALIZATION and set it to X in development. Works fine there. On migrating to UAT, it does not work. What's amiss?
    Thanks in adv.

    Hi Aishi,
    maybe SAP Note [1332644|https://service.sap.com/sap/support/notes/1332644] "WDA Application Parameters are not changed in all clients" might be helpful in your case.
    Best regards,
      Andreas

  • Show/hide Menue with Alt does not work @ Ubuntu

    The shortcut does not work with Ubuntu, nothing happens when I press Alt

    The doubling is weird. I cannot produce that. Forgive the repetition, but stated a little differently, in normal mode start with the cursor on the desired center point, depress the left mouse button, drag out to any starting shape and position, then depress and hold down the ALT key. The shape should then reposition itself so that its center is the initial point you chose. Without letting up on either the mouse button or the ALT key, drag the mouse to get the shape and size you want. Now release the mouse button FIRST, and then the ALT key. If that doesn't hack it, you've got a more interesting problem and we'll do some more head scratching,

Maybe you are looking for

  • How to set a background color to view

    Hi All,           i creared a view with 2 textboxes and a button.These elements are in TransparentContainer.I set the background color to the TransparentContainer.By setting color to the TransparentContainer it is comming at the center and the 4 side

  • Omni 10 Windows 8.1 won't always charge

    Recently my Omni 10 has been intemittently refusing to begin charging when the power adaptor is connected.   When this occurs, the battery must completely drain before it will begin charging.  The charging brick is not getting hot.  I tried disabling

  • Cannot Load the iTones Store page from iTones and collect apps Update

    My iTune account and credit card am belonging to Hong Kong, but often travel to different countries. I have recently purchased iPhone and MacBook Pro, and also purchased some apps when I was staying in Hong Kong. This week I visit Singapore and notic

  • Exclude Materials with only 1 PO count

    Hello experts, I have a multiprovider with 5 DSOs corresponding to 5 Logical SOurce systems. All DSOs have a similar structure..like ..... Logical Source System, PO number , PO item, Material, quantity, price.......... In a query I wish to compare pr

  • How do I move photos that I've already imported?

    I've imported some photos to the wrong folder.  I could use IOS Finder to move the photos, but I worry that the links to LR will be loss.  How do I move photos within LR? Thanks,