How works Group System de-provisioning ?

Hi all,
I'm runing SAP IDM 7.1 SP4 last patch.
Here is my pain :
When a user has 2 privileges from the same ABAP repository (for example: SAP_ALL and SAP_NEW), and when those privileges are removed from the identity assignments manually (using a web interface Add / Remove privilege), the DeprovisionABAP task is launch.
Priv are not going through PendingValues, so DeprovisionABAP task is launch from repository deprovision task definition.
And because those privileges were the last ones, 2 Delete ABAP user task are launch as well.
The first on finish OK, but the second one failed because the user as already been delete by the 1st task.
When I look into the RemoveFlagRunChildren, it looks like when priv are manually removed ("#" into MXP_AUDIT table) from an entrytype "MX_PERSON" nothing is done.
Can you please let me know how works Group system de-provision because I have a error each time that all privileges from the same repository are removed from a MX_PERSON.
Thanks for your help,
Benjamin

Try the BExApplication object, .ComConnection.Language property. BTW, there are a lot of useful things there. At least it works when I logon to BEx via Connect button. For example:
Public BExApp As Object
Sub BExAppTest()
    Set BExApp = CreateObject("com.sap.bi.et.analyzer.api.BExApplication")
    MsgBox BExApp.ComConnection.Language
    Set BExApp = Nothing
End Sub
P.S. BExApplication object is a part of BExApi.tlb library (if you need a reference, however it seems to work even without a ref).

