Unable to terminate non-debug process

The red terminate box is greyed out under my Running - Log window and Run Manager window. Is there some special priv I need to have access to this button? I'm trying to troubleshoot a runaway process and I can't get the processes to stop.
Thanks!

No, this is missing functionality. Sue (the project manager) confirmed this, but you'd probably have to wait a looong time to see this ever enabled...
You could log a request on the announced SQL Developer Exchange, so others can add weight with their votes.
For now, you'll just have to kill that process with e.g. the Enterprise Manager.
Regards,
K.
Message was edited by:
-K-

Similar Messages

  • JDev - Debugger unable to connect to local process.

    Hi,
    JDeveloper-11.1.1.5.0
    Iam able to execute the project in run mode. If I try to execute the same project in Debug mode, getting a message as
    'Listening for transport dt_socket at address: 4003'
    Debugger unable to connect to local process.
    Process exited.
    Earlier, I was able to debug the application. Since last few days, facing the issue
    Please suggest, if you have any.
    Thanks,
    MSR.

    Hi,
    Thanks for your response .
    Sorry for delay in response. Actually I was on vacation since last few days.
    Finally able to fix the issue. Issue is due to change in C:\Windows\System32\drivers\etc\hosts file. It's been updated for some other reason. Now I've updated the file with required changes. Now able to fix the issue.
    -Samba

  • Debugger unable to connect to local process

    I am going thru the JDeveloper Introduction Tutorial and when I try to debug the application I get the following error in the message window:
    C:\JDev\jdk\bin\javaw.exe -ojvm -XXdebug,quiet,port1069 -classpath C:\JDev\jdev\mywork\MyFirstApp\MyProject\classes myproject.Dog
    Debugger unable to connect to local process.
    Process exited.
    I am using Windows XP Professional
    JDeveloper 10.1.3.4.3673
    If I just run the application then it works.
    I also have the Sun Java JDK installed, as well as Eclipse and NetBeans installed.
    I tried reinstalling JDeveloper but the debug function still does not work.
    Any help will be highly appreciated.
    Thanks,
    Raffy

    I am trying to debug a JSP application and each time I try to debug I get the error:
    [Starting OC4J using the following ports: HTTP=8989, RMI=23893, JMS=9239.]
    C:\oracle\jdk\bin\javaw.exe -ojvm -XXdebug,quiet,port2774 -classpath C:\oracle\j2ee\home\oc4j.jar com.evermind.server.OC4JServer -config C:\oracle\jdev\system\oc4j-config\server.xml
    Debugger attempting to connect to local process.[waiting for the server to complete its initialization...]
    Debugger unable to connect to local process. Go into the Tools > Preferences, and under Debugger, modify the "Connection Retry Setting" and increase the number of attempts.
    Hope this helps,
    Rob

  • Debugger unable to connect to remote process

    Hi There,
    I am running Jdev on pc and OAS 10g on an unix environment. I followed the step in the doc to set up the remote debugging. However, when I start the remote debugger from jdev, i got the following error message.
    Debugger attempting to connect to remote process at ax-portal-www6.dev.ipass.com 4000..
    Debugger unable to connect to remote process.
    Your help wuld be greatly appreciated.

    A couple things to try:
    1) Verify your jdk version and build bug 4411232
    2) Increase your Debugger preferences Connection retries to double the default (especially if multiple apps running, low memory or a slow machine)
    Without more specifics on versions, type of debugging or details not much more I can suggest.

  • Why can't I run in non-debug mode???

    I recently copied a JSC project into another project using the "Save Project As" option when right clicking on the project name.
    The new project appeared to copy fine and I was able to bild and run the project normally.
    Somewhere along the line, I did something that changed something to where I can no longer run the project in 'non-debug' mode by using either the 'Run Main Project Ctrl+F5' under the 'Run' menu or by clicking the Right Green 'Run" triangle on the main menu.
    The project builds successfully, but never runs in the browser.
    I have tried stopping the server and everything else I can think of, but nothing works.
    I can select 'Debug Main Project F5' from the 'Run' menu and it will build and start in the browser.
    Other projects, including the source for this one, run fine in 'nion-debug' mode, but not this one.
    How can I fix this??
    I have run into instances where I get a message that says the build.xml file was altered externallt and was rebuilt. Is there any way to force a remake of the build.xml file using "Standard" defaults?
    Thanks

    The reason for copying the project was in order to create another very similar product that required only minor modifications at this time.
    I got around the problem by doing another project copy and then using Beyond Compare to update the new copy with modifications I made to the original copy.
    That worked.
    My basic question was what would cause the problem that would create the situation where you could run in debug mode, but not non-debug mode.
    This happened after the original copy (that worked fine) and after I had done most of the required modifications.
    My thought was that there was some file or parameter that I could change rather than redoing the process.
    Apparently not......................

  • PJC set_custom_property gives unable to communicate with runtime process

    Hi
    I am modifying a PJC that extends VTextItem to act as a hyperlink I have registered a property in the PJC with the following code:
    public static final ID activeColor = ID.registerProperty("ACTIVE_COLOUR");
    I then attempt to set the property from my form with the following code
    set_custom_property('icr_block1.icr_details',lv_rec_number,'ACTIVE_COLOUR','45,213,169');
    icr_block1.icr_details is a text item that has the PJC as its implementation class. The following error appears in the java console
    oracle.forms.net.ConnectionException: Forms session <5> aborted: unable to communicate with runtime process
    Anybody have any ideas?
    many thanks
    paul schweiger

    Permission granted - here is the full java code. When I set_custom_property in the form neither of the debug messages in the java fire
    package pjcs;
    //package totem.forms.extensions;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.StringTokenizer;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VTextField;
    public class TextLink extends VTextField
         public static final ID treatAsLink = ID.registerProperty("TREAT_AS_LINK");
    public static final ID activeColor = ID.registerProperty("ACTIVE_COLOUR");
    public static final ID visitedColor = ID.registerProperty("VISITED_COLOUR");
    private Cursor defaultCursor;
    private Cursor hoverCursor;
    private String pTreatAsLink = "YES";
    private Color pActiveColor;
    private Color pVisitedColor;
    private Color pNormalColor;
    private boolean m_debug = true;
    private boolean m_debugAll;
    private final String CLASSNAME = this.getClass().getName();
         public TextLink()
              try
                   jbInit();
              catch(Exception e)
                   e.printStackTrace();
         private void jbInit() throws Exception
              log("start text link");
    // Get reference to standard cursor
              defaultCursor = this.getCursor();
              // Create hand cursor for hover state
    hoverCursor = new Cursor(Cursor.HAND_CURSOR);
              // Add mouse listeners for changing cursor
              // Anonymous class used for simplicity
              this.addMouseListener(new MouseAdapter()
                   public void mouseEntered(MouseEvent me)
                        // Set hover cursor if field contains text
                        if (getText().length() > 0 && pTreatAsLink == "YES")
                             setCursor(hoverCursor);
    pNormalColor = getForeground();
    setForeground(pActiveColor);
                   public void mouseExited(MouseEvent me)
                        // Change cursor back
    if (pTreatAsLink == "YES")
                        setCursor(defaultCursor);
    setForeground(pNormalColor);
    * set the properties of the bean
    public boolean setProperty(ID property, Object value)
    log("set prop");
    if (property == treatAsLink)
    pTreatAsLink = value.toString();
    return true;
    else if (property == activeColor)
    pActiveColor = stripColour(value) ;
    return true;
    else if (property == visitedColor)
    pVisitedColor = stripColour(value) ;
    return true;
    else
    return super.setProperty(property, value);
    private Color stripColour(Object pColour) {
    String color = pColour.toString().trim();
    int r=-1, g=-1, b=-1, c=0 ;
    StringTokenizer st = new StringTokenizer(color,",");
    while (st.hasMoreTokens()) {
    c = new Integer((String)st.nextToken()).intValue() ;
    if( (c <0) || (c > 255) ) c = 0 ;
    if( r == -1 ) r = c ;
    else if( g == -1 ) g = c ;
    else if( b == -1 ) b = c ;
    return (new Color(r,g,b));
    public void log(String msg)
    if(m_debug||m_debugAll)
    System.out.println(CLASSNAME + ": " + msg);
    }

  • FlashPlayer 11 (non-debug only) + LCCS v2.1.0 targeting FP 10.0 not loading content

    Is anyone still compiling apps with LCCS 2.1.0 targeting FlashPlayer 10.0 and running the app in a FlashPlayer 11 ( non-debug ) ?
    * Not an issue when I target LCCS 2.1.0 to FP 10.3 but I can't upgrade just yet because of some of our customers
    Most of my UI elements ( mx:boxes, video, audio...etc  doesn't show up) just trying to see how wide spread is this problem ( it's hard to debug when the issue only occurs in a non-debug version of FlashPlayer 11 )
    I was able to collect LCCS info and seems like I'm connecting to a room and all is good, the camera input starts but I don't see any of the UI components:
    "Thu Oct 6 14:06:06 GMT-0400 2011 LCCS SDK Version : 2.1.0 Player Version : MAC 11,0,1,152
    14:06:06 GMT-0400 requestInfo https://connect.acrobat.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?mode=xml&glt=g :&x=0.2601146502420306
    14:06:07 GMT-0400 authentication status: 200
    14:06:07 GMT-0400 authentication request complete
    14:06:07 GMT-0400 requestInfo https://connect.acrobat.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?gak=cmVuZ2EqbmE xcioxMzJkYTY4YjE3YypNUDNGMDFUNlBONzVRN002RlpRVzgzVkhTOA==&mode=xml&x=0.316164287738502
    14:06:07 GMT-0400 #TicketService# ticket received: 1x3ewlxtsvupx
    14:06:07 GMT-0400 Getting FMS at https://na2.collaboration.adobelivecycle.com/fms?ticket=1x3ewlxtsvupx&proto=rtmfp, attempt #1/3
    14:06:08 GMT-0400 result: <fms> <origin>fms8.acrobat.com</origin> <proto_ports>rtmfp:1935,rtmps:443</proto_ports> <retry_attempts>2</retry_attempts> </fms>
    14:06:08 GMT-0400 protocols: [object ProtocolPortPair],[object ProtocolPortPair]
    14:06:08 GMT-0400 [attempt 1 of 2] Connecting to 0/1: rtmfp://fms8.acrobat.com/cocomo/xxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxx #startProtosConnect#
    14:06:08 GMT-0400 tempNetStatusHandler 0/2,NetConnection.Connect.Success
    14:06:08 GMT-0400 isTunneling? false
    14:06:08 GMT-0400 is using RTMPS? false
    14:06:08 GMT-0400 RECEIVED LOGIN AT SESSION
    14:06:08 GMT-0400 .user descriptor from server [object]
    14:06:08 GMT-0400 \
    14:06:08 GMT-0400 .affiliation [number]= 100
    14:06:08 GMT-0400 .role [number]= 100
    14:06:08 GMT-0400 .displayName [string]= Eschool Dev
    14:06:08 GMT-0400 .userID [string]= WCD-34624D004898515B99201587
    14:06:08 GMT-0400 RECEIVENODES UserManager
    14:06:08 GMT-0400 receiveAllSynchData UserManager
    14:06:08 GMT-0400 RECEIVENODES FileManager
    14:06:08 GMT-0400 receiveAllSynchData FileManager
    14:06:08 GMT-0400 checkManagerSync:[object FileManager]
    14:06:08 GMT-0400 RECEIVENODES AVManager
    14:06:08 GMT-0400 receiveAllSynchData AVManager
    14:06:08 GMT-0400 checkManagerSync:[object StreamManager]
    14:06:08 GMT-0400 RECEIVENODES RoomManager
    14:06:08 GMT-0400 receiveAllSynchData RoomManager
    14:06:08 GMT-0400 checkManagerSync:[object RoomManager]
    14:06:08 GMT-0400 checkManagerSync:[object UserManager]
    14:06:09 GMT-0400 RECEIVENODES SupportRoomReassignmentModel
    14:06:09 GMT-0400 receiveAllSynchData SupportRoomReassignmentModel
    14:06:09 GMT-0400 RECEIVENODES Classroom
    14:06:09 GMT-0400 receiveAllSynchData Classroom
    14:06:09 GMT-0400 RECEIVENODES RSUserManager
    14:06:09 GMT-0400 receiveAllSynchData RSUserManager
    14:06:09 GMT-0400 RECEIVENODES default_SimpleChat
    14:06:10 GMT-0400 receiveAllSynchData default_SimpleChat
    Any ideas / clues / similar experiences ?
    Thanks
    Alex G.

    1) -swf-version is not set when targeting 10.0; -swf-version=12 was set for FP 10.3 integration
    2) Correct, LCCS v2.0.0/2.1.0 for Player10.0
    3) Flex 4.1 SDK
    4) No, non-LCCS elements do not show up
    5) Both, Mac and Windows. Yes, Chrome, Firefox ( 3.6 and 7 ), IE 8/9
    We found out where the problem lies; fyi our init process is 3 steps:
    1) init data
    2) connect to room - lets call it lobby view / intermediate room that has no significant UI to indicate we are connectingto LCCS room
    3) and finally the full UI that a teacher / student sees
    When we get the room URL we also destroy the 'lobby view' room right before rendering the video/audio/full UI to the user. At this point we set the instance to null "_lobbyView = null". Somewhere later in the code _lobbyView is referenced but it's null even though we have null checks around all of _lobbyView instances :/
    This line of code causes a Flash RTE but ONLY in a non-debug version of FlashPlayer 11 and I think we are now finding evidence that this issue has been happening in FlashPlayer 10.3 but much rearer. So after our users started upgrading to Flash Player 11 we started seeing the problem show up very frequently. Without code changes on our end, it's odd that upgrade to either the LCCS lib (to Player10.3 lib) or FlashPlayer itself we start seeing this problem come up.
    Thanks for the quick response
    Alex G.

  • [PhoneGap] Building a non-debug APK for Android Market?

    I have an app completely built and tested, and am ready to put it out in the Market. However, I can find NO information about how to do this. All I can manage to build from Dreamweaver is the debug version of the APK, which works fine on my phone, but cannot be uploaded to the Market. How do I build the 'non-debug' version?

    I'm sorry to do this but I have to quote an old post of mine.  Best way to answer this:
    Dreamweaver does not allow you to bypass the store process and give you a certificate.  The Adobe AIR team has given a good explanation of what is going on and how DW signs the app for development and debug mode.
    http://forums.adobe.com/thread/853774
    The answer that they give after the explanation will point you to the Android Developers website which gives you the details on Google's methods for obtaining a proper certificate.
    http://developer.android.com/guide/publishing/app-signing.html

  • When i open terminal i get (login(1685,0x7fff73770960) malloc: *** error for object 0x106d2c4d0: pointer being freed was not allocated *** set a breakpoint in malloc_error_break to debug  [Process completed])

    so all of a suddun i open terminal and i get
    login(1685,0x7fff73770960) malloc: *** error for object 0x106d2c4d0: pointer being freed was not allocated
    *** set a breakpoint in malloc_error_break to debug
    [Process completed]
    in the terminal window any help?

    Launch the Console application by entering the first few letters of its name into a Spotlight search, and look under "User Diagnostic Reports" for crash logs related to "login." Select the most recent one and post the contents -- the text, please, not a screenshot.

  • Webutil error "unable to communicate with runtime process."

    Hi,
    Yesterday I configured webutil with Developer 10g (9.0.4).
    I used webutil_106.zip and jacob_18.zip.
    I succesfully deploy a form that display the selection file dialog with the function:
    CLIENT_GET_FILE_NAME
    Today I tried to test again the form, and I got an error when the form is opening, I review the log and I find "unable to communicate with runtime process.".....
    I didn't change any configuration... what I'm doing wrong..... It just work great yesterday!!!!
    I tried signing again the jacob.jar and frmwebutil.jar files..... However I still have the error.......
    Any help is welcome....
    The error in the log:
    09/03/25 10:57:45 Started
    09/03/25 10:57:55 forms90web: jsp: init
    09/03/25 10:57:55 forms90web: f90servlet: init
    09/03/25 10:57:55 forms90web: FormsServlet init():
    configFileName: c:\dev10g/forms90/server/formsweb.cfg
    testMode: false
    09/03/25 10:57:55 forms90web: 9.0.4.0.0 Started
    09/03/25 10:57:56 forms90web: l90servlet: init
    09/03/25 10:57:56 forms90web: ListenerServlet init()
    09/03/25 10:58:02 forms90web: Forms session <1> aborted: unable to communicate with runtime process.
    09/03/25 10:58:02 forms90web: Forms session <1> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
         at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
         at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    09/03/25 11:00:58 forms90web: l90servlet: destroy
    09/03/25 11:00:58 forms90web: 9.0.4.0.0 Stopped
    09/03/25 11:00:58 Stopped (Shutdown executed by jazn.com/admin from 127.0.0.1 (localhost))
    Edited by: Santiago on 25/03/2009 11:23 AM

    I Find the way, It's OK now.
    When I use the webutil.olb in a form. I chose "Subclass", It's necessary to choose "Copy".

  • Document Splitting: Editing constant for non-assigned processes

    This query concerns assignment/editing of constants to non-assigned processes which is part of document splitting
    We currently have one controlling area and one profit center.
    we have assigned one constant named BQE: "imputation sur comptes de banquet" (which probably means bank charges) which defaults for profit center 1000
    Now we have a new company code that will use the same (controlling area remains same) constant. So, whenever this constant is called up for the new company code, we want it to default to a different profit center (2000). This substitution should occur at the line item level.
    If we use substitution, what would be the logic for this?
    Is there any other way to accomplish this requiement?
    Thanks!

    Vj
    You can assign default profit centers for GL account and company code combination in spro node
    "Assign Default Profit Center to Accounts"
    (FAGL_V_FAGL_T8A30)
    Regards
    Sach!n

  • Unable to start the database(Process m000 died, see its trace file)

    Hi,
    Oracle Version:10.2.0.1
    Operating System:Linux
    Hi suddenly the database went down and in alert logfile it is showing error like this.
    Fri Feb 18 01:40:51 2011
    Process m000 died, see its trace file
    Fri Feb 18 01:40:51 2011
    ksvcreate: Process(m000) creation failed
    Fri Feb 18 01:41:18 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_ora_15998.trc:
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    Fri Feb 18 01:41:19 2011
    Process m000 died, see its trace file
    Fri Feb 18 01:41:19 2011
    ksvcreate: Process(m000) creation failed
    Fri Feb 18 01:42:19 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_ora_16032.trc:
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    Fri Feb 18 01:42:20 2011
    Process m000 died, see its trace file
    Fri Feb 18 01:42:20 2011
    ksvcreate: Process(m000) creation failed
    Fri Feb 18 01:43:20 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_ora_16036.trc:
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    Fri Feb 18 01:43:21 2011
    Process m000 died, see its trace file
    Fri Feb 18 01:43:21 2011
    ksvcreate: Process(m000) creation failed
    Fri Feb 18 01:44:21 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_ora_16042.trc:
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    Fri Feb 18 01:44:22 2011
    Process m000 died, see its trace file
    Fri Feb 18 01:44:22 2011
    ksvcreate: Process(m000) creation failedand generating lot of trace files.
    Please help me how to solve this .
    Thanks & Regards,
    Poorna Prasad.

    In my alert log file I also find this error.
    ed Feb 16 06:11:13 2011
    Process J000 died, see its trace file
    Wed Feb 16 06:11:13 2011
    kkjcre1p: unable to spawn jobq slave process
    Wed Feb 16 06:11:13 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_cjq0_26196.trc:
    Wed Feb 16 06:11:13 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_j000_4172.trc:
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    Wed Feb 16 06:11:14 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_j000_4172.trc:
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    Process J000 died, see its trace file
    Wed Feb 16 06:11:14 2011
    kkjcre1p: unable to spawn jobq slave process
    Wed Feb 16 06:11:14 2011
    Errors in file /u01/app/oracle/admin/apdtest/bdump/apdtest_cjq0_26196.trc:Thanks & Regards,
    Poorna Prasad.S

  • How to make invoice verification process non-release process?

    Hi friends,
    I am doing incoming invoice verification (MIRO), once post it, I will have a message saying (document XXXXXX was created (document is blocked)). then I have to go to T-code MRBR to release it.
    My question is: where could configure this process to be an non-release process?
    Thanks,
    Linda

    Config. path.
    MM \ LIV \ Invoice block \ Set tolerance limits
    See also Item amount check (same path) in case this has been activated too.
    Though presumably you want to have some tolerances unless it's a sandbox system.
    Cheers,
    Nick

  • Unable to Cancel/Suspend few processes in NWA

    Hi All,
    I have few processes in which the Context Data is missing and I am unable to Cancel/Suspend such processes.
    I have remove the task from users work list for which I am trying to Cancel this processes.Can anyone please let me know how to do the same . Thank you so much in advance .

    usually u cannot do too much in the event of this kind of error
    u may find a note if lucky.
    if not, just open ticket to sap

  • Terminate the Signature Process

    My form has several fields which need to be validated, and the only event in which it makes sense to do the validation is the Enter event of the Signature Field.  But if the validation fails I don't know how to terminate the signature process.  It keeps going after the validation script.  I don't want to rely on the user hitting Cancel.  Is there a method to terminate the signature process?  Thanks.

    Hi,
    There is a cancelAction method which you can use with a preSign event.
    You could validation script in the preSign event and then if this fails you could use:
    Reference_Syntax.cancelAction = true;
    I would also include an app.alert to notify the user why the signing has failed.
    This was implemented in XFA2.8, which means that it is likely that it will only work in Acrobat / Reader version 9. This might be a limit to you.
    I haven't used this, so you should check out the help file.
    Good luck,
    Niall

