DUMP ERROR FOR REPORT TO ASSIGN TCODE TO ABAP QUERY

hi friends ..
i did this smallreport by difernet type but its the
error says dump_--report not found or status errror says
maximum session reached ..i think there something wrong in my submit stmt .pls let me know ...
also assign tcode to the report.
DATA:QUERYREPORT LIKE AQADEF-PGNAME,
     QUERY LIKE AQADEF-QUNAME,
     USERGROUP  LIKE AQADEF-BGNAME,
     WORKSPACE  LIKE AQADEF-WSID.
query = 'zskview'.
usergroup = 'zskgrp'.
workspace = ''.
get name of queryreport
  CALL FUNCTION 'RSAQ_REPORT_NAME'
       EXPORTING
            WORKSPACE  = workspace
            USERGROUP  = usergroup
            QUERY      = query
       IMPORTING
            REPORTNAME = QUERYREPORT
       EXCEPTIONS
            OTHERS     = 0.
      SUBMIT (QUERYREPORT)
             VIA SELECTION-SCREEN
             USING SELECTION-SETS OF PROGRAM QUERYREPORT
              AND RETURN.

HI farukh,
1. The program u have written
    is for running DYNAMIC query,
    (given the query name)
2. In debugging,
    chck the value of the variable
   queryreport
  after the FM is executed.
3. It will contain the program name (of the corersponding query)
  in the following format (eg)
  AQFKzskgrp======ZAMQ01========
4. Open another se38,
  and CHECK  whether this program exists or not!
5. If it does not,
  a)either the QUERY NAME is not correct,
  b) either the user group is not correct,
  c) either the query is deleted / not generated .
regards,
amit m.

