Problem with setting oracle type parameter in viewobject query

Hi There,
I am facing a problem with JDev1013. I have a view that has JDBC positional parameters that are supposed to be in parameters for function like:
SELECT x.day, x.special_exact_period_only
FROM (
  SELECT x.day, x.special_exact_period_only
  FROM (
    SELECT
      x.day,
      rb.special_exact_period_only
  FROM TABLE (
    RentabilityPkg.findMarkerSlots(
      'start',
      ? /* dchannel */,
      NULL,
      ? /* resorts */,
      'special',
      NULL,
      ? /* code */,
      NULL,
      TRUNC(SYSDATE),
      TRUNC(SYSDATE + 365 * 2),
      NULL
  ) x
    JOIN resourcebase rb USING (rentabilitymanager_id)
    UNION
    SELECT
      x.day,
      rb.special_exact_period_only
    FROM TABLE (
      RentabilityPkg.findMarkerSlots(
        'start',
        ? /* dchannel */,
        NULL,
        ? /* resorts */,
        'composition',
        NULL,
        ? /* code */,
        NULL,
        TRUNC(SYSDATE),
        TRUNC(SYSDATE + 365 * 2),
        NULL
    ) x
    JOIN resourcebase rb USING (rentabilitymanager_id)
  )x
  ORDER BY x.day
) x
WHERE ROWNUM <= 30now the JDBC positional parameters take our custom defined list type defined as:
CREATE TYPE NumberList AS TABLE OF NUMBER;
we are setting the parameter in the views with the help of oracle.sql.ARRAY class like:
   * Set parameters.
  public void setParams(Integer dchannelId, Integer[] resorts, String specialCode)
    try {
          System.out.println(this.getClass() + ".setParams()");
          ARRAY arrParam1 = ((NWSApplicationModule)getApplicationModule()).toSQLNumberList(Arrays.asList(resorts));
          ARRAY arrParam2 = ((NWSApplicationModule)getApplicationModule()).toSQLNumberList(Arrays.asList(resorts));
          System.out.println("arrParam1 - " + arrParam1);
          System.out.println("arrParam1 - " + arrParam1);
          System.out.println(this.getClass() + " ARRAY - " + arrParam1.getArray());
          System.out.println(this.getClass() + " -- " + arrParam1.length());
          System.out.println("arrParam2 - " + arrParam2);
          System.out.println("arrParam2 - " + arrParam2);
          System.out.println(this.getClass() + " ARRAY - " + arrParam2.getArray());
          System.out.println(this.getClass() + " -- " + arrParam2.length());
          Object[] params =
               { dchannelId,
                    arrParam1,
                    specialCode,
                    dchannelId,
                    arrParam2,
                    specialCode
          setWhereClauseParams(params);
          System.out.println("DONE WITH " + this.getClass() + ".setParams()");
    catch(Exception ex)
          ex.printStackTrace(System.out);
  }the toSQLNumberList() method is defined in our App module baseclass as follows:
  public ARRAY toSQLNumberList(Collection coll)
       debug("toSQLNumberList()");
       DBTransaction txn = (DBTransaction)getTransaction();
       debug("txn - " + txn + " : " + txn.getClass());
       return NWSUtil.toSQLNumberList(coll, getConnection(txn));
  public static ARRAY toSQLNumberList(Collection c, Connection connection)
    //printTrace();
    debug("toSQLNumberList()");
    try
      ArrayDescriptor numberList = ArrayDescriptor.createDescriptor("NUMBERLIST", connection);
      NUMBER[] elements = new NUMBER[c == null ? 0 : c.size()];
      if (elements.length > 0 )
        Iterator iter = c.iterator();
        for (int i = 0; iter.hasNext(); i++)
          elements[i] = new NUMBER(iter.next().toString());
      return new ARRAY(numberList, connection, elements);
    catch (Exception ex)
      ex.printStackTrace();
      return null;
  protected Connection getConnection(DBTransaction dbTransaction)
    //return null;
    debug("Inside getConnection()");
    CallableStatement s = null;
    try
       * Getting Conenction in BC4J is dirty but its better
       * as otherwise we might end up coding with connections
       * and the Transaction Integrety will be
      s = dbTransaction.createCallableStatement("BEGIN NULL; END;", 0);
      debug("DOING s.getConnection()...");
      Connection conn = s.getConnection();
      debug("DONE WITH  s.getConnection()...");
      /*try
            throw new Exception("TEST");
       catch (Exception ex)
            ex.printStackTrace(System.out);
      debug("conn CLASS - " + conn.getClass());
      return conn;
    catch (Exception ex)
      ex.printStackTrace();
      return null;
    finally
      try { s.close(); }
      catch (Exception ex) {}
  }Whenever we try setting the parameters in view using setParams() and use this view to set the model of a java control it thorws the following exception :
[2006-10-10 12:34:48,797 AWT-EventQueue-0 ERROR] JBO-28302: Piggyback write error
oracle.jbo.PiggybackException: JBO-28302: Piggyback write error
     at oracle.jbo.common.PiggybackOutput.getPiggybackStream(PiggybackOutput.java:185)
     at oracle.jbo.common.JboServiceMessage.marshalRefs(JboServiceMessage.java:267)
     at oracle.jbo.server.remote.PiggybackManager.marshalServiceMessage(PiggybackManager.java:343)
     at oracle.jbo.server.remote.PiggybackManager.marshalServiceMessage(PiggybackManager.java:316)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processMessage(AbstractRemoteApplicationModuleImpl.java:2283)
     at oracle.jbo.server.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:7509)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.sync(AbstractRemoteApplicationModuleImpl.java:2221)
     at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.doMessage(ServerApplicationModuleImpl.java:79)
     at oracle.jbo.server.ejb.SessionBeanImpl.doMessage(SessionBeanImpl.java:474)
     at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.TxBeanManagedInterceptor.invoke(TxBeanManagedInterceptor.java:53)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:840)
     at RemoteAMReservation_StatefulSessionBeanWrapper906.doMessage(RemoteAMReservation_StatefulSessionBeanWrapper906.java:286)
     at sun.reflect.GeneratedMethodAccessor63.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)
## Detail 0 ##
java.io.NotSerializableException: oracle.jdbc.driver.T4CConnection
     at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1075)
     at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1369)
     at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1341)
     at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1284)
     at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
     at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1245)
     at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1069)
     at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1245)
     at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1069)
     at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:291)
     at oracle.jbo.common.SvcMsgResponseValues.writeObject(SvcMsgResponseValues.java:116)
     at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:890)
     at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1333)
     at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1284)
     at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1073)
     at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:291)
     at oracle.jbo.common.PiggybackOutput.getPiggybackStream(PiggybackOutput.java:173)
     at oracle.jbo.common.JboServiceMessage.marshalRefs(JboServiceMessage.java:267)
     at oracle.jbo.server.remote.PiggybackManager.marshalServiceMessage(PiggybackManager.java:343)
     at oracle.jbo.server.remote.PiggybackManager.marshalServiceMessage(PiggybackManager.java:316)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.processMessage(AbstractRemoteApplicationModuleImpl.java:2283)
     at oracle.jbo.server.ApplicationModuleImpl.doMessage(ApplicationModuleImpl.java:7509)
     at oracle.jbo.server.remote.AbstractRemoteApplicationModuleImpl.sync(AbstractRemoteApplicationModuleImpl.java:2221)
     at oracle.jbo.server.remote.ejb.ServerApplicationModuleImpl.doMessage(ServerApplicationModuleImpl.java:79)
     at oracle.jbo.server.ejb.SessionBeanImpl.doMessage(SessionBeanImpl.java:474)
     at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.TxBeanManagedInterceptor.invoke(TxBeanManagedInterceptor.java:53)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
     at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:69)
     at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:840)
     at RemoteAMReservation_StatefulSessionBeanWrapper906.doMessage(RemoteAMReservation_StatefulSessionBeanWrapper906.java:286)
     at sun.reflect.GeneratedMethodAccessor63.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
     at java.lang.Thread.run(Thread.java:595)This is a typical interaction between 2 server-side components (view-object and app module). Now the question is why is this exception thrown? Any answers?
This application is one that we have migrated from 904 to 1013 and are trying to get it running in 3-tier.
Regards,
Anupam

Sorry I missed out some semicolons, the script follws:
-- The following TABLE was created to simulate the issue
CREATE TABLE TEST_OBJECT
     ASSET_ID NUMBER,
     OBJECT_ID NUMBER,
     NAME VARCHAR2(50)
INSERT INTO TEST_OBJECT VALUES(1,1,'AAA');
INSERT INTO TEST_OBJECT VALUES(2,2,'BBB');
INSERT INTO TEST_OBJECT VALUES(3,3,'CCC');
COMMIT;
SELECT * FROM TEST_OBJECT;
-- The following TYPES was created to simulate the issue
CREATE OR REPLACE
TYPE DUTYRESULTOBJECTTAB AS TABLE OF DUTYRESULTOBJECT;
CREATE OR REPLACE
type DutyResultObject as object
( ASSET_ID number,
  OBJECT_ID number,
  NAME varchar2(150)
-- The following PACKAGE N FUNCTION was created to simulate the issue
CREATE OR REPLACE PACKAGE TESTOBJECTPKG
IS
     FUNCTION OBJECTSEARCH(P_RESOURCE IN NUMBERLIST) RETURN DUTYRESULTOBJECTTAB;
END;
CREATE OR REPLACE PACKAGE BODY TESTOBJECTPKG
IS
     FUNCTION OBJECTSEARCH(P_RESOURCE IN NUMBERLIST) RETURN DUTYRESULTOBJECTTAB
     IS
       BULKDUTYRESULTOBJECTTAB DUTYRESULTOBJECTTAB;
     BEGIN
       SELECT DUTYRESULTOBJECT(ASSET_ID, OBJECT_ID, NAME)
       BULK COLLECT INTO BULKDUTYRESULTOBJECTTAB
       FROM TEST_OBJECT;
       RETURN BULKDUTYRESULTOBJECTTAB;
     END;
END;
[\code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Memory Problem with SEt and GET parameter

    hi,
    I m doing exits. I have one exit for importing and another one for changing parameter.
    SET PARAMETER exit code is ....
    *data:v_nba like eban-bsart,
           v_nbc like eban-bsart,
           v_nbo like eban-bsart.
           v_nbc = 'CAPX'.
           v_nbo = 'OPEX'.
           v_nba = 'OVH'.
    if im_data_new-werks is initial.
      if im_data_new-knttp is initial.
        if im_data_new-bsart = 'NBC' or im_data_new-bsart = 'SERC' or im_data_new-bsart = 'SERI'
           or im_data_new-bsart = 'SER' or im_data_new-bsart = 'SERM' or im_data_new-bsart = 'NBI'.
          set parameter id 'ZC1' field v_nbc.
        elseif im_data_new-bsart = 'NBO' or im_data_new-bsart = 'NBM' or im_data_new-bsart = 'SERO'.
          set parameter id 'ZC2' field v_nbo.
        elseif im_data_new-bsart = 'NBA' or im_data_new-bsart = 'SERA'.
          set parameter id 'ZC3' field  v_nba.
        endif.
      endif.
    endif. *
    and GET PARAMETER CODE IS....
      get parameter id 'ZC1' field c_fmderive-fund.
      get parameter id 'ZC2' field c_fmderive-fund.
      get parameter id 'ZC3' field c_fmderive-fund.
    FREE MEMORY ID 'ZC1'.
      FREE MEMORY ID 'ZC2'.
       FREE MEMORY ID 'ZC3'.
    In this code i m facing memory problem.
    It is not refreshing the memory every time.
    So plz give me proper solution.
    Its urgent.
    Thanks
    Ranveer

    Hi,
       I suppose you are trying to store some particular value in memory in one program and then retieve it in another.
    If so try using EXPORT data TO MEMORY ID 'ZC1'. and IMPORT data FROM MEMORY ID 'ZC1'.
    To use SET PARAMETER/GET PARAMETER the specified parameter name should be in table TPARA. Which I don't think is there in your case.
    Sample Code :
    Data declarations for the function codes to be transferred
    DATA : v_first  TYPE syucomm,
           v_second TYPE syucomm.
    CONSTANTS : c_memid TYPE char10 VALUE 'ZCCBPR1'.
    Move the function codes to the program varaibles
      v_first  = gv_bdt_fcode.
      v_second = sy-ucomm.
    Export the function codes to Memory ID
    EXPORT v_first
           v_second TO MEMORY ID c_memid.        "ZCCBPR1  --- Here you are sending the values to memory
    Then retrieve it.
    Retrieve the function codes from the Memory ID
      IMPORT v_first  TO v_fcode_1
             v_second TO v_fcode_2
      FROM MEMORY ID c_memid.                                   "ZCCBPR1
      FREE MEMORY ID c_memid.                                   "ZCCBPR1
    After reading the values from memory ID free them your problem should be solved.
    Thanks
    Barada
    Edited by: Baradakanta Swain on May 27, 2008 10:20 AM

  • Problem with SET GET parameters

    Hi all,
    I am facing a problem using SET and GET parameters.
    There is a Z transaction(Dialog program) where some fields of screen are having parameter ID's. That transaction is designed to diaplay/change status of only one inspection lot at a time.
    Now I need to call that transaction in a loop using BDC. I mean i need to update the status of multiple inspection lots(one after the other). Before calling the transaction I am using
    SET PARAMETER ID 'QLS' FIELD lv_prueflos.
    Unfortunately the transaction is only changing the first inspection lot. When I debugged I found that the screen field is changing in PAI. Even though in PBO it shows the next value, when it goes to PAI it is automatically changing to the first value(inspection lot).
    Example: Inspection Lots : 4100000234
                                               4100000235
                                              4100000236
    Now first time when the call transaction is being made the status of insp lot 4100000234 is changed. For the second time when insp lot 4100000235 is being passed in PBO ican see this. But the moment it enters PAI the screen field changes to 4100000234.
    Could you pls help me in solving this issue.
    Thanks,
    Aravind

    Hi,
    Problem with SET GET parameters
    Regarding on your query. Follow this below link.
    It will help you.
    Re: Problem with Set parameter ID
    Re: Problem in Set parameter ID
    I Hope it will helps to you.
    Regards,
    Sekhar

  • Problem with import file type setting

    Problem with import file type settings - In preferences>general I select "wav encoder" But then going to tools>Create it still says "create mp3 version".
    Can't find a way to overcome this. Thanks for any help.

    Doublechecking, roy. After making the preferences change, are you leaving the General tab by clicking the OK button down the bottom-right-hand corner of the tab?

  • A question about a method with generic bounded type parameter

    Hello everybody,
    Sorry, if I ask a question which seems basic, but
    I'm new to generic types. My problem is about a method
    with a bounded type parameter. Consider the following
    situation:
    abstract class A{     }
    class B extends A{     }
    abstract class C
         public abstract <T extends A>  T  someMethod();
    public class Test extends C
         public <T extends A>  T  someMethod()
              return new B();
    }What I want to do inside the method someMethod in the class Test, is to
    return an instance of the class B.
    Normally, I'm supposed to be able to do that, because an instance of
    B is also an instance of A (because B extends A).
    However I cannot compile this program, and here is the error message:
    Test.java:16: incompatible types
    found   : B
    required: T
                    return new B();
                           ^
    1 errorany idea?
    many thanks,

    Hello again,
    First of all, thank you very much for all the answers. After I posted the comment, I worked on the program
    and I understood that in fact, as spoon_ says the only returned value can be null.
    I'm agree that I asked you a very strange (and a bit stupid) question. Actually, during recent months,
    I have been working with cryptography API Core in Java. I understood that there are classes and
    interfaces for defining keys and key factories specification, such as KeySpec (interface) and
    KeyFactorySpi (abstract class). I wanted to have some experience with these classes in order to
    understand them better. So I created a class implementing the interface KeySpec, following by a
    corresponding Key subclass (with some XOR algorithm that I defined myself) and everything was
    compiled (JDK 1.6) and worked perfectly. Except that, when I wanted to implement a factory spi
    for my classes, I saw for the first time this strange method header:
    protected abstract <T extends KeySpec> T engineGetKeySpec
    (Key key, Class<T> keySpec) throws InvalidKeySpecExceptionThat's why yesterday, I gave you a similar example with the classes A, B, ...
    in order to not to open a complicated security discussion but just to explain the ambiguous
    part for me, that is, the use of T generic parameter.
    The abstract class KeyFactorySpi was defined by Sun Microsystem, in order to give to security
    providers, the possibility to implement cryptography services and algorithms according to a given
    RFC (or whatever technical document). The methods in this class are invoked inside the
    KeyFactory class (If you have installed the JDK sources provided by Sun, You can
    verify this, by looking the source code of the KeyFactory class.) So here the T parameter is a
    key specification, that is, a class that implements the interface KeySpec and this class is often
    defined by the provider and not Sun.
    stefan.schulz wrote:
    >
    If you define the method to return some bound T that extends A, you cannot
    return a B, because T would be declared externally at invocation time.
    The definition of T as is does not make sense at all.>
    He is absolutely right about that, but the problem is, as I said, here we are
    talking about the implementation and not the invocation. The implementation is done
    by the provider whereas the invocation is done by Sun in the class KeyFactory.
    So there are completely separated.
    Therefore I wonder, how a provider can finally impelment this method??
    Besides, dannyyates wrote
    >
    Find whoever wrote the signature and shoot them. Then rewrite their code.
    Actually, before you shoot them, ask them what they were trying to achieve that
    is different from my first suggestion!
    >
    As I said, I didn't choose this method header and I'm completely agree
    with your suggestion, the following method header will do the job very well
    protected abstract KeySpec engineGetKeySpec (Key key, KeySpec key_spec)
    throws InvalidKeySpecException and personally I don't see any interest in using a generic bounded parameter T
    in this method header definition.
    Once agin, thanks a lot for the answers.

  • Obiee 11g . problem with set default as columnname in interaction tab

    Hi Obiee gurus ,
    I have small problem with set default option in interaction tab in column properties. actually my problem is , i changed one column bold save as set default option bold and how to revert back to my column option. when i create new analysis with same name . it takes set default option for that column.
    can Please give some suggestion for this problem.
    regards
    Srinivas

    Hi Srinivas,
    i guess this will be same for 11G
    Refer
    http://blogs.oracle.com/siebelessentials//2008/08/remove_systemwide_default_sett.html
    thanks,
    Saichand.v

  • Problem with install oracle on OEL5.3 linux

    Hello,
    Have some strange problem with oracle enterpise linux 5.3 32 bit, during install Oracle 10gR2 got link errors,
    after founded what is problem with linking oracle executables:
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    relink oracle
    /usr/bin/ld: cannot find -lskgxn2
    all depended rpms and parameters are set, looks like missing some library, but cannot recognise with one.
    Have somebody spoted souch error ?

    The zipfile on technet has a checksum:
    Oracle Database 11g Release 1 (11.1.0.6.0) for Linux x86
              linux_11gR1_database_1013.zip (1,844,527,800 bytes) (cksum - 1044354138)
    When the zipfile is downloaded, you can check the zipfile on linux with the cksum command, it should be exactly the same as listed on technet, otherwise the zipfile is corrupted.

  • ITunes Match: There was a problem with your payment type.

    This Morning i received the following email from apple regarding my itunes match account.
    I have no idea why this has happened, i am now worried of loosing all my music.
    I have itunes match set for AUTORENEWAL, and there ist enough credit on my itunes store account.
    Does anyone have an answer to this?
    Would be greatful for help.
    Thanks in advance
    iTunes Match: There was a problem with your payment type.
    There was a problem with your payment type that prevented the automatic renewal of your subscription to iTunes Match. To renew your subscription and to regain the ability to store your entire music collection on iCloud and enjoy it on your iOS devices, iTunes, and Apple TV, you will need to update your payment information. iTunes Match stores not only your songs purchased on the iTunes Store, but all of the other great music you have acquired over the years, including music from CDs.
    To update your payment information or manage your subscription, sign in to iTunes on your computer and go to your Account Information page. Your matched and uploaded tracks will be removed from iCloud in 90 days, so renew your subscription now and keep all of your music in the cloud so you can listen to it anytime, anywhere.
    Regards,
    The iTunes Store team

    I tried calling but they are closed in bservance of holiday. I want to resolve this issue now please via Internet so that I can resume my game. Thx very much for your help. Can u guide me thought this or email me the instructions as to how to resolve this step by step. It appears to me that there must have been a past billing issue.

  • Problem with Set/Get volume of input device with single channel

    from Symadept <[email protected]>
    to Cocoa Developers <[email protected]>,
    coreaudio-api <[email protected]>
    date Thu, Dec 10, 2009 at 2:45 PM
    subject Problem with Set/Get volume of input device with single channel
    mailed-by gmail.com
    hide details 2:45 PM (2 hours ago)
    Hi,
    I am trying to Set/Get Volume level of Input device which has only single channel but no master channel, then it fails to retrieve the kAudioDevicePropertyPreferredChannelsForStereo and intermittently kAudioDevicePropertyVolumeScalar for each channel. But this works well for Output device.
    So is there any difference in setting/getting the volume of input channels?
    I am pasting the downloadable link to sample.
    http://www.4shared.com/file/169494513/f53ed27/VolumeManagerTest.html
    Thanks in advance.
    Regards
    Mustafa
    Tags: MacOSX, CoreAudio, Objective C.

    That works but the the game will not be in full screen, it will have an empty strip at the bottom.
    I actually found out what's the problem. I traced the stageWidth and stageHeight during resizing event. I found out that when it first resized, the stage width and height were the size with the notification bar. So when I pass the stage into startling, myStarling = new Starling(Game,stage), the stage is in the wrong size. For some reason, I can only get the correct stage width and height after the third resizing event.
    So now I need to restart Starling everytime a resizing event happened. It gives me the right result but I am not sure it is a good idea to do that.
    And thanks a lot for your time kglad~I really appriciate your help.

  • Button in Bex Analyser 7.0 - problem with setting up Static Parameters

    Hello,
    I know a similar problem has been discussed here already, but I am still having problems with setting up Static Parameters of my Button in BEx Analyser 7.0, so that I can pass Variable values from that button to my query.
    This is what I do - in Static Parameters of my Button I set the following values:
    Name                          Index          Value
    DATA_PROVIDER        0               DP_1
    CMD                             0               PROCESS_VARIABLES
    SUBCMD                      0               VAR_SUBMIT
    VAR_NAME                 0               0RMA_FIP
    VAR_VALUE               0               004/2010
    As a result, I would like the value 004/2010 to be passed to variable 0RMA_FIP (which is mandatory) and the query to be executed with that value. For some reason, however, the value is not passed correctly, and instead the variable is filled with a blank or not filled at all, and I am getting a message "Specifiy value for variable Fiscal year/period". What do I do wrong?
    Just to give you a broader picture - I would like to later use this logic to pass more than one variables into a query, including a hierarchy node, and read the values from an Excel worksheet - however, after many attempts to do so, I started playing with just one variable to figure out what the problem was.
    I have already seen the following two threads and SAP notes on passing variable values from the button:
    Re: Button in BEx Analyzer 7.0
    Re: How to set variables values via VBA.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0881371-78a1-2910-f0b8-af3e184929be?quicklink=index&overridelayout=true
    Can anyone please advise?
    Cheers,
    AL

    I managed to figure it out myself!
    Instead of VAR_VALUE I need to enter VAR_VALUE_EXT, and it works fine.
    I will mark this thread as "answered".

  • Problem with setting Source Level in Sun Studio 2

    I've got problem with setting Source Level to 1.5 in Sun Studio 2. When I try to set it to 1.5 in Project properties and click Ok everything seem to go well, but when I open Project Properties again Source Level is set to 1.4. I need this to work cause I started to lear Java recently and I want to use foreach loop.
    Please help

    I'm just citing an example using Date().
    In fact, whether I use DateFormat or Calendar, it shows the same result.
    When I set the date to 1 Jan 1950 0 hours 0 minutes 0 seconds,
    jdk1.4.2 will always return me 1 Jan 1950 0 hours 10 minutes 0 seconds.
    It works correctly under jdk1.3.1

  • Problems with setting up my ISP's mail server in Windows Live Mail and Thunderbird

    The laptop is a G60-535DX with Windows 7  64 bit. I've managed to setup my gmail account fine in Live Mail, but when setting  up my ISP' mail server, it doesn't work. I get the message that the information was entered correctly, and I see the 'connecting' at the bottom of the page, and then 'error', and clicking on it shows a socket error #10061. In Thunderbird, I get a timeout error message. I've entered all the incoming and outgoing server information correctly, (I've done this over 8-9 times now), the ports are the defaults(110,25), no SSL, no authentication. I've talked with my ISP several times. Just a couple of hours ago was the last time. Their only other possibilities were that Live Mail had problems with setting up more than one account, that Live Mail needed updating, that Windows 7 was a new operating system and there were 'kinks'. I removed the gmail account, set up the ISP's mail by itself; didn't help. I checked for Live Mail updates, but found out that they all come from Windows updates(which are current).  The folks on PCQ&A inform me that they have 3 or 4 accounts with Live Mail. I can get my mail, by logging onto my ISP's website, but that' kind of a nuisance. I posted this in Seven Forums and they didn't have any ideas. As I said, I also can't get my mail server to work in Thunderbird, either.  I don't know what else to try. (short of activating the recovery partition and starting from scratch). Any ideas would be more that welcome.
    Thanks,
    Steve

    Stevehiker wrote:
    Nevermind, it's fixed. One of the guys on PCQ&A suggested going to my ISP's website to see if they had a support page. They did and it stated that under certain circumstances that for the login ID the whole email address should be entered. For XP and Outlook Express one only uses the first part of the email address (your name); so just for grins I entered the whole address, name and all and everyting worked. Called my ISP and was told that that wasn't the way it's supposed to work. Well----
    Thanks anyway,
    Steve
    Mine works the same way_must enter full email address as login. AT&T?
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Problem with setting Item level permissions lists

    Hello!
    I have SPS 2013 on-premised environment with AD authentication.
    At some moment I've noticed that we have a problem with setting the item level permissions on any lists except the document libraries.
    When I click the "shared with" button I see a popup form with a list of users who have an access to that list but there is no "invite people" link or "Advanced" link. Moreover, the "loading" ring rotates
    instanly like some operation was'nt ended. 
    The same operation with documents in libraries works well.
    I am be grateful for any help!

    Hi Mischael,
    From your description, my understanding is that there were no "invite people" or "Advanced" link when some users clicked "shared with" button in some lists.
    This issue seems like about permissions. Please log on your site with site collection administrator or a user who has full control for the site, then go to a problematic list->List settings->Permissions for this list, check whether the list
    has unique permissions. Then click "Check Permissions", check the permission level for the problematic users and then go to Site Settings->Site permissions->Permission levels, check whether the permission level contains "Manage permissions".
    If not, add the permission into the permission level.
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • I just bought an AirPort Extreme system over this weekend and I am having problem with setting it up. I plugged the cable as explained in the manual but there is no way I can get a steady green light. I all see is flashing amber light. Can anyone help me,

    I just bought an AirPort Extreme system over this weekend and I am having problem with setting it up. I plugged the cable as explained in the manual but there is no way I can get a steady green light. I all see is flashing amber light. Can anyone help me,

    Think you need to provide some more details about what you are connecting

  • Problem with starting Oracle HTTP Server

    I am in the process of installing Oracle Application Express Resease 2.2. After installing Oracle HTTP Server, I stopped it. But when I tried to start it, it failed. The following is the error message I got. Your assistance in helping solve this problem will be highly appreciated!
    [oracle@linuxkm database]$ /u01/app/oracle/product/10.2.0/http_1/opmn/bin/opmnctl startproc ias-component=HTTP_Server
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=linuxkm:6200
    0 of 1 processes started.
    ias-instance id=standalone
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server
    Error
    --> Process (pid=23484)
    failed to start a managed process after the maximum retry limit
    Log:
    /u01/app/oracle/product/10.2.0/http_1/opmn/logs/HTTP_Server~1
    -------------------------------------------------------------------------------------------------------------------

    Here is everything from that file. I also attached the configuration section of the apachectl file below. The ORACLE_HOME points to the ORACLE_HOME for http, not the ORACLE_HOME for database. In addition, the httpd.pid file pointed by PIDFILE doesn't exist. Are there anything wrong with my Oracle HTTP Server installation?
    06/10/05 12:27:28 Start process
    /u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl start: execing httpd
    06/10/05 14:52:04 Stop process
    /u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl stop: httpd stopped
    06/10/05 14:52:41 Start process
    /u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl start: execing httpd
    06/10/05 14:52:47 Start process
    /u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl start: execing httpd
    06/10/05 16:05:33 Start process
    /u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl start: execing httpd
    06/10/05 16:05:53 Start process
    /u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/apachectl start: execing httpd
    # |||||||||||||||||||| START CONFIGURATION SECTION ||||||||||||||||||||
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/http_1; export ORACLE_HOME
    NLS_LANG=${NLS_LANG="AMERICAN_AMERICA.WE8ISO8859P1"}; export NLS_LANG
    PERL5LIB=/u01/app/oracle/product/10.2.0/http_1/Apache/Apache/mod_perl/lib/site_perl/5.6.1/i686-linux:/u01/app/oracle/product/10.2.0/http_1/perl/lib/5.6.1:/u01/app/oracle/product/10.2.0/http_1/perl/lib/site_perl/5.6.1 ; export PERL5LIB
    PHPRC=/u01/app/oracle/product/10.2.0/http_1/Apache/Apache/conf; export PHPRC
    TNS_ADMIN=${TNS_ADMIN="/u01/app/oracle/product/10.2.0/http_1/network/admin"}; export TNS_ADMIN
    if [ -z "$LD_LIBRARY_PATH" ]
    then
    LD_LIBRARY_PATH=/u01/app/oracle/product/10.2.0/http_1/lib:/u01/app/oracle/product/10.2.0/http_1/opmn/lib ; export LD_LIBRARY_PATH
    else
    LD_LIBRARY_PATH=/u01/app/oracle/product/10.2.0/http_1/lib:/u01/app/oracle/product/10.2.0/http_1/opmn/lib:${LD_LIBRARY_PATH} ; export LD_LIBRARY_PATH
    fi
    # the path to your PID file
    PIDFILE=/u01/app/oracle/product/10.2.0/http_1/Apache/Apache/logs/httpd.pid
    # the path to your httpd binary, including options if necessary
    HTTPD=/u01/app/oracle/product/10.2.0/http_1/Apache/Apache/bin/httpd
    # a command that outputs a formatted text version of the HTML at the
    # url given on the command line. Designed for lynx, however other
    # programs may work.
    LYNX="lynx -dump"
    # the URL to your server's mod_status status page. If you do not
    # have one, then status and fullstatus will not work.
    STATUSURL="http://localhost:7777/server-status"
    # |||||||||||||||||||| END CONFIGURATION SECTION ||||||||||||||||||||

Maybe you are looking for

  • Package problems in Linux

    I'm working on a large program and when all files are located in the same directory, everything works well. To organize things, I want to use packages and package statement, declared the files public and stored them in what should be the appropriate

  • Questions on the generated PFILE

    Hi all, I modified values of some init parameters using the command ALTER SYSTEM SET parameter=newvalue. Then, I create PFILE using the command create pfile='c:\test.ora' from spfile; I opened the generated PFILE and noticed the following: 1. I didn'

  • CS3 Booklet Printing Staple Problem

    Hi all, Here's my problem... I have an 8 page document in Indesign CS3, with all pages letter size. I'm using Print Booklet to print this to a Xerox 7760 printer onto tabloid size paper which is printing on both sides of each sheet (duplexing) and th

  • Quiz problems

    Hi All, Having some problems with a quiz in CS6. I have 4 questions in my course and then 5 question pools, of which I have 5 random questions at the end of the course. The User must pass the quiz, however if I fail the quiz the Retake button then ta

  • Establish ELSTER in SAP ECC

    Hello! I would like to establish ELSTER encryption in my SAP ECC. What are the technical steps/procedure/relevant Tcodes to do this? Thank you very much! regards! Thom