Error "FRF-00025  Unable to call function.when install SM4

ERROR 2009-09-29 15:05:12.687
FRF-00025  Unable to call function. Error message: Exception condition "WRITE_FAILED" raised. .
ERROR 2009-09-29 15:05:12.703
MUT-03025  Caught ERfcExcept in Modulecall: Exception condition "WRITE_FAILED" raised..
ERROR 2009-09-29 15:05:12.734
FCO-00011  The step runRADDBDIF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System
ind
ind
ind
ind
2
0
NW_CI_Instance
ind
ind
ind
ind
11
0
NW_CI_Instance_ABAP_Reports
ind
ind
ind
ind
2
0
runRADDBDIF was executed with status ERROR ( Last error reported by the step :Caught ERfcExcept in
Modulecall: Exception condition "WRITE_FAILED" raised..).

Hi all
Yes, I running for windows. But I found the error below after I re-installation.
ERROR 2009-10-07 15:15:10.718
FCO-00011  The step runRADDBDIF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_ABAP_Reports|ind|ind|ind|ind|2|0|runRADDBDIF was executed with status ERROR .
Regards,
Kevin

Similar Messages

  • FRF-00025  Unable to call function. Error message: Syntax error in program

    hi,
    when we try to import the export file,we are getting the following error in the 24th phase
    i.e., check DDIC Password.
    The Error is
    INFO       2007-10-29 15:53:20 [iaxxrfcimp.cpp:1017]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    TRACE      [iaxxrfcimp.cpp:1056]
               CAbRfcImpl::performFunctionCall
    Calling function module: INST_RFC_GET_INTERFACE
    WARNING[E] 2007-10-29 15:53:21 [iaxxrfcimp.cpp:1089]
               CAbRfcImpl::performFunctionCall
    FRF-00025  Unable to call function. Error message: Syntax error in program SAPLSUNI                                . .
    TRACE      [iaxxrfcimp.cpp:1090]
               CAbRfcImpl::performFunctionCall
    RFC failure or system exception raised
    TRACE      [iaxxrfcimp.cpp:1091]
               CAbRfcImpl::performFunctionCall
    Syntax error in program SAPLSUNI                                .
    TRACE      [iaxxbjsmod.cpp:657]
               CJSlibModule::showOkCancelBox_impl()
    <html>Test logon to SAP System I50 failed.<p>Make sure that the system is started, that the user DDIC exists and that the password of user DDIC is correct.</html>
    TRACE      [iaxxgenimp.cpp:1093]
               showDialog()
    waiting for an answer from gui
    What Could be the solution for this.
    waiting for ur reply
    SS

    Hi Friend,
    Please check whether or not there is view missing error recorded in dev_w0 trace file.
    if there is , you can try to follow this procedure in order to manually
    import the missing view definitions.
    All steps must be carried out with the <sid>adm user of the target
    system and from the install-directory:
    1. In the install-directory
    <sapinst_instdir>\...COPY\IMPORTT\SYSTEM\ABAP\ORA\UC\DB
    create a file SAPVIEW.cmd with the following content:
    tsk: "<sapinst_instdir>\...\COPY\IMPORT\SYSTEM\ABAP\ORA\UC\DB\SAPVIEW.TSK"
    icf: "
    <YOUR_EXPORT_DIRECTORY>\export\DATA\SAPVIEW.STR"
    dcf: "<sapinst_instdir>\...\COPY\IMPORT\SYSTEM\ABAP\ORA\UC\DB\DDLORA.TPL"
    dat: null
    dir: null
    ext: null
    Please make sure that all paths are written correctly (in one line) and
    the refered files are existant and readable. One exception:
    The SAPVIEW.TSK file is created with step 2.:
    2. Run from the command-line:
    R3load -ctf I
    <YOUR_EXPORT_DIRECTORY>\export\DATA\SAPVIEW.STR <sapinst_instdir>\...\COPY\IMPORT\SYSTEM\ABAP\ORA\UC\DB\DDLORA.TPL SAPVIEW.TSK ORA -l SAPVIEW.log
    If there's a problem reading the 'SAPVIEW.STR' file, copy the
    file to the install directory and adapt the path accordingly.
    3. Run the view import by:
    R3load.exe -i SAPVIEW.cmd -dbcodepage <YOUR_CODE_PAGE> -l SAPVIEW.log
    -stop_on_error
    4. Check both the SAPVIEW.log and the SAPVIEW.TSK file whether all views
    have been created successfully.
    If 4. is okay, restart the central instance and check whether you are
    able to log on now. If yes, continue 'sapinst' by the option 'retry' or
    'continue old installation'.
    I Hope It can be helpful.
    With Best Regards
    Julia

  • Error while transforming XSLT by calling function with Reflection API

    Hi,
    I'm new to Reflection API. I want to call function from the jar file which is not in my application context. So I have loaded that jar ( say XXX.jar) file at runtime with URLClassLoader and call the function say [ *myTransform(Document document)* ]. Problem is that when I want to transform any XSLT file in that function it throws exception 'Could not compile stylesheet'. All required classes are in XXX.jar.
    If I call 'myTransform' function directly without reflection API then it transformation successfully completed.
    Following is code of reflection to invoke function
            ClassLoader contextCL = Thread.currentThread().getContextClassLoader();
            URLClassLoader loader = new URLClassLoader(jarURLs, contextCL);
            Class c = loader.loadClass(fullClasspath);
            Constructor constructor = c.getDeclaredConstructor(constructorParamsClasses);
            Object instance = constructor.newInstance(constructorParams);
            Method method = c.getDeclaredMethod("myTransform", methodParamsClasses);
            Object object = method.invoke(instance, methodParams);Following is function to be called with reflection API.
    public Document myTransform ( Document document ) {
    // Reference of Document (DOM NODE) used to hold the result of transformation.
                Document doc = null ;
                // DocumentBuilderFactory instance which is used to initialize DocumentBuilder to create newDocumentBuilder.
                DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance () ;
                // Reference of DocumentBuilder used to create new Document (DOM NODE).
                DocumentBuilder builder;
                try {
                      // Initialize DocumentBuilder by using DocumentBuilderFactory instance.
                      builder = factory.newDocumentBuilder ();
                      // Initialize new document instance by using DocumentBuilder instance.
                      doc = builder.newDocument () ;
                      // Creates new DOMSource by using document (DOM NODE) which is coming through current transform() method parameter.
                      DOMSource domsource = new DOMSource ( document ) ;
                      // Creates new instance of TransformerFactory.
                      TransformerFactory transformerfactory = TransformerFactory.newInstance () ;
                      // Creates new Transformer instance by using TransformerFactory which holds XSLT file.
                      Transformer transformer = null;
    ********* exception is thrown from here onward ******************
                      transformer = transformerfactory.newTransformer (new StreamSource (xsltFile));
                      // Transform XSLT on document (DOM NODE) and store result in doc (DOM NODE).
                      transformer.transform ( domsource , new DOMResult ( doc ) ) ;
                } catch (ParserConfigurationException ex) {
                      ex.printStackTrace();
                } catch (TransformerConfigurationException ex) {
                      ex.printStackTrace();
                } catch (TransformerException ex) {
                     ex.printStackTrace();
                } catch (Exception ex) {
                     ex.printStackTrace();
                //holds result of transformation.
                return doc ;
    }Following is full exception stacktrace
    ERROR:  'The first argument to the non-static Java function 'myBeanMethod' is not a valid object reference.'
    FATAL ERROR:  'Could not compile stylesheet'
    javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:829)
            at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:623)
            at com.actl.dxchange.utilities.Transformation.transform(Transformation.java:83)
            at com.actl.dxchange.base.BaseConnector.transform(BaseConnector.java:330)
            at com.actl.dxchange.connectors.KuoniConnector.doRequestProcess(KuoniConnector.java:388)
            at com.actl.dxchange.connectors.KuoniConnector.hotelAvail(KuoniConnector.java:241)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            ...........

    Hi,
    Thanks for response.
    Following is code for setting 'methodParamsClasses' array object. I do ensure that Document is not null and valid. My application is web application.
    Document requestObj = /* my code for generating Document object*/
    Object[] methodParams = new Object[]{requestObj}
    Class[] methodParamsClasses = new Class[]{};
                if (methodParams != null) {
                    methodParamsClasses = new Class[methodParams.length];
                    for (int i = 0; i < methodParams.length; i++) {
                        if (methodParams[i] instanceof Document) {
    /************** if parameter is instance of Document then I set class type as "Document.class" ***********/
                            methodParamsClasses[i] = Document.class;
                        } else {
                            methodParamsClasses[i] = methodParams.getClass();

  • Error : FRF-00007 Unable to open RFC connection

    Hi All,
    I'm installing SAP BW 3.5 for oracle 9.2 and patch 10.1  on AIX 5.3server.
    The end of installation 'Starting RFC jobs" i got the error.
    Log Details:
    ERROR 2008-07-28 19:20:02
    FRF-00007  Unable to open RFC connection.
    ERROR 2008-07-28 19:20:02
    FRF-00063  RFC logon failed with message: Failed: Connect to SAP gateway failedConnect_PM  GWHOST=biqci, GWSERV=sapgw00, ASHOST=biqci, SYSNR=00
    Can anybody help me to solve this issue
    Regards,
    M.M Selvakumaar
    09739798709
    subject changed by moderator!... Read the "Rules of Engagement"
    Edited by: Juan Reyes on Jul 28, 2008 4:03 PM

    Hi juan,
    Thanks for Ur reply
    As per ur advice : I checked the path etc/services  
    Everything is fine there 
    Then
    Solution:
    I stopped the sap service and restart the service then I continued the installation without error
    After installation I checked T-code: SICK there I got one error 
    Error Details:
    SAP System Check
    OS release AIX 3 5 00C5E98B4C00 is not supported with this kernel (640)
    Severe problems were detected during initial system check.
    Please, do not use that system before fixing these problems.
    So please help me to solve the issue
    Regards,
    MM.selvakumar

  • Error "The System cannot find the specified" when installing XI3.1 FP1.3

    Error "The System cannot find the specified" happened when installing XI3.1 FP1.3 to client machine, however the installation is OK to server.
    After the error, go to Control Panel -> Add or Remove Programs, and observe.
    BusinessObjects Enterprise XI 3.1 Client Tools is installed,
    but BusinessObjects Enterprise XI 3.1 Client Tools Japanese Language Pack is not.
    And Language Pack install log is not written.
    The same error happened when installing .net2.0.
    The installation for FP1.2 is OK.
    Would you tell me what reason probablely this issue is?
    Thanks.

    Hello Sarah,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Why do I get an error message saying unable to use disk when creating a DVD

    I have successfully burned two DVD's of a group of three I am burning of my last vacation pictures. I have successfully created WMV files for each day of the trip which I have combined to create the three DVD's so they won't be too lengthy. I created a menu with main menu and stop menu markers. When I went to burn the third disk, which is the shortest of the group the program would encode to the 96% and then the disk would eject and it would give an errow message saying the disk was not compatable. This was the same type of DVD-RW disks I used on the two successful disks. I tried redoing the burn 3  times with each time getting to 96% on the encription and then the same error message occurred. I used fresh disks each time. On the forth try I cut the number of WMV files down to 3 to make the DVD half as long. The same thing happened at the 96th% spot of the encription process. Nothing had ever been put on the disks. I am using top quality Memorex DVD-RW disks. Please let me know what else I can do. I am very frustrated. Oh yes, I closed the program down each time I got the error and also shut down and restarted the computer afer each error. I really want to finish this project as I have been working on it now for two weeks non stop. Thank you.

    Good, that gets one possibility out of the way.
    Since the error about the disc indicates that the Transcoding has already finished, I think that we can probably rule out the next step, but let's look anyway.
    Now, for Transcoding to DVD, PrE uses 2-pass Encoding, so it would seem that this problem is comng right at the end of the second pass, at the end of the Timeline. Look very closely at that point, and see if there is anything odd there. Things like gaps in the Video of a Timeline, or sometimes Assets that are not proper, can cause Transcoding to stop. Anything there? [I think that with a disc error, Transcoding HAS completed, and the progress bar is just lagging slightly behind, but more questions are probably needed.]
    Last, what brand of blank media are you using? The reason that I ask this is that some companies, like Memorex, buy the cheapest disc that day, and rebrand them, so in a spindle of 25, you might end up with blank discs by different mfgrs., and some can be much better, than others.
    Good luck,
    Hunt

  • Error and files unable to be read when importing into Lightroom

    Hello! I have Lightroom 5.7 and am having an issue trying to import my photos. It comes up with error, cannot read photos and lists the photos that it canot read which is all of them, so it then proceeds to import nothing. I am able to import then into iPhoto fine but not ith Lightroom. Please help!

    An exact quote of the error message would be helpful.
    The most common cause of the "read" error is a problem writing to the primary destination or secondary destination. (Badly written error message.)
    Verify the directory names for typos in the import dialog.
    Using your OS tools (File Explorer or Finder) check the privileges on your destination directories; you need both read and write privs.

  • Installation error code exit code 24 (windows 8) when installing

    so when I install it finishes extracts and then this shows up
    Exit Code: 24 Please see specific errors below for troubleshooting. For example, ERROR: DW001 ... -------------------------------------- Summary -------------------------------------- - 0 fatal error(s), 1 error(s) ----------- Payload: Microsoft Visual C++ 2008 Redistributable Package (x64) 9.0.30729.5677 {512B6D21-18F9-11E2-93C1-00215AEA26C9} ----------- ERROR: DW001: Set payload cancelled status -------------------------------------------------------------------------------------
    on my old computer I did not have problems installing this exact version either

    start here, Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    or get more specific info about that error, Troubleshoot with install logs | CS5, CS5.5, CS6, CC

  • Getting error of CALL FUNCTION in coding

    hi all,
    i have wrtie a code for calling SMART FORM.In the coding START OF SELECTION,i got error at f_display_report
    This the code:
    FORM f_display_report .
      DATA: fname(30) TYPE c.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'ZCCL_RATE_COMPARISION2'
        IMPORTING
          fm_name            = fname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
        CALL FUNCTION fname
          EXPORTING
            gi_main    =  gs_main
          TABLES
            it_detail  =  gi_detail.
      ENDIF.
    ENDFORM.
    where GS_MIAN and GI_DETAIL are:
    gs_main LIKE ekko,
        gi_detail LIKE STANDARD TABLE OF ekpo WITH HEADER LINE.
    after execuring it gives me error of Incorrect parameter with CALL FUNCTION.
    Thanks & Regards,
    sappk25

    Please also place the type refered in smart forms.
    Your dump analysis will clearly say which parameter was mistyped.
    My assumption is
        CALL FUNCTION fname
          EXPORTING
            gi_main    =  gs_main
          TABLES
            it_detail  =  gi_detail[]   "<--- try adding a square bracket here

  • Kindly help ORA-00917: missing comma" ERR-1101 Unable to process function

    HI Experts,
    Since yesterday every thing was fine, i do not know what happened in the evening, we are facing some issue with our production.
    I'm getting the following error ,when i running the report
    ORA-00917: missing comma
         Error      ERR-1101 Unable to process function body returning query.
    Since long time we have even not touched the code , i'm wondering about this error...the same code was working fine just 2 days back.
    Kindly help me with this...
    Code
    DECLARE
       date_from DATE:=:P46_TRANS_DATEFROM;
       date_to DATE:=:P46_TRANS_DATETO;
       --date_from DATE :=TO_DATE('22-Nov-2007','DD-Mon-yyyy');
       --date_to DATE :=TO_DATE('23-Nov-2007','DD-Mon-yyyy');
       date_counter DATE:=date_from;
       v_city varchar2(32):=:P46_CITY;
       str_month1 VARCHAR2(3):=SUBSTR(TO_CHAR(date_from,'DD-MON-YYYY'),4,3);
       str_year1 VARCHAR2(4):=SUBSTR(TO_CHAR(date_from,'DD-MON-YYYY'),8,4);
       str_month2 VARCHAR2(3):=SUBSTR(TO_CHAR(date_to,'DD-MON-YYYY'),4,3);
       str_year2 VARCHAR2(4):=SUBSTR(TO_CHAR(date_to,'DD-MON-YYYY'),8,4);
       day_from VARCHAR2(2):=SUBSTR(date_from,1,2);
       day_to VARCHAR2(2):=SUBSTR(date_to,1,2);
       CURSOR trans_alloc(m VARCHAR2,y NUMBER,email VARCHAR2) IS SELECT * FROM EFT_TRANS_ALLOCATION WHERE LOWER(MONTH)=LOWER(m) AND YEAR=y AND LOWER(email_id)=LOWER(email);
       CURSOR trans_schedules(m1 VARCHAR2,y1 NUMBER,m2 VARCHAR2,y2 NUMBER) IS SELECT * FROM OD_SHIFT_SCHEDULE WHERE (UPPER(MONTH)=m1 OR UPPER(MONTH)=m2) AND (YEAR=y1 OR YEAR=y2);
       CURSOR get_res_id(email VARCHAR2) IS SELECT resource_id,first_name,last_name FROM EFT_RESOURCES WHERE LOWER(email_id)=LOWER(email);
       rec OD_SHIFT_SCHEDULE%ROWTYPE;
       CURSOR get_shifts(id VARCHAR2) IS SELECT * FROM OD_SHIFTS WHERE shift_id=id;
       ta EFT_TRANS_ALLOCATION%ROWTYPE;
       sd OD_SHIFTS%ROWTYPE;
       sql_str VARCHAR2(4000);
       v_res_id NUMBER;
       v_fname VARCHAR2(50);
       v_lname VARCHAR2(50);
       v_shift_id VARCHAR2(32);
       s VARCHAR2(1000);
       d VARCHAR2(32);
       final_sql VARCHAR2(4000);
       v_consent VARCHAR2(3);
       s2 VARCHAR2(1000);
       dn DATE;
    BEGIN
       DELETE FROM EFT_SHIFT_SCHEDULES_RPT;
       OPEN trans_schedules(UPPER(str_month1),TO_NUMBER(str_year1),UPPER(str_month2),TO_NUMBER(str_year2));
       LOOP
          FETCH trans_schedules INTO rec;
           EXIT WHEN trans_schedules%NOTFOUND;
           OPEN get_res_id(rec.name);
           FETCH get_res_id INTO v_res_id,v_fname,v_lname;
              OPEN trans_alloc(TO_CHAR(date_counter,'MON'),TO_NUMBER(TO_CHAR(date_counter,'YYYY')),rec.name);
               FETCH trans_alloc INTO ta;
               IF trans_alloc%FOUND THEN
               dbms_output.put_line (date_counter||'----'||date_to||'Res_id:----'||v_res_id||'-'||ta.slno);
               dbms_output.put_line ('Found Alloc');
               WHILE date_counter<=date_to
               LOOP
                    --d:=d||'-'||str_month||'-'||str_year;
                    d:=SUBSTR(TO_CHAR(date_counter,'DD-MON-YYYY'),1,2);     
                    s:='INSERT INTO temp_2 SELECT "'||d||'" from OD_SHIFT_SCHEDULE where slno='||rec.slno;
                    --dbms_output.put_line (d||'-'||s);
                    DELETE FROM temp_2;
                    EXECUTE IMMEDIATE s;
                    SELECT substr(trim(VAL),1,1) INTO v_shift_id FROM temp_2;
                    s2:='INSERT INTO temp_3 SELECT "'||d||'" from EFT_TRANS_ALLOCATION where slno='||ta.slno;
                    DELETE FROM temp_3;
                    EXECUTE IMMEDIATE s2;
                    SELECT VAL INTO v_consent FROM temp_3;
                    --dbms_output.put_line (v_shift_id||'-'||v_consent);
                    --dbms_output.put_line (date_counter||'-'||date_to);
                    IF v_consent='Y' THEN
                    --dbms_output.put_line ('Im inside consent'||v_consent);
                    IF v_shift_id IS NOT NULL THEN
                    --dbms_output.put_line ('Im inside shift not null'||v_shift_id);
                       OPEN get_shifts(v_shift_id);
                       FETCH get_shifts INTO sd;
                        IF sd.night_shift_indicator='Y' THEN
                           dn:=date_counter+1;
                        sql_str:='INSERT INTO eft_shift_schedules_rpt VALUES ('||v_res_id||','''||v_fname||''','''||v_lname||''','''||rec.name||''','''||sd.shift_name||''','''||date_counter||''','''||sd.start_from||''','''||sd.start_to||''','''||''','''||sd.active_yn||''','''||dn||''')';
                        ELSE
                           sql_str:='INSERT INTO eft_shift_schedules_rpt VALUES ('||v_res_id||','''||v_fname||''','''||v_lname||''','''||rec.name||''','''||sd.shift_name||''','''||date_counter||''','''||sd.start_from||''','''||sd.start_to||''','''||''','''||sd.active_yn||''','''||date_counter||''')';
                        END IF;
                       EXECUTE IMMEDIATE sql_str;
                       CLOSE get_shifts;
                        --dbms_output.put_line (sql_str);
                    END IF;
                    END IF;
                    COMMIT;
                    date_counter:=date_counter+1;     
              END LOOP;
               END IF;
          CLOSE trans_alloc;
           CLOSE get_res_id;
           --dbms_output.put_line (rec.name);
           date_counter:=date_from;
       END LOOP;
       COMMIT;
       CLOSE trans_schedules;
    final_sql:='select a.first_name,a.last_name,a.email_id,a.shift_details,a.arrange_date,a.slot_from,a.slot_to,a.trans_arranged,a.active_yn,b.address1,b.address2,b.city,b.state,b.pin,b.worknumber,b.homenumber,b.mobilenumber,a.to_date from eft_shift_schedules_rpt a,eft_locations b where a.resource_id=b.resource_id and b.city =:P46_CITY';
    --dbms_output.put_line (final_sql);
    RETURN final_sql;
    END;

    Hi Basva,
    my best advice is find out where the error happens, e.g. using DBMS_UTILITY.FORMAT_ERROR_BACKTRACE .
    In the next step you can fix the error and rework the code so that it looks nice and has some comments in it so everyone knows what it SHOULD do.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • Calling Functional module

    Hi,
    when iam  calling functional modiule I am getting the errors,
    REPORT  ZAC_TAB25.
               CALL FUNCTION 'ZAC_CALCULATE'.
                 EXPORTING
                   IM_NUM1         = P_NUM1,
                   IM_NUM2         = P_NUM2,
                   IM_OPER         = P_OPER.
               IMPORTING
                 EX_RESULT       =
    PARAMETERS:
    P_NUM1 TYPE I,
    P_NUM2 TYPE I,
    P_OPER TYPE C.
    DATA:
    W_RESULT TYPE C.
    Error iam getting is Comma without preceding colon (after EXPORTING ?).

    hI,
    i had done in this way. still it is showing error.
    REPORT  ZAC_TAB25.
                          CALL FUNCTION 'ZAC_CALCULATE'
                 EXPORTING
                   IM_NUM1         =  P_NUM1
                   IM_NUM2         =  P_NUM2
                   IM_OPER         =  P_OPER
               IMPORTING
                 EX_RESULT       =  W_RESULT
    PARAMETERS:
    P_NUM1 TYPE I,
    P_NUM2 TYPE I,
    P_OPER TYPE C.
    DATA:
    W_RESULT TYPE C.
    Field "P_NUM1" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement . . . . . . . . . .
    Message was edited by:
            rams s

  • Using 'merge' to compare sequential rows from SQL causes "invalid attempt to call Read when reader is closed"

    Hello,
    The use case is each row logs a cumulative data point, like an odometer, and I need to be able to subtract a previous row from a following row in order to see the change between two rows.
    I can do this if I create a Power Query "From Table," but if I do the same thing when the data source is SQL, I get an error message "invalid attempt to call Read when reader is closed".
    Given a trivial data table, this works:
    let
        Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
        #"Added Index" = Table.AddIndexColumn(Source, "Index", 0, 1),
        #"Added Index1" = Table.AddIndexColumn(#"Added Index", "Index.1", 1, 1),
        Merge = Table.NestedJoin(#"Added Index1",{"Index.1"},#"Added Index1",{"Index"},"NewColumn"),
        #"Expand NewColumn" = Table.ExpandTableColumn(Merge, "NewColumn", {"Odometer"}, {"NewColumn.Odometer"})
    in
        #"Expand NewColumn"
    But attempting the same technique against data from SQL, I get the above error "invalid attempt to call Read when reader is closed".
    Any suggestions? If this is a feature (or bug) that can't be overcome, is there another way to compare values between two rows?
    Thanks,
    Ed

    Please use "send a frown" to report the bug so we can fix it. Is the data very big? The simplest workaround is likely to be the use of "Table.Buffer" to buffer the table locally before doing this work; that will cause us to stop any
    attempt to do the processing on the server. If the table is very big, though, this isn't an attractive approach.

  • Error when installing Lion on empy HD: "Couldn't find app store version, falling back to hardcoded"

    I've run in to a problem that is making me tear the hair from my head. I'm hoping for your help!
    Short story:
    I'm trying to install OS X Lion on my 27" iMac.
    I've erased the HD using Disc Tool in recovery.
    HD shows no errors.
    I've tried Internet Recovery (it loads up, but wont start the installation)
    I've tried creating a recovery usb on another similar iMac, and use it on this. Same error, only differance is it keeps "loading" when installing, but nothing happens. Same error in log.
    When I try to start the Reinstall I get an error in the installation log that goes something like this:
    Install Mac OS X Lion[354:9c03] Couldn't find app store version, falling back to hardcoded
    Can not connect to /var/run/systemkeychaincheck.socket: No such file or directory
    Apple Care suggested:
    Trying another network (doesn't work).
    Install with the original Snow Leopard DVD first, then upgrade (can't do that, the DVD is lost and a DVD from another friend is not working)
    What can I do to get around this error?
    Someone suggested buying a usb with Snow Leopard from the apple store. Do I really have to buy a NEW operating system because the recovery doesn't work? Would I have to pay to upgrade to Lion again?

    Follow AppleCare's instructions on re-installing Snow Leopard and re-installing Lion. Your friends disc won't work because the discs are machine specific. You will have to get a replacement set of your original Install Discs from AppleCare for a nominal cost.

  • ClassicNotSeize.kext error when installing updates

    Does anyone know what this error is? I keep getting it when installing updates lately, yet I don't seem to be having any other problems. The error reads:
    *System extension cannot be used*
    The system extension "/System/Library/Extensions/CNQL1212_ClassicNotSeize.kext" was installed improperly and cannot be used. Please try reinstalling it, or contact the product's vendor for an update.

    Seen this?
    http://discussions.apple.com/thread.jspa?messageID=10281551

  • Error encounter when calling function in where clause

    I have created on e user define function.when i am trying to call in select statement it is working fine but when I try to call in where clause it gives me this
    error
    The following error has occurred:
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "KINTANA.COMPARE_DATE", line 33
    suggest me possible solution
    Thanks Chanda

    Hi,
    i am trying to call in select statement it is working fine but when I try to call in >>where clause it gives me this I am suspecting the same function call is working fine in SELECT and not in WHERE clause.
    Please have a look:
      1  CREATE OR REPLACE FUNCTION f1
      2     RETURN NUMBER IS
      3  BEGIN
      4     return 1;
      5  EXCEPTION
      6     WHEN OTHERS THEN
      7     return -1;
      8* END;
    SQL>/
    Function created.
    SQL>
    SQL>SELECT f1 FROM DUAL;
            F1
             1
    1 row selected.
    SQL>SELECT sysdate FROM dual WHERE 1=f1;
    SYSDATE
    15-MAY-06
    1 row selected.
    "afiedt.buf" 10 lines, 140 characters
      1     CREATE OR REPLACE FUNCTION f1
      2        RETURN NUMBER IS
      3     BEGIN
      4     NULL;
      5     EXCEPTION
      6        WHEN OTHERS THEN
      7        return -1;
      8*   END;
      9  /
    Function created.
    SQL>SELECT f1 FROM dual;
    SELECT f1 FROM dual
    ERROR at line 1:
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "AVINASHT.F1", line 7
    SQL>SELECT sysdate FROM dual where 1=f1;
    SELECT sysdate FROM dual where 1=f1
    ERROR at line 1:
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "AVINASHT.F1", line 7
    SQL>DECLARE
      2  a NUMBER ;
      3  BEGIN
      4  a := 0;
      5  a := f1;
      6  END;
      7  /
    DECLARE
    ERROR at line 1:
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "AVINASHT.F1", line 7
    ORA-06512: at line 5It would be better to understand if you post your function and how you are calling.
    Regards

Maybe you are looking for

  • How to create a Goods receipt for Purchase order

    Hi All, How to create a GR for PO and then i need to invoice the PO Please tell me ASAP. Regards, Sagar.

  • Is there a way to find Jdev version from command line.

    Hi All, Good Day. We have an application that launches jdeveloper xslt mapper. We set up classpaths and launch it. However we need to support all versions of jdev - 10.1.2, 10.1.3, 10.1.4. Is there a way to determine the jdev version I am using at ru

  • How to stop my icons from shaking

    Last night I was downloading an app...after it finished downloading the icons started shaking. I'm not talking about shaking like when you want to delete an app... but they are shaking for no reason. I have tried restarting iPad, as well as I reset t

  • Trigger a job based on a job that will be created during runtime

    I searched sdn and I did not find any threads addressing my issue(Trigger JOB B after a JOB A which will not be available untill runtime). My Req: I have a where in, a JOB 'A' will trigger to execute a BDC session in program A using a SUBMIT ...RETUR

  • Problem in working applets in IE 6

    I have created GUI using applets.Its is not working in IE 6. How can i fix the problem,heard is the problem with the Java version and the IE 6. Am using Java 1.5.0_04 and tried the same with the Java Version 1.4.2 anticipating reply Dheeraj Vijay