Adpreclone.pl Non-interactive Mode

Hi All,
want to automate backup of APPL tier
To do that it is required to run adpreclone.pl with non-interactive mode i.e. It will not ask for any password when it will run through shell script.
Or something like perl adpreclone.pl appsTier pwd=<>
Is there is any other way to do that?
Please advice.
Thanks-
P

966726 wrote:
Hi All,
want to automate backup of APPL tier
To do that it is required to run adpreclone.pl with non-interactive mode i.e. It will not ask for any password when it will run through shell script.
Or something like perl adpreclone.pl appsTier pwd=<>
Is there is any other way to do that?
Please advice.
Thanks-
PPlease see old threads -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Automate+AND+Clone&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • Problem installing oracle 817 Personal Edition in non-interactive mode

    When I install oracle 817 PE in silent mode, if there's a pre-8.1.6 version of Oracle already installed the Oracle Data Migration Assistant pops up. This is exactly what I don't want to happen. Is there a way to keep ODMA from launching? Thank you.

    It is not possible installing Oracle in WINDOWS ME platform, because this won't support for ORACLE. Unfortunately ORACLE also have no version for WINDOWS ME. If possible, upgrade your OS to WINDOWS 2000 or downgrade to WINDOWS 98 and try it.

  • Problem with non-interactive client's installation

    Hi,
    I'm trying to install Oracle 9i's client in Non-Interactive mode. I have modified clientcustom.rsp and netca.rsp modifying same parameters but the installation doesn't work.
    The client is installed but netca never appears. I realized Network's utilities aren't installed in the client's installation process.
    Here is my clientcustom.rsp:
    [General]
    RESPONSEFILE_VERSION=1.7.0
    [SESSION]
    ORACLE_HOME=C:\oracle\ora92
    ORACLE_HOME_NAME=OraHome92
    TOPLEVEL_COMPONENT={"oracle.client","9.2.0.1.0"}
    DEINSTALL_LIST=<"oracle.client","9.2.0.1.0">
    SHOW_SPLASH_SCREEN=false
    SHOW_WELCOME_PAGE=false
    SHOW_COMPONENT_LOCATIONS_PAGE=false
    SHOW_CUSTOM_TREE_PAGE=false
    SHOW_SUMMARY_PAGE=true
    SHOW_INSTALL_PROGRESS_PAGE=true
    SHOW_REQUIRED_CONFIG_TOOL_PAGE=true
    SHOW_OPTIONAL_CONFIG_TOOL_PAGE=false
    SHOW_RELEASE_NOTES=false
    SHOW_ROOTSH_CONFIRMATION=true
    SHOW_END_SESSION_PAGE=false
    SHOW_EXIT_CONFIRMATION=false
    NEXT_SESSION=false
    NEXT_SESSION_ON_FAIL=false
    SHOW_DEINSTALL_CONFIRMATION=true
    SHOW_DEINSTALL_PROGRESS=true
    # End of GENERAL SESSION section
    # Oracle9i Client
    [oracle.client_9.2.0.1.0]
    COMPONENT_LANGUAGES={"en,es"}
    INSTALL_TYPE="Custom"
    DEPENDENCY_LIST={"oracle.winprod", "9.2.0.1.0"}
    # Oracle Net Configuration Assistant
    [oracle.networking.netca_9.2.0.1.0]
    OPTIONAL_CONFIG_TOOLS={"netca"}
    s_responseFileName="d:\installClient\my_netca.rsp"
    And netca.rsp:
    [GENERAL]
    RESPONSEFILE_VERSION="9.2"
    CREATE_TYPE= "CUSTOM"
    [oracle.net.ca]
    INSTALLED_COMPONENTS={"server","net8","javavm"}
    INSTALL_TYPE=""typical""
    LISTENER_NUMBER=1
    LISTENER_NAMES={"LISTENER"}
    LISTENER_PROTOCOLS={"TCP;1521"}
    LISTENER_START=""LISTENER""
    NAMING_METHODS={"TNSNAMES","ONAMES","HOSTNAME"}
    NSN_NUMBER=1
    NSN_NAMES={"MYTNS"}
    NSN_DBVERSION={"80"}
    NSN_SERVICE_OR_SID = {"MYSERVICE"}
    NSN_PROTOCOLS={"TCP;DBSERVER;1521"}
    I don't know what I'm doing wrong. If someone knows any useful web about this topic, he could give that information.
    Regards.

    I've been researching a bit further on the forum. From what I understand, with Adobe Reader 7 and onwards the 'bUI: false' statement is no longer a trusted function.
    There has been suggestions to create a folder level script file that specifies this as a trusted function, however in my company this is not practical. This email function will be used in a form used across the globe by hundreds of our users. Therefore a local script (.js) file is not suitable in this instance.
    Is it not possible to code this within the button script itself, rather than using a seperate .js file.
    Any help would be greatly appreciated. Thanks.

  • Running prstat non-interactively

    Hi,
    I'd like to be able to run "prstat" in background from a script and have the output redirected to a file.
    It works fine when attached to the terminal, but I would like to run it from cron or call it from another script. When trying this, prstat starts dumping out the samples as fast as it can -- it ignores the delay parameter (e.g. 20 seconds/sample) I fed it. I think prstat is expecting terminal input and
    is defective at running in this non-interactive mode. Is there any workaround for this problem?
    thanks,
    RichG

    Hi,
    This appears to be a known bug (id # 4529138). This is fixes in Solaris 9.
    The workaround is to use the same command as a non-root user.
    HTH.
    Gopinath.
    Sun Developer Technical Support.
    http://www.sun.com/developers/support

  • Simple XML Non-interactive Export

    I'm looking for some advice on a simple approach to exporting entire tables (select * from X) in batch or non-interactive mode that we can schedule. We are competent in PL/SQL but not Java. Our files are approximately 50MB in size. We are confused because there are so many ways in Oracle to work with XML, and all we want to do is a basic export using only Oracle supplied packages (no 3rd party utilities) akin to how you'd do it in MS Access using export. Our environment is Oracle 10gR2 on Windows 2003.
    thanks!

    You could try something like. I'm not sure how well it would scale to 50MB but it's very simple so it should not take long to try
    Basically
    1. Use SQL/XML to create a view containing a single document that contains the information from all rows in the table.
    2. Obtain a REF to the row in the view
    3. Create a resource in the XML DB repository based on the REF
    4. Use FTP to read the document from the XDB repository
    SQL> create or replace view EMP_EXPORT_VIEW of XMLType
      2  with object id
      3  (
      4     'EMP'
      5  )
      6  as
      7  select xmlElement
      8         (
      9           "Table",
    10           xmlAgg
    11           (
    12              xmlElement
    13              (
    14                "Row",
    15                xmlForest(EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,COMM,DEPTNO)
    16              )
    17           )
    18         )
    19    from EMP
    20  /
    View created.
    SQL> set long 1000000
    SQL> --
    SQL> select * from EMP_EXPORT_VIEW
      2  /
    SYS_NC_ROWINFO$
    <Table><Row><EMPNO>7369</EMPNO><ENAME>SMITH</ENAME><JOB>CLERK</JOB><MGR>7902</MG
    R><HIREDATE>1980-12-17</HIREDATE><SAL>800</SAL><DEPTNO>20</DEPTNO></Row><Row><EM
    PNO>7499</EMPNO><ENAME>ALLEN</ENAME><JOB>SALESMAN</JOB><MGR>7698</MGR><HIREDATE>
    1981-02-20</HIREDATE><SAL>1600</SAL><COMM>300</COMM><DEPTNO>30</DEPTNO></Row><Ro
    w><EMPNO>7521</EMPNO><ENAME>WARD</ENAME><JOB>SALESMAN</JOB><MGR>7698</MGR><HIRED
    ATE>1981-02-22</HIREDATE><SAL>1250</SAL><COMM>500</COMM><DEPTNO>30</DEPTNO></Row
    <Row><EMPNO>7566</EMPNO><ENAME>JONES</ENAME><JOB>MANAGER</JOB><MGR>7839</MGR><HIREDATE>1981-04-02</HIREDATE><SAL>2975</SAL><DEPTNO>20</DEPTNO></Row><Row><EMPNO
    7654</EMPNO><ENAME>MARTIN</ENAME><JOB>SALESMAN</JOB><MGR>7698</MGR><HIREDATE>1981-09-28</HIREDATE><SAL>1250</SAL><COMM>1400</COMM><DEPTNO>30</DEPTNO></Row><Row
    <EMPNO>7698</EMPNO><ENAME>BLAKE</ENAME><JOB>MANAGER</JOB><MGR>7839</MGR><HIREDA
    SYS_NC_ROWINFO$
    TE>1981-05-01</HIREDATE><SAL>2850</SAL><DEPTNO>30</DEPTNO></Row><Row><EMPNO>7782
    </EMPNO><ENAME>CLARK</ENAME><JOB>MANAGER</JOB><MGR>7839</MGR><HIREDATE>1981-06-0
    9</HIREDATE><SAL>2450</SAL><DEPTNO>10</DEPTNO></Row><Row><EMPNO>7788</EMPNO><ENA
    ME>SCOTT</ENAME><JOB>ANALYST</JOB><MGR>7566</MGR><HIREDATE>1987-04-19</HIREDATE>
    <SAL>3000</SAL><DEPTNO>20</DEPTNO></Row><Row><EMPNO>7839</EMPNO><ENAME>KING</ENA
    ME><JOB>PRESIDENT</JOB><HIREDATE>1981-11-17</HIREDATE><SAL>5000</SAL><DEPTNO>10<
    /DEPTNO></Row><Row><EMPNO>7844</EMPNO><ENAME>TURNER</ENAME><JOB>SALESMAN</JOB><M
    GR>7698</MGR><HIREDATE>1981-09-08</HIREDATE><SAL>1500</SAL><COMM>0</COMM><DEPTNO
    30</DEPTNO></Row><Row><EMPNO>7876</EMPNO><ENAME>ADAMS</ENAME><JOB>CLERK</JOB><MGR>7788</MGR><HIREDATE>1987-05-23</HIREDATE><SAL>1100</SAL><DEPTNO>20</DEPTNO></
    Row><Row><EMPNO>7900</EMPNO><ENAME>JAMES</ENAME><JOB>CLERK</JOB><MGR>7698</MGR><
    SYS_NC_ROWINFO$
    HIREDATE>1981-12-03</HIREDATE><SAL>950</SAL><DEPTNO>30</DEPTNO></Row><Row><EMPNO
    7902</EMPNO><ENAME>FORD</ENAME><JOB>ANALYST</JOB><MGR>7566</MGR><HIREDATE>1981-12-03</HIREDATE><SAL>3000</SAL><DEPTNO>20</DEPTNO></Row><Row><EMPNO>7934</EMPNO>
    <ENAME>MILLER</ENAME><JOB>CLERK</JOB><MGR>7782</MGR><HIREDATE>1982-01-23</HIREDA
    TE><SAL>1300</SAL><DEPTNO>10</DEPTNO></Row></Table>
    SQL> declare
      2    res boolean;
      3    xmlRef REF XMLTYPE;
      4  begin
      5    select ref(x)
      6      into xmlREF
      7      from EMP_EXPORT_VIEW x;
      8    res := dbms_xdb.createResource('/public/EmpTableExport.xml',xmlREF);
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL>
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    C:\xdb\bugs\clobtest>ftp
    ftp> open localhost 2100
    Connected to mdrake-lap.
    220- mdrake-lap
    Unauthorised use of this FTP server is prohibited and may be subject to civil and criminal prosecution.
    220 mdrake-lap FTP Server (Oracle XML DB/Oracle Database) ready.
    User (mdrake-lap:(none)):
    530  Please login with USER and PASS.
    Login failed.
    ftp> user scott tiger
    331 pass required for SCOTT
    230 SCOTT logged in
    ftp> cd public
    250 CWD Command successful
    ftp> ls -l
    200 PORT Command successful
    150 ASCII Data Connection
    -rw-r--r--   1 SCOTT    oracle         0 FEB 16 15:27 EmpTableExport.xml
    -rw-r--r--   1 INVALID_ oracle       630 JAN 31 19:44 newTestcase.xsd
    -rw-r--r--   1 INVALID_ oracle       531 JAN 31 19:44 testcase.xsd
    226 ASCII Transfer Complete
    ftp: 213 bytes received in 0.03Seconds 6.87Kbytes/sec.
    ftp> get EmpTableExport.xml -
    200 PORT Command successful
    150 ASCII Data Connection
    <Table><Row><EMPNO>7369</EMPNO><ENAME>SMITH</ENAME><JOB>CLERK</JOB><MGR>7902</MGR><HIREDATE>1980-12-17</HIREDATE><SAL>800</SAL><DEPTNO>20</D
    EPTNO></Row><Row><EMPNO>7499</EMPNO><ENAME>ALLEN</ENAME><JOB>SALESMAN</JOB><MGR>7698</MGR><HIREDATE>1981-02-20</HIREDATE><SAL>1600</SAL><COM
    M>300</COMM><DEPTNO>30</DEPTNO></Row><Row><EMPNO>7521</EMPNO><ENAME>WARD</ENAME><JOB>SALESMAN</JOB><MGR>7698</MGR><HIREDATE>1981-02-22</HIRE
    DATE><SAL>1250</SAL><COMM>500</COMM><DEPTNO>30</DEPTNO></Row><Row><EMPNO>7566</EMPNO><ENAME>JONES</ENAME><JOB>MANAGER</JOB><MGR>7839</MGR><H
    IREDATE>1981-04-02</HIREDATE><SAL>2975</SAL><DEPTNO>20</DEPTNO></Row><Row><EMPNO>7654</EMPNO><ENAME>MARTIN</ENAME><JOB>SALESMAN</JOB><MGR>76
    98</MGR><HIREDATE>1981-09-28</HIREDATE><SAL>1250</SAL><COMM>1400</COMM><DEPTNO>30</DEPTNO></Row><Row><EMPNO>7698</EMPNO><ENAME>BLAKE</ENAME>
    <JOB>MANAGER</JOB><MGR>7839</MGR><HIREDATE>1981-05-01</HIREDATE><SAL>2850</SAL><DEPTNO>30</DEPTNO></Row><Row><EMPNO>7782</EMPNO><ENAME>CLARK
    </ENAME><JOB>MANAGER</JOB><MGR>7839</MGR><HIREDATE>1981-06-09</HIREDATE><SAL>2450</SAL><DEPTNO>10</DEPTNO></Row><Row><EMPNO>7788</EMPNO><ENA
    ME>SCOTT</ENAME><JOB>ANALYST</JOB><MGR>7566</MGR><HIREDATE>1987-04-19</HIREDATE><SAL>3000</SAL><DEPTNO>20</DEPTNO></Row><Row><EMPNO>7839</EM
    PNO><ENAME>KING</ENAME><JOB>PRESIDENT</JOB><HIREDATE>1981-11-17</HIREDATE><SAL>5000</SAL><DEPTNO>10</DEPTNO></Row><Row><EMPNO>7844</EMPNO><E
    NAME>TURNER</ENAME><JOB>SALESMAN</JOB><MGR>7698</MGR><HIREDATE>1981-09-08</HIREDATE><SAL>1500</SAL><COMM>0</COMM><DEPTNO>30</DEPTNO></Row><R
    ow><EMPNO>7876</EMPNO><ENAME>ADAMS</ENAME><JOB>CLERK</JOB><MGR>7788</MGR><HIREDATE>1987-05-23</HIREDATE><SAL>1100</SAL><DEPTNO>20</DEPTNO></
    Row><Row><EMPNO>7900</EMPNO><ENAME>JAMES</ENAME><JOB>CLERK</JOB><MGR>7698</MGR><HIREDATE>1981-12-03</HIREDATE><SAL>950</SAL><DEPTNO>30</DEPT
    NO></Row><Row><EMPNO>7902</EMPNO><ENAME>FORD</ENAME><JOB>ANALYST</JOB><MGR>7566</MGR><HIREDATE>1981-12-03</HIREDATE><SAL>3000</SAL><DEPTNO>2
    0</DEPTNO></Row><Row><EMPNO>7934</EMPNO><ENAME>MILLER</ENAME><JOB>CLERK</JOB><MGR>7782</MGR><HIREDATE>1982-01-23</HIREDATE><SAL>1300</SAL><D
    EPTNO>10</DEPTNO></Row></Table>226 ASCII Transfer Complete
    ftp: 2131 bytes received in 0.00Seconds 2131000.00Kbytes/sec.
    ftp> quit
    221 QUIT Goodbye.Message was edited by:
    mdrake

  • How to use Reader in non-interactive persistent mode to convert PDFs?

    How to use Adobe Acrobat Reader in non-interactive and persistent mode to convert PDFs to PostScript (or even better, bitmapped image files) ?
    At present, I'm using
        acroread -toPostScript  indir/*pdf outdir/
    to convert a set of PDFs to PostScript (the platform is Solaris on Sparc).
    These PDFs arrive at varying rates at arbitrary intervals and I'd like to avoid the overhead of startup of the acroread process and loading of the fonts etc. I would like the acroread process to become persistent and that it should convert the PDFs either as and when they become available or on demand (ie upon receipt of some signal or message).
    In the words, the usage is similar to that used by web browsers, which is effectively a client of the rendering service provided by the Adobe Acrobat Reader running in the background.
    The only difference is that I need the output in a file (or set of files), either bitmap or PostScript.
    Any help / pointers on how to do this would be greatly appreciated.
    Thanks and best regards.

    Hello,
    As I understand, you would like to setup a watch folder which will be getting pdf files in arbitrary intervals. You then want each pdf to be converted to ps in a separate folder.
    You could achieve this with the help of a script by polling for pdf files present in the watch folder. When you find pdf files, convert them to ps, save the ps file in another folder and then move the pdf to another folder.
    In any case, once the process of conversion of pdf to ps is over, acroread will quit.
    There is no way to keep the acroread process running in background and convert pdfs as and when they are available.
    Please let me know if this answers your query.
    Regards,
    Rishi

  • About non-blocking Interaction mode

    I would like to know when the Forms runtime will display a dialog that allows the user to cancel the query after I have set a form in non-blocking Interaction mode.
    In a time-consuming query, the dialog must appear after
    few seconds or its depend on other condition?
    And, what is time-consuming query?
    Thank you

    it will appear in the 5 seconds with a dialog 'press Cancel button to change this database session' 5 times after you press the button.
    To mimick, you set 'query all' to 'yes', then you will see it.
    As of what is timimg-consuming, it depends on your app. performance requirment.

  • Timeline based presentation (non interactive)

    Hello,
    I work in a drugstore and I want to advertise the products and give some useful info using a mac mini 1.4 Ghz 512 RAM. The computer will run the presention in loop mode.
    However, every month our small cities drugstores make a list in which list is displayed witch drugstore will stay open all night long.
    Is it possible to define a timeline and tell Keynote what to display in every loop and what to display for specific hours? I mean something like:
    "Show this slide from 13:00 till 23:00 at 14/02/2007"
    "then show another slide from 23:00 14/02/2007 to 08:00 15/02/2007"
    etc?
    I believe that it does not exist such an option in Keynote, I already know it's made for interactive presentations (do we have a tool on macosx for non interactive presentations?) but maybe with applescript is possible..

    If there is a solution on this I'd like to know

  • Digital Signatures in Adobe Forms (Non-Interactive)

    Hi everyone,
    I need to sign a receipt that will be sent by e-mail. The form is non-interactive, it´s only a simple receipt. This form may be printed or sent by e-mail; in case of being sent it must be signed before sending it. The receiver should be able to open it using Adobe Reader.
    I´ve read other posts/help about singatures in Adobe Forms, but none of them of non-interactive forms; I need to know if it is possible to do this if the form is not interactive, and how it can be done.
    Thanks!
    Pablo

    Hi Jinal,
    Here it goes:
    report fp_pdf_test_07.
    * set signature
    class cl_fp definition load.
    selection-screen begin of block s_files with frame title text-100.
      parameters: p_pdf(64)    type c lower case obligatory,
                  p_out(64)    type c lower case obligatory.
    selection-screen end of block s_files.
    selection-screen begin of block s_conn with frame title text-101.
      parameters: p_dest       type rfcdest default 'ADS' obligatory.
    selection-screen end of block s_conn.
    selection-screen begin of block s_sig with frame title text-102.
      parameters: s_key(64)    type c lower case,
                  s_field(64)  type c lower case,
                  s_reason(64) type c lower case,
                  s_loc(64)    type c lower case,
                  s_cinfo(64)  type c lower case.
    selection-screen end of block s_sig.
    types: ty_raw(255) type x,
           ty_tab type standard table of ty_raw.
    data: l_filename_pdf   type string,
          l_filename_out   type string,
          l_fp             type ref to if_fp,
          l_pdfobj         type ref to if_fp_pdf_object,
          l_pdf            type xstring,
          l_out            type xstring,
          l_fpex           type ref to cx_fp_runtime.
      l_filename_pdf = p_pdf.
      l_filename_out = p_out.
      perform load_file using    l_filename_pdf
                        changing l_pdf.
    * get FP reference
      l_fp = cl_fp=>get_reference( ).
      try.
    *   create PDF Object
        l_pdfobj = l_fp->create_pdf_object( connection = p_dest ).
    *   set document
        call method l_pdfobj->set_document
          exporting
            pdfdata = l_pdf.
    *   set signature
        call method l_pdfobj->set_signature
          exporting
            keyname     = s_key
            fieldname   = s_field
            reason      = s_reason
            location    = s_loc
            contactinfo = s_cinfo.
    *   execute, call ADS
        call method l_pdfobj->execute( ).
    *   get result -> l_out
        call method l_pdfobj->get_document
          importing
            pdfdata = l_out.
      catch cx_fp_runtime_internal into l_fpex.
        perform error using l_fpex 'INTERNAL ERROR'.
      catch cx_fp_runtime_system into l_fpex.
        perform error using l_fpex 'SYSTEM ERROR'.
      catch cx_fp_runtime_usage into l_fpex.
        perform error using l_fpex 'USAGE ERROR'.
      endtry.
      check l_fpex is initial.
    * download PDF
      data: l_len      type i,
            l_tab      type tsfixml.
      call function 'SCMS_XSTRING_TO_BINARY'
        exporting
          buffer                = l_out
        importing
          output_length         = l_len
        tables
          binary_tab            = l_tab.
      call method cl_gui_frontend_services=>gui_download
        exporting
           bin_filesize            = l_len
           filename                = l_filename_out
           filetype                = 'BIN'
        changing
           data_tab                = l_tab
        exceptions
           others                  = 1.
      if sy-subrc = 0.
        write:/ 'Datei erfolgreich geschrieben'(001).
      else.
        write:/ 'Fehler beim Schreiben der Datei'(002).
      endif.
    form error using p_fpex type ref to cx_fp_runtime
                     p_str  type string.
    data: l_errcode  type i,
          l_errmsg   type string,
          l_string   type string.
      write:/ '***************************************************'.
      write:/ '***', p_str.
      write:/ '***************************************************'.
      skip 2.
      call method p_fpex->get_errall
        importing
          errcode  = l_errcode
          errmsg   = l_errmsg.
      write:/ 'ERROR CODE       : ', l_errcode.
      write:/ 'ERROR MESSAGE    : ', l_errmsg.
      l_string = p_fpex->get_text( ).
      write:/ l_string.
    endform.
    form load_file using    p_filename type string
                   changing p_content  type xstring.
    data: l_rawtab type ty_tab,
          l_len    type i.
      call method cl_gui_frontend_services=>gui_upload
        exporting
          filename                = p_filename
          filetype                = 'BIN'
        importing
           filelength             = l_len
        changing
          data_tab                = l_rawtab
        exceptions
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          not_supported_by_gui    = 17
          error_no_gui            = 18
          others                  = 19.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      perform convert_tab_to_x using    l_rawtab l_len
                               changing p_content.
    endform.
    form convert_tab_to_x using    p_rawtab type ty_tab
                                   p_len    type i
                          changing p_xstr   type xstring.
    data: l_line  type ty_raw,
          l_count type i,
          l_len   type i,
          l_rest  type i.
      describe table p_rawtab lines l_count.
      loop at p_rawtab into l_line.
        if sy-tabix = l_count.
          l_rest = p_len - l_len.
          concatenate p_xstr l_line(l_rest) into p_xstr in byte mode.
        else.
          concatenate p_xstr l_line into p_xstr in byte mode.
          add 255 to l_len.
        endif.
      endloop.
    endform.
    Good Luck!
    Pablo

  • CRIO application works in interactive mode but broken VIs reported in error log when run built application on target

    I have been getting more than my fair share of grey hairs the past few days because of this. Over the past few months this almost never happened. Lately, after a seemingly minor change to some serial communications code, hardly a single build works without throwing errors like this:
    #OSVers: 6.3
    #OSBuild: Jun 6 2014, 09:14:16
    #AppName: /c/ni-rt/system/lvrt.out
    #Version: 14.0
    #AppKind: AppLib
    #AppModDate:
    InitExecSystem() call to GetCurrProcessNumProcessors() reports: 1 processors
    InitExecSystem() call to GetNumProcessors() reports: 1 processors
    InitExecSystem() will use: 1 processors
    starting LabVIEW Execution System 306708506 Thread 0 , capacity: 1 at [3507679466.00933790, (19:24:26.009337710 2015:02:24)]
    starting LabVIEW Execution System 306708507 Thread 0 , capacity: 1 at [3507679470.59560204, (19:24:30.595601929 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 0 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 1 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 2 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 3 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    Thread consumption suspected: 3 Try starting 4 threads
    starting LabVIEW Execution System 2 Thread 4 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 5 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 6 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 7 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    Thread consumption suspected: 8 Try starting 1 threads
    starting LabVIEW Execution System 2 Thread 8 , capacity: 24 at [3507679515.73854351, (19:25:15.738543576 2015:02:24)]
    and 
    #Date: TUE, FEB 24, 2015 04:47:22 PM
    #OSName: VxWorks
    #OSVers: 6.3
    #OSBuild: Jun 6 2014, 09:14:16
    #AppName: /c/ni-rt/system/lvrt.out
    #Version: 14.0
    #AppKind: AppLib
    #AppModDate:
    InitExecSystem() call to GetCurrProcessNumProcessors() reports: 1 processors
    InitExecSystem() call to GetNumProcessors() reports: 1 processors
    InitExecSystem() will use: 1 processors
    starting LabVIEW Execution System 306708506 Thread 0 , capacity: 1 at [3507670087.84041262, (16:48:07.840412710 2015:02:24)]
    starting LabVIEW Execution System 306708507 Thread 0 , capacity: 1 at [3507670092.45153570, (16:48:12.451535843 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 0 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 1 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 2 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 3 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    VI_BROKEN (0): [VI "NC serial comms protocol.lvlibet Lower Temperature Limit.vi" (0x04667310)]
    VirtualInstrument:etOrClearBadVILibrary - now VI is bad on [VI "NC serial comms protocol.lvlibet Lower Temperature Limit.vi" (0x04667310)]
    this->flags=33563136, compilerError=6
    VI_BROKEN (0): [VI "Heater Control HAL.lvclass:Write Heater Control Active.vi" (0x058c4e98)]
    VirtualInstrument:etOrClearBadVILibrary - now VI is bad on [VI "Heater Control HAL.lvclass:Write Heater Control Active.vi" (0x058c4e98)]
    this->flags=50340352, compilerError=6
    VI_BROKEN (0): [VI "NI_LVConfig.lvlibave Config File.vi" (0x047b7e90)]
    VirtualInstrument:etOrClearBadVILibrary - now VI is bad on [VI "NI_LVConfig.lvlibave Config File.vi" (0x047b7e90)]
    this->flags=33563136, compilerError=6
    and so on.
    This is using a cRIO 9074 running CompactRIO recommended software set  14.0.1 .
    These errors happen right at startup. Memory use is steady in interactive mode, about 20 MB contiguous memory is unallocated out of 128 MB. I have taken pains to prevent allocation and follow cRIO besta practices non concatenated strings array building in loops etc). CPU is 50-60% when running interactive mode.
    Really at my whit's end here, I have tried the various combination of enabling / disabling debugging in the RTEXE, disconnecting typedefs etc. I have not noticed a pattern. 
    Regards,
    MarkCG

    Hello MarkCG,
    What minor changes did you make to the serial communication code? Posting the VI or a screenshot of the VI with the modifications which caused the RTEXE to stop functioning could be useful to troubleshoot the issue. 
    Regards,
    J_Bou

  • Solaris 10 U6 jumpstart installation always goes into interactive mode desp

    While doing the Solaris 10 U6 jumpstart installation, it is going into interactive mode for netmask.
    This is the sysidcfg file configuration being used :
    bash-3.00# cat /export/home/iserver/jumpstart/donau1/sysidcfg
    system_locale=en_US
    name_service=none
    network_interface=ce2
    {hostname=donau1 netmask=255.255.252.0 ip_address=10.50.57.24 protocol_ipv6=no default_route=10.50.56.1}
    security_policy=none
    terminal=vt100
    timezone="MET"
    timeserver=10.50.57.214
    nfs4_domain=dynamic
    root_password=5YcgZqC0krYjo
    bash-3.00#
    Here the network interface specified is "ce2" and the netmask is as shown above. Still, we observe the problem all the times.
    and I have seen the following messages on the screen
    Attempting to configure interface ce3...
    Skipped interface ce3
    Attempting to configure interface ce2...
    Configured interface ce2
    ip_arp_done: init failed
    ifconfig: setifflags: SIOCSLIFFLAGS: ce2: Cannot assign requested address
    Attempting to configure interface ce1...
    Skipped interface ce1
    Attempting to configure interface ce0...
    Skipped interface ce0
    Reading ZFS config: done.
    Setting up Java. Please wait...
    Serial console, reverting to text install
    Beginning system identification...
    Searching for configuration file(s)...
    Using sysid configuration file 10.50.57.214:/export/home/iserver/jumpstart/donau1/sysidcfg
    Search complete.
    Discovering additional network configuration...
    Completing system identification...
    after this it is going into interactive mode and prompting for netmask . After providing the netmask, installation goes through successfully.
    so please suggest me some solution to avoid it going into interactive mode.

    I have seen this too over the years and it ultimately comes down to something innate:
    Here are a few suggestions:
    1. Try and use interface ce0.
    2. Check default route on both jumpstart server and client.
    3. The arp cache may need to be flushed on the Jumpstart server.
    4. Use snoop and see what happens during the actual RARPing phase between the server and host.
    5. Switch the order in the sysid config file as indicated below:
    system_locale=en_US
    name_service=none
    network_interface=ce2
    {hostname=donau1  ip_address=10.50.57.24 netmask=255.255.252.0 protocol_ipv6=no default_route=10.50.56.1}
    security_policy=none
    terminal=vt100
    timezone="MET"
    timeserver=10.50.57.214
    nfs4_domain=dynamic
    root_password=*****************
    Please note I blanked your root password. Let me know if this helps.

  • Run Forms non interactively (Oracle 8i)

    Is it possible to run a form in "batch" mode, that is non-interactively?
    The reason for this request is that the application is a turn-key system and I need
    to load a application file. The vendor has provided a load file screen but I want
    to run this application in batch.
    It would be too costly to ask the vedor to re-write the application.
    Has anyone tried this before?
    Is this possible? Could I use the UNIX package called expect?

    yes but you need patch 1 for forms (better use patch4).
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Glenn Ruckdashel ([email protected]):
    Will Oracle 8i and Forms Server 6i run on Windows 2000?<HR></BLOCKQUOTE>
    null

  • Run Oracle form non-interactively

    I am using Oracle 8i.
    I want to be able to run a form non-interactively, that is, in batch mode.
    The reason for that is that the application is a "turn-key" package and I don't have access to the source. I want to be able to run the form from a UNIX script rather than having a human key in the input.
    I know what the screen fields need to be and which function key to "press".
    Has anyone run a form non-interactively?
    Is this possible?
    Can anyone suggest a way of doing this? I was thinking that the UNIX utility expect may help.

    I think it is better for you to ask this question in Oracle Forms/Oracle Forms Server development forum.
    This issue would better addressed in Development forums.
    Just my 0.02£
    Yury

  • Non-interactive FrameAccess.java and frame conversion woes

    Hello all,
    I am searching for a way to convert a webcam-acquired AVI file into a sequence of numbered TIFF images (one for each movie frame). While searching the 'net, I ran into the well-known sample called FrameAccess.java. Although it looks like a good starting point, I got stuck by a number of problems:
    1) I'm not interested in visualizing the frames as they get processed: I've got tons of players I can check the movie with before feeding it in to my extractor. A simple non-interactive application would be better. However, when I comment out the AWT-related portions of FrameAccess, it hangs after processing two or three frames.
    2) Which way is better to process the single frame with: PreAccess or PostAccess?
    2.1) In PreAccess it looks like the frame is still in raw YUV420 format, whereas in PostAccess it seems to have undergone some conversion since the buffer size is equal to the number of pixels. But the buffer data is returned as short[] when I would expect it to be of type byte[]. What am I missing here?
    3) Although it is a priori known that the AVI files were acquired in B/W mode, it looks like the AVI is made of 8-bit RGB frames. How can I possibly convert them into 8-bit or 16-bit grayscale images and save them as TIFF images? (*)
    Any ideas/hints/suggestions whatsoever that might help me tackle the above problems will be highly valued.
    Thanks in advance,
    Emmanuele
    (*) I am aware that this question could be partly off-topic since it may fall more appropriately into the Java2D/JAI realm. However, for the moment I'd like not to open too many threads.

    Hello all,
    I am searching for a way to convert a webcam-acquired AVI file into a sequence of numbered TIFF images (one for each movie frame). While searching the 'net, I ran into the well-known sample called FrameAccess.java. Although it looks like a good starting point, I got stuck by a number of problems:
    1) I'm not interested in visualizing the frames as they get processed: I've got tons of players I can check the movie with before feeding it in to my extractor. A simple non-interactive application would be better. However, when I comment out the AWT-related portions of FrameAccess, it hangs after processing two or three frames.
    2) Which way is better to process the single frame with: PreAccess or PostAccess?
    2.1) In PreAccess it looks like the frame is still in raw YUV420 format, whereas in PostAccess it seems to have undergone some conversion since the buffer size is equal to the number of pixels. But the buffer data is returned as short[] when I would expect it to be of type byte[]. What am I missing here?
    3) Although it is a priori known that the AVI files were acquired in B/W mode, it looks like the AVI is made of 8-bit RGB frames. How can I possibly convert them into 8-bit or 16-bit grayscale images and save them as TIFF images? (*)
    Any ideas/hints/suggestions whatsoever that might help me tackle the above problems will be highly valued.
    Thanks in advance,
    Emmanuele
    (*) I am aware that this question could be partly off-topic since it may fall more appropriately into the Java2D/JAI realm. However, for the moment I'd like not to open too many threads.

  • OrgChart 3.0 : Chartbook Printing Error (non-interactive)

    Hi,
    I'm using OrgChart 3.0.
    When printing Chartbook using non-interactive method, I get the *.jsp page generated. In the top right, there's a print button. When I click on that, it brings me to the print menu where I can add footer/header..etc. Everything seems to work fine. When I'm done, I click to PDF button. The result in PDF doesn't look right. All boxes and lines are gone. All I got is the content of the box, like Org unit name.
    Is this another error? Or I did something wrong?
    Thanks.

    Hi,
    How many boxes are in your PDF? I know there are limitations like this with PDF when there are a lot of boxes. However, some lines should still be visible. Are you able to put a link to an example here?
    I know in 3.0 there is a new PDF engine used and I wonder if there is a problem with that. Also, is this exported from the Flex or the HTML mode?
    Best regards,
    Luke

Maybe you are looking for

  • Iphoto Library to Windows Photo Gallery

    I have a large photo collection in iPhoto. My wife just bought a windows machine (divorce?) running Vista. Both machines are on our home LAN and share a single internet connection. My bride wants all of our family photos available to her on her pc. H

  • PDF Open parameters not working on windows

    Hi, I have been trying to use the PDF open parameters but have run into some issues: 1.  http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf#search=collab& navpanes=0 The above URL should hide the left navigation pane, but it

  • Note:304522.1 How to Move Queue Tables without using export import

    Trying to use the pkg available in Metalink "Note:304522.1 How to Move Queue Tables without using export import" Using the 10.1.0.x and upwards Package, I'm getting the following error on a single consumer queue table with an xmltype payload: SQL> ex

  • Can't connect to server message

    I upgraded my MacBook (early 2008) to Lion and it works fine except for two messages that continue to pop up.  One says that it can't connect to the server because URL with "file" extensions are not supported.  The other is that I need to install a j

  • PCUI:Adding FIELD(Rejection code)

    I am very new to PCUI. My Client has copied and named application ZCRMD_BUS2000120 using for Sales order Return. Client is asking for adding a drop down box to be added to select one value that gives them some kind of information. now i had added tra