Creating java editor

hi all
i am creatin a small application which performs some type of functionallity as any java ide does but i have a problem in one area in my application when i create a demo.java file i compile it through runtime.exec("javac "+filepath)
this creates class file now i want to run the applicaiton and want to show the output in output window. i run the class file through runtime.exec("java "+filepath) but i dont know how can i show the output in myapplication's output window.i mean how can i fetch the output generated by program .
any smallhelp will be appriciated
thanks

hi
sorry for cross posting and thanks for ur reply but i have added this code in amy applicaiton but didnt find expected output this is my code plz help
try
                    tf4.setText( ta1.getText() );
                    p =t.exec ("java "+tf4.getText());
                    String line;
BufferedReader output = new BufferedReader( new InputStreamReader( p.getInputStream() ) );
while ( (line = output.readLine()) != null )
System.out.println("inside while ");
if (line.trim().length() > 0)
System.out.println( line );
p.waitFor();
               catch(Exception b)
                    b.printStackTrace();
                    JFrame f8 = new JFrame("Exception Occured"); // Frame for find dialog box
                    Sample6Dialog d9 ; //dialog box
                    d9 = new Sample6Dialog(f8 , "Exception Occured");
                    d9.setVisible(true);               
               }

Similar Messages

  • Creating a java editor

    Hi,
    I am trying to make a java editor in java as my final year engineering project. Can anybody give me some help or a link to any tutorial that might help.
    The java editor should include a text editor with all the normal operations such as cut,copy, paste, find etc. I also want that the syntax be highlighted. There must be options for compiling and running of programs.
    I would be very grateful for the help..........

    Well, for the text editor you can use the Notepad program that comes with JDK. It has all these options, cut, paste, etc.
    Then, every "keyword" should be identified and highlighted.
    In the compile button, you should make it save your file and run the command javac in a console....it´s really simple since u already have the Notepad to adapt.

  • Java Editor with the HelloWorldServlet does not open

    I am following the Getting Started guide lines. When choosing Finish in step 6 of "Create a HelloWorld Servlet" (https://help.hana.ondemand.com/help/frameset.htm?e5a8b1d3bb571014a0f89bb4706d4e0b.html) then the Java Editor should open.
    Unfortunately this does not happen at my installation.
    The only displays at the footing of the Overview picture are "Writable", "Smart Insert" und "1 : 1" for some time.
    This is also interfering with a message "'Periodic workspace save.' has encountered a problem.
    Could not write metadata for '/RemoteSystemsTempFiles'."
    Did I skip something in the guide? How please should I continue editing my first HelloWorld servlet?

    C:\Gm\GmSAP2014\workspace\.metadata\.log shows several entries like this one:
    !ENTRY org.eclipse.core.resources 4 568 2014-07-26 11:29:55.566
    !MESSAGE Could not write metadata for '/RemoteSystemsTempFiles'.
    !STACK 0
    java.io.FileNotFoundException: C:\Gm\GmSAP2014\workspace\.metadata\.plugins\org.eclipse.core.resources\.projects\RemoteSystemsTempFiles\.markers.snap (Das System kann den angegebenen Pfad nicht finden)
      at java.io.FileOutputStream.open(Native Method)
      at java.io.FileOutputStream.<init>(FileOutputStream.java:221)
      at java.io.FileOutputStream.<init>(FileOutputStream.java:142)
      at org.eclipse.core.internal.localstore.SafeChunkyOutputStream.<init>(SafeChunkyOutputStream.java:45)
      at org.eclipse.core.internal.localstore.SafeChunkyOutputStream.<init>(SafeChunkyOutputStream.java:41)
      at org.eclipse.core.internal.resources.SaveManager.visitAndSnap(SaveManager.java:1712)
      at org.eclipse.core.internal.resources.SaveManager.visitAndSnap(SaveManager.java:1795)
      at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1168)
      at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:1110)
      at org.eclipse.core.internal.resources.DelayedSnapshotJob.run(DelayedSnapshotJob.java:51)
      at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    The term "project node" is not to be found in my installation: this is how my start screen looks like:
    If you ment to double click that entry under "File":
    That simply results in the display of that bottom line, but no editor window opens:

  • Problem when using Ctr-Z in Java editor

    If I create a component in the Desgin view, the switch to Java Editor and uze Cancel (or Ctrl+Z), it cancle the op�ration, ie remove the code added when the component was created. The component is also removed in Design view. However, it is stil present in the JSP code. Under deployment, it produces an error. The stacktrace says the error is about a component which is not present in the design view, wich is a bit confusing.

    Looks like a bug.
    To fix just remove the jsp tag for the component

  • Can't create Java VM [Code :- 3 ] with JNI_CreateJavaVM()

    hello all,
    I am trying to create an inctance of JVM from C/CPP ( iam using VC++ editor) on windows. My code to create JVM is :
    res = JNI_CreateJavaVM(&jvm, (void **)&env, &vm_args);
    as a reasult of this call, -3 is returned to res.
    please help me to create a JVM and/or call a java class from C/CPP
    Thanks in advance,
    Soujanya.R

    I tried to run it this way :-
    #include <jni.h>
    #include <windows.h>
    #define JNI_EVERSION (-3) /* JNI version error */
    #define PATH_SEPARATOR ';'
    #define USER_CLASSPATH "." /* where Prog.class is */
    void main() {
              JNIEnv *env;
              JavaVM jvm = (JavaVM )0;
              jint res;
              jclass cls;
              jmethodID mid;
              jstring jstr;
              jobjectArray args;
              HINSTANCE hVM = NULL;
              JavaVMInitArgs vm_args;
              JavaVMOption options[4];
              printf("\noptions");
              options[1].optionString = "-Djava.class.path=C:/j2sdk1.4.1_07/jre/lib/rt.jar;E:/test/c/Debug/"; /* user classes */
              options[2].optionString = "-Djava.library.path=lib"; /* set native library path */
              options[0].optionString = "-Djava.compiler=NONE";
              //options[1].optionString = "-Djava.class.path=c:\\My Folder"; /* user classes */
              //options[2].optionString = "-Djava.library.path=C:\\j2sdk1.4.2_04\\include";
              options[3].optionString = "-verbose:jni";
              printf("\nversion info");
              vm_args.version = JNI_VERSION_1_2;
              vm_args.options = options;
              vm_args.nOptions = 4;
              vm_args.ignoreUnrecognized = TRUE;
              printf("\ncreate");
              hVM = LoadLibrary("C:/j2sdk1.4.1_07/jre/bin/client/jvm.dll");
              if (hVM == NULL)
                   printf("hVM is null ");
              res = JNI_CreateJavaVM(&jvm, (void **)&env, &vm_args);
              if (res < 0) {
                   fprintf(stderr, "Can't create Java VM \n",res);
                   exit(1);
              cls = env->FindClass("HelloWorld");
              //cls = env.FindClass(env,"helloWorldClass");
              if (cls == 0) {
                   fprintf(stderr, "Can't find Prog class\n");
                   exit(1);
              mid = env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
              if (mid == 0) {
                   fprintf(stderr, "Can't find Prog.main\n");
                   exit(1);
              jstr = env->NewStringUTF(" from C!");
              if (jstr == 0) {
                   fprintf(stderr, "Out of memory\n");
                   exit(1);
              args = env->NewObjectArray(1, (*env).FindClass("java/lang/String"), jstr);
              if (args == 0) {
                   fprintf(stderr, "Out of memory\n");
                   exit(1);
              env->CallStaticVoidMethod(cls, mid, args);
              jvm->DestroyJavaVM();
    I could run the program.
    You need to have the C:\j2sdk1.4.1_07\lib\jvm.lib entries in Project->Settings->Link Tab
    When you open the Settings dialog box you will see Win32Debug in the
    drop down . You need to provide the entries for that page .
    Then change the drop down to Win32 Release and make an entry similarly there too.
    You should be able to run your code.
    Vishal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Java Editor - auto complete

    i'm looking for a FREE lightweight java editor that supports auto-complete and possibly code generation.
    auto-complete is when you type the object and a dot, the editor pop-up a window listing all methods available for you to use.
    code generation (or whatever it is called) is like a template that i can use....like i type in tryc and a space and it will create a try{ } catch{} block for me
    by lightwieght, i mean th eeditor is small and does not requires a lot of memory to run. don't want a full blown editor like Eclipse, JBuilder, NetBean (they're too resource hungry). something like JCreator and TextPad. My computer is old (PIII 733 mhz, 384MB RAM)..yes, my computer motherboard only allows up to 384 MB of RAM ..this sucks when RAM is soooo cheap.
    i check with most free editor, but to get auto-complete and code generation...you have to pay for it...so i'm wondering if anyone knows of a FREE one?

    Use the Plug-In Manager (Plugins menu item) to review the available plugins. Click the Install tab and highlight the name, it'll display a description.
    There's a couple of auto completes - I use Dot Complete (it has a minor glitch starting, I have to click Complete to get it to start)
    There's a number of template facilities, both built in and as plugins.

  • Developing a java editor for a special perspective in Eclipse

    Does anyone have any idea about creating a java editor for my perspective in eclipse.
    In other words, I want to know that an editor for the files with a specific extension (for example ".java" extension) is unique or not?

    Thank you for the advisements. We have changed the things with the release of version 1.32.
    It's not our intention to conceal our commercial interests with AniFun3, but we also want to give back something to the community. We do this with the free trial version. Everybody can use the trial version for commercial and non-commercial use. Below, there are some of the most recent benefits:
    - It strongly simplifies and accelerates the creation of (small) 3D applications
    - The community can use it as a platform to exchange pieces of work (for example: instead of typing in source code to help someone here in this forum)
    - And last, but not least: With the "CustomObject" Property there is a professional platform to let someone create and offer/exchange extensions to the 3D API. For example, if someone writes an interpolator for Material or an improved Text2D object, than it took just a little bit more work to make it configurable via the visual interface. Exchanging CustomObjects would probably bundle similar efforts from different sources in one place.
    Best regards,
    Oliver
    PS: Version 1.32 is optimised in many details and production stable. Users of earlier Versions should upgrade to 1.32.

  • Creating a editor pane

    I want to create a Editor pane like notepad, but in that i want to access images also. can any anybody suggest me.. please

    Take a look at the Java editor pane (jEditorPane).
    Here is some info to get you started:
    http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JEditorPane.html

  • The problem is this: In the phase "Create Java Users"

    Hello,
    I am installing Solution Manager 4.0 Release 2 (with Red Hat Enterprise Linux Server release 5.1 and Oracle 10 and my java version is: j2sdk1.4.2_14) The problem is this: In the phase "Create Java Users" I get the next error
    WARNING 2009-02-13 14:53:22
    Execution of the command "/usr/sap/PTS/DVEBMGS00/exe/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/lib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install/sharedlib:/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/install -c sysnr=00 -c ashost=sap-vpmn -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -message_file UserCheck.message" finished with return code 2. Output:
    java.lang.ClassNotFoundException: com.sap.security.tools.UserCheck
    at com.sap.engine.offline.FileClassLoader.findClass(FileClassLoader.java:691)
    at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:600)
    at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:578)
    at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:79)
    INFO 2009-02-13 14:53:22
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.
    INFO 2009-02-13 14:53:22
    Removing file /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/dev_UserCheck.clone.
    ERROR 2009-02-13 14:53:22
    CJS-30196
    ERROR 2009-02-13 14:53:22
    FCO-00011 The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|3|0|createJSF was executed with status ERROR .
    Thanks & Regards

    Hi,
    This problem normally arises with the wrong combination of JDK and OS and for the Linux machines, its better to use IBM Java instead of SUN java
    I remember that I have solved this type of problem by using lower version of IBMJava2-AMD64-142-SDK-1.4.2-10.0.x86_64.rpm which is SR10. You can download this version from
    http://www.ibm.com/developerworks/java/jdk/linux/download.html
    go to download _12 and then just change the sr12 to sr10 in the header url....
    FCO-00011 The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|3|0|createJSF was executed with status ERROR .
    with the higher versions of java for 64bit systems create serious stack over flow problems.....
    what I suggest you is to start reinstallating SolMan after installing IBM java sr10 version...
    Regards,
    Naveen.

  • URGENT: Problems with the CREATE JAVA command in SQL

    I am trying to publish a Java class to the database and have to use CREATE JAVA rather than loadjava for reasons I won't go into.
    However, I get the following error:
    SQL> create java class using bfile ('C:\neil', 'SkyNetworkRequestUtil.class');
    create java class using bfile ('C:\neil', 'SkyNetworkRequestUtil.class')
    ERROR at line 1:
    ORA-22929: invalid or missing directory name
    I can assure you that the C:\neil directory exists and the class exists in that directory, so what am I doing wrong?
    Hopeful thanks in advance.

    Did you try using C:\\ instead of C:\?
    If this does NOT work, then go into the directory where you have your .class file and
    use '.' as the directory specification.
    Hope this helps.

  • Error in phase creating java users during installation!!

    Hi,
    We are getting error at step "Creating java Users" while installing NW 2004s SR1  non unicode dual stack on HP Ux Pa Risc 64 bit with database Oracle 10g.
    Erro logs of file /tmp/sapinst_instdir/NW04S/SYSTEM/ORA/CENTRAL/AS/sapinst_dev.log are as:
    ==================================================================================================
    ERROR      2011-07-21 13:20:37
               CJSlibModule::writeError_impl()
    CJS-30197  . For more details see output of logfile:
    TRACE      [iaxxejsbas.hpp:460]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2011-07-21 13:20:37 [iaxxgenimp.cpp:736]
               showDialog()
    FCO-00011  The step createJSF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind|ind|ind|ind|2|0|createJSF was executed with status ERROR .
    =================================================================================================
    Also please note that we have already 1 instance (dual stack) on same host and that is running fine.
    Could someone please assist us in proceeding further.
    Regards
    Joy Garg

    Hi,
    Issue gets resolved by  extracting manualy from JAVA_DVD_DIR/J2EE_OSINDEP/J2EEINSTALL.SAR to SAPINST install directory using SAPCAR. The path of this install directory is:/tmp/sapinst_instdir/NW04S/SYSTEM/ORA/CENTRAL/AS/install as:
    > pwd
    /tmp/sapinst_instdir/NW04S/SYSTEM/ORA/CENTRAL/AS/install
    > SAPCAR -xvf /SW/NW_2004s_SR1Java_based_SW_Comp/J2EE_OSINDEP/J2EE-INST/J2EEINSTALL.SAR
    Once we have extracted the J2EEINSTALL.SAR relaunch SAPINST again and the installation continue.
    Regards
    Joy garg
    Once you will have extracted the J2EEINSTALL.SAR please launch SAPINST again and the installation will continue.

  • Loadjava fails; create java source succeeds

    When using loadjava to load a Java class into the database I receive the following error:
    C:\OEMNT\bin>loadjava -user us/pw@db -verbose -resolve HelloWorld.class
    initialization complete
    loading : HelloWorld
    Error while loading HelloWorld
    ORA-00942: table or view does not exist
    creating : HelloWorld
    Error while creating class HelloWorld
    ORA-29506: invalid query derived from USING clause
    ORA-00942: table or view does not exist
    resolver :
    resolving: HelloWorld
    Error while resolving class HelloWorld
    ORA-04043: object HelloWorld does not exist
    loadjava: 3 errors
    When using the CREATE JAVA SOURCE command from SQL the Java source + Class is created without problems.
    It seems loadjava wants to insert or check something in a table. But what table?

    Hi,
    Omitting -jarasresource is the first step.
    You probably need to specify -recursivejars in cas there are jars in your jars.
    Also use -genmissing option in case some classes are still missing in the jars files you've loaded.
    Kuassi http://db360.blogspot.com

  • Error while creating java users in installation

    Hi all,
    I am installing EP SR2 on Linux 4 but while installing when it reaches at "Java users Creation" it is giving me a
    error in that. I have tried all permutation combination but I am not able to get through. I have tried with all
    the java version also like j2sdk1_4_12,j2sdk1_4_16 & j2sdk1_4_17. But it gets stuck their. kindly help me.
    I have gone through all the threads in this forum but I have not found any fruitful solution.
    Kindly help me & thanx in advance.
    Regards
    Lalit

    Can you post error ? And Part of log where you can see this error.
    P.S. try to read whis links:
    Create Java User in Solution Manager Installation error
    Create Java User in Solution Manager Installation
    Try to check j2sdk1_4_11. regards.
    Regards.

  • SAPInst ECC6.0 - Error during phase "Create Java Users"

    Hello,
    I am currently installing ECC6.0 IDES with windows server 2003 & MaxDB.
    I am getting an error during the "Create Java Users" phase. The initial error stated that the user SAPJSF already existed. During retry a different error came up - that the user SAPJSF has no password.
    Can anyone advise what I can do here to resolve this problem?
    Regards,
    Nicholas Wilson

    Hello Again,
    Just to provide some further information, this is the log which I received when the SAPInst first errored:
    Jan 12, 2007 10:12:31... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Jan 12, 2007 10:12:32... Info: Connected to backend system Z01 client 001 as user DDIC
    Jan 12, 2007 10:12:32... Info: Called for user SAPJSF
    Jan 12, 2007 10:12:39... Info: Formal password check successful
    Jan 12, 2007 10:12:39... Info: Will create user SAPJSF
    Jan 12, 2007 10:16:54... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Jan 12, 2007 10:17:03... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.security.tools.UserCheck$DetailException: User SAPJSF already exists
    Diagnosis
    You have tried to create an existing user using the copy function.
    Procedure
    Please edit the existing user or first delete the user and then use the
    copy function. Or choose another user name, for example, by appending
    part of the first name.
    [System: Z01(001), Message: 01 224]
         at com.sap.security.tools.UserCheck.handleBapiRet2Table(UserCheck.java:1252)
         at com.sap.security.tools.UserCheck.createUser(UserCheck.java:1795)
         at com.sap.security.tools.UserCheck.main(UserCheck.java:289)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Jan 12, 2007 10:17:07... Info: Leaving with return code -2
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    According to the log, the system believed the user SAPJSF to have already been created.
    When I carried out a retry, I receive the following log:
    Jan 12, 2007 10:23:45... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Jan 12, 2007 10:23:45... Info: Connected to backend system Z01 client 001 as user DDIC
    Jan 12, 2007 10:23:45... Info: Called for user SAPJSF
    Jan 12, 2007 10:23:45... Info: User SAPJSF exists
    Jan 12, 2007 10:23:45... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.security.tools.UserCheck$UserLogonException: User account SAPJSF has no password (USER_HAS_NO_PASSWORD)
         at com.sap.security.tools.UserCheck.checkUser(UserCheck.java:833)
         at com.sap.security.tools.UserCheck.main(UserCheck.java:268)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Jan 12, 2007 10:23:45... Info: Leaving with return code 2
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    In this log, it accepts that the user SAPJSF is already created, but errors because the user does not have a password.
    Any suggestions greatly appreciated.
    Regards,
    Nicholas.

  • Netweaver 2004S Installation stops in phase 'Create Java Users'.

    Hi,
    We have an error in the installation of Netweaver 2004s on an Solaris X64 10 (64 bit). We have j2sdk1.4.2_13 (32 bit installed)
    In phase 'Create Java Users' , we receive the following error in dev_UserCheck.clone :
    '*** ERROR => DlLoadLib: dlopen()= ld.so.1: jlaunch:
    fatal: /usr/j2se/jre/lib/i386/server/libjvm.so: wrong ELF class:
    ELFCLASS32 -> DLENOACCESS (0,Error 0) [dlux_mt.c 314]
    [Thr 4] *** ERROR => Can't load VM shared library (libjvm.so) (rc=-2)
    [jhvmxx_mt.c 1576]'
    I think this is an java error.
    We can't find a download for the 64 supplementation package for solaris
    X64. Is this supported?
    Kind regards,
    Serge Schelles

    Hi Serge,
    I'm no Solaris expert, but if I'm not mistaken, JRE and JDK versions for the X64 platform are only available as of version 1.5. It's worth a try, you can run them both at the same time on the same server. Just point your JAVA_HOME to the 1.5 directory after installation and start SAPinst again.
    Good luck!
    Henk.

Maybe you are looking for

  • OpenSource ATI Graphics Slow After Upgrade Mesa 10.2 Kernel 3.14.6

    I just upgraded today to mesa 10.2 and kernel 3.14.6. Steam launches and I can run Dota 2 and Left 4 Dead 2. However, when I start a game, the graphics are very choppy even though they were smooth with mesa 10.1. I have tried the suggestions posted o

  • How to display stored procedure results in SJSC table?

    I have been able to create a cached rowset and debug/watch the results, but do not understand how to transfer those results to a Table component. Can anyone point me in the right direction? Details: In SessionBean1.java, I declared the stored procedu

  • Data attributes for PO objects

    Hi Guruus, I'm trying to find in all the PO objects where the screen data are filled in the data attributes. For instance, the attribute PO_ITEM_HASH_TABLE from CL_PO_ITEM_HANDLE_MM seems to hold the data. But I'd like to find exactly where it's fill

  • Security report

    Hello, I was asked to put together somewhat of a draft for a "security report", but I'm unsure as to what values might be useful to report. I'm sure many of you out there have done something similar in the past and I'm not asking for complete ready-m

  • DEBMAS with only part of contact persons?

    Hi there, if we send in a DEBMAS IDoc that contains only a subset of contact persons of a customer, the inbound process will remove all other contact records from KNVK. We tried different MSGFN values, without success. Is there any way we could send