Not able to open windows application With Java Runtime .exec class

Hi,
We have created a folder with mkdir() function. The folder has some
text and doc files and i want to open them using java runtime API.
I am unable to open the files using the syntax
try {
Process p=Runtime.getRuntime().exec("cmd /c \ "" + file.getPath());
p.exitValue();
catch(Exception e)
e.printStackTrace();
This code works perfectly for folders created directly in Win XP without using
mkdir.
Also the return values of of class Process is 1 which we understood as illegal thread state. But I still havent got a clue how to fix it.
Appreciate quick feedback :) Thanks ;)

First off you're missing a quote (add '+ "\"" after file.getPath()). But the larger problem is that this will attempt to execute these files and they aren't directly executable (you said they're text and document files). Do you really want to execute them?
If you just want to read them then something like
BufferedReader ir = new BufferedReader(new FileReader(file))
would be more appropriate.

Similar Messages

  • 1st-I was able to log into my account but was not able to open any applications, tried another account and same thing.  was able to log out and restart but now am unable to use mouse.  g5 dual core

    1st-I was able to log into my account but was not able to open any applications, tried another account and same thing.  was able to log out and restart but now am unable to use mouse.  g5 dual core, can't remember the os without seeing it.

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Let us know how far you get, or results.

  • I have updated my ipad yestarday sicne then i am not able to open any application on my ipad2. some of the application able to open in the page and not able to open all the applications in the second page. Does any one got this type of issue? any sugg?

    i have updated my ipad yestarday sicne then i am not able to open any application on my ipad2. some of the application able to open in the page and not able to open all the applications in the second page. Does any one got this type of issue? any suggestions?

    This problem has been reported a few times. The solution is to install any new App say a free one. This seems to fix whatever has gone wrong.

  • Not able to open any doc with adobe reader XI. fatal error, acrobat failed to its core DLL load

    not able to open any doc with adobe reader XI. fatal error, acrobat failed to its core DLL load

    See http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • How do I reset Firefox if I am not able to open the application after ending it on the task manager?

    We changed the privacy options on firefox, closed the program, and now we are not able to open it. We have ended the process on the task manager, but it still will not open. We tried to uninstall it but it won't even let us do that. I've read lots of articles on how to reset firefox, but it isn't helpful when i can't get into firefox to try it.

    See:
    *http://kb.mozillazine.org/Browser_will_not_start_up
    You can use one of these to start Firefox in <u>Safe mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    Can you bring up the Profile Manager to create a new profile?
    *http://kb.mozillazine.org/Profile_Manager
    *https://support.mozilla.org/kb/Managing+profiles

  • Making Windows Applications with Java

    Hello, I have some experience with Java, I have programmed in it for two years and I was wondering how I would be able to create windows applications coding in Java. I know it is possible to do this with Visual Studio and C# but I wanted to know what I need to do it in Java. Please let me know of the packages I need to use with Eclipse and of the specifics. I basically just wanna learn and build basic applications, nothing too complicated. If you can indicate me to some tutorials that would be great. Thanks in advanced.

    Well, I just wanted to learn to make windows applications, like lets say notepad, or winzip, simple applications. I guess just make executable files, .exe files. I dont know how else to explain it. I have had some experience with GUIs but I dont want to have a piece of code that runs only through eclipse or some other JDK.

  • Not able to open BSP application in Internet

    Hi Everyone,
    i have a BSP Application which i have put into a tab strip as a link.But users are not able to open the url though they are able to log on to the standard application (cProjects suit 3.1)
    this is how i did.
    <htmlb:link id        = "Link1000"
                text      = "Company cProjects"
                target    = "_blank"
                reference = "http://hxyz.corp.company.ad:8000/sap/bc/bsp/sap/zzzz_cprojects/default.htm?sap-client = <%=sy-mandt%> " >
    </htmlb:link>
    can anyone let me know what configurations i need to do so as to make it open in internet outside my company's network.
    i checked SICF and application is active.
    Regards,
    Ajay

    Hi Ajay,
    This is sample application (overwrite column 7).
    Page Attribute:
    flights     TYPE     FLIGHTTAB
    ovtab     TYPE     TABLEVIEWOVERWRITETAB
    wa_ov     TYPE     TABLEVIEWOVERWRITE
    Layout:
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title=" " >
        <htmlb:form>
          <%
      clear wa_ov .
      data: temp_bee type ref to IF_BSP_BEE .
      data: wf_text type string ,
      wf_url type string .
      wf_text = 'ABC' .
      CONCATENATE 'http://www.google.com/search?q=' wf_text INTO wf_url .
      CALL METHOD cl_htmlb_link=>factory
      EXPORTING
      id            = 'tv1_1_7'
      reference     = wf_url
      target        = '_blank'
      text          = wf_text
      RECEIVING
      element       = temp_bee .
      move: '7' to wa_ov-column_index ,
      '1' to wa_ov-row_index  ,
      temp_bee to wa_ov-display_bee .
      append wa_ov to ovtab .
          %>
          <htmlb:tableView id                   = "tv1"
                           table                = "<%= flights %>"
                           overWriteDefinitions = "<%= ovtab %>"
                           visibleRowCount      = "10"
                           columnHeaderVisible  = "true" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    onInitialization Event:
    SELECT * FROM sflight INTO TABLE flights.
    Hope this helps.

  • Not able to open Windows Media Player files with Quicktime Pro

    Hi,
    I have recently downloaded a couple of videos that I am planning to use in FCP. The file extension of the downloaded videos is .asf and I am able to play them with Windows Media Player. However, to use them in FCP I have to convert them into Quicktime format. I have Quicktime Pro version 7.0.4 and I was told that I should be able to open the files in Quicktime therefore automatically converting them into quicktime files. It's not working and I am completely out of options and ideas.
    Please help if you ever had that problem.
    Thanks in advance

    As I understand it M$ is providing additional distribution as a sort of "seal of approval."
    Don't forget WMV/WMA is a proprietary codec from M$ and involves licensing. In that sense they're providing resources. Apparently the Flip4Mac folks are actually building it themselves though.
    Think of it as being in the construction business and you're required to buy the lumber from only one source but you still have to build the house yourself.
    I've just got done downloading the newer version and
    I hope for improvements.
    It looks like M$ is giving some resources to the
    flip4mac creators. Maybe a M$ "plant" all along?

  • I am not able to enter the password and also can not able to open any application in my Mac Book Pro;to log in I have to force shutdown.

    Hi
    My Mac book pro is behaving strangely. I am not able to enter the Password and can't open any application/folder. To log-in I have to give forced shutdown. When ever I try to open any application the screen turns grey (some times) and the window pop up " --------- quit unexpectedly".
    I updated the OS too from the available updates but the problem persists. I have reasonable amont of data in it, which definitely I do not want to loose.
    Kindly let me know how can I come out of the above scenario?

    Hi Susan,
    In that case I will recommend that you consult a local technician/IT team and see if there is some network connectivity issue with your machine.
    - Abhishek Maurya

  • I am not able to open Windows 7 in Mac Book Pro

    (sorry about my English)
    i installed windows 7 ultimate via boot camp.
    its a clean install and it worked fine, but after shutdown and opened again(where i was pressing that option button) only mac boot came.. i am not able to see my windows boot.
    I even went in mac , system preferences and changed the start up disk to Boot Camp .
    And when i restart, its saying no bootable device Found.
    Please help Me !
    i use mbp 17' mac os x (10.6..7) 2.2ghz i7 quad core, 4 gb ram. ati radeon

    You might want to ask in the Boot Camp forum where the Boot Camp gurus hang out https://discussions.apple.com/community/windows_software/boot_camp

  • Not able to open xlsm files with Docs To Go on BB Q10

    Hi,
    We a new BB Q10 in our company, the user is not able anymore to open file xlsm
    He doens't need to update the file, but just view it
    Before he had a Torch and it was working fine with these kind of files
    Do you have any suggestion?
    Thanks

    Hey marcolin,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    Are you using Documents to Go Premium Edition?  Also what is the error you're receiving when trying to open the file?  Are you able to open up regular excel files?
    I look forward to your reply.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Applet is not working properly on windows 7 with java update 23

    I am using applet in web application to serve as Image Viewer.
    Problem Description :
    1.Client machine configuration: Windows 7, java update 23 , IE8
    2.When my web application is not secure (i.e. accessible via HTTP), applet is
    able to download image from server.
    3.But when my web application is secure (i.e. accessible via HTTPS), applet
    is unable to download image from server.
    4.When applet try to download image using HTTPS, somehow it takes it as
    crossdomain access.
    5.When Client machine has Windows vista or Windows xp OS no such problem
    is there, applet works fine.
    Note : Applet method to download image is called from javascript.
    6.Java log console -
    network: Cache entry not found [url: https://fd2235dbc95c49be9064433f8030d9f5.cloudapp.net/ExtractForm.aspx?nPageID=366&Sessionid=22000255&UC CName=healthcaresolution, version: null]
    network: Connecting https://fd2235dbc95c49be9064433f8030d9f5.cloudapp.net/ExtractForm.aspx?nPageID=366&Sessionid=22000255&UC CName=healthcaresolution with proxy=DIRECT
    network: Cache entry not found [url: http://65.52.203.213/crossdomain.xml, version: null]
    network: Connecting http://65.52.203.213/crossdomain.xml with proxy=DIRECT
    network: Connecting http://65.52.203.213:80/ with proxy=DIRECT
    java.security.PrivilegedActionException: java.net.ConnectException: Connection refused: connect
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.deploy.net.CrossDomainXML.check(Unknown Source)
    at com.sun.deploy.net.CrossDomainXML.check(Unknown Source)
    at sun.plugin2.applet.Applet2SecurityManager.checkCon nect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect (Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.<init>(Unkn own Source)
    at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsUR LConnection.getNewHttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainC onnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsUR LConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInp utStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl. getInputStream(Unknown Source)
    at com.newgen.formApplet.ngfrmbld.<init>(ngfrmbld.jav a:278)
    at com.newgen.formApplet.FormApplet.jbInit(FormApplet .java:411)
    at com.newgen.formApplet.FormApplet.FileUrl(FormApple t.java:309)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknow n Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Un known Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.plugin.javascript.JSInvoke.invoke(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknow n Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Un known Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass$MethodInfo.invok e(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass$MemberBundle.inv oke(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass.invoke0(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass.invoke(Unknown Source)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo$DefaultInvocationDelegate.invoke(Unknown Source)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo.doObjectOp(Unknown Source)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo$LiveConnectWorker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getNew HttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainC onnect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connec t(Unknown Source)
    at com.sun.deploy.net.CrossDomainXML$2.run(Unknown Source)
    ... 39 more
    java.security.AccessControlException: access denied (java.net.SocketPermission 65.52.203.213:443 connect,resolve)
    at java.security.AccessControlContext.checkPermission (Unknown Source)
    at java.security.AccessController.checkPermission(Unk nown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkConnect(Unknown Source)
    at sun.plugin2.applet.Applet2SecurityManager.checkCon nect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect (Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.protocol.https.HttpsClient.<init>(Unkn own Source)
    at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsUR LConnection.getNewHttpClient(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.plainC onnect(Unknown Source)
    at sun.net.www.protocol.https.AbstractDelegateHttpsUR LConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInp utStream(Unknown Source)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl. getInputStream(Unknown Source)
    at com.newgen.formApplet.ngfrmbld.<init>(ngfrmbld.jav a:278)
    at com.newgen.formApplet.FormApplet.jbInit(FormApplet .java:411)
    at com.newgen.formApplet.FormApplet.FileUrl(FormApple t.java:309)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknow n Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Un known Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.plugin.javascript.JSInvoke.invoke(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknow n Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Un known Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at sun.plugin.javascript.JSClassLoader.invoke(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass$MethodInfo.invok e(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass$MemberBundle.inv oke(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass.invoke0(Unknown Source)
    at sun.plugin2.liveconnect.JavaClass.invoke(Unknown Source)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo$DefaultInvocationDelegate.invoke(Unknown Source)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo.doObjectOp(Unknown Source)
    at sun.plugin2.main.client.LiveConnectSupport$PerAppl etInfo$LiveConnectWorker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Edited by: 837609 on Feb 20, 2011 9:17 PM

    908304 wrote:
    Thanks for the response. But I don't think the problem is due to Protocol relative URLs. This seems to be a permissions issue.So is the non Protocol relative URLs issue!
    I get the following exception
    java.security.AccessControlException: access denied (java.net.SocketPermission 66.150.109.50:443 connect,resolve)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkConnect(Unknown Source)
         at sun.plugin2.applet.Applet2SecurityManager.checkConnect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.protocol.https.HttpsClient.<init>(Unknown Source)
         at sun.net.www.protocol.https.HttpsClient.New(Unknown Source)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getHeaderField(Unknown Source)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getHeaderField(Unknown Source)
    But this is only in Windows 7 machines. In Windows XP it is working fine.Windows 7 is much more fussy than XP about permissions. I can't make you investigate the Protocol relative URLs issue but surely it must be worth spending some time on it.

  • Opening default application with java

    hi
    can i open the default application for the Operating system to open a specific file. for eg MSWORD is the default application to open *.doc files under windows platform. can i make java to open it. also if there is no default application can i open a dialog which shows applications installed and query the user to select one to open the file
    thnx
    jods

    what u can probably do is make your main class accept command line arguments that specify your target file names. When saving some file, say some text file from your editor, create a bat file and save it in place of the text file,which u save somewhere else.. in the bat file, make a call to your editor with the file path as the argument. then in ur code, read the file and set the text to the editor. I think this is the best thing for you to do. Also, this would mean that your code can be made to run by using sh files in Unix platform in place of.bat file.. This approach is viable, especially if the files that need to be opened are managed internally by your editor and will/need not be supported by other editors..

  • Not able to open Admin console with other Administrator account other than "system"

    I am trying to create new users and add them to "Administrator" and "Administrators"
    so that they can access Admin console. I tried open up "http://localhost:7001/console"
    and entered in this new id and password, but it did not allow me in. At the same
    time if i enter "system" and "password" i was able to logon successfully.
    Can some one please let me know what i am missing here? Do i have to update any
    "Realm" files? And changes have to be made any other location?
    My idea is to have 3 people in different sub teams to access console and not use
    "system" user account.
    Please let me know if you need any more information.
    Thanks

    I've tried this in 6.1 and it doesn't seem to work. Is there a special
    configuration issue. essentially, I want to create a user name dev1 that has
    administrative privileges to start and stop selected servers within a
    domain.
    "Mihir Kulkarni" <[email protected]> wrote in message
    news:[email protected]..
    | An issue has been filed with engineering on this.
    | This feature is available in WLS 61, though!
    | mihir
    |
    | Kiran Meda wrote:
    |
    | > I am trying to create new users and add them to "Administrator" and
    "Administrators"
    | > so that they can access Admin console. I tried open up
    "http://localhost:7001/console"
    | > and entered in this new id and password, but it did not allow me in. At
    the same
    | > time if i enter "system" and "password" i was able to logon
    successfully.
    | >
    | > Can some one please let me know what i am missing here? Do i have to
    update any
    | > "Realm" files? And changes have to be made any other location?
    | >
    | > My idea is to have 3 people in different sub teams to access console and
    not use
    | > "system" user account.
    | >
    | > Please let me know if you need any more information.
    | >
    | > Thanks
    |

  • Anyone else not able to open avi's with quicktime after downloading Mountain Lion??

    I have an intel iMac with QuickTime Player (Version 10.2) and no .avi that I have tried to open up (that I have aquired SINCE upgrading to OSX Mountain Lion) will play.  All my old .avi movies will work but no new ones.  Anyone else having these issues?

    Anyone else having these issues?
    My system generally works the same now as it did before the upgrade as far as AVI files are concerned—i.e., some "supported" files play in the QT X Player and all "supported" files play in the QT 7 Player.
    All my old .avi movies will work but no new ones.
    Since AVI is a file type, the real question here is whether or not both old and new files contain the same compression formats and if different, whether or not the non-playing compression formats are supported by by your codec component configuration and in the AVI file type. To test the possibility that certain codecs are no longer compatible with QT X v10.2 in the AVI container, try playing the problem files in the QT 7 v7.6.6 player app.

Maybe you are looking for

  • Why does iTunes SUCK in Korea?

    I bought an iPhone 3Gs and thought it was the greatest phone in the world. I loved it. But the apps suck in iTunes Korea. When I browse games on iTunes nothing shows but a white screen with "GAMES" written on the top left corner. There are no game ap

  • How to add new fields to standard alv report

    Hi, Tcode(VL10G) .ie.out put list will not showing one new field.I want to add one more field to output list. append the field(VIKP-SDABW) In the SHP_VL10_ITEM structure .And write the logic in the exit LV50R_VIEWG05---- >USEREXIT_PREPARE_LAYOUT_FILL

  • Socket communication very slow on Mac OS X 10.6

    Hi everybody, I'm using a socket based communication in an application and in Mac OS 10.5 everything works quick and flawless using XCode 3.1.4. In Mac OS 10. 6, using XCode 3.2.4, I set the Mac OS X 10.6 SDK, I recompiled the app. but the responsive

  • Manual Bank Statement - Upload of line items

    Hi, We are trying to implement Manual Bank Statement for a specific client. We are not going for electronic bank statement, taking into consideration fewer number of transactions in the month. The bank statement for the month has approx 40-50 transac

  • SAP XI 3.0 - Communication channel

    Hi All, Fortuntely I created File to File scenario in SAP XI 3.0 but still I have one querry regarding to configuring communication channel. In the <b>Module</b> tab I specify this information :- Number = 1. Module Name = localejbs/CallSapAdapter. Ty