Problem with ksh script

Hi
This is for scripting gurus,
I am on "SunOs"
I have created below ksh script to fetch table space info; problem is that I can not have any out put in my variable (TS_DATA);; I don't want to use utl file in my pl/sql can any one tell what went wrong with my script. Thanks in advance
temp() {
GET_DB_PASS
TS_DATA=`sqlplus -s /nolog <<EOSQL
whenever sqlerror exit failure
set serveroutput on
set feedback off
set pause off
set echo off
set heading off
set verify off
connect ${l_connect_string}
DECLARE
TYPE t_task_tab IS TABLE OF VARCHAR2 (1000)
INDEX BY BINARY_INTEGER;
t_tab_space_name t_task_tab;
t_tot_byte t_task_tab;
t_fr_byte t_task_tab;
t_max_chunk t_task_tab;
t_rpt_txt t_task_tab;
t_rpt_num t_task_tab;
l_count number :=0;
BEGIN
SELECT tablespace_name,NVL(SUM(bytes),1),1,1
BULK COLLECT INTO t_tab_space_name,t_tot_byte,t_fr_byte,t_max_chunk
FROM dba_data_files
GROUP BY tablespace_name;
FOR i IN t_tab_space_name.FIRST..t_tab_space_name.LAST
LOOP
SELECT NVL(SUM(b.bytes), 1) INTO t_fr_byte(i)
FROM dba_free_space b
WHERE t_tab_space_name(i) = b.tablespace_name;
IF (95 < 100-(t_fr_byte(i)*100/t_tot_byte(i))) THEN
l_count := l_count + 1;
SELECT t_tab_space_name(i),TO_CHAR(ROUND(100-(t_fr_byte(i)*100/t_tot_byte(i)), 2))
INTO t_rpt_txt(i),t_rpt_num(i) FROM dual
WHERE 95 < 100-(t_fr_byte(i)*100/t_tot_byte(i));
dbms_output.put_line(t_rpt_txt(i));
dbms_output.put_line(l_count);
END IF;
END LOOP;
END;
EOSQL`
echo $TS_DATA
temp

if this is SunOS specifice, is the wrong mailing list..
what about someting simple:
cat y.sh#!/usr/bin/ksh
temp() {
TS_DATA=`sqlplus -s /nolog <<EOSQL
connect scott/tiger
select count(*) from emp;
exit
EOSQL`
echo "${TS_DATA}"
temp
./y.shConnected.
COUNT(*)
15
>
so works fine on Linux......
not sure what you are up to, but
#!/usr/bin/ksh
temp() {
sqlplus -s /nolog <<EOSQL
connect scott/tiger
select count(*) from emp;
exit
EOSQL
temp
also should write the output to the stdout; not really sure why you need to use variables to store the results
guido

Similar Messages

  • Little execution problem with the script

    declare
    i number(1):=1;
    name varchar2(10);
    id number(2);
    begin
    loop
    id:=&id;
    name:='&name';
    insert into emp values(id,name);
    i:=i+1;
    exit when id<=5;
    end loop;
    end;
    When i tried to execute the script, it is going through the loop only once..What the problem with this script...Can any body help the script work?

    if id is less or equal to 5 then loop will execute only once.
    What is the variable i for ?

  • Problem with a script to remove graphics

    Hello,
    I have tried to build a javascript to remove all graphics whose extension is not ".EPS" (with "EPS" really in upper cases, as it is for Mathtype equations in Word import).
    But It doesn't work and I can't understand why.
    Here is the script:
    //The script intend to remove all graphics whose extension is not ".EPS"
    var myDoc = app.activeDocument;
    var myGraphics = myDoc.allGraphics
    //Remove graphic if graphic extension is different from ".EPS"
    for (var p = 0; p < myGraphics.length; p++) {
        var myImage = myGraphics[p]
        if (CheckExtEps(myImage) != 0){
        myImage.remove ()
    //Compare graphic extension with ".EPS" and return myExtValue = 0 if it matches exactly
    function CheckExtEps(myImage) {
        var  myString = myImage.name
        myExt = myString.substr(myString.lastIndexOf( "." ))
        myExtValue = myExt.localeCompare(".EPS")
        return myExtValue
    When I run this script, ALL the graphics are removed, ".EPS" included.
    I do have ".EPS" graphics in my document and I expected them not to be removed.
    So there is something wrong somewhere, but I don't know what to change.
    Any ideas?
    By the way, I have a more generic question as a beginner:
    I am working with ExtendScript Toolkit. How can I do to check my script step by step?
    For exemple, how can I display my variables values as "myString", "myExt", "myExtValue" at each step?
    Actually, this script is a step for a bigger script I intend to build to deal with Mathtype equations in Word import.
    After not-EPS graphics beeing removed, I wish to relink all remaining equation prewiews to eps in a selected folder, by consecutive order.
    But this is a big piece of scripting to swallow for me, so I'm working slowly, step by step.
    TIA
    Best regards
    Nicolas

    Hello Ariel
    Thank you very much for your help.
    1. I added semicolons at the end of lines, but the script result is the same.
    2. Running line by line, I could see in the Console where is the problem:
    variable "myString" is always undefined.
    Well, I have to get more inside my script...
    Thank's again
    Best regards
    Nicolas
    Nicolas BALBO  
    [email protected]
    22, rue d'Hauteville  75010 PARIS
    Tel : 33 (0)1 42 57 14 31
    Le 18 avr. 2012 à 17:36, Arïel a écrit :
    Re: Problem with a script to remove graphics
    created by Arïel in InDesign Scripting - View the full discussion
    Well, I can't see any semicolons in your script. Maybe that's just the
    email interface, but there should be semicolons at the ends of lines.
    In the ESTK, you can step through a script a line at a time. Just click
    on the downwards pointing arrow instead of the "play" arrow. Each time
    you click, the script will advance one line. In the Console window
    (Windw>Console) you can then type the name of the variable you wish to
    examine.
    Ariel
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4344039#4344039
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4344039#4344039. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign Scripting by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Problem with navigation script

    Hi I'm having trouble getting a button work correctly when
    pressed it should take user to a particular label on the main
    scene. Is there a problem with my script? The button is inside a
    movie clip which is inside another movie clip. Thanks in
    advance.

    this quite difficult to explain but here goes. i have a
    complex button with a roll in roll out effect. ie. a movie clip
    acting as a button that shows different buttons (in another movie
    clip) when it is rolled over. I then want the different buttons to
    go to other parts in the main timeline. the code works fine when
    the buttons are on the main timeline but because it is within
    another two movie clips it doesnt work like it should. In fact the
    script i have used in the first movie clip also affects the button.
    This script is as follows and belongs in the first frame of the
    first movie clip. In other words, I need the button not to be
    effected by the following script but by the gotoAndPlay script.
    Thanks

  • Problem with SAP Script FAX output

    Hi Friends,
    I have problem with SAP Script Fax output.
    After I issued output using the messge type, the print preview format shows me correct alignments and the right data. But when I go to List display using the menu bar functions from the print preview screen, the list is showing me the right data, but all the alignments at the main window went wrong.
    How do I rectify this problem? I need correct alignments in both form display and list display.

    Hi Sasidhar,
    Have you tried with different fax machine.
    Regards,
    Atish

  • Problem with sap script table in main window

    hi all,
    i have created a sap script  for which output is in 7 pages.
    except first page all the remaining pages are giving the correct output.
    the problem with the first page is iam not not getting vertical lines in the table which is in the main window of page 1.
    iam getting the vertical lines correctly in the mainwindow table of all the remaining pages.

    Hi,
    It's simple,
    Pre- U should had declared a second page for the same window with header, main & footer.
    now
    First when u r looping the internal table provide no of rows eg Row 1 TO 10. in the Loop ( Data Tab)
    or
    when defing TEXT Go to PC Editor and mention all the fields Under  PROTECT -  ENDPROTECT.
    This would solve the issue.
    Thanks
    Ravi

  • Problems with Java Scripting API

    Hello Everyone!
    Guys, I need help with Java scripting API. A problem is that I cannot understand how can I operate Java Object's fields and methods from the script language. I have chosen embedded javascript to work with. And I can get the fields and methods of in-box java classes (such as ArrayList for example), but I cannot work with methods and fields from my own classes!
    Here is an example:
    public class ScriptingExample {  
        class MyClass {  
            int myfield = 5;  
            int getInt() {return 7;}  
        public void runExample() {  
            ScriptEngineManager mgr = new ScriptEngineManager();  
            List<ScriptEngineFactory> factories = mgr.getEngineFactories();  
            ScriptEngineManager factory = new ScriptEngineManager();  
            ScriptEngine engine = factory.getEngineByName("JavaScript");  
            MyClass mc = new MyClass();  
            try{  
                engine.put("mc", mc);  
                engine.eval("print(mc.myfield); print(mc.getInt())"); // or engine.eval("print(mc.myfield)");
            } catch (Exception e) {e.printStackTrace();}  
    }  If I run the code with the commented part it prints "undefined" instead of "5".
    If I run the code as it is it prints error instead of "7":
    undefinedjavax.script.ScriptException: sun.org.mozilla.javascript.internal.EcmaError: TypeError: Cannot find function getInt. (<Unknown source>#1) in <Unknown source> at line number 1
    at com.sun.script.javascript.RhinoScriptEngine.eval(Unknown Source)
    at com.sun.script.javascript.RhinoScriptEngine.eval(Unknown Source)
    at javax.script.AbstractScriptEngine.eval(Unknown Source)
    at solutiondatabase.ScriptingExample.runExample(ScriptingExample.java:26)
    at solutiondatabase.Main.main(Main.java:49)
    How can I fix it?

    Guys,
    please let me raise this topic because several new questions emerged.
    (1) How can I get all the variables created inside my engine?
    There are two kinds of variables: first kind is Java obejcts put inside the engine and second kind is the variables created in my script, such as 'var a = 4;'. How can I list all the variables of that two kinds?
    (2) Is there is a way to make 'import static' to the engine? I dont want to write MyClass.MyEnum.MyEnumItem every time. Also, I cannot put the whole enum into the engine with engine.put("MyEnum", MyEnum); I can put only enum items separately: engine.put("MyEnum", MyEnum.EnumItemA);. Thats why I ask about static import.
    (3) How can I cast engine variables back to java variables inside my java code?
    Here is my example:
    package mypackage;
    import java.util.ArrayList;
    import java.util.List;
    import javax.script.ScriptEngine;
    import javax.script.ScriptEngineFactory;
    import javax.script.ScriptEngineManager;
    public class Main
         public static void main(String[] args) throws Exception 
              ScriptEngineManager mgr = new ScriptEngineManager();
              List<ScriptEngineFactory> factories = mgr.getEngineFactories();
              ScriptEngineManager factory = new ScriptEngineManager();
              ScriptEngine engine = factory.getEngineByName("JavaScript");
              ArrayList<Double> myList = new ArrayList<Double>();
              myList.add(5.0);                    
              engine.put("MyList", myList);     
              engine.eval("MyVar = MyList.get(0);");
              System.out.println((Double)engine.get("MyVar"));
    }The result is:
    Exception in thread "main" java.lang.ClassCastException: sun.org.mozilla.javascript.internal.NativeJavaObject cannot be cast to java.lang.Double
    +     at mypackage.Main.main(Main.java:28)+
    Is it possible to retrieve my Double java object from the engine?
    Edited by: Dmitry_MSK on Aug 6, 2010 1:56 AM

  • Problem with sap script

    Hi All,
    I have a problem with a sap script (PO) everytime when an item is deleted (on me23e) it doesn't display on the on the print preview and the client wants to see on the preview with a sign indicating the deleted item.
    SELECT ebeln ebelp pstyp packno txz01 loekz
      FROM ekpo
      INTO TABLE it_ekpo
      WHERE ebeln = po_no
      AND  loekz NE 'L'
      AND  loekz NE 'S'.
    This is how it has been read from the ekpo.... Is there something that I need to change? 
    Thanks in advance.
    Regards,
    Fred.

    Hi,
    In EKPO table the field 'loekz'  indicates the Deletion status.
    So u can consider the deleted line item also.
    u change u r query like this.
    SELECT ebeln ebelp pstyp packno txz01 loekz
    FROM ekpo
    INTO TABLE it_ekpo
    WHERE ebeln = po_no.
    In it_ekpo table u can get all the line item(including deleted items).
    Then u cn print the data.
    Hope this will helps u.

  • Problem with TCl script

                       Hello I need help, my Cisco Router (2921) work not correct with tcl script.
    Tcl script work fine on this device long time, but in one time script was not start get error(no any script changes):
    005495: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: Unknown error 2620
    005496: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:     while executing
    005497: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: "close $myfileid"
    005498: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:     invoked from within
    005499: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: "$slave eval $Contents"
    005500: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:     (procedure "eval_script" line 7)
    005501: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:     invoked from within
    005502: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: "eval_script slave $scriptname"
    005503: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:     invoked from within
    005504: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: "if {$security_level == 1} {       #untrusted script
    005505: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:      interp create -safe slave
    005506: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:      interp share {} stdin slave
    005507: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:      interp share {} stdout slave
    005508: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: ..."
    005509: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl:     (file "tmpsys:/lib/tcl/base.tcl" line 50)
    005510: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: Tcl policy execute failed:
    005511: Aug 26 08:46:27: %HA_EM-6-LOG: event.tcl: Unknown error 2620
    If I try do command it not help:
    no event manager policy event.tcl
    event manager policy event.tcl
    I try reload script in router, and every time then script was start, some part of script file was deleted (it very intrusting, because i think script in flash only read (not write))
    Only reload help, auto reload script work fine.
    Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.1(4)M6, RELEASE SOFTWARE (fc2)

    hello Joseph, this TCL script work long time with out any problem and with out any changes.
    On this device I change configuration (add two EEM aplet with event tag syslog pattern) auto this modification i have problem. May be I try do all my configuration on TCL script.
    I add EMM (it work with out any problem): 
    event manager applet RESET-3G-S
    event tag 1.0 syslog pattern "%TRACKING-5-STATE: 2 ip sla 2 reachability Up->Down"
    event manager applet 3G-EEM-STOP
    event tag 1.0 syslog pattern "%TRACKING-5-STATE: 2 ip sla 2 reachability Down->Up"
    My scipt have syslog patern:
    ::cisco::eem::event_register_syslog tag 1 pattern ".*SEC_LOGIN-4-LOGIN_FAILED: Login failed.*" occurs 1 maxrun 50
    ::cisco::eem::event_register_syslog tag 2 pattern ".*%SEC_LOGIN-5-LOGIN_SUCCESS: Login Success*" occurs 1
    ::cisco::eem::event_register_syslog tag 3 pattern ".*%SYS-5-RESTART.*" occurs 1
    ::cisco::eem::trigger {
    ::cisco::eem::correlate event 1 or event 2 or event 3
    ::cisco::eem::attribute tag 1 occurs 1
    ::cisco::eem::attribute tag 2 occurs 1
    ::cisco::eem::attribute tag 3 occurs 1
    Tahnk you

  • Problem with an script - "{ expected"

    Hello,
    I am having problem with an easy "script". The "{" seems to be correct in number and place but I might be wrong.
    The error is:
    Compiling 1 source file to C:\Documents and Settings\Administrator\tidPunkt\build\classes
    C:\Documents and Settings\Administrator\tidPunkt\src\tidpunkt\Main.java:9: '{' expected
          class Tid(int tim, int min, int sek){
    C:\Documents and Settings\Administrator\tidPunkt\src\tidpunkt\Main.java:21: '}' expected
    2 errors
    class TidPunkt{
       int t = 2; //Timme
       int m = 25; //Minut
       int s = 55; //Sekund
          class Tid(int tim, int min, int sek){
             tim = t;
             min = m;
             sek = s;
                /*  if(tim >= 0 && tim < 24 && min >= 0 && min < 60 && sek >= 0 && sek < 60){
                    System.out.println("Tidpunkten r: " + tim + ":" + min + ":" + sek);
    }Please give me a hint on what the problem could be.
    Thanks in advance,
    T

    Hello BDLH,
    I changed the code to this now:
    class TidPunkt{
        public static void main(String[] args){
           int t = 2; //Timme
           int m = 25; //Minut
           int s = 55; //Sekund
              public Tid(int tim, int min, int sek){
                 t = tim;
                 m = min;
                 s = sek;
                 System.out.println("Tidpunkten r: " + tim + ":" + min + ":" + sek);
                    /*  if(tim >= 0 && tim < 24 && min >= 0 && min < 60 && sek >= 0 && sek < 60){
                        System.out.println("Tidpunkten r: " + tim + ":" + min + ":" + sek);
    }As you can see I also changed the place between the parameters and fields (from tim = t to t = tim).
    The error messages:
    Compiling 1 source file to C:\Documents and Settings\Administrator\tidPunkt\build\classes
    C:\Documents and Settings\Administrator\tidPunkt\src\tidpunkt\Main.java:8: illegal start of expression
              public Tid(int tim, int min, int sek){
    C:\Documents and Settings\Administrator\tidPunkt\src\tidpunkt\Main.java:18: ';' expected
    2 errors
    BUILD FAILED (total time: 0 seconds)Right now I am under the 'Control Flow Statement' under the 'Really Big Index', meaning I haven't read the 'Classes and Objects' chapter yet, so I might miss something or missinterpereted something in those earlier chapter.
    I reviewed the chapters 'What is an Class' and 'What is an Object' to see if I have missed something, but can't seem that I did.
    Best Regards,
    T

  • Problem with sap script while transporting from dev to quality server

    Hi experts,
    In dev server i am getting correct output in sap script.But when it is transporting to quality server alignment is different.Printer name is same both in dev and quality.Please give an answer for this query.
    Thanks
    suresh

    Hi Suresh,
    This could be a problem with the Sapscript buffers. Try running the report RSTXDELL on the system to clear the Sapscript buffers?
    To do this you can use RSTXDELL report with default settings except it is better to have * instead of the current client number in the Client field.
    After this, create a new spool and see if the problem is resolved?
    Regards,
    Aidan

  • Problem with action script to button

    Hello all.
    I'm having a problem with my adobe flash CS3 action script. My button cant link to the other URL. I tried to put an action script but i fail. anyone can help me? here the attachment for my flash document.

    HELLO,
                  just check       navigateToURL()

  • Problems with php script in the contact form

    Hello, I am from the Czech Republic and I am not a coder. I have 2 problems with my php sript. I am using a simple php script from Paul Trani, see below.
    Firstly the email adress - when someone inserts an email adress in this form [email protected] it is OK, but when someone writes an address for example [email protected] (this type of adress is very common in our country) the answer is "That is not a valid email address.  Please return to the previous page and try again." I think the problem is the dot before the @.
    Secondly diacritical marks - Since I am from the Czech Republic we use diacritical marks (for example š,č,ř,ž,á,í,é,ě) so instead of this letters a get ? or Å&#153; or Å¡ to my email.
    I really do not know how to fix these problems.
    Thank you for any help. Sorry for my English. Peter
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <META HTTP-EQUIV="refresh" content="0;URL=thankyou.html">
    <title>Email Form</title>
    </head>
    <body>
    <?php
      $name=addslashes($_POST['name']);
      $email=addslashes($_POST['email']);
      $comments=addslashes($_POST['message']);
    // you can specify which email you want your contact form to be emailed to here
      $toemail = "[email protected]";
      $subject = "From EcoStyleStudio.com";
      $headers = "MIME-Version: 1.0\n"
                ."From: \"".$name."\" <".$email.">\n"
                ."Content-type: text/html; charset=iso-8859-1\n";
      $body = "Name: ".$name."<br>\n"
                ."Email: ".$email."<br>\n"
                ."Comments:<br>\n"
                .$comments;
      if (!ereg("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$", $email))
        echo "That is not a valid email address.  Please return to the"
               ." previous page and try again.";
        exit;
        mail($toemail, $subject, $body, $headers);
        echo "Thanks for submitting your comments";
    ?>
    </body>
    </html>

    ereg() has been deprecated, it is recommended that you dont use it.
    You want to look at this
    http://www.php.net/manual/en/function.preg-match.php
    Within this page I found this:
    If you need to check for .com.br and .com.au and .uk and all the other crazy domain endings i found the following expression works well if you want to validate an email address. Its quite generous in what it will allow
    <?php
            $email_address = "phil.taylor@a_domain.tv";
         if (preg_match("/^[^@]*@[^@]*\.[^@]*$/", $email_address)) {
             return "E-mail address";        
    ?>

  • Problems With Archiso Scripts

    I've been getting this message recently when executing the build script in the releng profile of archiso. This happens even with an unmodified source.
    Here's the error:
    sed: can't read /home/bran/archlive/build.sh/pacman.conf: Not a directory
    Here's the code that causes this error:
    # Setup custom pacman.conf with current cache directories.
    make_pacman_conf() {
    local _cache_dirs
    _cache_dirs=($(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g'))
    sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n ${_cache_dirs[@]})|g" ${script_path}/pacman.conf > ${pacman_conf}
    Variable Definitions
    pacman_conf=${work_dir}/pacman.conf
    script_path=$(readlink -f ${0%/*})
    work_dir=/home/bran/archlive/work
    If I comment out that sed expression it continues until it tries to build the ISO, so it actually seems like it's a problem with the script_path variable, considering the output from stdout
    grep: /home/bran/archlive/build.sh/packages.both: Not a directory
    grep: /home/bran/archlive/build.sh/packages.i686: Not a directory
    [mkarchiso] ERROR: Packages must be specified
    usage mkarchiso [options] command <command options>
    Essentially what I'm getting from this is that it thinks my script path is /home/bran/archlive/build.sh/ instead of just /home/bran/archlive/
    Any idea on how to fix this so that it can be submitted to the archiso-git maintainer?
    Last edited by brando56894 (2013-11-13 06:08:03)

    You want me to paste the output of help??
    [bran@ra ~/archlive]$ sudo bash build.sh -h
    usage build.sh [options]
    General options:
    -N <iso_name> Set an iso filename (prefix)
    Default: archlinux
    -V <iso_version> Set an iso version (in filename)
    Default: 2013.11.12
    -L <iso_label> Set an iso label (disk label)
    Default: ARCH_201311
    -D <install_dir> Set an install_dir (directory inside iso)
    Default: arch
    -w <work_dir> Set the working directory
    Default: work
    -o <out_dir> Set the output directory
    Default: out
    -v Enable verbose output
    -h This help message
    Your suspicion seems to be correct, but do you know why? I'm curious.
    [bran@ra ~]$ cp -r /usr/share/archiso/configs/releng .
    [bran@ra ~]$ cd releng/
    [bran@ra ~/releng]$ sudo bash build.sh -v
    sed: can't read /home/bran/releng/build.sh/pacman.conf: Not a directory
    [bran@ra ~/releng]$ sudo ./build.sh -v
    [mkarchiso] INFO: Configuration settings
    [mkarchiso] INFO: Command: init
    [mkarchiso] INFO: Architecture: i686
    [mkarchiso] INFO: Working directory: work/i686
    [mkarchiso] INFO: Installation directory: arch
    [mkarchiso] INFO: Pacman config file: work/pacman.conf
    [mkarchiso] INFO: Installing packages to 'work/i686/root-image/'...
    ==> Creating install root at work/i686/root-image
    ==> Installing packages to work/i686/root-image
    :: Synchronizing package databases...
    core 106.8 KiB 380K/s 00:00 [############################################################] 100%
    ^Cxtra 849.6 KiB 735K/s 00:00 [##################################--------------------------] 57%
    Interrupt signal received

  • SAP TAO 2.03 - problems with playing scripts

    Hi
    We are using QC 10, QTP 10 and SAP TAO 2.03
    While recording scripts TAO catches up all parameters that were used during the PFA recording, but when we try to play the script we face problems with Test Data. Although all data is set up in the Data TAble, and tehre is full logic in the script we can't execute the test - what I mean by that - everything starts and clicks but in steps that require providing with test data ERP is not populated by the test data (it looks like field were we should write data is not recognised).
    What could be the reason for such a situation ?
    Has anyone faced similar situation?
    Hope to get some help from you experts
    Best regards

    Can you check your log file and see what type of errors are  you are getting?
    As for as i know there are some limitations with PFA, you can not record with F4 option or combo boxes etc..
    If you are recording using PFA with F4 option,  you will get session manager error of if u r using combo boxes, data will not select properly. while its recording it will take but when  you reply some times it won't.
    if some of the components are not working , then you need to remove those and add existing components.
    Let me know how it goes.

Maybe you are looking for