Running script with linux32 breaks package installs

Hi,
I'm running on an x86_64 system and I was trying to install the PPD and other files needed for my Panasonic KX-MB2030 printer.  I tried running the install script Panasonic provided, but it complained that it's not meant for an x64 system.  Then, I ran the script again with:
linux32 ./install-linux
The script ran, but now I cannot install any programs.  For instance, CUPS complained that libcups wasn't working properly (probably because the script overrode some of its files), but when I go to reinstall libcups, I get a message like this:
:: package libcups-1.5.3.-5-i686 does not have a valid architecture
I've tried installing other packages, but they all complain about how the i686 version of the package is not valid.  I tried to switch back using 'linux64', but Arch still won't let me install any packages.
Please let me know if you have any suggestions.
Thanks!
Matt
Last edited by stantheman286 (2012-07-08 15:56:20)

Sure, here it is:
#!/bin/bash
# batch file to install Panasonic Printer Driver
# Make sure only root can run our script
if [ "$(id -u)" != "0" ]; then
echo " Install MUST be run as root" 1>&2
exit 1
fi
BUILD_CPU=i686
TARGET_CPU=`uname -m`
INSTALL_PATH="/usr/local/share/panasonic/printer"
# check can install to thie system
CAN_INSTALL=no
FILTER_PATH_SEARCH=""
MODEL_PATH_SEARCH=""
case $TARGET_CPU in
i[345]86)
case $BUILD_CPU in
i386)
CAN_INSTALL=yes
esac
i686)
case $BUILD_CPU in
i[36]86)
CAN_INSTALL=yes
esac
x86_64)
case $BUILD_CPU in
x86_64)
CAN_INSTALL=yes
esac
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/lib64/cups/filter"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/libexec64/cups/filter"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/local/lib64/cups/filter"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/local/libexec64/cups/filter"
esac
MODEL_PATH_SEARCH="$MODEL_PATH_SEARCH /usr/share/cups/model"
MODEL_PATH_SEARCH="$MODEL_PATH_SEARCH /usr/local/share/cups/model"
MODEL_PATH_SEARCH="$MODEL_PATH_SEARCH /usr/share/ppd"
MODEL_PATH_SEARCH="$MODEL_PATH_SEARCH /usr/local/share/ppd"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/lib/cups/filter"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/libexec/cups/filter"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/local/lib/cups/filter"
FILTER_PATH_SEARCH="$FILTER_PATH_SEARCH /usr/local/libexec/cups/filter"
if test "x$CAN_INSTALL" != "xyes"; then
echo "the package is build for $BUILD_CPU cpu, can not install to $TARGET_CPU system"
exit 1
fi
# find install dir
FILTER_PATH=""
for DIR in $FILTER_PATH_SEARCH; do
if test -d $DIR
then
FILTER_PATH=$DIR
break
fi
done
MODEL_PATH=""
for DIR in $MODEL_PATH_SEARCH; do
if test -d $DIR
then
MODEL_PATH=$DIR
break
fi
done
if test "x$FILTER_PATH" == "x"
then
echo " Cannot found CUPS filter path"
exit
fi
if test "x$MODEL_PATH" == "x"
then
echo " Cannot found CUPS model path"
exit
fi
FILTER_PROGRAMS="L_H0JDGCZAZ"
# echo informations
echo
echo " start <Panasonic Printer Driver ($BUILD_CPU)> install......"
# check and execute uninstall shell script
if test -f $INSTALL_PATH/uninstall-driver
then
echo "find exist printer driver"
echo " execute uninstall shell script now......"
if !($INSTALL_PATH/uninstall-driver)
then
echo " uninstall old <Panasonic GDI Printer Driver> failed"
echo " install driver failed"
echo
exit 1
fi
fi
SCRIPT=`readlink -f $0`
SCRIPTPATH=`dirname $SCRIPT`
PWD=`pwd`
cd $SCRIPTPATH
# echo informations
echo " start install files......"
# make install dir
mkdir -p $MODEL_PATH/panasonic/
chown root:root $MODEL_PATH/panasonic/
chmod 755 $MODEL_PATH/panasonic/
mkdir -p $INSTALL_PATH/
mkdir -p $INSTALL_PATH/bin
mkdir -p $INSTALL_PATH/conf
mkdir -p $INSTALL_PATH/data
chmod 777 $INSTALL_PATH/conf
# copy files
# create uninstall script
cat > $INSTALL_PATH/uninstall-driver <<\_______EOF
#!/bin/bash
# batch file to uninstall Panasonic Printer Driver
# Make sure only root can run our script
if [ "$(id -u)" != "0" ]; then
echo " Uninstall MUST be run as root" 1>&2
exit 1
fi
# echo informations
echo
echo " Confirmation"
echo " <Panasonic Printer Driver> uninstall"
echo
echo -n " input 'y' to continue:"
read inputval
if test "$inputval" != "y"
then
echo " uninstall be canceled"
echo
exit 1
fi
# remove files
echo " uninstall files......"
# follow is created by install script
_______EOF
chmod 755 $INSTALL_PATH/uninstall-driver
# copy lib files
INSTALL_LIB_PATH="/usr/lib"
RESTORECON=/sbin/restorecon
LIB_FILES="L_H0JDJCZAZ"
for file in $LIB_FILES; do
cp ./lib/$file.so.1.0.0 $INSTALL_LIB_PATH/
echo "rm -f $INSTALL_LIB_PATH/$file.so.1.0.0" >> $INSTALL_PATH/uninstall-driver
ln -sf $file.so.1.0.0 $INSTALL_LIB_PATH/$file.so.1
echo "rm -f $INSTALL_LIB_PATH/$file.so.1" >> $INSTALL_PATH/uninstall-driver
ln -sf $file.so.1 $INSTALL_LIB_PATH/$file.so
echo "rm -f $INSTALL_LIB_PATH/$file.so" >> $INSTALL_PATH/uninstall-driver
done
for file in $FILTER_PROGRAMS; do
cp ./filter/$file $FILTER_PATH/
echo "rm -f $FILTER_PATH/$file" >> $INSTALL_PATH/uninstall-driver
if test -f $RESTORECON
then
$RESTORECON $FILTER_PATH/$file
fi
done
# copy ppd files
PPD_FILES=`find ppd -name *.ppd`
for file in $PPD_FILES; do
cp $file $MODEL_PATH/panasonic/
file=`basename $file`
echo "rm -f $MODEL_PATH/panasonic/$file" >> $INSTALL_PATH/uninstall-driver
done
echo "rmdir --ignore-fail-on-non-empty $MODEL_PATH/panasonic" >> $INSTALL_PATH/uninstall-driver
# copy SPC & RCT files
DATA_FILES=`find data`
for file in $DATA_FILES; do
if test -d $file
then
mkdir -p $INSTALL_PATH/$file
else
if test -f $file
then
cp $file $INSTALL_PATH/$file
echo "rm -f $INSTALL_PATH/$file" >> $INSTALL_PATH/uninstall-driver
fi
fi
done
for file in $DATA_FILES; do
if test -d $file
then
echo "rmdir --ignore-fail-on-non-empty -p $INSTALL_PATH/$file" >> $INSTALL_PATH/uninstall-driver
fi
done
# copy tools
cp ./panautil/L_H0JDUIZAZ $INSTALL_PATH/bin/
echo "rm -f $INSTALL_PATH/bin/L_H0JDUIZAZ" >> $INSTALL_PATH/uninstall-driver
cp ./panautil/L_H0JDUCZAZ $INSTALL_PATH/bin/
echo "rm -f $INSTALL_PATH/bin/L_H0JDUCZAZ" >> $INSTALL_PATH/uninstall-driver
chmod 4755 $INSTALL_PATH/bin/L_H0JDUCZAZ
cp ./panautil/L_H0JDUIZAZ.png $INSTALL_PATH/bin/
echo "rm -f $INSTALL_PATH/bin/L_H0JDUIZAZ.png" >> $INSTALL_PATH/uninstall-driver
if test -d /usr/share/applications/
then
cp ./panautil/L_H0JDUIZAZ.desktop /usr/share/applications/
echo "rm -f /usr/share/applications/L_H0JDUIZAZ.desktop" >> $INSTALL_PATH/uninstall-driver
fi
echo "rm -Rf $INSTALL_PATH/conf" >> $INSTALL_PATH/uninstall-driver
echo "rmdir --ignore-fail-on-non-empty -p $INSTALL_PATH/bin" >> $INSTALL_PATH/uninstall-driver
echo "rm -f $INSTALL_PATH/uninstall-driver" >> $INSTALL_PATH/uninstall-driver
cat >> $INSTALL_PATH/uninstall-driver <<\_______EOF
# restart
echo " restart spooler - CUPS"
if test -f /etc/init.d/cups
then
/etc/init.d/cups restart
else
if test -f /etc/init.d/cupsys
then
/etc/init.d/cupsys restart
fi
fi
# echo informations
echo
echo " uninstall driver completed"
echo
echo " please use \"system-config-printer\" or \"lpadmin\" "
echo " to remove all printers based on the driver."
echo
exit 0
_______EOF
# restart CUPS
echo " restart spooler - CUPS"
if test -f /etc/init.d/cups
then
/etc/init.d/cups restart
else
if test -f /etc/init.d/cupsys
then
/etc/init.d/cupsys restart
fi
fi
cd $PWD
# echo informations
echo
echo " install driver completed"
echo
echo " please use \"system-config-printer\" or \"lpadmin\" to add printer."
echo
exit 0

