World package / Russia city package

Hello!
We have a problem with our skype account.
We had the Europe package and used it for calling to the Russian Federation. Everything was fine, but since yesterday its already not possible to call to the Russian Federation with this package.
So I cancelled this package and choosed the Russia city package including Moscow and St. Petersburg.
I received an e-mail that everything worked good and that this package is already active.
The problem is, that when I am calling to Moscow now, money writes off from my skype account for every minute of my call.
Where could be the problem? Someone can help?
Thanks

Hello,
I am also experiencing problems with my Unlimited Russia Cities subscription. The latest order for this 12 months subscription has been delivered on September 17th, but since the 1st of October i cannot make any call to Moscow landline. Everytime i am trying to call, the program answers that i have "insufficient credit".

Similar Messages

  • How to import a class not in the package from a package

    how to import a class not in the package from a package?

    http://java.sun.com/docs/books/tutorial/java/interpack/usepkgs.html

  • Error running child packages from parent package - Error 0xC0011008

    Hey...
    I am running a parent SSIS package (running sp2, 9.0.3042) that calls several child packages.
    On our development server, we now cannot run this because we get 1 or more of these errors:
    "Error 0x80004003 while preparing to load the package. Invalid pointer  .  "
    "Error 0xC0011008 while preparing to load the package. Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed error information can be stored.  .  "
    It is not occuring on the same packages.  It varies every time it is run.
    I can run every one of the child packages individually, using the same login ID that the parent is executed under.
    The parent package works fine on my local machine and other servers running the same version of SSIS.  Just not on this server.
    Does anyone have any ideas???
    Thanks
    BobP

    I have the same error with no parent child package relationship. I have changed the "Max Concurrent Executables" in each package from -1 to 10 and got  no change.  My code is below:
    List
    <string> fileList = new List<string>();
    private
    void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e)
    //this.fileList.Add(checkedListBox1.SelectedValue.ToString().Trim());
    this.fileList.Add("name");
    private
    void button1_Click(object sender, EventArgs e)
    string @fileName;
    foreach (string str in fileList)
    @fileName = str;
    string pkgLocation;
    Microsoft.SqlServer.Dts.Runtime.
    Application app;
    DTSExecResult pkgResults_Sql;
    pkgLocation =
    @"C:\" + @fileName + ".dtsx";
    app =
    new Microsoft.SqlServer.Dts.Runtime.Application();
    Package pkgIn = new Package();
    pkgIn = app.LoadPackage(pkgLocation,
    null);
    pkgResults_Sql = pkgIn.Execute();

  • Using package constants in package SQL - acts as bind variable or literal?

    I'm looking for confirmation on the performance impact of using package constants in package SQL.
    Let's say I have a number of queries in package code that refer to various literals that are prone to typos e.g. "CANCELLED" instead of "CANCELED". To reduce the chances of this happening, I have an APP_GLOBALS package where I declare constants for each literal:
    C_CANCELED CONSTANT VARCHAR2(12) := 'CANCELED';And in queries that refer to literal 'CANCELED' I use APP_GLOBALS.C_CANCELED instead. This way the typo is caught during compilation. For example:
    BEGIN
    --Do something with all 'Canceled' orders
      FOR r IN (SELECT order_id
                  FROM orders
                 WHERE status = APP_GLOBALS.C_CANCELED)
      LOOP
      END LOOP;
    END;Assume that:
    - the STATUS column is indexed
    - the possible values are PENDING, APPROVED, CANCELED
    - a small percentage of orders are CANCELED
    From the optimizer's perspective is the query equivalent to
    SELECT order_id
      FROM orders
    WHERE status = :varor
    SELECT order_id
      FROM orders
    WHERE status = 'CANCELED'?
    According to what I see in v$sqltext_with_newlines, it's the first one. Can anyone suggest an alternative way of replacing literals in package SQL to prevent typos? Worst case, I suppose I can start with constants so that it compiles successfully then do a global replace of the constants with the literals.

    Can anyone suggest an alternative way of replacing literals in package SQL to prevent typos?I cannot think of any. But, here is the thing. If the typos are there, then, it technically is a bug even though both the codes would compile. The bug will be hunted down when the program doesn't work as intended. Wouldn't most typos be caught in unit testing of the code?
    Also, if you replace a string literal with a variable, then, maybe (just maybe, depending on your version of the dbms), it may end up picking a different execution plan. That might be an unintended consequence.

  • Can we call a package inside a package

    Dear Sir
    Can we create a package inside a package or can we call a a package inside a package?.If yes.How we can create and call a package inside a package?
    Regards
    Thakur Manoj

    [email protected] wrote:
    Dear Sir
    Can we create a package inside a package NO, you cant do that.
    or can we call a a package inside a package?.YES, you can do that. Just call it. <package_name>.<procedure_or_function_name>

  • Package importing problem from 1 package to another package.

    Hi All,
    I have made to package, "forum" and "utility". DBhandler java file is in "utility" package and Forumhandler is in "forum" package.
    I want to import DBhandler classes from "utility" package into "forum" package for this i write
    "import utility.*" in forum package's Forumhandler java file. But it is giving error.
    The error is -
    forum/ForumHandler.java:13: cannot resolve symbol
    symbol : class DBHandler
    location: class forum.ForumHandler
    DBHandler dbhand = new DBHandler();

    is the class DBHandler declared a public class in utitlity? Does it start with the line
    package utitility;
    Is it in the directory:
    %CLASSPATH%/utility/
    Have you read the tutorials and done a search for packages on these forums?

  • Unable to compile a package calling a package procedure in different schema

    Hello,
    I'm unable to compile a package referencing a package located in another schema. I get the message: PLS-00201: identifier 'pkg1' must be declared
    Facts:
    0. I'm running Oracle DB 10.2.0.4.0 Enterprise Edition
    1. There is one schema ('schema1') containing a package ('pkg1').
    2. This package 'pkg1' has a public synonym ('pkg1' as well).
    3. The EXECUTE grant is given to a role ('role1').
    4. There is another schema 'schema2', which is granted the role 'role1' (and set as default).
    5. This schema 'schema2' contains a package ('pkg2').
    6. This package 'pkg2' calls a procedure of 'pkg1'.
    7. When compiling 'pkg2', I get error message saying 'pkg1' does not exist.
    Of course, if I execute 'GRANT EXECUTE ON pkg1 TO PUBLIC' or 'GRANT EXECUTE ON pkg1 TO schema2', I can compile the package 'pkg2'. But I don't want this.
    And what's weird is that, connected as 'schema2', I can execute the statement 'execute pkg1.proc1' without any trouble. So I guess the role setup is okay.
    What would let me compile 'pkg2' properly?
    Regards,
    Arnaud

    user3347638 wrote:
    Hello,
    I'm unable to compile a package referencing a package located in another schema. I get the message: PLS-00201: identifier 'pkg1' must be declared
    Facts:
    0. I'm running Oracle DB 10.2.0.4.0 Enterprise Edition
    1. There is one schema ('schema1') containing a package ('pkg1').
    2. This package 'pkg1' has a public synonym ('pkg1' as well).
    3. The EXECUTE grant is given to a role ('role1').
    4. There is another schema 'schema2', which is granted the role 'role1' (and set as default).
    5. This schema 'schema2' contains a package ('pkg2').
    6. This package 'pkg2' calls a procedure of 'pkg1'.
    7. When compiling 'pkg2', I get error message saying 'pkg1' does not exist.
    Of course, if I execute 'GRANT EXECUTE ON pkg1 TO PUBLIC' or 'GRANT EXECUTE ON pkg1 TO schema2', I can compile the package 'pkg2'. But I don't want this.
    And what's weird is that, connected as 'schema2', I can execute the statement 'execute pkg1.proc1' without any trouble. So I guess the role setup is okay.
    What would let me compile 'pkg2' properly?
    Regards,
    Arnaudprivileges acquired via ROLE do NOT apply within named PL/SQL procedures.
    above is just a restriction built into PL/SQL.
    accept it & get on with reality

  • How to convert .dts packages to SSIS packages

    Hi,
    How do you convert .dtsx packages to SSIS packages.

    sorry Tom, I mark it and than i saw that this is the same link as
    Shanky_621 posted several hours ago, so I Unpropose as answer.
    * This look like a good answer, but it was already given as mentioned :-)
    [Personal Site] [Blog] [Facebook]

  • How to find embedded packages of a package?

    Hi,
    I want to find all the embedded packages in a package. Which table has these details?.

    Hi,
    Check the Table TDEVC and TDEVCT for all the package/dec class related stuff.
    Also check the Table TADIR for the related info.
    reward if useful
    regards,
    Anji

  • AIR 15.0 for OSX - ADT: Packaging failed. Packager internal error

    Packaging a SWF to AIR with captive runtime and native installer (using "-package bundle"), building on PC worked perfectly fine.  After making all of the requisite changes to make it work for Mac, I'm now running into the "Packaging failed. Packager internal error" when building using adt through the command line.  My .command script is as follows:
    cd [directory]
    adt -package -storetype pkcs12 -keystore ../cert/key.p12 -storepass pw -target bundle Bundle ../App.xml App.swf -extdir ../lib icons/16.png icons/32.png icons/128.png
    What can cause this vague "Packger interal error" error? Any help would be appreciated. Thank you.

    Steve
    I have same problem with apple Developer Id Application certificate (downloaded from apple), got past the chain error message by including intermediate and root certificates when I exported from keychain, but got the package error referenced here. Also when I sign on windows machine with my code signing certificate (selecting windows installer) all publishes ok, but the certificate is not attached, says 'unknown developer' when I down load and try and run installer on windows machine. I sent the exe to Comodo (the guys I got the code signing certificate from) and they say the exe is not signed.
    Finally I get 'The digital certificate is invalid'  error when I try and use 'Developer Id Installer' certificate (downloaded from apple).
    I think there must be several problems here with Air SDK.
    Stopping me from publishing and I have a very upset Customer. Can someone from Adobe please advise asap.

  • Maintenace optimiser, support package Manager, Support package stack

    HI all,
             Could you please enlighten me the differences among
    Maintenance Optimizer,support package Manager, Support package stack
    And the purpose and most importantly the documentation to be able to use them
    in case of implementation phase (In case of a fresh ECC 60 Production version)
    Thank you

    Maintenace optimiser is used in solution Manager to Approve the Patch that you need to download fron Service  market place
    Support package stack is the collection of patch for a release.
    Support package Manager is SPAM/SAINT used to apply support pack.
    If you want some thing else please revert back
    thanksd Rishi Abrol

  • Business package  vs Transport Package

    HI All,
    What is the difference between Business package and Transport package?
    Is there any relation between these two?
    What is ESS and MSS? where do we use this?
    Please make me clear on above questions.
    Regards,
    sekhar.

    Business Packages are presupplied content for a portal, available from SAP or other vendors. They are uploaded ionto your portal. The upload mechanism depends on the version of the portal and the version of the business package.
    Transport packages are what you use to move content between your portals.
    ESS and MSS are examples of business packages available from the <a href="https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio">here</a>
    You use business packages if their content makes sense!

  • SERC content package and service package

    Hi,
    This is regarding regulatory content provider. I came across an SAP presentation on Product Safety and Dangerous goods, which talks about twp options:
    1. Going for an on-premise approach using SERC - content package
    2. Going for a service approach using SERC- service package
    Could you please elaborate on both the service package and content package approach? How does it work/integrate with business processes in SAP?
    Thank you,
    Sruthi

    Hello Ralph,
    For our client, SAP has confirmed following:
    "Customer has purchased SAP EHS Regulatory Content (ERC).
    With licensing ERC the customer receives access
    to the service marketplace of SAP to download
    i) the licenced content packages, ii) the Admin Guide and iii) the Update Guide."
    So I believe, our client has bought SERC and not SERD and this will be a On Premise solution and we need to download the required content to the client servers and implement the same.
    Is my understanding correct?
    Your early reply will really help.
    Thanks.
    Regards,
    Niraj.

  • Instant Client Package - SDK, RPM package download not working

    Hi,
    I am trying to download "Instant Client Package - SDK", RPM package for Linux 32 bit, version 11.2.0.1.0 from http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxsoft.html
    However the file downloaded has zero length. I tried from two different computers. I cannot find any contact/form to report broken content on that website. Can someone help, please?
    Cheers, Tomas

    fyi
    For me, the page ...
    http://www.oracle.com/technology/software/products/database/index.html
    ... currently says ...
    "An error occurred while processing the request. Try refreshing your browser. If the problem persists contact the site administrator"
    But, with the direct URL to the ZIP, which failed to download before ...
    http://download.oracle.com/otn/nt/oracle10g/10201/10201_companion_win32.zip
    ... I was able to download it just now.
    regards
    Jan

  • [SOLVED]Weird conflict with official packages and aur packages

    Hi. I have enchant-zemberek installed on my system. It is my package that i'm maintaining at AUR. Yesterday i tried to install poedit which depends on enchant. Weirdly altoguh enchant-zemberek provides enchant; pacman tried to remove enchant-zemberek and instead install enchant. Otherwise it won't let me install poedit. I have updated enchant-zemberek PKGBUILD and pacman let me install poedit without forcing me to install enchant. Here is what i have in my first PKGBUILD before update:
    replaces=("enchant")
    provides=("enchant")
    conflicts=('enchant')
    And after updating;
    replaces=("enchant=${pkgver}")
    provides=("enchant=${pkgver}")
    conflicts=('enchant')
    Now, i'm wondering while an AUR package have different package name than the official one why pacman tries to replace it? Why PKGBUILD needs package version in provides tag? Say, if i want to keep my own my-abc-1.0-1.i686.pkg.tar.xz but official package abc-1.1-1.i686.pkg.tar.xz released; must i keep my package only in Ignores array? Should i report this as a bug?
    Last edited by tarakbumba (2011-04-07 09:52:41)

    No, its not a bug. poedit depends on gtkspell which depends on enchant>=1.5.0 - your original custom enchant package did not provide any specific version of enchant, so pacman pulled in the repo package instead to satisfy the versioned dependency. As you have built your package with replaces=enchant, pacman also honours that.

Maybe you are looking for

  • A few frequent problems in MOS

    I am facing a bit frequent 'server errors' on MOS - especially if I change the main options (like Knowledge to Service Request, or Patches & updates, etc). I have also seen Error #1088 a few times and sometimes, my service requests do not show up a f

  • Reg. Filter on Table view

    Hi, I am trying to analyze the filter functionality on Table view.  The event which is getting triggered when we click on filter  is - "Filter". However, in none of the standard components, I don't see this event has been implemented.  Now, I am conf

  • Datagrid column width

    I have 3 grids and they each have 5 columns that are a fixed width and a different number of other columns for each grid that are not fixed. I try width and minWidth in the DataGridColumn but I can only make one grid fill 100% across. Im sure its a b

  • Size in create

    i have been trying to print front of greeting card about 10x15cm but all i get is a picture about 1to 2inches size i am using create photo is in card i run winxp home printer hp1310 series psc regards simon ps i use photoshop elements 3.0

  • I have Problem in fetching data from CONTROL BLOCK

    Sir, I am facing problem in fetching data from control block. Asif.