Cannot retreive table records.

Hi
When I am trying to retreive record from the table I am getting following error. But the exist in the database. can anyone help me on this.
SQL> SELECT * from kdev199.calls_external where rownum<2;
SELECT * from kdev199.calls_external where rownum<2
ERROR at line 1:
ORA-29913: error in executing ODCIEXTTABLEOPEN callout
ORA-29400: data cartridge error
error opening file /test/kclaims/xcom/CALLS_EXTERNAL_24536.log

Hi find the output below.
SQL> SELECT DBMS_METADATA.GET_DDL('TABLE','CALLS_EXTERNAL','KDEV199') FROM DUAL;
DBMS_METADATA.GET_DDL('TABLE','CALLS_EXTERNAL','KDEV199')
CREATE TABLE "KDEV199"."CALLS_EXTERNAL"
( "CALL_ID" NUMBER,
"CALL_DATE" DATE,
"EMP_ID" NUMBER,
"CALL_TYPE" VARCHAR2(12),
"DETAILS" VARCHAR2(25)
ORGANIZATION EXTERNAL
( TYPE ORACLE_LOADER
DEFAULT DIRECTORY "EXTERNAL_DIR_CLMXCOM"
DBMS_METADATA.GET_DDL('TABLE','CALLS_EXTERNAL','KDEV199')
ACCESS PARAMETERS
( records delimited by newline
LOGFILE 'calls.log'
fields terminated by ','
missing field values are null
call_id, call_date char date_format date mask
"mm-dd-yyyy:hh24:mi:ss",
emp_id, call_type, details
DBMS_METADATA.GET_DDL('TABLE','CALLS_EXTERNAL','KDEV199')
LOCATION
( 'calls.dat'
SQL> SELECT count(*) from kdev199."calls_external"
2 ;
SELECT count(*) from kdev199."calls_external"
ERROR at line 1:
ORA-00942: table or view does not exist
SQL> SELECT count(*) from kdev199.calls_external
2 ;
SELECT count(*) from kdev199.calls_external
ERROR at line 1:
ORA-29913: error in executing ODCIEXTTABLEOPEN callout
ORA-29400: data cartridge error
error opening file /test/kclaims/xcom/calls.log

Similar Messages

  • Error applying Adobe Reader 11.0.07 patch - "Error 2762. Cannot write script record. Transaction not started"

    I have a problem applying the "adobe reader 11.0.07" patch. I have downloaded "AdbeRdrUpd11007_MUI.msp" from Adobe site and tried applying the patch using the command.
    The following error is prompted
    "Error 2762. Cannot write script record. Transaction not started" at the end of installation, But the version is updated to "11.0.07" in ARP.
    This error is mainly related to custom action sequence in "Execute sequence".
    I have created logfile and checked. it points to the custom action - "CreateAcroPDFRegForIE11".
    Could someone help me resolve this issue?
    Thanks in Advance..

    Hello Kashif,
    Find the answers below:
    1) How did you install reader MUI for example by running setup.exe or through an AIP or may be via SCCM or GPO? Any customizations during first install?
         package is for SCCM  and the Installation is carried through msi . AIP
    2) Which version of Reader MUI do you have installed curently?
         Adobe Reader 11.0.05
    3) Which command did you use to run the patch?
         msiexec /p AdbeRdrUpd11007_MUI.msp
    4) Did you run the patch from an elevated command prompt?
         Yes
    5) Which OS version are you at?
         Windows 7 64 bit
    Am unable to share the log file, am just copying the lines where the installation stops and prompts error:
    MSI (s) (24:20) [11:26:44:071]: Doing action: CreateAcroPDFRegForIE11
    Action start 11:26:44: CreateAcroPDFRegForIE11.
    MSI (s) (24:20) [11:26:44:071]: Transforming table CustomAction.
    MSI (s) (24:20) [11:26:44:071]: Transforming table CustomAction.
    MSI (s) (24:20) [11:26:44:071]: Note: 1: 2262 2: CustomAction 3: -2147287038
    MSI (s) (24:20) [11:26:44:071]: Transforming table CustomAction.
    MSI (s) (24:20) [11:26:44:071]: Transforming table Binary.
    MSI (s) (24:20) [11:26:44:071]: Transforming table Binary.
    MSI (s) (24:20) [11:26:44:071]: Note: 1: 2262 2: Binary 3: -2147287038
    MSI (s) (24:20) [11:26:44:071]: Transforming table Binary.
    MSI (s) (24:20) [11:26:44:071]: Note: 1: 2762
    MSI (c) (80:E8) [11:26:44:243]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Error 2762.Cannot write script record. Transaction not started.
    MSI (s) (24:20) [11:33:58:305]: Product: Adobe Reader XI (11.0.07)  MUI -- Error 2762.Cannot write script record. Transaction not started.
    Action ended 11:33:58: CreateAcroPDFRegForIE11. Return value 3.
    Thanks In Advance..

  • FRM-12001:  Cannot create the record group (check your query).

    I WANT TO ADD A RECORD GROUP IN PRI BUILD FORM THE QUARY IS VERY SIMPLE LIKE
    SELECT item_code
    FROM items
    WHERE active = 'Y'
    AND item_code like 'FAJ%'
    BUT THE SYSTEM SHOW THE ERROR MESSAGE
    Cannot create the record group (check your query).

    Make sure the user connected to the database from the forms builder has the privilege of select from the table, or there's a synonym.
    Try your query from SQL*Plus connected with the same user.
    Tony

  • What is the condition to retreive the records between two dates

    Hi,
         I will give START_DATE and END_DATE for a program to retreive the records between these two dates.
        how to write the select query to retreive the records between these two dates.?
        suppose i want to retreive NACHN, VORNA from PA0002.
    then how to write query to retreive nachn, vorna between START_DATE and END_DATE.

    hi,
    Types:begin of ty_pa0002,
              NACHN type PAD_NACHN,
              vorna  type PAD_VORNA,
              end of ty_pa0002.
    Data:it_pa0002 type table of ty_pa0002.
    Parameters:start_date type begda,
                      end_date type  ENDDA .
    select NACHN
              vorna
    from pa0002
    into table it_pa0002
    where begda = start_date
    and  ENDDA = end date.
    Regards,
    Shiva.

  • ORA-00604 error occured at recursive level1,ORA-20123 Insufficient privileges: you cannot drop table cls_lrn_tab_unique TABLE,ORA-06512

    Dear All,
         I created one table like
    create table cls_lrn_tab_unique (F_no number unique UK_F_NO );
    after performing some operations I want to delete the same.
    At that time i got following error. Please help me and tell what is the reason for the error.
    ORA-00604 error occured at recursive level1
    ORA-20123 Insufficient privileges: you cannot drop table cls_lrn_tab_unique TABLE,
    ORA-06512 at line no 2
    Thanks and Regards
    Prasad

    26bffcad-f9a2-4dcf-afa0-e1e33d0281bf wrote:
    Dear All,
         I created one table like
    create table cls_lrn_tab_unique (F_no number unique UK_F_NO );
    after performing some operations I want to delete the same.
    At that time i got following error. Please help me and tell what is the reason for the error.
    ORA-00604 error occured at recursive level1
    ORA-20123 Insufficient privileges: you cannot drop table cls_lrn_tab_unique TABLE,
    ORA-06512 at line no 2
    Thanks and Regards
    Prasad
    ORA-20123 is a localized/customized error code & message; therefore any solution depends upon what is unique inside your DB now.
    I suspect that some sort of TRIGGER exists, which throws posted error, but this is just idle speculation on my part.
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002

  • How can I convert table object into table record format?

    I need to write a store procedure to convert table object into table record. The stored procedure will have a table object IN and then pass the data into another stored procedure with a table record IN. Data passed in may contain more than one record in the table object. Is there any example I can take a look? Thanks.

    I'm afraid it's a bit labourious but here's an example.
    I think it's a good idea to work with SQL objects rather than PL/SQL nested tables.
    SQL> CREATE OR REPLACE TYPE emp_t AS OBJECT
      2      (eno NUMBER(4)
      3      , ename  VARCHAR2(10)
      4      , job VARCHAR2(9)
      5      , mgr  NUMBER(4)
      6      , hiredate  DATE
      7      , sal  NUMBER(7,2)
      8      , comm  NUMBER(7,2)
      9      , deptno  NUMBER(2));
    10  /
    Type created.
    SQL> CREATE OR REPLACE TYPE staff_nt AS TABLE OF emp_t
      2  /
    Type created.
    SQL> Now we've got some Types let's use them. I've only implemented this as one public procedure but you can see the principles in action.
    SQL> CREATE OR REPLACE PACKAGE emp_utils AS
      2      TYPE EmpCurTyp IS REF CURSOR RETURN emp%ROWTYPE;
      3      PROCEDURE pop_emp (p_emps in staff_nt);
      4  END  emp_utils;
      5  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY emp_utils AS
      2      FUNCTION emp_obj_to_rows (p_emps IN staff_nt) RETURN EmpCurTyp IS
      3          rc EmpCurTyp;
      4      BEGIN
      5          OPEN rc FOR SELECT * FROM TABLE( CAST ( p_emps AS staff_nt ));
      6          RETURN rc;
      7      END  emp_obj_to_rows;
      8      PROCEDURE pop_emp (p_emps in staff_nt) is
      9          e_rec emp%ROWTYPE;
    10          l_emps EmpCurTyp;
    11      BEGIN
    12          l_emps := emp_obj_to_rows(p_emps);
    13          FETCH l_emps INTO e_rec;
    14          LOOP
    15              EXIT WHEN l_emps%NOTFOUND;
    16              INSERT INTO emp VALUES e_rec;
    17              FETCH l_emps INTO e_rec;
    18          END LOOP;
    19          CLOSE l_emps;
    20      END pop_emp;   
    21  END;
    22  /
    Package body created.
    SQL>Looks good. Let's see it in action...
    SQL> DECLARE
      2      newbies staff_nt :=  staff_nt();
      3  BEGIN
      4      newbies.extend(2);
      5      newbies(1) := emp_t(7777, 'APC', 'CODER', 7902, sysdate, 1700, null, 40);
      6      newbies(2) := emp_t(7778, 'J RANDOM', 'HACKER', 7902, sysdate, 1800, null, 40);
      7      emp_utils.pop_emp(newbies);
      8  END;
      9  /
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM emp WHERE deptno = 40
      2  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM
        DEPTNO
          7777 APC        CODER           7902 17-NOV-05       1700
            40
          7778 J RANDOM   HACKER          7902 17-NOV-05       1800
            40
    SQL>     Cheers, APC

  • Error while querying - You cannot update this record

    Hi all,
    I have a builded a form and was successful when i enter the data. But when i query the form it is showing me the error FRM-14050 YOU CANNOT UPDATE THIS RECORD.
    I have pre-insert, pre-update and pre-query triggers at block level.
    In PRE_INSERT iam setting the property to insert allowed and true.
    same way for pre-update and pre-query.
    Can any one guide me.
    Thanks
    Sunil

    Hi
    check your fields name name and match with database fields.
    vikas

  • Adpatch Fail WithError Cannot Get Table Of Contents In Library File For Pro

    I install EBS R12.1.1 on windows server 2003 R2 on the vmware station.
    when I upgrade R12.1.3 adpatch the 9239089, it has the error,the log is belowing:
    ===============================================================
    ---ad----------------------------------------
    Extracting object modules for product ad...
    C:/oracle/PROD/apps/apps_st/appl/ad/12.0.0/bin/adlibout.sh: line 332: lib: command not found
    adlibout: error: cannot get table of contents in library file for product ad
    File name is C:/oracle/PROD/apps/apps_st/appl/ad/12.0.0/lib/adst.lib
    Skipping to next product...
    ================================================================
    I check doc[ID 335488.1], the problem is same as I.
    and i do the steps in this document.
    step1:
    i check %JAVA_TOP%=C:\oracle\PROD\apps\apps_st\comn\java\classes,but there is not files loadjava.zip. so i copy it from C:\oracle\PROD\apps\apps_st\comn\java\lib; then i add the classpath on the setting of the environment variables in the system properties.
    step2:
    i check it has the lib.exe adst.lib fndst.lib and work correctly.
    STEP3:
    I don't know how can I do the following information:
    +*<moderator edit - deleted MOS Doc content - pl do not post such content - it is a violation of your Support agreement>*+
    Are there persons can help me?

    C:\Documents and Settings\Administrator>which lib
    C:\mvcs\VC\bin/lib.exe
    C:\Documents and Settings\Administrator>lib /nologo /list C:\oracle\PROD\apps\ap
    ps_st\appl\ad\12.0.0\lib\adst.lib
    adpcdlvl.obj
    adpdrv.obj
    adpvov.obj
    adusnap.obj
    aidrdf.obj
    aidsql.obj
    aifgms.obj
    aiibas.obj
    aijmgr.obj
    aijmtab.obj
    aijwrkr.obj
    aiogfm.obj
    aioora.obj
    aiospawn.obj
    aiuarg.obj
    aiucef.obj
    aiucmd.obj
    aiufil.obj
    aiulog.obj
    aijtim.obj
    ailreg.obj
    aimrdb.obj
    aiofrl.obj
    aiojava.obj
    aiopatch.obj
    aipind.obj
    aipini.obj
    aiuoqg.obj
    aiuora.obj
    dmeef.obj
    dmmcad.obj
    dmmcon.obj
    dmmffk.obj
    dmmmax.obj
    dmmmis.obj
    dmmnew.obj
    dmmobs.obj
    dmmold.obj
    dmmsrc.obj
    dmmtar.obj
    dmud.obj
    adicep.obj
    admfac.obj
    admfrt.obj
    adpact.obj
    adpfil.obj
    adpgbl.obj
    adphist.obj
    adpmisc.obj
    adppmf.obj
    adprdc.obj
    adpver.obj
    adsmisc.obj
    adsugu.obj
    aduattr.obj
    adudbsn.obj
    adufbb.obj
    aduffk.obj
    adufpk.obj
    adufrt.obj
    adufsq.obj
    aduftb.obj
    adufvw.obj
    aiumem.obj
    aiures.obj
    aiusql.obj
    aiustr.obj
    aiustrg.obj
    aiuval.obj
    aiuver.obj
    aiz.obj
    dmecep.obj
    dmesr.obj
    dmmact.obj
    dmmb.obj
    dmmbi.obj
    dmmcep.obj
    dmmef.obj
    aioenv.obj
    aiofcp.obj
    aiofdl.obj
    aiofgg.obj
    aiofgp.obj
    aiofgr.obj
    aiofls.obj
    aiofsp.obj
    aioful.obj
    aiofvf.obj
    aiofxx.obj
    aioini.obj
    aioproc.obj
    aiosdt.obj
    aiotime.obj
    aiounl.obj
    aipclien.obj
    aipfind.obj
    aifrdf.obj
    aifrof.obj
    aifunl.obj
    aifvaf.obj
    aifz.obj
    aiicot.obj
    aiidps.obj
    aiierr.obj
    aiiics.obj
    aiiind.obj
    aiiini.obj
    aiiipb.obj
    aiipdm.obj
    aiispm.obj
    aijcssd.obj
    aijcsssm.obj
    aijctrl.obj
    aijhigh.obj
    aijmjava.obj
    aijmlist.obj
    aiccep.obj
    aicdb.obj
    aicdgrt.obj
    aicdind.obj
    aicdprv.obj
    aicds2.obj
    aicdsyn.obj
    aicdview.obj
    aicfile.obj
    aicintfc.obj
    aicpar.obj
    aicsave.obj
    aictsu.obj
    aidafc.obj
    aidapp.obj
    aidcfk.obj
    aidcrt.obj
    aidenv.obj
    adufea09.obj
    adufeat.obj
    adufix.obj
    adugbl.obj
    aduhsh.obj
    adum.obj
    adumd.obj
    adumef1.obj
    adumef2.obj
    aduoix.obj
    adupln.obj
    adurts.obj
    admpmf.obj
    admpmr.obj
    admprn.obj
    admpst.obj
    adncep.obj
    adpcfv.obj
    adpfndld.obj
    adphena.obj
    adpintfc.obj
    adpparr.obj
    adppdep.obj
    adptask.obj
    adsenv.obj
    adsha1.obj
    admpmd.obj
    admpbf.obj
    admgri.obj
    admd5.obj
    admd.obj
    admatr.obj
    admart.obj
    admamo.obj
    admaln.obj
    admabb.obj
    admaac.obj
    adino.obj
    adifo.obj
    addts.obj
    addbs.obj
    adcptch.obj
    adcosd.obj
    adcintfc.obj
    adcfil2.obj
    adcfil1.obj
    adcds.obj
    adccfl.obj
    adapps.obj
    adufea08.obj
    adufea07.obj
    adufea06.obj
    adufea05.obj
    adufea04.obj
    adufea03.obj
    adufea02.obj
    adufea01.obj
    aduf.obj
    adue.obj
    adudyn.obj
    aducsfs.obj
    aducd.obj
    aduatcfg.obj
    aduabb.obj
    aduaaf.obj
    adsrtr.obj
    adsrpd.obj
    adsrlo.obj
    adsrln.obj
    adxpfpps.obj
    aduxxx.obj
    aduxvw.obj
    aduxtb.obj
    aduxsz.obj
    aduxsq.obj
    aduxsn.obj
    aduxpv.obj
    aduxpm.obj
    aduxpk.obj
    aduxix.obj
    aduxft.obj
    aduxfk.obj
    aduxco.obj
    aduxbb.obj
    adustb.obj
    adussq.obj
    adussf.obj
    adusrt.obj
    adusq2.obj
    aduspk.obj
    adusix.obj
    adusfk.obj
    adusbb.obj
    aifpll.obj
    aiflrv.obj
    aiflnk.obj
    aiflist.obj
    aifif.obj
    aifgov.obj
    aifggd.obj
    aifdrv.obj
    aifcf.obj
    aidz.obj
    aidvao.obj
    aiduic.obj
    aidsws.obj
    aidsiz.obj
    aidora.obj
    aidldf.obj
    aidgrnt.obj
    aidfgs.obj
    aideva.obj
    aiodxx.obj
    aiocset.obj
    aiocef.obj
    aimz.obj
    aimudb.obj
    aimres.obj
    aimras.obj
    aimlld.obj
    aimiup.obj
    aimism.obj
    aimini.obj
    aimact.obj
    ailtrf.obj
    ailmisc.obj
    ailifc.obj
    ailfind.obj
    aijtodo.obj
    aijpkch.obj
    aijpdep.obj
    aijmres.obj
    aiuext.obj
    aitz.obj
    aitwrt.obj
    aitshp.obj
    aitopt.obj
    aitldf.obj
    aitlang.obj
    aitfile.obj
    aitcom.obj
    aitarc.obj
    aipz.obj
    aipvrs.obj
    aipudb.obj
    aiptest.obj
    aiprpf.obj
    aipres.obj
    aiprel.obj
    aippgrp.obj
    aipodf.obj
    aipmsob.obj
    aipmisc.obj
    dmusr.obj
    dmus.obj
    dmumn.obj
    dmuef.obj
    dmucom.obj
    dmmuid.obj
    dmmsr.obj
    dmmp2.obj
    dmmp1.obj
    aijboth.obj
    aiimm.obj
    aiigce.obj
    aiicfg.obj
    aifgrp.obj
    aifgfm.obj
    aidjawk.obj
    aiddua.obj
    aiddgr.obj
    aidafo.obj
    aicdtab.obj
    aicdseq.obj
    aicdora.obj
    aicdcons.obj
    aduovw.obj
    aduotb.obj
    aduort.obj
    aduoprc.obj
    aduopk.obj
    aduofk.obj
    aduobb.obj
    dmutt.obj
    C:\Documents and Settings\Administrator>lib /nologo /list C:\oracle\PROD\apps\ap
    ps_st\appl\fnd\12.0.0\lib\fndst.lib
    fdfwtk.obj
    fdplbr.obj
    fdprep.obj
    fdspwd.obj
    fdssgn.obj
    fdxidk.obj
    fdxidr.obj
    fdxsqk.obj
    fdxsqr.obj
    spnnt.obj
    spnunx.obj
    afdgfn.obj
    afdrdb.obj
    afdrrt.obj
    afdrsc.obj
    afmem.obj
    afpcmn.obj
    afpeim.obj
    afpo.obj
    afppqs.obj
    afpsgc.obj
    ccmsssvc.obj
    fdfapi.obj
    fdfchy.obj
    fdfcom.obj
    fdfdbg.obj
    fdfdds.obj
    fdfdfu.obj
    fdfdtj.obj
    fdfdvu.obj
    fdffbu.obj
    fdffds.obj
    fdfffu.obj
    fdffile.obj
    fdffld.obj
    fdffvs.obj
    fdmenu.obj
    fdparg.obj
    fdpibm.obj
    fdpperl.obj
    fdprrc.obj
    fdpsql.obj
    fdpstp.obj
    fdsecp.obj
    fdsgbl.obj
    afppur.obj
    afpsec.obj
    afpsm.obj
    afpsmc.obj
    afpsmg.obj
    afpsrs.obj
    afscp.obj
    afspwd.obj
    afupi.obj
    afuprt.obj
    ccmsup.obj
    ccmsvc.obj
    fdacv.obj
    fdatat.obj
    fdaupd.obj
    fdfbpl.obj
    fdfbtr.obj
    xitdgmd.obj
    xitdgme.obj
    xitdgmi.obj
    xitdgml.obj
    xitdgmo.obj
    xitdgmp.obj
    xitdgmr.obj
    xitdgms.obj
    xitdgmz.obj
    xitdin.obj
    xitdmf.obj
    xitdmp.obj
    xitdoe.obj
    xitdpa.obj
    xitdpo.obj
    xitdpr.obj
    xitdpy.obj
    xitdra.obj
    xitdrg.obj
    xitdsa.obj
    xitdsp.obj
    xitdus.obj
    xitdwp.obj
    stdafx.obj
    usdccf.obj
    usdfmv.obj
    usdgpa.obj
    usdhtml.obj
    usdins.obj
    usdmac.obj
    usdmpe.obj
    usdnt.obj
    usdoaut.obj
    usdos2.obj
    usdpar.obj
    usdspid.obj
    usdstub.obj
    usdtec.obj
    usdwin.obj
    usdxit.obj
    wfcore.obj
    wfdes.obj
    wfext.obj
    wffile.obj
    wfidx.obj
    wfldr.obj
    wfldrf.obj
    fdwask.obj
    fdxapp.obj
    fdxcls.obj
    fdxdat.obj
    fdxdcf.obj
    fdxdsp.obj
    fdxefv.obj
    fdxext.obj
    fdxfil.obj
    fdxgvl.obj
    fdxkmd.obj
    fdxlcs.obj
    fdxmc.obj
    fdxml.obj
    fdxnls.obj
    fdxpii.obj
    fdxprf.obj
    fdxpst.obj
    fdxqus.obj
    fdxsqf.obj
    fdxsql.obj
    fdpsps.obj
    fdpsqp.obj
    fdpsra.obj
    fdptls.obj
    fdptmx.obj
    fdpurq.obj
    fdpvwr.obj
    fdpwrt.obj
    fdrcmp.obj
    fdrfcmp.obj
    fdrpbf.obj
    fdrutl.obj
    fdsarg.obj
    fdsaud.obj
    fdsctl.obj
    fdsgtk.obj
    fdsnxt.obj
    fdssck.obj
    fdhhlp.obj
    fdidrv.obj
    fdipth.obj
    fdisqf.obj
    fdllov.obj
    fdndbc.obj
    fdndcf.obj
    fdnlng.obj
    fdnwsc.obj
    fdomsg.obj
    fdowln.obj
    fdpblf.obj
    fdpbq.obj
    fdpccr.obj
    fdpcrc.obj
    fdpdbf.obj
    fdpdbg.obj
    fdpdf.obj
    fdpemon.obj
    fdperi.obj
    fdpevt.obj
    fdpfqr.obj
    fdpgcf.obj
    fddxit.obj
    fdefil.obj
    fdfile.obj
    afsxss.obj
    afsys.obj
    aftime.obj
    aftimr.obj
    afttf2t3.obj
    afttflib.obj
    afubtree.obj
    afuddl.obj
    afuepp.obj
    afufld.obj
    afugai.obj
    afugli.obj
    afulzw.obj
    afusc.obj
    afust.obj
    afutim.obj
    afvbt.obj
    afvca.obj
    afvpa.obj
    afwaol.obj
    afwdev.obj
    afwevt.obj
    afwgeo.obj
    afpgpr.obj
    afpgri.obj
    afpgrs.obj
    afpgsr.obj
    afplog.obj
    afpmir.obj
    afpolg.obj
    afpops.obj
    afpoux.obj
    afpoval.obj
    afppio.obj
    afppir.obj
    afprcl.obj
    afgfhdoc.obj
    afgldbs.obj
    afglpw.obj
    afhtmhlp.obj
    afifld.obj
    afixfs.obj
    afixfsb.obj
    afixlh.obj
    afixpic.obj
    afixpm.obj
    afixpmuu.obj
    afixucf.obj
    afixupgn.obj
    afixust.obj
    aflog.obj
    aflutl.obj
    afmath.obj
    afmsg.obj
    afoleaut.obj
    aforg.obj
    afgbox.obj
    affntrep.obj
    affntlst.obj
    affntgen.obj
    affile.obj
    afenv.obj
    afe.obj
    afdwin.obj
    afdtmp.obj
    afdsrw.obj
    afdsil.obj
    afdict.obj
    afdfrm.obj
    afdf.obj
    afdcx.obj
    afdcpm.obj
    afdacc.obj
    afctx.obj
    afcs2uni.obj
    afcore.obj
    afcharrp.obj
    afpgip.obj
    afpfsv.obj
    afpfsc.obj
    afpfs.obj
    afpflx.obj
    afpdwpur.obj
    afpdpo.obj
    afpdon.obj
    afpdlk.obj
    afpdbg.obj
    afpcmt.obj
    afpcc.obj
    afpcbidi.obj
    afpcat.obj
    afpcal.obj
    afstr.obj
    afspc.obj
    afslov.obj
    afshape.obj
    afsfld.obj
    afpvpc.obj
    afpufe.obj
    afpucf.obj
    afptstp.obj
    afptmttp.obj
    afptmi.obj
    afptmc.obj
    afptm.obj
    afpspt.obj
    afpsmf.obj
    afpscg.obj
    afprun.obj
    afprul.obj
    fdcpspn.obj
    fdastr.obj
    fdarux.obj
    fdahmi.obj
    fdacon.obj
    cregkey.obj
    ccmupi.obj
    ccmsvcpg.obj
    ccmsetup.obj
    ccmrkey.obj
    ccmppsht.obj
    ccmoptpg.obj
    ccmmndlg.obj
    alroms.obj
    afwsys.obj
    afwpal.obj
    afwlib.obj
    afwkflw.obj
    afwind.obj
    fdpscm.obj
    fdpsbm.obj
    fdpsar.obj
    fdprst.obj
    fdprpt.obj
    fdprmo.obj
    fdprlk.obj
    fdprhl.obj
    fdpreq.obj
    fdprcp.obj
    fdpprn.obj
    fdppev.obj
    fdppbr.obj
    fdpmst.obj
    fdpmbr.obj
    fdplnk.obj
    fdpldr.obj
    fdpimp.obj
    fdphbe.obj
    fdpgrq.obj
    fduxit.obj
    fduuid.obj
    fdutkn.obj
    fdutim.obj
    fdusql.obj
    fduopr.obj
    fdumod.obj
    fduli.obj
    fdugwi.obj
    fdugii.obj
    fdugci.obj
    fdueds.obj
    fdudat.obj
    fducst.obj
    fducsq.obj
    fdsxit.obj
    fdstkt.obj
    fdssvl.obj
    fdssuq.obj
    fdsssk.obj
    fdssop.obj
    spnvms.obj
    spnos2.obj
    spnmpe.obj
    spnmac.obj
    spndos.obj
    gmalloc.obj
    fpe.obj
    flutil.obj
    flup.obj
    fllog.obj
    flglob.obj
    fldisp.obj
    fldb.obj
    flada.obj
    fdxwrk.obj
    fdxwho.obj
    fdxutl.obj
    fdxuar.obj
    fdxtrc.obj
    fdxtmr.obj
    xitdgma.obj
    xitdgl.obj
    xitdff.obj
    xitdfa.obj
    xitden.obj
    xitddt.obj
    xitdcs.obj
    xitdcp.obj
    xitdbm.obj
    xitdax.obj
    xitdas.obj
    xitdar.obj
    xitdap.obj
    xitdal.obj
    xirnop.obj
    wfrsp.obj
    wfresg.obj
    wfres.obj
    wfomgul.obj
    wfomgucn.obj
    wfntf.obj
    wfmutil.obj
    wfmsiic.obj
    wfms.obj
    wfmlr.obj
    afpprr.obj
    afpprq.obj
    afpprn.obj
    afpprc.obj
    afpperl.obj
    afppcp.obj
    afpiml.obj
    afpi.obj
    afpgrq.obj
    afpgmg.obj
    afpesa.obj
    afperq.obj
    afpeot.obj
    afpejp.obj
    afpcsq.obj
    afpcrs.obj
    afpcra.obj
    afpbwv.obj
    afpatn.obj
    afixube.obj
    afixft.obj
    fdfkbt.obj
    fdfkbr.obj
    fdfkbp.obj
    fdfkbe.obj
    fdfkba.obj
    usdsim.obj
    fpep.obj
    fpeb.obj
    fdxver.obj
    fduprn.obj
    fduhex.obj
    fdugpi.obj
    fdssoa.obj
    fdsrsp.obj
    fdfwrt.obj
    fdfwmsg.obj
    fdfwin.obj
    fdfwfld.obj
    fdfweb.obj
    fdfvsu.obj
    fdfvgn.obj
    fdfval.obj
    fdfutl.obj
    fdfupu.obj
    fdftdu.obj
    fdfstr.obj
    fdfsrw.obj
    fdfsdf.obj
    fdfrfu.obj
    fdfobj.obj
    fdflop.obj
    fdflist.obj
    fdfkva.obj
    fdfksr.obj
    fdfkfu2.obj
    fdfkfu.obj
    fdfkds.obj
    fdfgli.obj
    fdfgcx.obj

  • Shell Script For Export And Import Of Table Records

    Hello,
    We have production and test instances and for constant testing we need to copy data from production to test or development environment.
    At the moment what we do is manually doing export and import table records. At times this could be very tedious as we may need
    to do this exercise a couple of times in a day.
    Is it a good idea to do this exercise using shell script? If so how could I do this? If this is not a good idea what are the best alternatives?
    Any input is highly appreciated.
    Thanks

    Ah I see, your company prefers stupidity over efficiency. It would be possible to do it in a controlled environment, wouldn't it? Also the test database would be allowed to select only.
    So the non-allowance is just plain stupid.
    To the second question: do you use hard-coded passwords in shell scripts?
    Don't you think that poses a security risk?
    Don't you think that is a bigger risk than a database link, properly set up?
    In my book it is!
    Sybrand Bakker
    Senior Oracle DBA

  • Unable to read E$ table records into excel file in linux machine

    Hi
    I am using below code in ODI procedure to read E$ table record and store it in excel file
    ODI Procedure: Technology=Java Beanshall and Command on Target I written below code and placed it in CKM Oracle KM
    <@
    String OS = System.getProperty("os.name").toLowerCase();
    String v_path="";
    if((OS.indexOf("win") >= 0))
    v_path="D:\Unload_Dir\<%=snpRef.getSession("SESS_NO")%>.xlsx";
    else if (OS.indexOf("mac") >= 0)
    v_path="path details";
    else if (OS.indexOf("nix") >= 0 || OS.indexOf("nux") >= 0 || OS.indexOf("aix") > 0 )
    v_path="/odi_a/oracle/Middleware/logs/wcds/odi_logs/<%=snpRef.getSession("SESS_NO")%>.xlsx";
    else if (OS.indexOf("sunos") >= 0)
    v_path="soliaris path";
    @>
    OdiSqlUnload "-FILE=<@=v_path@>" "-DRIVER=<%=odiRef.getInfo("DEST_JAVA_DRIVER")%>" "-URL=<%=odiRef.getInfo("DEST_JAVA_URL")%>" "-USER=<%=odiRef.getInfo("DEST_USER_NAME")%>" "-PASS=<%=odiRef.getInfo("DEST_ENCODED_PASS")%>" "-FILE_FORMAT=VARIABLE" "-ROW_SEP=\r\n" "-DATE_FORMAT=yyyy/MM/dd HH:mm:ss" "-CHARSET_ENCODING=ISO8859_1" "-XML_CHARSET_ENCODING=ISO-8859-1"
    select * from <%=odiRef.getTable("L","ERR_NAME", "W")%>
    But is not reading the data into .xlsx file ,
    Please help me it is very urgent
    Can I use below code
    String os = "";
    if (System.getProperty("os.name").toLowerCase().indexOf("windows") > -1) {
    os = "windows";
    } else if (System.getProperty("os.name").toLowerCase().indexOf("linux") > -1) {
    os = "linux";
    } else if (System.getProperty("os.name").toLowerCase().indexOf("mac") > -1) {
    os = "mac";
    T
    his is high priority, please help me urgent
    Regards,
    Phanikanth
    Edited by: Phanikanth on Feb 28, 2013 5:43 AM
    Edited by: Phanikanth on Feb 28, 2013 6:00 AM
    Edited by: Phanikanth on Feb 28, 2013 7:42 AM

    Hi,
    can you describe what is happening when you run the ODI procedure described below:
    - Does the procedure fail with an error, if yes, which error(full details)?
    - Does the procedure pass but no xslx file is been created?
    - Does the procedure pass and an xslx file is been created, but Excel can't read it? If yes, what is the structure of the xslx file when read in an editor?
    What I can see from your code below is that you have choosen -FILE_FORMAT=VARIABLE, but the XSLX format is supposed to be XML.
    Regards,
    Alex

  • Refresh internal table records in web dynpro

    Hi Guru's
    I am facing an issue in web dynpro abap.
    in my application there is a button called OPEN.
    when i click on open button internal table records should be refreshed.
    so i have written code like this
    DATA lo_COMPONENTCONTROLLER TYPE REF TO IG_COMPONENTCONTROLLER .
      lo_COMPONENTCONTROLLER =   wd_this->get_componentcontroller_ctr( ).
      lo_componentcontroller->clear_info_refresh_visible( ).
    but iam getting an error message Method "CLEAR_INFO_REFRESH_VISIBLE" is unknown or PROTECTED or PRIVATE
    Could you please help me to how do i activate and refresh the things.
    Thanks
    Rajue

    wd.rajue wrote:
    Hi Guru's
    >
    > I am facing an issue in web dynpro abap.
    > in my application there is a button called OPEN.
    > when i click on open button internal table records should be refreshed.
    > so i have written code like this
    >
    > DATA lo_COMPONENTCONTROLLER TYPE REF TO IG_COMPONENTCONTROLLER .
    >
    >   lo_COMPONENTCONTROLLER =   wd_this->get_componentcontroller_ctr( ).
    >
    >   lo_componentcontroller->clear_info_refresh_visible( ).
    >
    >
    >
    > but iam getting an error message Method "CLEAR_INFO_REFRESH_VISIBLE" is unknown or PROTECTED or PRIVATE
    >
    >
    > Could you please help me to how do i activate and refresh the things.
    >
    > Thanks
    > Rajue
    Raju,
    Please clarify this.
    Do you have a method clear_info_refresh_visible  in your component controller. I think not.
    I am not able to relate your request and coding.
    You can simply clear the internal table like this
    clear lt_intern_tab[].
    If it is a context node then you can bind a empty table to the node to make it empty.
      lo_nd_data->bind_table(
         new_items            =   lt_intern_tab
         set_initial_elements = abap_true ).

  • Document attachment to custom tables / records

    Good morning,
    do you know if it is possible to attach external documents to custom tables / records, in the same way as it is possible for standard transactions (Services for Object)?
    If yes, can you please advise me on some reference documetns about how to customize this functionality?
    Thanks in advance
    AS

    Hi ,
    Displaying attachments is not available in the Interaction record view.You need custom development to enable the attachemnts there.
    usually the process would be to create a followup activity from the interaction record and attch documents there.
    Thanks,
    Rajiv.

  • How to display the Internal table records in table format?

    Hi Gurus,
    I want to display my print prg internal table records in d appropriate form in a table format, give some solution
    with regards
    Thambe

    There are lot many options to do that
    one way is create template  in the maikn window  and define the line types according to your data  cretae text and put your data in the text and go to output options and give  the line type to be used . You can also select details option to have lines in your output.
    similarly YOU CAN CREATE TABLE IN THE MAIN WINDOW FOR THIS YOU DONT NEED TO DEFINE THE LINE TYPES .
    WHEN YOU ARE IN MAIN WINDOW RIGHT CLICK ON TABLE AND GO TO PATH
    CREATE  -> TABLE
                  -> TEMPLATE
    REWARD IF USEFUL
    Regards,
    Nageswar

  • Function module for move internal table records into MSexcel file

    Hi all,
    Tell me the function module which is used to
    move internal table records in to MSexcel file.
    Give the sample program...

    Please search the forum for FM  "GUI_DOWNLOAD" You will get tons of threads with sample code.
    Also take a look into SAP_CONVERT_TO_XLS_FORMAT
    Thanks

  • Error message:FRM-12001: Cannot Create the record group(check your query)

    Requirement: Need to get employee name and number in the LOV in search criteria.
    So I created LOV "full_name" and Record group Query under Employee Name property palette with
    select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number
    from apps.per_all_people_f papf, apps.per_person_types ppt
    where sysdate between papf.effective_start_date and papf.effective_end_date AND papf.person_type_id=ppt.person_type_id AND ppt.system_person_type IN ('EMP', 'OTHER', 'CWK','EMP_APL')
    AND PPT.default_flag='Y' and papf.BUSINESS_GROUP_ID=1
    order by papf.full_name
    I was unable to save and getting error message "FRM-12001: Cannot Create the record group(check your query)".
    I cant use PER_ALL_PEOPLE_F.FULL_NAME since full name here is last_name||title||middle_names||firstname.
    But my requiremnet is papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name .
    Can any one of you help me.

    First, Magoo wrote:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    for l_rec in ( select decode ( p_title, null, null, p_title || ' ' ) ||
    p_last_name || ', ' || p_first_name ||
    decode ( p_mid_names, null, null, ' ' || p_mid_names ) full_name
    from dual ) loop
    return ( l_rec.full_name );
    end loop;
    end;</font></pre>
    Magoo, you don't ever need to use Select from Dual. And the loop is completely unnecessary, since Dual always returns only one record. This would be much simpler:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name
    ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    Return ( Ltrim( Rtrim ( p_title
    ||' ' ||p_last_name
    ||', '||p_first_name
    ||' ' ||p_middle_names )));
    end;</font></pre>
    And second:
    user606106, you did not mention how you got your record group working. However, you DO have an issue with spaces. If you change this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number </font></pre>
    to this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select Ltrim(Rtrim(papf.title||' '||papf.last_name||', '
    ||papf.first_name||' '||papf.middle_names)) AS emp_full_name,
    papf.employee_number</font></pre>
    it should work. The Ltrim(Rtrim()) removes leading and trailing spaces from the resulting full name.

Maybe you are looking for

  • Assigning value to an item

    Is there a way to assign value to variable of data type ITEM? In other words, I need to assign value to an item, where I just know the it_id. In the following procedure p_item is unknown until runtime; and if it_id is not null then assign some value

  • What i safest way to download adobe flash player, from what source, ect?

    What is the safest way, and from what source should I download Adobe Flash to my Air?

  • My itunes doesn't automatically load

    My itunes has suddenly stopped oping when I plug my phone in and the check box for having it open automatically is grayed out.  Any ideas?

  • Firefox Sync iOS 7

    Is there any internet browser app supporting the basic feature of Firefox Sync (reading and writing bookmarks) in iOS 7? 'Bookmarks' and '360' browser are read only, 'Mercury' claims to do it up to version 7.x but fails with any version up from 5 on

  • Photoshop Elements 11 External Editor

    I have selected Photoshop Elements 11 as my external editor within Aperture 3.  When I select PSE 11, Aperture opens PSE but does not export the picture to PSE.  Is there a solution to this issues?