Similar Messages

  • How work miniroot system

    Hello,
    I'll try to describe as much as possible what I've done and what I would like to set up...
    All modification I'll speak are about miniroot system only.
    I'm trying to add a remote access in system inside sparc.miniroot. I'm using a miniroot from Solaris 10 10/08.
    To perform that I've first extracted sparc.miniroot, modified it then rebuilt it. All that is ok. As this system is almost all read only, I perform some changes in my SSH config: server keys generation when ssh is starting, keys generated in /tmp, add needed user/group add a password for root user...
    To test without reinstalling my test hardware each time I've set an incorrect parameter in /etc/bootparams (for the install= option). So after a "boot net - install" or "reboot -- 'net - install'" miniroot system is hanging and give back hand to the shell.
    In this shell I can start ssh server and then I can connect on miniroot system using ssh.
    But I can't find a way to make ssh server is started at boot time. I've modified /etc/inittab in miniroot, added link in /etc/rcS.d, /etc/rc1.d, /etc/rc2.d... I haven't yet tried to modify svc configuration to launch it, but I've tried to modify svc to run rlogin without success...
    If you have any information regarding services management in miniroot system, your help will be greatly appreciated : )
    Kindly regards,
    mat

    Hi Utes12,
    Thanks for your answer. In fact as I'm a lazy guy I would like to activate SSH even if installation process goes wrong and I did that modifying a script named install-discovery if I well remember. When this script exit running a shell I've added sshd startup. Now even if a problem happens during initialization I'm still able to connect on the system and so I've no need to go in datacenter to check and restart servers.
    This can't be done through SMF I think.
    Cheers,
    mat

  • How do I renew a provisioning profile that has expired on my phone? I use an app for the company I work for and I cannot open it because it says the provisioning profile has expired.

    How do I renew a provisioning profile that has expired on my phone? I use an app for the company I work for and I cannot open it because it says the provisioning profile has expired.

    i'm not quiet sure atm but should normally work like this:
    connect to itunes store -> log out with ur account (upper right corner where ur apple id is displayed) -> sign in with ur wifes apple id -> activate computer (store->activate this computer)
    normally it should work this way but ur wife wont be able to use apps or music within itunes library purchased with the other apple id

  • How to Create SYSTEM GROUP in XI

    Hi, all
    My question is how to create system group in XI 3.0
    I goto RZ21 then Technical Infrastructure --> Configure Central system --> Maintain system Group
    Then Create system Group name ExchangeInfrastructure_System
    After Hit enter, its not look like group, it look like subgroup entry... why? how to create group
    please tell me...
    I am sending screen shot how its look like
    Thanks
    http://www.flickr.com/photos/25222280@N03/?saved=1
    http://www.flickr.com/photos/25222280@N03/2439104310/

    Hi,
    refer the below help
    http://help.sap.com/saphelp_nw04/helpdata/en/e5/5d1741b393f26fe10000000a1550b0/frameset.htm
    Thanks,
    RamuV

  • Can't understand how this group by clause works

    The Schema is as below: (http://www.psoug.org/reference/rollup.html)
    CREATE TABLE grp_rep (
    person_id NUMBER(3),
    division VARCHAR2(3),
    commission NUMBER(5));
    INSERT INTO grp_rep VALUES (1,'SAM',1000);
    INSERT INTO grp_rep VALUES (2,'EUR',1200);
    INSERT INTO grp_rep VALUES (1,'EUR',1450);
    INSERT INTO grp_rep VALUES (1,'EUR',700);
    INSERT INTO grp_rep VALUES (2,'SEA',1000);
    INSERT INTO grp_rep VALUES (2,'SEA',2000);
    INSERT INTO grp_rep VALUES (1,'EUR',800);
    COMMIT;
    Query1:
    SELECT person_id, division, SUM(commission)
    FROM grp_rep
    GROUP BY person_id, ROLLUP (person_id, division);
    Query2:
    SELECT person_id, division, SUM(commission)
    FROM grp_rep
    GROUP BY division, ROLLUP (person_id, division);
    The results of query1 are okay. It has results from rollup and group by person_id.
    But, in Query2 results of rollup are missing and results of group by division is there.
    Anyone can explain how the group by clause works when there are multiple columns involving CUBE, ROLLUP and simple column names?
    Regards.

    Thank you shoblock!
    but, What i m really looking for is,
    How group by clause works when i add regular column along with RollUp in group by clause?
    I have understood simple group by clause like
    ...group by column1,column2,column3....
    n I also know simple rollup clauses like
    ...group by rollup(column1,column2,column3,...)
    But my Problem is how does this work:
    ...group by column2,rollup(column1,column2,...)
    ...group by column1,rollup(column1,column2,...)
    See below Results:
    Query1:
    SELECT person_id, division, SUM(commission)
    FROM grp_rep
    GROUP BY person_id,ROLLUP ( person_id, division );
    Result:
    PERSON_ID DIVISION SUM(COMMISSION)
         1      EUR      2950
         1     SAM      1000
         2      EUR      1200
         2      SEA      3000
         1           3950
         2           4200
         1           3950
         2           4200
    SELECT person_id, division, SUM(commission)
    FROM grp_rep
    GROUP BY division,ROLLUP ( person_id, division );
    Query2:
    SELECT person_id, division, SUM(commission)
    FROM grp_rep
    GROUP BY division,ROLLUP ( person_id, division );
    Result:
    PERSON_ID DIVISION SUM(COMMISSION)
    1 EUR 2950
    2 EUR 1200
         1 SAM      1000
    2 SEA 3000
    1 EUR 2950
    2 EUR 1200
    1 SAM 1000
    2 SEA 3000
    EUR 4150
    SAM 1000
    SEA 3000
    guys, help me make understand above results!
    Regards.

  • How does point system works?

    Dear all,
    I am wondering how this point system works? I had 915 points this morning and now end up with 905. Instead of going up, it fluctuates from time to time. Initially, it use to show up next to my name with 915 but then that went down to 514???
    Is it only me or someone else has seen this behaviour?
    I am not points buff but it seems pretty strange that one day infact in the same day the numbers fluctuates like they do in stock exchange.
    Regards
    Jehanzeb

    >
    Amit Gujargoud wrote:
    > I think you misunderstood His words and take it hard. Iu2019m sure he actually
    >  meant in a Cool way. Letu2019s wait until his morning, he will come to you with more cool way
    Nope, in this case, Kartik already has "the hard way" behind him.
    During an investigation into a nest of points gamers in October last year, Kartik was investigated as well for having for having participated in one of the threads. There were many being investigated. Other symptoms matched (we have some strict rules for this) - so the mistake was perhaps understandable - but on the other hand I should perhaps have looked a bit further to see that Kartik's post patterns were different to those of the others (who were not located very far away from Kartik..).
    Anyway... as they faded away into the annual ponits total of those who are being transported into the world where the A.G. calendar is used ( Anno Guestus ) ... Kartik's ID faded away with them.
    Kartik contacted me about it and I took his word for the expanation that he was not involved. I am very glad that I did that, as he has been a big help in the ABAP forums.
    I don't have the exact figures, but last I heard we have deleted more than 50 thousand user ID's for ponits gaming. I am always very carefull when investigating this and there are other people who check it as well before any action is taken.
    To date, to my knowledge, Kartik has been the only mistake we have made. Others have begged for mercy, but that is different. Hence my comment that he should wear the difference like a "battle scar" caused by the "journal entry", until Micheal can possibly fix it.
    As you can see, "we are all guilty of something"   (quote: Inspector Vimes)
    Cheers,
    Julius

  • How i discover all work-group computer in sccm 2012

    how i can make  discovery for  all work-group computer in sccm 2012 

    Jason - true but some environments don't always have this luxury. I've worked with clients recently whereby they weren't able to add all devices into AD but yet still wanted to managed them in ConfigMgr. It does add complexity and extra work and I wouldn't
    recommend, as I'm sure you wouldn't, running Network Discovery on a frequent basis.
    Cheers
    Paul | sccmentor.wordpress.com

  • How can i find screen group system field?

    Hi all,
    How can i find screen group system field?
    Thanks,
    Nidhi Kothiyal

    Hi,
    Do you mean by the screen-group which we give for the fields to be active or inactive in module pool?
    You can find it in the attributes window which comes by double clicking on the field. In that give the group name in the 1st box in GROUPS.
    Thanks,
    Sri.

  • How to group a report by formula field.

    Hi,
    I need to create a report based on the following report:
    http://s464.photobucket.com/albums/rr8/einas121809/
    This new report should be grouped by days and status. Then, each group should display the details of each record such as Report No, Open Date , Due Date and Summary.
    It is not a problem to display the report details, but I need to know how to group them since it involve calculation.
    Thank you in advance,
    Regards,
    einas.

    Hello,
    Right what you want to do is to get a crosstab which can be found in your toolbar or under Insert menu Insert --->Crosstab.
    You might need to use a working day formula something like this
    WhileReadingRecords;
    Local DateVar Start := {StartDate};   // place your Starting Date here
    Local DateVar End := {EndDate};  // place your Ending Date here
    Local NumberVar Weeks;
    Local NumberVar Days;
    Local Numbervar Hol;
    DateVar Array Holidays;
    Weeks:= (Truncate (End - dayofWeek(End) + 1
    - (Start - dayofWeek(Start) + 1)) /7 ) * 5;
    Days := DayOfWeek(End) - DayOfWeek(Start) + 1 +
    (if DayOfWeek(Start) = 1 then -1 else 0)  +
    (if DayOfWeek(End) = 7 then -1 else 0);  
    Local NumberVar i;
    For i := 1 to Count (Holidays)
    do (if DayOfWeek ( Holidays<i> ) in 2 to 6 and
         Holidays<i> in start to end then Hol:=Hol+1 );
    Weeks + Days - Hol
    If you need to calculate bank holidays then you have to create an array like this
    //Holiday Listing formula to go into the report header of the report.
    BeforeReadingRecords;
    DateVar Array Holidays := [
    Date (2003,12,25),
    Date (2003,12,31)
    0
    The workingdays formula needs to go into the Row and then distinct Count your orders. That should give you how many orders took x amount of days.
    Then you need to further develop your formula so that it shows <20 days, more than 20 days etc.
    Create something like this first and then ask further questions if you are stuck.
    Hope this helps
    Regards
    jehanzeb

  • Override the GROUP system session variable within an initialization block

    Hi,
    We're trying to override the GROUP system session variable and having no luck. We've created an initialization block to return the semicolon-separated list we're looking for but when a user logs in, it seems like it is overridden with the default. When we change the name of the variable to something other than GROUP, it works great and we get the expected value. Is there something we're missing with overriding the particular value?
    Here is the query we're attempting to use for the variable:
    Select 'GROUP',
       ListAgg(OBI_ROLE, ';') Within Group (Order By USER_EMAIL)
    From CSS_OBI_USER_ROLE
    Where USER_EMAIL In (':USER')
    We also tried:
    Select
       ListAgg(OBI_ROLE, ';') Within Group (Order By USER_EMAIL)
    From CSS_OBI_USER_ROLE
    Where USER_EMAIL In (':USER')
    We made sure that the variable name was 'GROUP' as well.
    Not sure if it's important to note or not, but the returned values do correspond to existing applications groups already defined within OBI.
    Any help is greatly appreciated!
    Thanks,
    Jas

    since you have value as OpsReviewViewer;OpsReviewAuthor:BIAdministrator
    my not help row wise setting
    try to handle ; part using sql query so that you get those number of records to use row-wise
    so this
    Select 'GROUP',
       ListAgg(OBI_ROLE, ';') Within Group (Order By USER_EMAIL)
    From CSS_OBI_USER_ROLE
    Where USER_EMAIL In (':USER')
    with row-wise show work

  • Work Group Manager Reports and Logs

    Mac Manager maintains logs and display current activity information somewhat different that Work Group Manager. With Mac Manager we are able to quickly report for Activity Log, Disk Usage, Connected Machines, Printer Quotas, Workgroup by User, Computers, Checked Out Computers and user activity.
    How can we duplicate such a report with Work Group Manager?
    We are a school district that is 88% Macintosh and miss the reports and logs feature in Mac Manager (10.3.9).
    Hope to hear and find a solution to this challenge.
    Marco Baeza, Director of Technology

    Hello,
    Possibly some ideas here. http://www.macintouch.com/macmanager.html
    Carolyn

  • How to decide system status cnf teco clsd

    Hi ,
    My requirement is to select work orders( auart), planned hrs( arbei), actual hrs( ismnw ) based on 'date range', 'work order type', func location ( tplnr ), 'abc indicator ( abckz).
    i have to list all work orders:
    for a particular planning plant say '1000' , systm status including CNF, TECO, CLSD, excluding PCNF , CRTD , DLFL and REL, I have to include all work orders except SM02 and CP01 and also exclude work orders scheduled outside query period .
    When the above is done, i need to sum planned work work hours scheduled for that week , divided by sum of planned work hrs.
    I am done with select statement part, how can i find system status or how to calculate system status .
    thanks.
    Raghu

    Hi Seshu,
    I have to extract auart, arbei, ismnw based on date range, work order range, func.location range ( tplnr) , abc indicator( abckz).
    list all work orders ( auart) with planning plant '1000', system status including CNF, TECO, CLSD , excluding PCNF CRTD DLFL and REL, including all work order types except ' CP01' .
    Then i have to sum planned work hrs scheduled for that period and divide by sum of planned work hrs .
    say if sum of earned hrs is 10 and planned work hrs scheduled are 20 then
    10/20.
    Here i have to find earned hrs from AUFK table.
    Basically i would like to know about system status , whether it depends on planned hrs and earned hrs or just i have to extract it from JEST or use status_read.
    Thanks.
    Raghu

  • Command line equivalent of Work Group Manager's export feature

    Hello everyone,
    I am have a hard time upgrading from Lion Server to Mountain Lion Server, especially with Open Directory. What I wish to do, is to import the existing users and groups of an existing server running Lion Server into a new (fresh) Open Directory master created on another server that is running Mountain Lion Server.
    I have tried several options. Those that did *not* work for me include:
    Trying to make create a replica of the Lion Open Directory on the Mountain Lion Server
    Trying to backup the OD of the Lion Server using slapconfig
    What seems to work (for the moment), is to use the export feature of Work Group manager on Lion and to import the users/groups using the import feature of Mountain Lion Server app.
    My question is: is there a command line way to do the export ? Since Work Group manager seems to be kind of deprecated in ML, I assume there must be some other way (i.e., from the command line) to do the user/group import and export.
    Thanks for your help !

    Notice that the old Archive and Restore options are gone. To run a backup, run the slapconfig command along with the -backupdb option followed by a path to a folder to back the data up to: 
    sudo slapconfig -backupdb /odbackups
    To restore a database (such as from a previous version of the operating system where such an important option was actually present) use the following command (which just swaps backupdb with -restoredb) 
    sudo slapconfig -restoredb /odbackups
    /usr/sbin/ServerBackup -cmd backup -source /

  • How to get system temp dir. path on the fly ,system may be XP or Linux ??

    How to get system temp dir. path on the fly ,system may be XP or Linux ??
    please suggest solution

    The default temporary-file directory can be retrieved
    using:
    System.getProperty("java.io.tmpdir")
    Thanks a lot for u r reply this one works !!!!

  • How to get system Environment variable?

    How to get system Environment variable without using jni?
    just like "JAVA_HOME" or "PATH"...
    Any reply is help to me!! :-)

    Thx for your reply...
    I get it!!!
    Read environment variables from an application
    Start the JVM with the "-D" switch to pass properties to the application and read them with the System.getProperty() method. SET myvar=Hello world
    SET myothervar=nothing
    java -Dmyvar="%myvar%" -Dmyothervar="%myothervar%" myClass
    then in myClass String myvar = System.getProperty("myvar");
    String myothervar = System.getProperty("myothervar");
    This is useful when using a JAVA program as a CGI.
    (DOS bat file acting as a CGI) java -DREQUEST_METHOD="%REQUEST_METHOD%"
    -DQUERY_STRING="%QUERY_STRING%"
    javaCGI
    If you don't know in advance, the name of the variable to be passed to the JVM, then there is no 100% Java way to retrieve them.
    NOTE: JDK1.5 provides a way to achieve this, see this HowTo.
    One approach (not the easiest one), is to use a JNI call to fetch the variables, see this HowTo.
    A more low-tech way, is to launch the appropriate call to the operating system and capture the output. The following snippet puts all environment variables in a Properties class and display the value the TEMP variable. import java.io.*;
    import java.util.*;
    public class ReadEnv {
    public static Properties getEnvVars() throws Throwable {
    Process p = null;
    Properties envVars = new Properties();
    Runtime r = Runtime.getRuntime();
    String OS = System.getProperty("os.name").toLowerCase();
    // System.out.println(OS);
    if (OS.indexOf("windows 9") > -1) {
    p = r.exec( "command.com /c set" );
    else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 2000") > -1 )
    || (OS.indexOf("windows xp") > -1) ) {
    // thanks to JuanFran for the xp fix!
    p = r.exec( "cmd.exe /c set" );
    else {
    // our last hope, we assume Unix (thanks to H. Ware for the fix)
    p = r.exec( "env" );
    BufferedReader br = new BufferedReader
    ( new InputStreamReader( p.getInputStream() ) );
    String line;
    while( (line = br.readLine()) != null ) {
    int idx = line.indexOf( '=' );
    String key = line.substring( 0, idx );
    String value = line.substring( idx+1 );
    envVars.setProperty( key, value );
    // System.out.println( key + " = " + value );
    return envVars;
    public static void main(String args[]) {
    try {
    Properties p = ReadEnv.getEnvVars();
    System.out.println("the current value of TEMP is : " +
    p.getProperty("TEMP"));
    catch (Throwable e) {
    e.printStackTrace();
    Thanks to W.Rijnders for the W2K fix.
    An update from Van Ly :
    I found that, on Windows 2003 server, the property value for "os.name" is actually "windows 2003." So either that has to be added to the bunch of tests or just relax the comparison strings a bit: else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 2000") > -1 )
    || (OS.indexOf("windows 2003") > -1 ) // works but is quite specific to 2003
    || (OS.indexOf("windows xp") > -1) ) {
    else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 20") > -1 ) // probably is better since no other OS would return "windows" anyway
    || (OS.indexOf("windows xp") > -1) ) {
    I started with "windows 200" but thought "what the hell" and made it "windows 20" to lengthen its longivity. You could push it further and use "windows 2," I suppose. The only thing to watch out for is to not overlap with "windows 9."
    On Windows, pre-JDK 1.2 JVM has trouble reading the Output stream directly from the SET command, it never returns. Here 2 ways to bypass this behaviour.
    First, instead of calling directly the SET command, we use a BAT file, after the SET command we print a known string. Then, in Java, when we read this known string, we exit from loop. [env.bat]
    @set
    @echo **end
    [java]
    if (OS.indexOf("windows") > -1) {
    p = r.exec( "env.bat" );
    while( (line = br.readLine()) != null ) {
    if (line.indexOf("**end")>-1) break;
    int idx = line.indexOf( '=' );
    String key = line.substring( 0, idx );
    String value = line.substring( idx+1 );
    hash.put( key, value );
    System.out.println( key + " = " + value );
    The other solution is to send the result of the SET command to file and then read the file from Java. ...
    if (OS.indexOf("windows 9") > -1) {
    p = r.exec( "command.com /c set > envvar.txt" );
    else if ( (OS.indexOf("nt") > -1)
    || (OS.indexOf("windows 2000") > -1
    || (OS.indexOf("windows xp") > -1) ) {
    // thanks to JuanFran for the xp fix!
    p = r.exec( "cmd.exe /c set > envvar.txt" );
    // then read back the file
    Properties p = new Properties();
    p.load(new FileInputStream("envvar.txt"));
    Thanks to JP Daviau
    // UNIX
    public Properties getEnvironment() throws java.io.IOException {
    Properties env = new Properties();
    env.load(Runtime.getRuntime().exec("env").getInputStream());
    return env;
    Properties env = getEnvironment();
    String myEnvVar = env.get("MYENV_VAR");
    To read only one variable : // NT version , adaptation for other OS is left as an exercise...
    Process p = Runtime.getRuntime().exec("cmd.exe /c echo %MYVAR%");
    BufferedReader br = new BufferedReader
    ( new InputStreamReader( p.getInputStream() ) );
    String myvar = br.readLine();
    System.out.println(myvar);
    Java's System properties contains some useful informations about the environment, for example, the TEMP and PATH environment variables (on Windows). public class ShowSome {
    public static void main(String args[]){
    System.out.println("TEMP : " + System.getProperty("java.io.tmpdir"));
    System.out.println("PATH : " + System.getProperty("java.library.path"));
    System.out.println("CLASSPATH : " + System.getProperty("java.class.path"));
    System.out.println("SYSTEM DIR : " +
    System.getProperty("user.home")); // ex. c:\windows on Win9x system
    System.out.println("CURRENT DIR: " + System.getProperty("user.dir"));
    Here some tips from H. Ware about the PATH on different OS.
    PATH is not quite the same as library path. In unixes, they are completely different---the libraries typically have their own directories. System.out.println("the current value of PATH is: {" +
    p.getProperty("PATH")+"}");
    System.out.println("LIBPATH: {" +
    System.getProperty("java.library.path")+"}");
    gives the current value of PATH is:
    {/home/hware/bin:/usr/local/bin:/usr/xpg4/bin:/opt/SUNWspro/bin:/usr/ccs/bin:
    /usr/ucb:/bin:/usr/bin:/home/hware/linux-bin:/usr/openwin/bin/:/usr/games/:
    /usr/local/games:/usr/ccs/lib/:/usr/new:/usr/sbin/:/sbin/:/usr/hosts/:
    /usr/openwin/lib:/usr/X11/bin:/usr/bin/X11/:/usr/local/bin/X11:
    /usr/bin/pbmplus:/usr/etc/:/usr/dt/bin/:/usr/lib:/usr/lib/lp/postscript:
    /usr/lib/nis:/usr/share/bin:/usr/share/bin/X11:
    /home/hware/work/cdk/main/cdk/../bin:/home/hware/work/cdk/main/cdk/bin:.}
    LIBPATH:
    {/usr/lib/j2re1.3/lib/i386:/usr/lib/j2re1.3/lib/i386/native_threads:
    /usr/lib/j2re1.3/lib/i386/client:/usr/lib/j2sdk1.3/lib/i386:/usr/lib:/lib}
    on my linux workstation. (java added all those execpt /lib and /usr/lib). But these two lines aren't the same on window either:
    This system is windows nt the current value of PATH is:
    {d:\OrbixWeb3.2\bin;D:\jdk1.3\bin;c:\depot\cdk\main\cdk\bin;c:\depot\
    cdk\main\cdk\..\bin;d:\OrbixWeb3.2\bin;D:\Program
    Files\IBM\GSK\lib;H:\pvcs65\VM\win32\bin;c:\cygnus
    \cygwin-b20\H-i586-cygwin32\bin;d:\cfn\bin;D:\orant\bin;C:\WINNT\system32;C:\WINNT;
    C:\Program Files\Dell\OpenManage\Resolution Assistant\Common\bin;
    d:\Program Files\Symantec\pcAnywhere;
    C:\Program Files\Executive Software\DiskeeperServer\;C:\Program Files\Perforce}
    LIBPATH:
    {D:\jdk1.3\bin;.;C:\WINNT\System32;C:\WINNT;d:\OrbixWeb3.2\bin;D:\jdk1.3\bin;
    c:\depot\cdk\main\cdk\bin;c:\depot\cdk\main\cdk\..\bin;
    d:\OrbixWeb3.2\bin;D:\Program Files\IBM\GSK\lib;
    H:\pvcs65\VM\win32\bin;c:\cygnus\cygwin-b20\H-i586-cygwin32\bin;d:\cfn\bin;
    D:\orant\bin;C:\WINNT\system32;
    C:\WINNT;C:\Program Files\Dell\OpenManage\ResolutionAssistant\Common\bin;
    d:\Program Files\Symantec\pcAnywhere;
    C:\Program Files\Executive Software\DiskeeperServer\;C:\Program Files\Perforce}

Maybe you are looking for

  • Have downloaded firefox update 3 times and it doesn't run

    I have just started to use firefox on my pc which has windows 7. I keep getting a message saying I need to update the version of firefox, so I down load it and it says it is downloaded ( I now have it 3 times) but it doesn't run and still keepstellin

  • Can I save my username and password to login to a wifi network on a pop-up window?

    At my college, we have two ways to loging to the wifi. Either directly on the browser, or an annoying pop up window comes up. What I want to do is either stop the pop up window entirely, (preferrable) or save my password to the pop up window. Also, t

  • How can I fix "Safari blocks Java plugin."

    I am trying to work remotely on Endpoint Security. It keeps telling me Safari blocks Java plugin. I've tried un-installing and installing Java again, but nothing is working.

  • Exporting uncompressed/higher quality tracks

    This has probably been answered, but I couldn't find the info I needed searching the old posts, so here goes... I'm working with a friend via email on some music projects. He's recording guitar, drums and vocals in Cubase on his PC, and sending me MP

  • Dump on F1 help

    Hi To All... i m currently Working in  SAP.. When Any ABAPer going to press F1 help for keyword Documentation  he get the dump. Since we was tried for many times to solve these prob with help BASIS . But still there is no solution. i going to give yo