JBuilder Error

I'm compiling a project in JBuilder, but I keep getting this error:
"Frame1.java": Error #: 704 : cannot access directory com\borland\jbcl\layout at line 23, column 1"
I have know idea how to fix it... any suggestions

hi, hope this helps
surely you have import to com.borland.jbcl.layout in your class, but in the properties of your project you do not have like required libraries ' JBCL' which contains the classes of jbuilder of borland
in order to eliminate that message of error when compiling, remove the import, or adds 'JBCL' to your project required libraries

Similar Messages

  • Weird JBuilder error, help is appreciated

    I built an application using notepad and command line comilation which worked fine. However, now we've got JBuilder and I have to put all the code into it. Just putting it directly in did not work, so any advice on that in general would be appreciated, because I'm not at all familiar with JBuilder.
    I'm trying to copy paste some of my classes into JBuilder, they're really just support classes for my application itself. In particular, I have an extension of a JTable called MyTable with supporting files. There is a main class MyTable in file MyTable.java and a supporting interface CellColor in file CellColor.java along with many other supporting classes & interfaces in their own files.
    I am just trying to get it to compile without even using it in the application yet. However, JBuilder keeps giving this error:
    "CellColor.java": Duplicate definition of class automated_base_schedule.CellColor, defined in \src\automated_base_schedule\CellColor.java and also defined in \src\automated_base_schedule\MyTable.java.I have checked and rechecked file MyTable.java (it's not a big file anyways), but it definitely does not redefine CellColor interface. In fact it doesn't even mention it (it's implemented by another class that supports MyTable). I've also checked all the other files in case it was redefined by them.
    I can't do anything until I fix this problem. Any advice that might help would be greatly appreciated. Thanks!

    You have duplicates.
    I would suggest starting another project, workspace (or whatever is is called) and put your stuff in there.
    If someone else created the work space then get that again and completely remove your existing one and then replace it with the other one. (Completely means finding the directory and removing it.)

  • JBuilder error message

    Hello. I got the error message
    "Frame1.java": error #: 302 : no access on class javax.mail.Session; class javax.mail.Session was not found in stably package
    in JBuilder5.
    I've included the necessary jar-files, but the error comes every time.
    Need help. Please.

    In the previous versions of Jbuilder when you import a class sometimes you have to change the name of the class that you import. For example:
    import javax.something.something
    you'll write
    import java.something.something
    I think that is the problem. Try with other names of classes to import.

  • Funny error! --- HELP

    Hi all, I am using JBuilder and try to compile a java program which is using java.security package.
    It shows the error:
    cyclic inheritance involving java.security.MessageDigest
    And I try to introspect the MessageDigest class and get this results:
    ---------------------------------------------------- MessageDigest -----------------------------------------
    // JBuilder API Decompiler stub source generated from class file
    // 14/12/2004
    // -- implementation of methods is not available
    package java.security;
    public abstract class MessageDigest extends MessageDigestSpi {
    // Fields
    private String algorithm;
    private static final int INITIAL = 0;
    private static final int IN_PROGRESS = 1;
    private int state;
    private Provider provider;
    <....snip......>
    ---------------------------------------------------- MessageDigestSpi ------------------------------------
    // JBuilder API Decompiler stub source generated from class file
    // 14/12/2004
    // -- implementation of methods is not available
    package java.security;
    public abstract class MessageDigestSpi extends MessageDigest {
    // Constructors
    public MessageDigestSpi() { }
    Contradiction:
    public abstract class MessageDigest extends MessageDigestSpi
    VS.
    public abstract class MessageDigestSpi extends MessageDigest
    But when I goto command line window and try to introspect by using javap, then thing goes normal
    javap java.security.MessageDigestSpi
    Compiled from "MessageDigestSpi.java"
    public abstract class java.security.MessageDigestSpi extends java.lang.Object{
    protected int engineGetDigestLength();
    public java.security.MessageDigestSpi();
    protected abstract void engineReset();
    protected abstract byte[] engineDigest();
    protected abstract void engineUpdate(byte);
    protected int engineDigest(byte[],int,int);
    throws java/security/DigestException
    protected abstract void engineUpdate(byte[],int,int);
    public java.lang.Object clone();
    throws java/lang/CloneNotSupportedException
    I've checked the JRE and JDK version, i'm using the same for JBuilder
    Is that JBuilder error? And how to fix?
    Thanks very much
    Trung

    Thanks Peter. It is the problem of incompatibility.
    In the bunch of libraries, I found one lib that contain java.security package, I believe that it was included for the backward compatibility with JDK 1.1.
    Just remove that lib and I get my code compiled.
    Once again, thanks alot.
    Trung

  • Creating Java Libraries (jar)

    Can anybody out there help me with java class archiving? I previously created classes and I want it to be archived in a one jar file, I was able to do the jarring of these files, the problem is I cannot access the library inside this archive from another Java program.
    Heres What I Did.
    ========================
    File1: One.java
    package abc.util;
    public class One{
    ==========================
    File2: Two.java
    package abc.util;
    public class Two{
    ============================
    I compiled these files, and it created abc/util/One.class and abc/util/Two.class
    I Made a jar file by invoking
    jar cvf MyJarFile.jar abc
    ================================================
    I used this archive into another java application
    import abc.util.*;
    public class Test{
    public Test(){
    One o = new One(); <---- {I got an error here,  "Bad Class" JBuilder Error}
    ================================================
    End of the Story :-)
    ================================================
    Ur help is very much appreciated, thanks!

    Here's an example that may help. If I have a jar located at
    C:/myworkspace/deploy/utils.jar
    Then in order for a java program to import classes from that jar, I need that to be in my CLASSPATH variable.
    Such as
    CLASSPATH=.;C:/myworkspace/deploy/utils.jar
    That's for running the program with javac. For compiling in JBuilder, I use Eclipse, but I'm sure in JBuilder there's something like "libraries" where you list the jar files for JBuilder to search through when you import.
    Message was edited by:
    Michael_Ebbert

  • Question of JDK1.4.0

    when I used jdk1.4.0 to run java class, I always get a problem:
    when I used command line, error was :
    Exception in thread "main" java.lang.NoClassDefFoundError: Jdom1/class
    when I used IDE(jBuilder), error was:
    Could not find the main class ,program will exit.
    But my code is right and the class was definited.
    Why and how can I do?

    Follow these Checks
    1. Did u compile the Program successfully?? If u did then there should be a <ProgramName>.class file present in the Directory...Check if it is there
    2. Do u have "main" method in your Java Program....this is where Java Program starts executing
    public static void main(String args[])
    3. set your CLASSPATH correctly
    windows
    set CLASSPATH=%CLASSPATH%;.;
    Unix Based
    set CLASSPATH=$CLASSPATH:.:
    hope it helps
    Cheers,
    Manja

  • Included JSPs gives comilation error, even in the JBuilder plugin

    Dears,
    I'm making a web application, it contains a header, and footer JSPs.
    These two JSPs are included in every JSP in the site, and I use the <%@ include The problem in this is that I define variables in every parent JSP including these two JSPs, but when I build my project using JBuilder, it gives me complation error as it tries to compile the JSPs and the vatiables are still not defined, as they r defined only when included.
    This prevents me from deployment using JBuilder, also if I try deployment on SUN ONE 7 platform edition with precompile JSPs checked.
    Do anyone know a solution for this?
    Thanks

    Hi,
    IF you are using EPCF.doNavigate then you should give the iview address as the url. If should be something like this
    <%
    String componentName = componentRequest.getComponentContext().getApplicationName();
    String helpUrl = "ROLES://portal_content/administrator/super_admin/super_admin_role/com.sap.portal.system_administration/com.sap.portal.system_admin_ws/com.sap.portal.support/com.sap.portal.support_desk";
    %>
    <a href="tools" onClick = "return EPCM.doNavigate("<%=helpUrl %>");">click here</a>
    Or as Ranjith said use the href option
    Regards
    Prakash

  • ERROR IN WEB LOGIC AND JBUILDER...

    hi,
    im just new to weblogic with JBuilder X, i made a very basic session bean and when i compiled it. it said...
    "WebLogicSesMod.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors.
    im using Weblogic 8.1platform server
    and when i RUN THE APPLICATION then it throws exception...
    The WebLogic Server did not start up properly.
    java.lang.NoClassDefFoundError: com/bea/wsrp/util/debug/Debug
         at com.bea.wsrp.security.WSRPIdentityAsserterProviderImpl.<clinit>(WSRPIdentityAsserterProviderImpl.java:45)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:308)
         at java.lang.Class.newInstance(Class.java:261)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.createSecurityProvider(SecurityServiceManagerDelegateImpl.java:232)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:939)
         at weblogic.security.service.PrincipalAuthenticator.initialize(PrincipalAuthenticator.java:151)
         at weblogic.security.service.PrincipalAuthenticator.<init>(PrincipalAuthenticator.java:257)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.doATN(SecurityServiceManagerDelegateImpl.java:581)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealm(SecurityServiceManagerDelegateImpl.java:420)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.loadRealm(SecurityServiceManagerDelegateImpl.java:698)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealms(SecurityServiceManagerDelegateImpl.java:731)
         at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDelegateImpl.java:874)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:717)
         at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:822)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:670)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:344)
         at weblogic.Server.main(Server.java:32)
    Reason: com/bea/wsrp/util/debug/Debug
    PLEASE HELP ME, IM IN BIG MESS....
    WAITING...

    hi,
    i reinstalled server and JBuilder, and again made a session bean. the server started successfully...
    but while compiling code the PREVIOUS error came with more enhancement...
    "EJBModule.jar": Spaces in the temporary directory path may cause WebLogic APPC utility to produce fatal compile errors.
    "EJBModule.jar": Spaces in the classpath may cause WebLogic APPC utility to produce fatal compile errors.
    "EJBModule.jar": C:\bea\jdk142_04\bin\javaw -classpath "C:\bea\weblogic81\server\lib\weblogic_sp.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\bea\weblogic81\server\lib\webservices.jar;C:\Documents and Settings\Administrator\jbproject\ejbsess\EJBModule.jar;" weblogic.appc -keepgenerated -forceGeneration -compiler C:/bea/jdk142_04/bin/javac "C:/Documents and Settings/Administrator/jbproject/ejbsess/EJBModule.jar.jar" -output "C:/Documents and Settings/Administrator/jbproject/ejbsess/EJBModule.jar"
    "EJBModule.jar": <Nov 2, 2004 12:01:33 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSesBean that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": <Nov 2, 2004 12:01:33 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSesHome that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": <Nov 2, 2004 12:01:33 PM GMT+05:00> <Warning> <EJB> <BEA-010054> <EJB Deployment: WebLogicSes has a class ejbsess.WebLogicSes that is in the classpath. This class should only be located in the ejb-jar file.>
    "EJBModule.jar": [J2EE:160127]ERROR: Could not delete previous archive: C:\Documents and Settings\Administrator\jbproject\ejbsess\EJBModule.jar
    and the EXECUTION OF WEB LOGIC SERVER GOES FINE...
    C:\bea\jdk142_04\bin\javaw -classpath "C:\bea\weblogic81\server\lib\weblogic_sp.jar;C:\bea\weblogic81\server\lib\weblogic.jar;C:\bea\weblogic81\server\lib\webservices.jar" -ms64m -mx64m -Djava.library.path="C:/bea/weblogic81/server/bin" -Dbea.home="C:/bea" -Dweblogic.Name=myserver -Djava.security.policy=="C:/bea/weblogic81/server/lib/weblogic.policy" -Dweblogic.management.discover=false -Dweblogic.ProductionModeEnabled=false -Dweblogic.management.password=aqibjava -Dweblogic.management.username=weblogic weblogic.Server
    <Nov 2, 2004 11:56:33 AM GMT+05:00> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.2_04-b05 from Sun Microsystems Inc.>
    <Nov 2, 2004 11:56:34 AM GMT+05:00> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
    <Nov 2, 2004 11:56:34 AM GMT+05:00> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973 >
    <Nov 2, 2004 11:56:35 AM GMT+05:00> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository at C:\bea\user_projects\domains\enterprisedomain\.\config.xml.>
    <Nov 2, 2004 11:56:38 AM GMT+05:00> <Notice> <Log Management> <BEA-170019> <The server log file C:\bea\user_projects\domains\enterprisedomain\myserver\myserver.log is opened. All server side log events will be written to this file.>
    <Nov 2, 2004 11:56:40 AM GMT+05:00> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 2, 2004 11:56:40 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server "myserver" for domain "enterprisedomain">
    <Nov 2, 2004 11:56:45 AM GMT+05:00> <Warning> <HTTP> <BEA-101296> <Unable to load the default compiler class "com.sun.tools.javac.Main". Using the default javac compiler to compile JSPs.>
    <Nov 2, 2004 11:56:50 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "myserver" for domain "enterprisedomain" running in Development Mode>
    <Nov 2, 2004 11:56:50 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000355> <Thread "ListenThread.Default" listening on port 7001, ip address *.*>
    <Nov 2, 2004 11:56:50 AM GMT+05:00> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    NOW WATS WRONG :(
    WAITING...

  • Invocation error when compiling in jbuilder

    Hello, I am trying to copmile my RMI server class in jbuilder4 but I get an error called "Invocation Error".
    The class I am trying to compile is a very simple RMI based code class.
    Would anyone know what Invocation Error would realte to so that I would know where to even start.
    Also, I can see where O can make general settings for compiling in jbuilder4 but I can't find where I can edit rmic settings. Any ideas?
    Thanks
    Ivan

    I wonder if this will help.
    "Note: JBuilder 4 will automatically run rmic on those files designated for sub and skeleton creation. Right click the file and look under Properties/Build."
    http://www.exciton.cs.rice.edu/JavaResources/Rmi/default.htm

  • Strange errors in Jbuilder 3.5

    Hi,
    I get some errors in Jbuilder 3.5 and I don't know what to do now.
    They're about static and non static classes and so on.
    Does anyone know what I should do?
    Thanks,
    Menno.

    If the errors are in JBuilder, why do you post here instead of contacting Borland?
    Or do you mean you've got problems with code you're trying write with it?

  • JBuilder 6, WLS6.1 and JSP error

    I get the following error when I try to run or make a WAR-file for my JSP in JBuilder
    6:
    "JspWithCounter.jsp": weblogic.utils.AssertionError: ***** ASSERTION FAILED *****
    - with nested exception:[java.lang.NullPointerException]
    Has anyone any idea what this can be?
    Regards,
    Magnus

    I have the same problem.
    Try to replace doctype from web-app_2_3.dtd to web-app_2_2.dtd in your web.xml
    file.
    "Magnus Björk" <[email protected]> wrote:
    >
    I get the following error when I try to run or make a WAR-file for my
    JSP in JBuilder
    6:
    "JspWithCounter.jsp": weblogic.utils.AssertionError: ***** ASSERTION
    FAILED *****
    - with nested exception:[java.lang.NullPointerException]
    Has anyone any idea what this can be?
    Regards,
    Magnus

  • Help with error message i JBuilder

    Hi everyone!
    Hopefully some of you can help me with a really annoying problem. Every time I compile "MyClass.java" I get the following error-message:
    "MyClass.java": Error #: 750 : initialization error: com.borland.compiler.symtab.LoadError: java.io.IOException: class not found: class java.lang.Object
    If anyone knows how to solve this problem, please let me know!
    In advance, thanks!
    JB

    looks like you don't have java installed or the paths got lost because your JBuilder has no idea where java is :)

  • Error using JSF inside JBuilder

    Hi,
    I have a project on JBuilder when I try to follow the steps from this tutorial :
    http://horstmann.com/corejsf/tutorial.html
    If I try to compile it with "check JSPs" enabled it give me this error :
    "index.jsp": ParserUtils: warning org.xml.sax.SAXParseException: Valid documents must have a <!DOCTYPE declaration.
    2003-10-12 02:37:29 - Exception initializing TldLocationsCache: XML parsing error on file /WEB-INF/lib/standard.jar: (line 3, col -1): Element type "taglib" is not declared.
    2003-10-12 02:37:30 - Exception initializing TldLocationsCache: zip file closed
    "welcome.jsp": ParserUtils: warning org.xml.sax.SAXParseException: Valid documents must have a <!DOCTYPE declaration.
    2003-10-12 02:37:31 - Exception initializing TldLocationsCache: XML parsing error on file /WEB-INF/lib/standard.jar: (line 3, col -1): Element type "taglib" is not declared.
    2003-10-12 02:37:31 - Exception initializing TldLocationsCache: zip file closed
    If I disable the error messages I am able to create the WAR file. But it still do not run in the JBuilder IDE.
    When I deploy it to JBoss (with integrated Tomcat) I got this error :
    02:42:00,612 INFO [Engine] Exception initializing TldLocationsCache: XML parsin
    g error on file /WEB-INF/lib/standard.jar: (line 6, col 19): Document root eleme
    nt "taglib", must match DOCTYPE root "null".
    Anyway the application is deployed on Jboss and I can test it successfully.
    Any idea of what the error messages cause ?
    Danilo.

    Hi,
    I have a project on JBuilder when I try to follow
    w the steps from this tutorial :
    http://horstmann.com/corejsf/tutorial.html
    If I try to compile it with "check JSPs" enabled it
    t give me this error :
    "index.jsp": ParserUtils: warning
    org.xml.sax.SAXParseException: Valid documents must
    have a <!DOCTYPE declaration.
    2003-10-12 02:37:29 - Exception initializing
    TldLocationsCache: XML parsing error on file
    /WEB-INF/lib/standard.jar: (line 3, col -1): Element
    type "taglib" is not declared.
    2003-10-12 02:37:30 - Exception initializing
    TldLocationsCache: zip file closed
    "welcome.jsp": ParserUtils: warning
    org.xml.sax.SAXParseException: Valid documents must
    have a <!DOCTYPE declaration.
    2003-10-12 02:37:31 - Exception initializing
    TldLocationsCache: XML parsing error on file
    /WEB-INF/lib/standard.jar: (line 3, col -1): Element
    type "taglib" is not declared.
    2003-10-12 02:37:31 - Exception initializing
    TldLocationsCache: zip file closed
    These are XML parsing errors when reading one of the tag library descriptor files embedded in standard.jar (the JSTL standard tag library JAR file). Because this JAR file works fine in other containers, it sounds like a problem with the servlet container embedded in JBuilder.
    Craig

  • Error with JRE in Windows in Jbuilder

    I have the following messagge:
    -- IOException starting Java runtime process --
    java.io.IOException: CreateProcess: C:\JBuilder7\jdk1.3.1\bin\javaw -classpath "C:\JBuilder7\jakarta-tomcat-3.3.1\lib\tomcat.jar" org.apache.tomcat.startup.Main -config C:\JBuilder7\samples\Welcome\Tomcat\conf\server8083.xml -config config\server.xml error=193
    any ideas ?
    regards
    MDF

    You should repost this question in the iAS forums here on OTN.
    Thanks,
    Rob

  • Database connection timeouts and datasource errors

    Connections in the pool randomly die overnight. Stack traces show that for some reason, the evermind driver is being used even though the MySql connection pool is specified.
    Also, the evermind connection pool is saying connections aren't being closed, and the stack trace shows they're being allocated by entity beans that are definitely not left hanging around.
    Sometimes we get non-serializable errors when trying to retrieve the datasource (this is only after the other errors start). Some connections returned from the pool are still good, so the application limps along.
    EJBs and DAOs both use jdbc/SQLServerDSCore.
    Has anyone seen this problem?
    <data-sources>
         <data-source
              class="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource"
              name="SQLServerDSCore"
              location="jdbc/SQLServerDSCore"
              xa-location="jdbc/xa/SQLServerXACore"
              ejb-location="jdbc/SQLServerDSCore"
              connection-driver="com.mysql.jdbc.Driver"
              min-connections="5"
              username="xxx"
              password="xxx"
              staleness-timeout="3600"
              alive-poll-query="SELECT 1 FROM medispan"
              url="jdbc:mysql://1.2.3.4:3306/dbo?autoReconnect=true&autoReconnectForPools=true&cachePrepStmts=true&is-connection-validation-required=true"
              inactivity-timeout="30"
         >
              <property name="autoReconnect" value="true"/>
              <property name="autoReconnectForPools" value="true"/>
              <property name="is-connection-validation-required" value="true"/>
              <property name="cachePrepStmts" value="true"/>
         </data-source>
    </data-sources>

    Rick,
    OC4J 9.0.4.0.0 - BTW, do you know of any patches?As far as I know, there are no patches for the 9.0.4
    production version of OC4J stand-alone.
    I'm using container managed persistence,It was not clear to me, from your previous post, that you
    are using CMP entity beans.
    I found staleness-timeout and alive-poll-query
    somewhere on a website when trying to track this
    down. Here's four sources:Those sources refer to OrionServer -- and an older version, too, it seems.
    Like all other Oracle products that start out as somebody
    else's -- including, for example, JBuilder (that became "JDeveloper"), Apache Web Server (that became "Oracle HTTP Server") and TopLink -- their development paths diverge, until, eventually, there is absolutely no similarity between them at all. Hence, the latest versions of OC4J and "OrionServer" are so different, that you cannot be sure that something that works for "OrionServer" will work for OC4J.
    I recall reading something, somewhere, sometime about configuring OC4J to use different databases (other than Oracle), but I really don't remember any details (since it was not relevant to me, because we only use Oracle database). In any case, it is possible to use a non-Oracle database with OC4J.
    Good Luck,
    Avi.

Maybe you are looking for

  • Installing SAP netweaver 7.3 -- JDK VS SAP JVM

    Hi Guru's, We are trying to install NW 7.3 on windows . -->I came to know that NW 7.3 is 64bit only, running on SAP JVM 6 (JAVA) and Unicode version --> Note 1495160 - SAP JVM as replacement for Partner JDKs 1.4.2 So , Is that mean before installatio

  • Wildcards in Find/Change..

    OK, In a references list in a book where it's numbered.. basic stuff..I need to find all instances of (return+## (could be a single or double or TRIPLE digit number)+. (period) and a SPACE and replace with same thing but that space turns into a TAB..

  • BAPI to update AR entries

    Hi, is there any BAPI to update AR entries for a customer along with the GL. Regards, vijay.

  • How do I remove Default.sfvidcap?

    Hi, I'm using windows XP and Adobe 9.  I use Vegas 7 to edit videos and Adobe9 has decided to take over as my default video capture program.  I need to understand what is going on and how to re-establish Vegas as my default video capture program.  Th

  • Output type restrictions

    hello, friends. i'm looking at the threads and also at IMG, but i cannot find any settings to limit the printing of output types to, let's say, once only.  i've thought of limiting authorizations of t-codes.  for example, creating deliveries is by us