Maybe you are looking for

  • Destinations of a portal

    Hi, I'm quiet new with SAP and NetWeaver. I've installed the sap netweaver sneak preview 2004, the pdk  for .net and the .net connector. I can deploy a very simple application (like the "Hello World" example) on my deployment server and view it in th

  • Portege 4000 - RAM upgrade & graphic card driver installation

    I'm having a few issues with my Portege 4000 at the moment. I installed XP on one disk, but will need more RAM as I only have 256MB... - Have tried 2 manufacturers but the PC133 512 isn't compatible. However my system has an IBM chip of PC100 256 in

  • Is there something wrong with my system

    Hello recently i have been getting overheating problems and what seems to be performance issues that i should not have. I was wondering if anyone could help me out or point me to a site that has people who can help. My current issue is intel i5 3750k

  • Purchase Order, MIGO and MIRO

    Dear All, Please guide me how to map the below scenario in SAP. We have to procure Material 'C' for that we have to get the Material 'A' from "X" Vendor. And it has to be delivered to "Y" Vendor. Then vendor "Y" uses Material 'B' and he does some pro

  • Merged cells in advanceddatagrid?

    Hello I have an advanceddatagrid with 4 columns. I want that in first column all cells to be merged, like this: Col1     Col2     Col3     Col4 -----------|-------------------------------            | myd     newx     dat1            | --------------