Similar Messages

  • OSD: How to run script(it's In package) without download

    I has a hta script need to run before "Partition Disk", but this script is in a package, if I want to run it, it need to download to harddisk. so it will fail, because no partition.
    So how to run directly this script in network, without download to C drive.
    PS: I think I can put this script into boot image, but it is not easy to maintain. So I want to run directly in network
    06/30:
    Thank you for everyone support!
    My Hta will warn users that the following operations will format data.So "Create a temporary partition on the disk"--It is not for my requirement.
    As Narcoticoo mentioned, I want to use "Package Share Settings" to share folder, so how to map this folder with automatically recognize
    DP?
    just like \\%DP%\hta

    Thank you for everyone support!
    As Narcoticoo mentioned, I want to use "Package Share Settings" to share folder, so how to map
    this folder with automatically recognize DP?
    just like \\%DP%\hta
    Is there this variable?

  • Problem running Script in a custome package in BPC

    Hello Experts,
    I am having an issue running a custom package in BPC 7.0 SP05. Package is to process all dimensions for an application. It runs fine in BI Studio 2008, but gives me login failed error when i run it with BPC. Here is a script i have problem with:
                Dim ExcelCon As String = _
                "Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" _
                & ExcelPath & ";Extended Properties=Excel 8.0"
                Dim excelConnection As System.Data.OleDb.OleDbConnection = _
                New System.Data.OleDb.OleDbConnection(ExcelCon)
                excelConnection.Open()
                Dim OleStr As String = "Select * into [ODBC; Driver={SQL Server}; Server=" _
                    & ServerName & ";Database=" & DBName & ";Trusted_Connection=True;].[" _
                    & InsertedTableName & "]  FROM [MEMBERS$];"
                Dim excelCommand As New System.Data.OleDb.OleDbCommand(OleStr, excelConnection)
                excelCommand.ExecuteNonQuery()
    It's inserting Excel table (dimension members) into SQL Server table.
    I'm am running package with BPC admin account (which is sysadmin and local admin).
    Is BPC using some Anonymous credentials to execute packages if you don't pass any credentials? I'm not passing any parameters into the package.
    I'd appreciate any info...
    Thanks,
    Akim
    P.S. it's a VB.NET script.
    Edited by: Akim Zubarchuk on Oct 19, 2009 9:49 PM

    Hi
    you have to use DM and you can pass parameters or setup global vatiables trough the Global Varialble MODIFYPKG.
    Into you VB script you have to use DTS_GLOBALVARIABLE("Nameofvariable").value to be able to get value of global variable.
    It is difficult to provide exactly what you have to do but I hope these two information will help you to build your custom package.
    Kind Regards
    Sorin Radulescu

  • Run script with flag

    Hi guys,
    is it possible run a script if a flag cell is selected ??
    another question...
    is it possible run script when i print a table or when i save file ???
    Thank's

    syrahBau wrote:
    Hi guys,
    is it possible run a script if a flag cell is selected ??
    Numbers is unable to trigger a script by itself.
    So you are free to run a script by yourself if this or that attribute is set.
    another question...
    is it possible run script when i print a table or when i save file ???
    You are perfectly free to run a script which will save a document an do this or that action.
    For the print task, at this time the response is yes but no.
    If your document contains a single sheet containing a single table, you may run a script to print the document and do this or that task.
    If the document doesn't match the given requirements, a script will print the entire document which is not what you asked for.
    From my point of view, it would be a good idea to
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_,
    explain them that you want a feature allowing Numbers to trigger a script
    like the MACRO() function available in AppleWorks.
    Then, cross your fingers, and wait _at least_ for iWork'11
    Yvan KOENIG (VALLAURIS, France) mercredi 30 juin 2010 12:40:08

  • Run script with .pkb extension

    How do I run scripts from sql developer? I tried: file - open - mypackage.pkb. Opens file. When I do Run - Run File, I get: "The target metrics_pkg.pkb cannot be started because it is not a runnable target."
    Ok, maybe I should just use @mypackage.pkb as if I was in sqlplus. Nope. I have not told it where my script resides, so I get: "Unable to open file: "C:\Documents and Settings\mthompso\metrics_pkg.pkb".
    I assume there is some way to set the directory for running scripts?

    Couple of things to try here.. Don't use 'Run****' from the run menu. There is a green arrow on the editor that will only be available if a target is runnable.. If it is greyed out, you don't have a connection associated. Additionally, if the drop-down list on the upper right hand side doesn't show a connection, it won't run.
    And a hint to the development team.. please disable the run option under the run menu if it is not runnable :)
    Eric

  • CS5 - Running Script with Action. Not saving problem

    I am trying to setup an action that runs a script using the "Insert menu item" command.
    It all works perfectly but when I quit Illustrator and re0open it, the action has disappeared.
    Is this a bug or am i doing something wrong?

    Additional info (no solution):
    Could have something to do with the order Illustrator registers available scripts as menu commands and checking validity of action 'menu commands'.
    Try this:
    - Look in the File/Scripts menu and note down a scriptname in there;
    - Exit Illustrator;
    - Start Illustrator
    - Create a new action
    - In the Action Panel flyout menu chose 'Insert Menu Item...' - a Find dialog should open
    - In the textbox enter the scriptname you dotted down and press Find
    It tells you 'No menu item matching that name was found.'
    - Press OK, then Cancel;
    - Goto File/Scripts but don't select a script, close the menu
    now again
    - Create a new action
    - In the Action Panel flyout menu chose 'Insert Menu Item...' - a Find dialog should open
    - In the textbox enter the scriptname you dotted down and press Find
    Now it could be found..
    So it seems that when Illustrator starts:
    Initializes without registering the available scripts as available menuitems
    When the actions are loaded and in it is a Menu Command, it checks if that command is actually available - if not it deletes the action item
    After accessing the scriptmenu the scripts are indeed registered as available menuitems..
    So now if they would only register the scriptnames before loading the actions when starting Illustrator it would be solved. Or of course disable checking action commands for validity.
    Sure hope they solve this soon as I can imagine it affects a lot of people.

  • Red field when I try to run script with 10G

    I recently installed 10G XE. I am able to create a new user and was trying to run a script for JustLeeBooks from the Thompson Course Technology books website. I downloaded the files to my computer and then went into the new user and browsed and downloaded the script. The area where the script appears is all red. When I click run, nothing happens. Should that script area be red like that?
    I can click on delete and delete the script, but I can seem to run the script.
    What do I need to do to run the script for my database class?
    Thank you.
    Vicki

    Hi,
    XE pre installed Apex is quite old and might not support all new browsers.
    Have you try use other browser?
    You can also upgrade Apex
    http://www.oracle.com/technetwork/developer-tools/apex/upgrade-apex-for-xe-154969.html
    But please note you lose database management features. But you can do those e.g. with SQL developer as above link shows.
    Regards,
    Jari

  • Running script with input values

    I have a script file FV.SQL with following contents:
    select * from emp where job in ( '&one' , '&two');
    in sqlplus it is ok to execute script by passing input values like
    SQL> @ FV CLERK ANALYST
    But how it can be executed in iSQLPLUS?
    Kindly suggest
    Message was edited by:
    Jameel

    Thanks,
    I am asking to do like this in iSQL*PLUS,
    SQL> ED V
    SQL> ED
    Wrote file afiedt.buf
      1  SELECT * FROM DEPT
      2* WHERE LOC IN ('&1' , '&2')
    SQL> @ V CHICAGO DALLAS
    old   2: WHERE LOC IN ('&1' , '&2')
    new   2: WHERE LOC IN ('CHICAGO' , 'DALLAS')
        DEPTNO DNAME          LOC
            20 RESEARCH       DALLAS
            30 SALES          CHICAGO
    --- "when i try the same in isqlplus, it shows error...?"Message was edited by:
    Jameel

  • Running Scripts with sqlplusw.exe

    Hi,
    My requirement is I've to run a script, which will take connection info (logon window) and then run my file.
    much like sqlplusw.exe xx @c:\abc.sql. Now I can't put xx as username. I've to write it such a way that, it'll ask for conn info(username,password and connect string) then execute the script.
    Thanks in advance.
    --Sourav                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    D:\>type test.sql
    conn &1/&2@&3
    set lines 121 pages 1000 trimspool on
    spool spool.log
    select * from emp;
    spool off
    exit
    D:\>sqlplusw /nolog @test.sql scott tiger test9i
    D:\>type spool.log
         EMPNO ENAME      JOB              MGR HIREDATE        SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17/12/80        800                    20
          7499 ALLEN      SALESMAN        7698 20/02/81       1600        300         30
          7521 WARD       SALESMAN        7698 22/02/81       1250        500         30
          7566 JONES      MANAGER         7839 02/04/81       2975                    20
          7654 MARTIN     SALESMAN        7698 28/09/81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01/05/81       2850                    30
          7782 CLARK      MANAGER         7839 09/06/81       2450                    10
          7788 SCOTT      ANALYST         7566 19/04/87       3000                    20
          7839 KING       PRESIDENT            17/11/81       5000                    10
          7844 TURNER     SALESMAN        7698 08/09/81       1500          0         30
          7876 ADAMS      CLERK           7788 23/05/87       1100                    20
          7900 JAMES      CLERK           7698 03/12/81        950                    30
          7902 FORD       ANALYST         7566 03/12/81       3000                    20
          7934 MILLER     CLERK           7782 23/01/82       1300                    10

  • How to run scripts ?

    I would like to know how to run scripts with xgrid.
    From the Xgrid Admin manual, page 37, I created a file and added
    !#/bin/sh
    /bin/echo "Hello, World!"
    saved the file, and gave chmod 755 hello.sh
    When I run at the command line, "Hello, World" is displayed. But as Apple mentioned in the same page of the manual, I did this at the command line
    xgrid -h localhost -p mypassword job submit hello.sh
    Job id is displayed. Say it is 67.
    I could see in the Admin interface that job is sumbitted and running. After finishing, at the command line I did a
    xgrid -h localhost -p mypassword job results -id 67
    Nothing is displayed. Am I doing right or missing something ?
    Appreciate any help.

    A little comment: add to your bashrc file (in /etc/)
    export XGRIDCONTROLLERHOSTNAME=yourcontroller
    export XGRIDCONTROLLERPASSWORD=yourpass
    so that you don't need to use -h and -p options all the time.
    Am I wrong or shouldn't your commands be -job (notice the dash before job)?
    I suppose because otherwise you would get a help page. Also, I suppose your beggining of file is #! instead of the inverse...
    Did you try using run instead of submit? You should see the output right away.
    What is the status of the job in Xgrid Admin? What happens if you use -so to direct the output to some file?

  • "Run Script" (F5) Flacky Behavior with CREATE PROCEDURE and PACKAGE

    When I have the following create statement in a SQL Worksheet and run the script using "Run Script" (F5), I get the "PROCEDURE bogus Compiled." message. Why does it not tell me that there was a compile error? The procedure is marked with a little red "X" in the connections pane.
    CREATE OR REPLACE PROCEDURE bogus IS
    BEGIN
      x := 1;
    END;
    /Also, when I have the following command in a SQL Worksheet and run the script using "Run Script" (F5), I get the "PROCEDURE bogus Compiled." message. The difference is that I removed the slash after the CREATE PROCEDURE command. I can go into that procedure in the database via the Connections pane, click on the compile button, and the procedure compiles with no errors. Why does it not compile in a script when missing the slash?
    CREATE OR REPLACE PROCEDURE bogus IS
    BEGIN
      NULL;
    END;I noticed the same flaky behavior with CREATE PACKAGE BODY as well. This is in version 1.0.0.14.67 on Windows XP. Has this been fixed in the latest version?
    Mike

    I found a number of earlier posts on this (going back to at least v804), but I cannot find a thread with a response from the SQL Developer team - see:
    Package compilation error
    Succesful compilation message and Compiling Invalid Objects
    Creating a stored procedure from a file does not show compilation errors
    Re: Syntax Error Feedback
    I assume that it is just a bug with SQL Developer that it does not check for compilation errors when determining the status message to display (ie "PROCEDURE bogus Compiled"). At least now we get the little red cross on the navigator to tell us it is invalid :)

  • HELP! adobe reader XI (11.0.09)  hangs on installation (running scripts package)

    adobe reader XI (11.0.09) hangs on installation (running scripts package). I cannot shut my computer down, because the installer won't let it and says "interrupting the install will damage the computer) I just wanted to update from 11.0.07 but it said contents had been changed so I had to reinstall adobe reader. So I am trying but it has been hours.

    Hi andrea02,
    Are you still facing this issue?
    You may try uninstall previous installation copy using Adobe Acrobat/Reader cleaner tool::  http://labs.adobe.com/downloads/acrobatcleaner.html
    Regards,
    Ajlan Huda.

  • "There is a problem with this windows installer package A program required for this install to complete could not be run contact your personnel or package vendor".

    I had itunes set up and working since i have had my iPhone and iPad. One day it asked to be updated, so i did. After it updated it stopped working because whenever i tried to open it it would say "this shortcut has either been deleted or moved would you like to delete this shortcut". This kept on happening so I uninstalled it and tried to reinstall it, but then comes my second problem. While itunes is downloading an error pops up saying "There is a problem with this windows installer package A program required for this install to complete could not be run contact your personnel or package vendor". This is my main problem and i don't know how to stop it i have tried a disc clean up, De frag and trying to completely take everything to do with itunes off my computer, but it still doesn’t work. HELP ME!!! I NEED ITUNES!!

    Repair your Apple Software Update
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU in All Programs, go to Control Panel/Programs n Features(Win7 or Vista) or Add & Remove Programs(XP)

  • Hello i have been trying to install i tunes 10 on to my pc but as i get to the end of installation it comes up with the message windows installer package failed contact support or vendor how do i solve this im running vista of an acer laptop many thanks

    hello i have been trying to install i tunes 10 on to my pc but as i get to the end of installation it comes up with the message windows installer package failed contact support or vendor how do i solve this im running vista of an acer laptop many thanks

    Let's try the following user tip with that one:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • Trying to upgrade to 10.6 so my iPhone could synch...I'm getting this error message "Problem with this Windows (XP) Installer package.  A program required for this install to complete could not be run."  Any ideas?

    I had iTunes 10.2.1.1 but needed to upgrade to 10.6 so my iPhone could synch...I'm getting this error message "Problem with this Windows (XP) Installer package.  A program required for this install to complete could not be run."  Any ideas?

    This has been fixed.  Answer is that I needed to go to "Apple Software Update" and repair it.  (From my Control Panel).

Maybe you are looking for

  • Message No: V1 302- "Sale order is not available"

    Hi, I have an issue with my client. The scenario was: Sale order 1 is created. With reference to Sale order 1 , sale orders 2,3,4 are created. Now iam able to see the sale order 1,2 & 4 in VA03, where as iam not abel to execute the sale order 3 in th

  • Steps to create new movement types

    Hi Folks, I need to create new movement type, please let me know the steps that i need to follow. Thanks, Regards Raghavendra

  • Disappointing first (and only) experience with Crucial...

    I ordered some RAM and a SSD drive upgrade for my PC but then decided to go with a new computer instead.  I sent two emails very soon after my order to cancel shipment.  Neither was answered and so Crucial shipped to me using UPS (a $30 charge at the

  • CMS track save problem

    Hi XI Gurus, I am getting the following error XI (URL http://host:port/rep) server exception: Communication to system integration Builder with application CMS transport is interrupted. Detailed information: Error accessing “http://host:port/rep/cmstr

  • Aggregate Navigation

    Experts, I have 2 aggregated fact tables in my BMM layer. AggFact1 has client at base level and product at segment level. Aggfact2 has client at base level (same level as aggfact2) and product at total product level. Both these agg fact tables has ot