Collection does not exist after update of session state

Attempting to leverage sample application code from Knowledge Testing 1.0 using apex v3.00 and getting ORA-20102: Application collection QUESTIONS does not exist
Note that the error is thrown in a cursor loop over that very collection (see bolded text below)
Can anyone shed some light on the subject?
Thx,
Derek
SFFD
procedure get_question
is
  c             pls_integer := 0;I NUMBER;
  l_question    pls_integer := 0;
--DEBUG
  log_root number;
--/DEBUG
begin
--DEBUG
    begin
      select max(log_id) into log_root from fdrpts.log_entries where routine='QUIZ';
       exception when no_data_found then
           log_root:= fdrpts.log.add('INFO','QUIZ','Testing quiz functions');
       end;
    IF LOG_ROOT IS NULL THEN log_root:= fdrpts.log.add('INFO','QUIZ','Testing quiz functions'); END IF;
--/DEBUG
    l_question := nvl(nv('KT_QUESTION'),1);
--DEBUG
    log_root := fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question('||to_char(l_question)||')',LOG_ROOT);
SELECT COUNT(*) INTO i FROM APEX_COLLECTIONS WHERE COLLECTION_NAME='QUESTIONS';
*fdrpts.log.add('INFO','QUIZ.GET_QUESTION',TO_CHAR(i)||' QUESTIONS IN TEST QUEUE',LOG_ROOT);*
--/DEBUG
    if l_question > nvl(nv('KT_QUESTION_COUNT'),1) THEN -- wrap to beginning of test, page logic will handle quit.
--DEBUG
       fdrpts.log.add('INFO','QUIZ.GET_QUESTION','KT_QUESTION ('||L_QUESTION||') > KT_QUESTION_COUNT ('||nvl(nv('KT_QUESTION_COUNT'),1)||') WRAPPING AND SETTING STATUS TO ''REVIEW''',LOG_ROOT);
--/DEBUG
       wwv_flow.update_cache_with_write('KT_TEST_STATUS','REVIEW');
       wwv_flow.update_cache_with_write('KT_QUESTION',1);
       l_question:=1;
    end if;
    *for c1 in (*
    SELECT
      SEQ_ID,
      c001 q_number,
      c004 qtype,
      c005 question,
      c006 image,
      c007 question_footer,
      c008 question_header,
      c009 answer,
      trim(c010) WRONG1,
      trim(c011) WRONG2,
      trim(c012) wrong3,
      trim(c013) wrong4,
      c014 correct_answer,
      c015 w1,
      c016 w2,
      c017 w3,
      c018 w4,
      c020 answer_given,
      c021 get_time,
      c022 post_time
    *FROM APEX_collections*
    *WHERE collection_name = 'QUESTIONS'*
    order by c002
    *) loop* -- NOTE: the order by c002
        c := c + 1;
--DEBUG
fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question SCANNING '||TO_CHAR(C),LOG_ROOT);
--/DEBUG
        if c = l_question then -- this is the nth question in test's ordering method
            wwv_flow.update_cache_with_write('KT_QUESTION_TEXT',htf.escape_sc(c1.question));
            wwv_flow.update_cache_with_write('KT_QUESTION_FOOTER',htf.escape_sc(c1.question_footer));
            wwv_flow.update_cache_with_write('KT_QUESTION_HEADER',htf.escape_sc(c1.question_header));
            wwv_flow.update_cache_with_write('KT_QTYPE',nvl(c1.qtype,'PICTURE'));
            wwv_flow.update_cache_with_write('KT_SELECTION',c1.answer_given);
            wwv_flow.update_cache_with_write('KT_IMAGE','<img src="'||
                replace(replace(replace(c1.image,
                   '#WORKSPACE_IMAGES'||'#',
                   v('WORKSPACE_IMAGES')),
                   '#APP_IMAGES'||'#',
                   v('APP_IMAGES')),
                   '#IMAGE_PREFIX'||'#',
                   v('IMAGE_PREFIX'))||
                '" alt="picture" />');
            wwv_flow.update_cache_with_write('KT_COLLECTION_SEQ_ID',c1.SEQ_ID);
