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

Similar Messages

  • Windows Server 2008R2 running Remote Desktop Services reports printer process does not exist when installing PDF printer

     Windows Server 2008R2 running Remote Desktop Services reports printer process does not exist when installing PDF printer, And when Installing network printers from the domain controller it reports it cannot connect to printer.  I can ping all
    network devices. I can connect to the internet.
    On boot I get a netlogon 5719 error followed by service control manager errors 7023,7001 and a group policy error 1129.
    Clients can connect to the remote application and RDP operates to connect to the server internally and externally.
    The domain controller is another server 2008r2 box. I have scoured the internet but have not found any solutions that work yet.

    Hi,
    After referring to your post, it can be identified that the issue which you are facing is mostly due to some network issue in your environment. Please recheck your network connection issue between computer and domain controller. 
    Can you able to ping with IP address and also with fully qualified name of a domain controller in the users' and computers' domain. If it fails states that name resolution issue with computer and domain controller. Are you using MS DHCP Relay agent then there’s
    available Hotfix for the particular Event ID. Please go through this KB 2459530 to fix the error event ID.
    As per the net logon error 5719 which you are facing states that the client component of Netlogon was unable to locate a DC for the domain it was trying to perform an operation against. Below is one of the reason. If this is being logged on a DC and the event
    refers to the DC's own domain, something might be preventing the client component of Netlogon from starting a network session (to itself or to another DC in the domain). The following event 7001 & 7023 states start & stop operation service. Please
    go through beneath article for more details.
    1.  Event ID 5719 is logged when you start a computer
    2.  Netlogon 5719 and the Disappearing Domain [Controller]
    3.  Event ID 1129 — Microsoft-Windows-GroupPolicy
    Hope it helps!
    Regards.

  • Enterprise report TEMPLATE=0REPORT_DEFAULT_TEMPL does not exist

    Hi guys ,
    I have actvated the above mentioned template in business content but when i performed a check in RS_TEMPLATE_MAINTAIN_70 , iam getting the followiong error.
    Enterprise report TEMPLATE=0REPORT_DEFAULT_TEMPL does not exist
    Enterprise report TEMPLATE=0REPORT_DEFAULT_TEMPL does not exist
    Web Item Report error: The report cannot be opened under "TEMPLATE=0REPORT_DEFAULT_TEMPLATE"
    The report cannot be opened
    The report cannot be opened under "TEMPLATE=0REPORT_DEFAULT_TEMPLATE"
    Check whether the report is at this location and it can be read
    Contact your system administrator. This error was recorded
    Can anyone have some idea on this..
    thanks

    Any help on this??

  • Standard SAP report group 6PP3 does not exist

    A user is attempting to run the transaction S_ALR_87013544 and receives the error "program 6PP3 does not exist". I used gr53 to display report groups it is not in the list.
    I cannot generate 6PP3 either. I cannot create 6PP3 because it is a standard report group
    Any ideas?

    1.   Use GR59 IN THE <TRG> client
         a. 300 in this case
         b.     SOURCE client = 000
         c.     Leave all fields blank – hit EXECUTE
         d.     Select the report group to generate from the list
            i. BPP3
           ii. Select the CONFIRM button

  • 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

  • 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.

  • 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

  • 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

  • Bind variable does not exist after processFormRequest

    Hello. I recieve the following stacktrace after doing a forward page immediately:
    pageContext.forwardImmediately("CAOADownload.jsp?transactionid=" + pageContext.getTransactionId() + "&retainAM=N",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    false,
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    java.sql.SQLException: ORA-01006: bind variable does not exist
    The error is happening because of this line in the where clause:
    WHERE (PO_LINE_ID = :1)
    After the page forward it obviously looses what PO_LINE_ID contained. Is there a way to completely load the page from the JSP? Or a way to reload the VO in the processFormAction?
    Thanks, Graeme.

    Graeme.,
    Y don't u pass a page parameter say XXX with the value of line id when you redirect to same page? In that case u can execute query of the VO with the value of XXX, in process request, when u redirect to same page.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • "Selected disk does not exist" after install using Unetbootin

    Hello, I downloaed core iso file and use unetbootin to created a bootable usb disk, then I booted from the usb disk, installed the system as usual, then I rebooted the machine, the grub menu is shown, but when I selected archlinux, it shows:
       Booting 'Arch Linux'
    root (hd1,0)
    Error 21: Selected disk does not exist
    Press any key to continue...
    if I press any key, it goes to grub menu again.
    I noticed that when I installed the system, the usb disk is /dev/sda1, the harddisk is /dev/sdb1, /dev/sdb2 ... (several partitions), so I guess there is a problem here, and when I reboot, harddisk becomes /dev/sda1 sda2... so the system cannot find /dev/sdb1 2...
    I read a post about unetbootin, it did not mention anything about the problem, so I think there is no problem install using unetbootin...

    Try to change (hd1,0) pour (hd0,0). GRUB considers the disk from where he was loaded as hd0.
    If you want more infos check with http://sourceforge.net/projects/bootinfoscript/
    and post it's output.

  • File does not exist after ftp downloading

    Hi all,
    I have a really strange problem.
    I'm getting a file from a remote server (ftp "get"), the process ends with no exceptions, but when I go to the specific directory where the file should have been - there is nothing there.
    I tried to get the file manually through acommand line ftp and it succeeded, but performing the same operation in the java code gives me no result.
    I also scanned the entire hard-disks but again - the file does not exist anywhere.
    Any idea? Anyone?

    performing the same
    operation in the java code gives me no result.Obviously not the same operation. As Hiwa says, impossible to say further without some code.

  • Problem after applying support pack 15

    Hi ,
    I applied Support Pack 15 for SOLMAN 4.00. Every thing went fine , but after that i entered into maintenance optimizer and tried to download a package, then its giving error saying "No Customer numbers in transaction AISUSER". When i click that it gave a popup saying as below:
    Message Number: SOLMAN_SAP_BACKEND016
    Diagnosis
    There are no entries with a customer number in the 'Customer Number' field in the table AISUSER.
    System Response
    You cannot get customer number-specific RFC destinations.
    Procedure
    Maintain these entries manually or start the report
    SMBI_AISUSER_VAR_MIG to copy any existing customer number from the table AISDK_CF_OSS_USR.Please guide me
    Thnaks

    Yes i did the same and when i went to maintenance optimizer it says:
    Message Number: SOLMAN_SAP_BACKEND016
    Diagnosis
    There are no entries with a customer number in the 'Customer Number' field in the table AISUSER.
    System Response
    You cannot get customer number-specific RFC destinations.
    Procedure
    Maintain these entries manually or start the report
    SMBI_AISUSER_VAR_MIG to copy any existing customer number from the table AISDK_CF_OSS_USR.
    Actually for this message i got a note 1140822 in the forums and when im following this note i got the error mentioned earlier (below):
    The RFC-user does not belong to a VAR- or CCC-customer number
    Message no. AI_SC_EN111
    Diagnosis
    The user used in RFC destination SAP-OSS does belong to a simple customer number that is not assigned to a Value Added Reseller or Customer Competence Center in SAP Support Portal.
    Procedure
    You need to maintain your customer numbers manually in table V_AISAPCUSTNOS or choose another user.
    Reply
    I couldnt get much information for this error though i gave 6 digit in theV_AISAPCUSTNOS and 10 digit in the AISUSER.
    Forward

  • Background does not appear after applying template

    CS4
    template defined and saved in template folder.
    when applying template to new html page, all transfers but background image does not appear, url is in code but does not find file. any ideas???
    body {
    background-image: url(file:///F|/projects/BBMD Projects/bbmd site v2/images/bridgelv2.jpg);
    background-repeat: no-repeat;
    background-color: #D2D2D2;
    background-attachment: fixed;
    background-position: 75px top;
    height: 400px;
    width: 600px;
    position: inherit;
    overflow: scroll;
    top: auto;
    left: auto;
    right: inherit;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: small;
    font-style: normal;
    color: #000;
    border-top-style: none;
    text-align: left;
    vertical-align: top;
    bottom: auto;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;

    template defined and saved in template folder.
    when applying template to new html page, all transfers but background image does not appear, url is in code but does not find file. any ideas???
    If this is a new site and a newly created template, you DON'T need to 'apply' the template.
    The best way to create new child pages is to :
    FILE>New>Page from Template
    There will be a list of any templates you've created, select the correct one and press create.  Child page created :-)
    Save as newpagename.html  (not inside the Template folder though !)
    PS;  as others have pointed out, the link to the background image is incorrect it's pointing to your harddrive.  Is the file within the defined site working folder?
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • MAM Not Working After Applying Support Package

    We have been lived with MAM 2.5 with SP16 for almost a year now.  We recently applied support package 19 for ABAP and J2EE stacks but MAM stopped working right after that.  To fix the problem we had to do the following steps:
    1.  Disable all SyncBO
    2.  Regenate all SyncBO
    3.  Run Replicate Database
    4.  Enable all SyncBO
    5.  Delete MAM 2.5 client by WebConsole for all PDA (over 100 devices)
    6.  Re-Assign MAM 2.5 client back to PDA from WebConsole
    My question is do we have to perform those steps above every time we are applying new support package?  If it is a case, it's very time consuming because we have to manually perform step 5-6 for every users.
    Does anyone have seen or experience this scenario before?  Your comment is highly appreciated.
    Regards,
    Dai Ly

    Hi Karthik,
    Let me clarify on "Not working"
    It showned synchrozation successuffly but no data transfer between client and middleware and vs.  For instance, the user never receive any new work orders, or their times never got transfered back to R/3.  Even though, there is no error on the client.
    It appear that step 1-4 are required otherwise, you get ABAP Runtime error (using ST22):
    Runtime Error          CALL_FUNCTION_NOT_FOUND    
    Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC
    Date and Time          02/07/2007 08:12:27        
    After we performed step 1-4 but there were data transfer between client and R/3.  The only way to get it working, we had to delete client and re-assign MAM 2.5 back to each users.
    No, we didn't apply client patch SP19.  We are still using SP16.
    As we speak, everything is working because we had to re-assign MAM 2.5 for every users. but I hope we don't have to do this next time we apply another Support Package.
    Thanks.
    Dai Ly

  • Keyboard does not work after using Support Drivers

    I have a Macbook Pro 4,1 15" 2.4GHz C2D, and managed to get Bootcamp installed on it with Win7 Home Pro. I have verified that it runs correctly, but it is missing many of the drivers needed to make things run smoothly. I no longer have my Leopard disks that the machine came, so I figured the WindowsSupportDrivers would be the way to go.
    When I install them and reboot, the keyboard does not work. When I hit capslock, I get the caution notice indicating underneath my password field indicating the capslock key is on, so it's not like my entire keyboard is disabled. The system is unusable right now, since I have to enter my password to login, and it does not take any keyboard input. Using an external keyboard did not resolve this issue.
    I did a system restore to get it back to a usable state for the time being.
    Is there an alternative to the BCA support drivers or the Leopard disk? What's going on with my keyboard after the driver update?

    Maybe you have installed obsolete drivers. If you have Lion, open Boot Camp Assistant (Applications > Utilities) in OS X and download Boot Camp drivers

Maybe you are looking for

  • Ipod mini won't write past certain limit

    I woke up this morning to the sad folder face on my iPod mini. After a reset, it was still a sad mini, so I did what I thought necessary: I restored it with updater software. Now, it connects ok, and what music I can put on it plays fine. The problem

  • My dvd burner cannot perform lead out

    hi everyone.... i attached my DVD burner (41N5629) from my x61 to my desktop PC running win XP SP3, using nero 8, at first the burning process work fine until nero perform the lead out, when an error message would appear. I ve tried different brand o

  • ABAP Program for set local process chain failed

    I would like to execute ABAP Program in local process chain. If the condition is in the pre-defined bussiness rule, local process chain is set to fail. Currently I use ABAP and Raise Message Error = Message Type E for cancel program. After program is

  • Finding iPad Internal Help

    When I first got my iPad, I could open the internal help site. Somehow, I deleted that page reference in Safari. How do I get back to it?

  • Costing in SAP PP

    Can anybody explain me the use  of Costing in SAP PP. or How actually costing is done in SAP PP for production orders. What affect does costing run has on it. Thanks and really appreciate your help...