Similar Messages

  • Short dump error for delta load to 0CFM_C10 via 0CFM_DELTA_POSITIONS flow

    hi all,
    i am getting short dump error for delta load to 0CFM_C10 via 0CFM_DELTA_POSITIONS flow.
    not able to figure out the actual issue and how to solve it.
    can anyone suggest?
    below is the details of the short dump
    Short text
        Exception condition "UNKNOWN_TRANSCAT" raised.
    What happened?
        The current ABAP/4 program encountered an unexpected
        situation.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        A RAISE statement in the program "CL_SERVICE_TRG================CP" raised the
         exception
        condition "UNKNOWN_TRANSCAT".
        Since the exception was not intercepted by a superior
        program, processing was terminated.
        Short description of exception condition:
        For detailed documentation of the exception condition, use
        Transaction SE37 (Function Library). You can take the called
        function module from the display of active calls.
    How to correct the error
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "RAISE_EXCEPTION" " "
        "CL_SERVICE_TRG================CP" or "CL_SERVICE_TRG================CM003"
        "SORT_TRANSACTIONS"
        or
        "CL_SERVICE_TRG================CP" "UNKNOWN_TRANSCAT"
        or
        "SBIE0001 " "UNKNOWN_TRANSCAT"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which
        actions and input led to the error.

    Hi,
    It seems like some routine are there and check your rotines , transformation etc.
    Regards
    sivaraju

  • Dump Error in report pgm

    Hi Friends,
    im writting a report pgm to upload some data into ztable from sapia directory.
    the code is given below...
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-028.
    PARAMETERS: p_file_p(30) DEFAULT '/sapia/iface/in/comm/sapfin/' LOWER CASE.
    PARAMETERS: p_file_n(30) DEFAULT 'ac1018pl'.
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN: BEGIN OF BLOCK b3 WITH FRAME TITLE text-029.
    PARAMETERS: p_file_1(30) DEFAULT '/sapia/iface/in/arch/sapfin/' LOWER CASE.
    SELECTION-SCREEN: END OF BLOCK b3.
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-030.
    PARAMETERS: p_file_d(30) DEFAULT 'zace1018'.
    SELECTION-SCREEN: END OF BLOCK b2.
    CONCATENATE p_file_p p_file_n INTO v_infile.
    TRANSLATE v_infile TO LOWER CASE.
    OPEN DATASET v_infile FOR INPUT IN TEXT MODE ENCODING DEFAULT.   " Opening the file/Checking for file existence
    IF sy-subrc <>  0.
      MESSAGE e012 WITH v_infile.                               " Error occured while opening the file <file name>
      EXIT.
    ELSE.
      DO.
        READ DATASET v_infile INTO wa_file.                     " Reading file contents
        IF sy-subrc <>  0.
          CLOSE DATASET v_infile.
          IF n_counter = 0.
            MESSAGE e013 WITH v_infile.
          ENDIF.
          EXIT.
        ELSE.
          APPEND wa_file TO it_file.
          CLEAR wa_file.
          n_counter = n_counter + 1.
        ENDIF.
      ENDDO.
    ENDIF.
    If i run this im getting dump error at run time  as follows,
    Runtime error : CONVT_CODEPAGE
    Except :CX_SY_CONVERSION_CODEPAGE
    Cause: Conversion is not possible. The data is read as far as possible. Text data where the conversion has failed is undefined (see also note below).
    Plz sole the problem... i need it urgent... Helpful answers will be rewarded...

    Hi,
    change the code and try..remove the lower case statement and also the translate statement.
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-028.
    PARAMETERS: p_file_p(30) DEFAULT '/sapia/iface/in/comm/sapfin/' .
    PARAMETERS: p_file_n(30) DEFAULT 'ac1018pl'.
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN: BEGIN OF BLOCK b3 WITH FRAME TITLE text-029.
    PARAMETERS: p_file_1(30) DEFAULT '/sapia/iface/in/arch/sapfin/' .
    SELECTION-SCREEN: END OF BLOCK b3.
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-030.
    PARAMETERS: p_file_d(30) DEFAULT 'zace1018'.
    SELECTION-SCREEN: END OF BLOCK b2.
    CONCATENATE p_file_p p_file_n INTO v_infile.
    Regards,
    Nagaraj

  • Line Item : New dispaly field for Report generated using Tcode FBL1N

    Hi Geeks,
              I want to display further fields in the line item report generated using Tcode FBL1N . i have refered OSS note 373268 it only discuss about fields available from index table ( BSID/BSAD/BSIK/BASK/BSIS/BSAS ) and special field from tables ( BKPF, BSEG, BSEC, BSED... ) using FAKP .My requirement is to add NAME1 from LFA1. Pls suggest a solution.
    Thanks,
    Karthik

    Hi Ushma,
    Its possible.No need to cpy into Z transaction.  You'll have to use a BTE for it.
    Go to FIBF.
    Create a 'Z' product.
    Put your own. Goto settings-> P/S modules-> of a customer.
    Now in the event 00001650 of z product there is a function module.
    It'll be 'LINE_ITEMS_GET_GKONT'.
    make a z by copying this and then put it here.
    Put code in that ZLINE_ITEMS_GET_GKONT.
    Also create append structure in RFPOS and RFPOSX with the fields you want.
    And activate.
    varun

  • "integer too large" error for a long assignment

    I get a compiler error trying to directly assign the value 2 to the 32nd power (4294967296) to a long as shown in "CASE 1". Note that I can indirectly assign this value to a long as shown in "CASE 2" below.
    CASE 1:
    public class Test
    public static void main (String[] args)
    long testValue = 4294967296;
    //long testValue = (Long.MAX_VALUE + 1) / (Integer.MAX_VALUE + 1);
    System.out.println (testValue);
    compiler result:
    Test.java:5: integer number too large: 4294967296
    long testValue = 4294967296;
    ^
    1 error
    print out when run:
    none (doesn't compile)
    CASE 2:
    public class Test
    public static void main (String[] args)
    //long testValue = 4294967296;
    long testValue = (Long.MAX_VALUE + 1) / (Integer.MAX_VALUE + 1);
    System.out.println (testValue);
    compiler result:
    no errors
    print out when run:
    4294967296
    I tried placing a 'L' after "4294967296" in "CASE 1:", but the compiler error remains. It pretty much doesn't seem to allow any value greater than Integer.MAX_VALUE to be directly assigned to a long. Compiler error? Anyone else seen this?

    I think you'll need to re-try this. I just used your case one and got the error you did. I added an 'L' to the end of the integer literal and it compiled and ran, producing the expected output. You need the L (upper or lower case, but lower looks too much like a one) because by default an integral literal is a 32-bit value.

  • Gross Salary Report Need to develop in ABAP Query -sap-hr

    Dear Experts,
    i need to create salary report through ABAP-query.
    i have following below stops.
    1)Create user group thorugh SQ03.
    2) Having problem in creating Infosets,as i need to use PNPCE as ldb and p9001,p9002,p9008,p9000,p90402.but when i am created infoset it is showing in order p9000,p9001,p9002,p9008,p90402.and i am not finding any where join condition,how will i join these.
    Didnt find any tutorials..for HR abap-query
    please advice.
    Thanks & Regards
    Anwar

    Dear Experts,
    i need to create salary report through ABAP-query.
    i have following below stops.
    1)Create user group thorugh SQ03.
    2) Having problem in creating Infosets,as i need to use PNPCE as ldb and p9001,p9002,p9008,p9000,p90402.but when i am created infoset it is showing in order p9000,p9001,p9002,p9008,p90402.and i am not finding any where join condition,how will i join these.
    Didnt find any tutorials..for HR abap-query
    please advice.
    Thanks & Regards
    Anwar

  • Exe giving error for report generation and LV 8.6.1

    I have created and installed a labview application in a PC(windows XP) where labview is not installed.  (already included NI_Excel.lvclass)
    I have used a report(excel) generation to display the results.
    I am getting following error:
    Error Code: -2147352573
    Member not found in NI_Excel.lvclass:
    I am using MS office Excel 2007 SP1
    NI LabVIEW Run-Time Engine:8.6.1.
    Report generation toolkit version:1.1.3
    phani srikanth
    Solved!
    Go to Solution.
    Attachments:
    Error.JPG ‏10 KB

    search the ni website and a 30 day eval copy can be found. For use beyond this period you would have to buy a license (unless you have one of course)
    compatibility can be found on the following link
    http://digital.ni.com/public.nsf/allkb/C9408B9F08D711E786256F3300701D01 
    hope it helps
    TD 
    Please remember to accept any solutions and give kudos, Thanks
    LV 8.6.1, LV2010,LV2011SP1, FPGA, Win7

  • Terminated by signal 11 error for reports

    Hi,
    I observed in internal concurrent manager log is sh: line 71: 3501 Segmentation fault
    and like showing the below
    ========================================================================
    Starting PROD_0826@PROD Internal Concurrent Manager -- shell process ID 1081
    logfile=/oracle/apps/PROD/prodcomn/admin/log/PROD_oraapps01/PROD_0826.mgr
    PRINTER=noprint
    mailto=applprod
    restart=N
    diag=N
    sleep=60 (default)
    pmon=20 (default)
    quesiz=1 (default)
    sh: line 71: 1086 Segmentation fault FNDLIBR FND CPMGR "FNDCPMBR sysmgr=\"\" $maxreq $sleep $pmon $quesiz $diag logfile=$logfile $target" <<STOP
    $sysmanager
    STOP
    The PROD_0826@PROD internal concurrent manager has terminated with status 139 - giving up.
    ========================================================================
    Starting PROD_0826@PROD Internal Concurrent Manager -- shell process ID 5471
    logfile=/oracle/apps/PROD/prodcomn/admin/log/PROD_oraapps01/PROD_0826.mgr
    PRINTER=noprint
    mailto=applprod
    restart=N
    diag=N
    sleep=60 (default)
    pmon=20 (default)
    quesiz=1 (default)
    Application Object Library: Concurrent Processing version 11.5
    Process monitor session ended : 26-AUG-2011 10:14:41
    Process monitor session started : 26-AUG-2011 10:16:41
    Found running request 1620562 attached to dead manager process.
    Setting request status to completed.
    Found dead process: spid=(6657), cpid=(121680), ORA pid=(59), manager=(0/0)
    Starting STANDARD Concurrent Manager : 26-AUG-2011 10:16:45
    Process monitor session ended : 26-AUG-2011 10:16:45
    Process monitor session started : 26-AUG-2011 10:18:45
    Process monitor session ended : 26-AUG-2011 10:18:47
    than manager are bring down like CM status shows
    than we checking the adcmctl.sh status apps/apps
    CM status shows ICM status could not be determined.
    try to open request log than we are getting error like
    'Error connecting to database PROD: ORA-3113' and also all requests completed with errors.
    than stop all services here CM failed to stop
    /oracle/apps/PROD/prodcomn/admin/scripts/PROD_oraapps01/adcmctl.sh: line 244: 9681 Segmentation fault $FND_TOP/bin/CONCSUB "$unpw" SYSADMIN $WAIT_PARAM 'System Administrator' SYSADMIN CONCURRENT FND SHUTDOWN
    [Service Control Execution Report]
    The report format is:
    <Service> <Script> <Status>
    Oracle Apache Server PROD_oraapps01 adapcctl.sh Stopped
    OracleTNSListener80APPS_PROD_oraapps01 adalnctl.sh Stopped
    OracleConcMgrPROD_oraapps01 adcmctl.sh Failed
    OracleFormsServer-Forms60PROD_oraapps01 adfrmctl.sh Stopped
    OracleReportServer-Rep60_PROD adrepctl.sh Stopped
    Oracle Metrics Client PROD_oraapps01 adfmcctl.sh Stopped
    Oracle Metrics Server PROD_oraapps01 adfmsctl.sh Stopped
    Oracle Fulfillment Server PROD_oraapps01 jtffmctl.sh Stopped
    Oracle Discoverer services PROD_oraapps01 addisctl.sh Stopped
    after this again stop the CM by adcmctl stop apps/apps
    than it stopped after that start the all services than works fine,after starting services all requests completed with terminated by signal 11 while CM down ,it happens everyday.
    everyday midnight we take cold backup by scheduling cronjobs
    and also after cloning the ICM did not show the sigmentation fault and in TEST some requests completed with terminated by signal 11
    please give me solution for this issue.
    Thanks,
    mahi

    Mahi,
    This appears to be a serious database issue. Unfortunately, there is no simple magical fix I guess. Going through Oracle Support, instead of applying some patch, is the better route, i believe.
    To me, it appears more of bug# 3804515. Please check the following:
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=3804515.8
    You may want to review the following patches too:
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6945111]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6661430]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6666626]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6682463]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6729613]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6931682]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 6661435]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 7303352]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 7303650]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 7350779]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 7466966]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 7555753]
    "KWQICACLCUR" SHOULD NOT WRITE TRACE FILES FOR ORA-1013 NOR ORA-3113          [Patch 7611844]
    Thanks,
    Raj Mareddi

  • Soap API error for reports 5 pages or more

    Hi,
    I am using soap api to get reports from BI Publisher, I am able to print reports 5 pages, when i try to get reports with pages more than 5 pages getting this error.
    [Error] Execution (1: 1):
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "APEX_040100.WWV_FLOW_WEBSERVICES_API",line 129
    I am using the  following code snippet, Make request is throwing an error
    l_xml := APEX_WEB_SERVICE.make_request(
        p_url      =>v_rpt_wsdl,
        p_action   => v_rpt_action,
        p_envelope => l_envelope
    l_xml is an xmlType
    My Apex schema is : APEX_040100
    Oracle : 10g
    Apex version: Application Express 4.1.1.00.23
    Please help me folks
    Thanks
    Kris

    Bummer! Thought that was the golden ticket!
    Can you run that function successfully through Toad or SQL Developer for those reports? Does it return a value? It looks like it is telling you that APEX_WEB_SERVICE.MAKE_REQUEST call didn't return anything. You are just requesting xml at that point so there shouldn't (theoretically) be size issues unless maybe you are requesting the whole phone book.
    Jen

  • Cost Center Errors for new Account Assignment "P"

    Hi Friends ,
                       We are implement PS for our client , and we are facing some issues with Cost Centers when trying to creating a PO with reference to a PR with the new account assignement "P" -Project .
    Currently our client is using "K" as account assignment  for the doc type which we are using above . The error we get is "Please use cost center 400100 not cost centeru201D. And we get this error randomly , and doesn't seem to occur for all the plants .
    Has anyone come across some thing like this ?
    Please let me know if you need any additional details .
    Thank you ,

    I feel that your message type ZX000 is custom message.  you have to take inputs from your ABAP that in which situation this type of error comes perticularly debuggin scenario.
    Virendra sir, please add on.
    Regards
    Nitin

  • Rwbld60  Error  for Reports

    I am running reports 6i on Win 98 ,when i try to cretae a report using wizard, checking preferences ,occasionally
    this error pop up and reports aborted.Error message is
    "RWBLD60 this program has performed an illegal operation and will shut down if the problem persists contact the program vendor" getting frustrated unable to do reports.Any help for this.
    Thanks
    Jay

    * Please apply the latest 6i patchset and try (which will contain latest bug fixes).
    * Please post the exact steps required to reproduce the problem. In that case either a bug fix patch or a workaround
    can be provided if this is a known issue.
    Thanks
    Ratheesh

  • Open vi error for report generation toolkt

    Originally it works fine.
    Now I upgrade to win7, LV9 and office2010.
    To open the old program by 8.6.1, I reinstalled LV 8.6.1 and report generation toolkit.
    But still got the error as attached.
    Any suggestion, thanks.
    Attachments:
    ss.png ‏184 KB

    1. MS Office 2010 is not yet supported, since it's still just a beta. I believe there are couple of changes that Microsoft make, and it could cause a problem.
    2. LabVIEW 8.6.1, and all its toolkit is not supported on Windows 7. This could cause a problkem also.
    In conclusion, you should use LabVIEW 2009, Report Generation Toolkit 2009, Windows 7, and downgrade office to XP, 2003 or 2007.
    More information: http://digital.ni.com/public.nsf/allkb/C9408B9F08D​711E786256F3300701D01

  • Source Code error for Report Shipping

    Hello,
    This is regarding Report Shipping.
    As per SAP Report Shipping Implementation Guide
    for 4.1Settings for the SD Interface: Shipping Docu-ments
    Under  Environment, Health & Safety> Product Safety> Report Shipping> Basic Settings for Shipping from SD Documents> Material Safety Data Sheet/Sales and Distribution Interface> Settings for the SD Interface: Shipping Documents> Output Determination-->  Check Conditions.. it should be like below
    Routine number: <26>
    Description: Environmentally rlvt
    Active: X (set)
    Application: V2
    Source code:
      FORM KOBED_<Key>.
      SY-SUBRC = 0.
      CHECK KOMPB V2 -KZUMW IS INITIAL.
      SY-SUBRC = 4.
      ENDFORM.
      FORM KOBEV_<Key>.
      SY-SUBRC = 0.
      CHECK KOMPB V2 -KZUMW IS INITIAL.
      SY-SUBRC = 4.
      ENDFORM
    on the other had, i have check 2-3 standard Systems,
    same for Settings for the SD Interface: Shipping Documents> Output Determination>  Check Conditions..
    it is like below
    Routine number: <26>
    Description: Environmentally rlvt
    Active: X (set)
    Application: V1
    Source code:
      FORM KOBED_<Key>.
      SY-SUBRC = 0.
      CHECK KOMPB V1 -KZUMW IS INITIAL.
      SY-SUBRC = 4.
      ENDFORM.
      FORM KOBEV_<Key>.
      SY-SUBRC = 0.
      CHECK KOMPB V1 -KZUMW IS INITIAL.
      SY-SUBRC = 4.
      ENDFORM
    so which one is Correct? Implementation Guide or Standard Setting of System.
    Please guide me.
    Edited by: Amol Joshi on Dec 29, 2010 4:42 PM

    Hi Amol.
    Both are correct.
    The MSDS can be send with the sales order (V1) or with the delivery (V2), it depends of the logistic process configured in the system.
    In SD the delivery may or may not be configured.
    If the delivery is configured selects V2, in the other cases V1.
    Regards.
    JCD

  • PDF Preview Error for ISR Form in tcode SFP...................

    Hello All,
    Have few issues regarding ISR.
    Q1. I am trying to copy existing standard PDF Form <b>ISR_FORM_SRQ2</b> from  Transaction <b>SFP</b> but ....
    If the Standard form has any layout then it gives me error <b>"Internal Error Occured  SAFP API"</b>
    If No layout is designed its blank then it allow me to copy that Form.
    Q2. Also If I try to Preview PDF i get this Information
           Script failed(Language is FormCalc , Context os data..*...etc
                              Controlparameter ISR Mode = Display........................
    In case you want to refer the entire error message, please mail me on <i><b>[email protected]</b></i> & ill forward the same to you.
    Awaiting Reply.
    Thanks,
    Smita

    Hi,
                Please check the XDP file size of the original form..that you are trying
                to copy...( in the command line type-FB_XDP_DOWN )..
               Check if the file size is more than 1 MB...there could be a problem..during
               copying ,saving and activating forms with more than 1MB...

  • Getting Dump error for WD ABAP URL, program CX_WDR_ADAPTER_EXCEPTION======C

    Hi SAP WD gurus,
    Getting the below bump error while launcing the WD ABAP URL on browser.
    Please help to resolve this.
    The following error text was processed in system SD1 : An exception occurred that was not caught.
    The error occurred on the application server isvsapsrmidev_SD1_01 and in the work process 9 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RAISE_FOR of program CX_WDR_ADAPTER_EXCEPTION======CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C0STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP
    Regards,
    Vinod
    Edited by: Vinod Malagi on Jan 9, 2012 7:11 AM

    Hello,
    did you get this fixed? We are experiencing the same issue after just doing the EhP5 upgrade in our first system.
    Thanks,
    Ingrid Funken

Maybe you are looking for