--DEBUG
fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question SESSION VARS SET',LOG_ROOT);
--/DEBUG
            if c1.correct_answer = 1 then
               wwv_flow.update_cache_with_write('KT_CORRECT','1');
               wwv_flow.update_cache_with_write('KT_LABEL1',c1.answer);
               wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong1);
               wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong2);
               wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong3);
               wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
            elsif c1.correct_answer = 2 then
               wwv_flow.update_cache_with_write('KT_CORRECT','2');
               wwv_flow.update_cache_with_write('KT_LABEL2',c1.answer);
               wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
               wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong2);
               wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong3);
               wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
            elsif c1.correct_answer = 3 then
               wwv_flow.update_cache_with_write('KT_CORRECT','3');
               wwv_flow.update_cache_with_write('KT_LABEL3',c1.answer);
               wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
               wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong2);
               wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong3);
               wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
            elsif c1.correct_answer = 4 then
               wwv_flow.update_cache_with_write('KT_CORRECT','4');
               wwv_flow.update_cache_with_write('KT_LABEL4',c1.answer);
               wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
               wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong2);
               wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong3);
               wwv_flow.update_cache_with_write('KT_LABEL5',c1.wrong4);
            else
               wwv_flow.update_cache_with_write('KT_CORRECT','5');
               wwv_flow.update_cache_with_write('KT_LABEL5',c1.answer);
               wwv_flow.update_cache_with_write('KT_LABEL1',c1.wrong1);
               wwv_flow.update_cache_with_write('KT_LABEL2',c1.wrong2);
               wwv_flow.update_cache_with_write('KT_LABEL3',c1.wrong3);
               wwv_flow.update_cache_with_write('KT_LABEL4',c1.wrong4);
            end if;
--DEBUG
fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question LABELS SET',LOG_ROOT);
*fdrpts.log.add('INFO','QUIZ.GET_QUESTION','GET_TIME='||to_char(sysdate-nvl((to_date(c1.post_time,'YYYYMMDDHH24MISS')-to_date(c1.get_time,'YYYYMMDDHH24MISS')),0),'YYYYMMDDHH24MISS'),LOG_ROOT);*
--/DEBUG
            -- set question generation time  *THIS IS THE OFFENDING STATEMENT*
            APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE(
              p_collection_name       => 'QUESTIONS',
              p_seq                   => c1.seq_id,
              p_attr_number           => 21,  --GET_TIME
              p_attr_value            => to_char(sysdate-nvl((to_date(c1.post_time,'YYYYMMDDHH24MISS')-to_date(c1.get_time,'YYYYMMDDHH24MISS')),0),'YYYYMMDDHH24MISS'));
*fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question READY TO EXIT',LOG_ROOT);*
            exit;
        end if;
    *end loop;*
--DEBUG
fdrpts.log.add('INFO','QUIZ.GET_QUESTION','quiz.get_question EXIT',LOG_ROOT);
--/DEBUG
end get_question;LOGS
    *LOG_ID          DTTM                       ROUTINE                                     TEXT*
   7014853 04/23/09 11:40:57 QUIZ                                 TEST 14
   7014854 04/23/09 11:41:22 QUIZ.INIT_TEST                 quiz.init_test(2,918615994152352,'DEREK')
   7014855 04/23/09 11:41:22 QUIZ.INIT_TEST                 4/5 QUESTIONS RANDOMIZED
   7014856 04/23/09 11:41:22 QUIZ.INIT_TEST                 RANDOM QUEUE CREATED 5 ENTRIES
   7014857 04/23/09 11:41:22 QUIZ.INIT_TEST                 GROUP 2
   7014858 04/23/09 11:41:22 QUIZ.INIT_TEST                 4 QUESTIONS IN TEST QUEUE
   7014859 04/23/09 11:41:22 QUIZ.INIT_TEST                 SESSION VARS SET
   7014860 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question(1)
   7014861 04/23/09 11:41:23 QUIZ.GET_QUESTION              4 QUESTIONS IN TEST QUEUE
   7014862 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question SCANNING 1
   7014863 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question SESSION VARS SET
   7014864 04/23/09 11:41:23 QUIZ.GET_QUESTION              quiz.get_question LABELS SET
   *7014865 04/23/09 11:41:23 QUIZ.GET_QUESTION              GET_TIME=20090423114123*
13 rows selected.Edited by: derek on Apr 23, 2009 1:43 PM
Edited by: derek on Apr 23, 2009 2:06 PM

Hi Tyson,
If you look closely you will see that the routine already has access to the collection (which is, in fact, instantiated in a different procedure).
The routine has a debug statement to count and log the number of collection members; that statement reports 4 members in the collection.
Then the routine opens a cursor loop over that collection, calcs and sets some session variables and attempts to update the collection.
It is at this point (in the midst of the cursor loop over the same collection) that the collection does not exists is thrown.
Does it not follow that if the cursor loop has entered its first iteration, then the collection exists? How then does it cease to exist during the cursor loop (absent a call to one of apex_collection.delete_ methods)?
Derek
SFFD

Similar Messages

  • HT1688 My Hot Spot does not work after update to 6.0.1.  Service is with ATT.  Apple says problem is with ATT, ATT says problem is with Apple.  Anyone else having this problem?

    My Hot Spot does not work after update to 6.0.1.  Any suggestions?

    Ok, I had the same issue, my phone is unlocked(iphone 5 with 6.1.3). So I went to the apple store and had it replaced. it worked good for a day and started doing the same thing. When the apple tech replaced my phone, he transfered my screen protector to the new one.
    so I thought it was my sim card, I put in my sisters sim card from a different carrier and it did the same, so then I was like let me take off the screen protector, and that was it.
    so guys, if you have a screen protector on your phone and it's doing "low signal", "No Service", "Searching", "Full bars cycle" then take off the screen protector. so far my phone is working normal.

  • Click to activate does not work after update

    Click to activate plugin does not work after updating to version 23.0.1

    hello Kamullia, if you have set click-to-play to true in about:config you can now go to the ''addons-manager > plugins'' section and set the permissions individually for each plugin type.

  • WiFi iPhone 4S does not work after update iOS 6.0

    WiFi iPhone 4S does not work after update iOS 6.0

    This sounds more like a hardware issue.
    Have you checked that the dock connector port is not dirty?

  • Print size in Photoshop CC does not work after updating

    Print size in Photoshop CC does not work after updating, it was working fine before but now when I click to go to print size either from the menu of right chicking when the hand tool is selected, the image just zooms right out until it is a tiny little box in the centre of the screen, no good what so ever, as I say it was working fine before the update.
    I am using window 7 with 8 gb of ram and an I7 with a 1GB graphics card.
    Can anyone help please?
    thanks
    Fujibill

    Check the Image>Image Size and see what the print size is supposed to to be for the open document.
    Also, resetting the photoshop cc preferences might fix it.
    http://forums.adobe.com/thread/375776?tstart=0

  • ORA-20102: Application collection does not exist

    we have just started receiving this error though we have not changed any of our logic for creating collections.
    ORA-20102: Application collection C_PORTS_FAV does not exist
    the logic for all processes creating collections always starts with the following:
    apex_collection.create_or_truncate_collection
    (p_collection_name => 'C_PORTS_FAV');
    my understanding is that if the collection does not exist, it will be created...and if it does exist, it will be truncated....so why the error?
    any ideas appreciated. thanks
    Karen

    Karen:
    Check the database alert log first. To locate this file do the following
    Connect to the database using sqlplus
    at the command prompt enter
    show parameter background_dump
    The alert log will be in the directory displayed upon entering the above command. The file will have a name like alert_<db_name>.log
    varad
    Edited by: varad acharya on Oct 20, 2009 3:07 PM

  • Firefox does not start after updates

    Every time i get an update, download it and restart Firefox, it does not restart and i have to run the set file again. It means too that the updates have not been dowl=nloaded !
    Windows 7 ultimate. 4Gb ram 1 Tb Regards

    I AM ABSOLUTELY SICK-SICK-SICK OF THIS PROBLEM. I HAVE TRIED EVERYTHING BUT IT STILL DOES NOT RESTART AFTER UPDATES. I HAVE DELETED/CREATED NEW PROFILES, DONE CLEAN INSTALLS - NO CHANGE!!!
    I HAVE CHECKED FOR VIRUSES - NOTHING. CLEAN. I AM ABOUT READY TO GIVE UP AND SEND A LETTER TO A LOCAL TECH/MEDIA PERSON SO THAT THEY CAN WRITE AN ARTICLE ABOUT THIS ISSUE THAT FOR SOME REASON MANY OTHERS HAVE AS WELL AND YOU=MOZILLA HAVE NOT OFERED ANYTHING CLOSE TO A SATISFACTORY RESPONSE, EXPLANATION, FIX, ETC ETC ETC

  • IOS 7 app store update list does not clear after updates have been installed

    iOS 7 app store update list does not clear after updates have been installed

    Rifles wrote:
    Good point, we will have to wait and see, it's a pity Apple has not produce an IOS7 PDF
    You mean like this one?
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    Best of luck.

  • ORA-27101: shared memory realm does not exist after kernel upgrade

    Hi,
    I have installed ECC 6.0 on windows 32 bit.  After I upgraded the kernel, the database can't be started as well as SAP.  When I checked the logs, the error ORA-27101: shared memory realm does not exist was encountered.
    M  calling db_connect ...
    C  Prepending E:\usr\sap\ERP\DVEBMGS01\exe to Path.
    C  Oracle Client Version: '10.2.0.1.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@ERP on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06E217E8   06E26D84   06E2660C
    C  Attaching to DB Server ERP (con_hdl=0,svchp=06E26558,srvhp=06E38144)
    C  Starting user session (con_hdl=0,svchp=06E26558,srvhp=06E38144,usrhp=06E4CEB8)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed with rc=1034
    [dboci.c      4532]
    C  Detaching from DB Server (con_hdl=0,svchp=06E26558,srvhp=06E38144)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    11042]
    C  Try to connect with default password
    C  Connecting as SAPSR3/<pwd>@ERP on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06E217E8   06E26D84   06E2660C
    C  Attaching to DB Server ERP (con_hdl=0,svchp=06E26558,srvhp=06E38144)
    C  Starting user session (con_hdl=0,svchp=06E26558,srvhp=06E38144,usrhp=06E4CEB8)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed with rc=1034
    [dboci.c      4532]
    C  Detaching from DB Server (con_hdl=0,svchp=06E26558,srvhp=06E38144)
    C  *** ERROR => CONNECT failed with sql error '1034'
    [dbsloci.c    11042]
    B  ***LOG BV3=> severe db error 1034      ; work process is stopped [dbsh#2 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error 1034   performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10283]

    Please help.
    Thanks.
    Regards.

    Hi. First restart the server, then start the LISTENER, and repeat startsap again. Check if messages repeated. Regards.

  • Card slot does not work after update (14/10/2011)

    Card slot does not work after yesterday update (14/10/2011)! It works with my SD card month ago, but now it dosn't!!!
    MacBook Pro 13 OS ver. 10.6.8

    Thanks for your suggestion. I downloaded OnyX and ran the cleaning function. After restarting, I opened Help and once again the first screen appeared fine. But again most of the links did not work, though those under the "What's New" heading did work. I might add that I had previously tried a variety of suggestions posted in another thread, which included deleting from the caches folder in Home>Library several files such as com.apple.helpui and help.plist in the Preferences folder. (As noted in my previous post this evening, I also created another user but that also did not have any effect.) Any other ideas? Thanks

  • Itunes does not work after Update any more

    Itunes does not start after the uodate and cannot be reinstalled.
    Seems not only a problem to me
    Any solutions yet ?

    Hello Wizzie71,
    It sounds like you updated iTunes and now it will not open. Try the steps outlined in the following article. You may need to re install iTunes but your library will remain intact if you do.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • ZL_BT115H_S_DETAILS_CN00 does not exists after EEWB enhancements

    Hi Gurus,
    I have enhanced the component view BT115H_SLSO/details initially, after some days, I have added two Zfields to BTADMINH using EEWB. while opening the Context node BTADMINH in the view BT115H_SLSO, the following error message is being displayed: Object type ZL_BT115H_S_DETAILS_CN00 does not exist.
    while opening the link to create the sales order in Web UI, the following Exceptions occured:
    CX_SY_CREATE_OBJECT_ERROR - The object could not be created: The class ZL_BT115H_S_DETAILS_CN00 does not exist. 
    Method:  CL_BSP_MODEL=>CREATE 
    Source Text Row:  12
    Initialization of view BT115H_SLSO/Details failed
    An exception has occurred Exception Class  CX_SY_CREATE_OBJECT_ERROR - The object could not be created: The class ZL_BT115H_S_DETAILS_CN00 does not exist. 
    Method:  CL_BSP_MODEL=>CREATE 
    Source Text Row:  12
    Cannot display view BT115H_SLSO/DetailsVS
    An exception has occurred Exception Class  CX_SY_CREATE_OBJECT_ERROR - The object could not be created: The class ZL_BT115H_S_DETAILS_CN00 does not exist. 
    Method:  CL_BSP_MODEL=>CREATE 
    Source Text Row:  12
    Initialization of view BT115H_SLSO/DetailsVS failed
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display view BT115H_SLSO/SOHOverView
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display window MainWindow.
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/DetailsVS could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Any idea of why this exception is occured.
    Did anyone faced the same issue? if yes,please share me the solution.
    Thanks and Regards,
    S Reddy

    Hi Suchita,
    Thanks for your quick response.
    Actually we have not done any enhancements to the BTADMINH context node. we have enhaced the CRMD_ORDERADM_H table using the EEWB fields. After this I have checked the component BT115H_SLSO/view to provide the value help for the fields, the Zclass was automatically assinged to the Context and Page attribute remained same for BTADMINH.
    I have checked in the SE24, the class does not exists. I have created a copy of CL_BT115H_S_DETAILS_CN00 as ZL_BT115H_S_DETAILS_CN00 and assigned to BTADMINH and Page attributes of the same view. After I have opened the Web UI, the following exceptions are occured:
    Context generation failed in view BT115H_SLSO/Details
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=ZL_BT115H_S_DETAILS_CN00 is not compatible, for the purposes of assignment, with target type \CLASS=CL_BT115H_S_DETAILS_CN00 
    Method:  ZL_BT115H_S_DETAILS_CTXT=>CREATE_BTADMINH 
    Source Text Row:  13
    Initialization of view BT115H_SLSO/Details failed
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=ZL_BT115H_S_DETAILS_CN00 is not compatible, for the purposes of assignment, with target type \CLASS=CL_BT115H_S_DETAILS_CN00 
    Method:  ZL_BT115H_S_DETAILS_CTXT=>CREATE_BTADMINH 
    Source Text Row:  13
    Cannot display view BT115H_SLSO/DetailsVS
    An exception has occurred Exception Class  CX_SY_MOVE_CAST_ERROR - Source type \CLASS=ZL_BT115H_S_DETAILS_CN00 is not compatible, for the purposes of assignment, with target type \CLASS=CL_BT115H_S_DETAILS_CN00 
    Method:  ZL_BT115H_S_DETAILS_CTXT=>CREATE_BTADMINH 
    Source Text Row:  13
    Initialization of view BT115H_SLSO/DetailsVS failed
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display view BT115H_SLSO/SOHOverView
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/Details could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Cannot display window MainWindow.
    An exception has occurred Exception Class  CX_BSP_WD_RUNTIME_ERROR - View BT115H_SLSO/DetailsVS could not be bound 
    Method:  CL_BSP_WD_VIEW_CONTROLLER=>BIND_VIEW 
    Source Text Row:  162
    Thanks and Regards,
    S Reddy

  • Report painter report does not exist after applying support pack

    Hi,
    I have created report with the help of report painter for FI.
    Also created transaction code for the same.
    After applying the support pack, while testing I got the error that
    program in the transaction code does not exists.
    How to search that program and where or I need to create the same program again?
    Thanx in advance.
    -Umesh

    The reason could be having (1)  invalid characteristics value or (2) have not properly defined the General Data Section, most likely (1) in this case.
    Either way, go to t-code GRR2 to change the report.
    In the report row or column, is there an Element (the labels in red color) that does not make sense?
    It could still have the correct label names, but double-click and go into "Record Types (from your error message)".  Be sure to have the correctly define values attached to each Characteristics.
    If all above seems okay, try (From top bar, select) Edit --> General Data Section.  Think of this section as the "header data" of the report.
    Good luck
    AY

  • Verity cfsearch returns "collection does not exist" error - when collection does exist

    I have created a collection using the Coldfusion
    Administrator - and it shows up fine when displaying all the
    collections. I also populated the collection using the
    <cfindex> function - using a SQL query - and that appeared to
    work fine. It put 117 entries into the collection - and this also
    shows up in the Coldfusion Administrator collections window.
    The problem is, when I try to search the collection with the
    <cfsearch> tag, it returns an error stating "The collection
    you specified does not exists or is not registered with the
    ColdFusion Search Service."
    I can see the collection I'm trying to search exists. Is
    there anything else I need to do to get the <cfsearch>
    function to find the collection? I've tried repairing the
    collection, optimizing the collection, even deleting it and
    recreating it - nothing seems to work. I specify the
    fully-qualified path to the collection in my cfsearch, so that
    shouldn't be the problem.
    Is there some other command or function I need to run?
    Thanks!!! Pamela

    quote:
    I specify the fully-qualified path to the collection in my
    cfsearch
    Not sure if that is the problem. The path exists in the
    CFAdmin. You sould refer to the collection name in the cfsearch
    tag.
    See attached code, you can do a cfdump to see what results
    are being returned.

  • XI datasources function modules does not exist after BW upgrade to 7.3

    We have recently upgraded our dev BI system to 7.3
    During our testing phase we found that we are unable to load data coming from XI system.
    When we checked the functional modules of the XI(web services)
    datasources we found that the function modules does not exist in the system.
    Eg : For our GECARS datasource we have 2 funcitonal modules
    1. /BIO/QI6AZXH_ZIFIGECARS
    2. /BIO/QI6AZXH_ZIFIGECARS_RFC (delta function module)
    we have activated resp datasource and found that code for
    /BIO/QI6AZXH_ZIFIGECARS exist now but we are facing issues with RFC
    funciton modules (/BIO/QI6AZXH_ZIFIGECARS_RFC )
    To put it in simple terms we are facing issues with Dev BI since upgradeto 7.3 with respect to RFC and non-availability of function modules.
    Kindly help us in resolving this.
    Thanks,
    Kiran

    Hello Kiran,
    Have you found the reason for the non existence of the FM in the system after the upgrade?
    Have you found any alternative? I hope you would have created an OSS message, if so whats the response have you got?
    Kindly let me know as I am experiencing similar issue where one of the FM (RSDRC_MULTIPROV_GET_MAPPING) does not exist in BI system after the upgrade.
    Regards,
    Vinoth V

Maybe you are looking for

  • ICal Print List - Why are to-dos randomly sorted?

    When printing from iCal in the list view, my To-Do List is NEVER sorted the way I sorted it in the main iCal window (whether by Calendar, Priority, or Manually). Instead it's just sorted randomly, which is very unorganized. Does anyone know why this

  • Numbers '09: How can I display selected data from one cell in another cell?

    Hello. I have a Numbers document that contains a table that looks a little like this: Amount;Code Amount Code 10;12B 12;8A 14;16E 16;3C 18;5A I'd like to have Numbers 09 automatically separate the "Amount;Code" data in the coloumns to the right. Do y

  • Reg Loading of Open Items fro Asset, Vendor, Customer & GL.

    Hi I had uploaded the Masters thru LSMW. Now I want to Upload the Open items for the above. How this is to be done. Is there is any specific transaction code is available for this. Regards Karthik

  • HTML in forms

    I want to write HTML in the forms, is this possible???

  • Fix swatches list view

    This is one of the little details that's never worked right since CS6. If you put swatches in large list view, it has a bunch of wasted space on the left of each swatch and the names cut off way before they have to, so you can't read the names of pan