Unix to Windows socket

I'm looking for a socket class or some such thing to use an external procedure running on Windows NT from Oracle running on Solaris. What is out there?
Pat

LabVIEW has both TCP and UDP functions. If you set up your unix program as a TCP/UDP data server, it's pretty simple to write a LabVIEW client and in fact, LabVIEW comes with a sample client program.

Similar Messages

  • The system cannot find the file specified.Windows sockets error code:2.

    Hi All,
      I am on MDM 5.5 SP6.
      I am getting the following error message when trying to logging in to the DM.
    The system cannot find the file specified.Windows sockets error code:2.This application will now exit.
    Runtime Error :
    Program C :\Program Files\SAP MDM 5.5\Data Manager\Datamanager.exe
    R6025.
    -Pure virtual function call.
    And in console also the MDM server is stopped after getting the above error message.
    Can anybody tell me what could be the problem?
    Thanks & Regards
    Sireesha.

    Hi Sireesha,
    According to me, there can be 3 problems,
    1. Kindly check whether the MDM server is stopped. If it is, then restart the MDM Server and Load the repository with Update indices.
    2. If this error is coming with every repository, the problem will be either in the Version mismatch of the Server and the GUI's you are using. Kindly ensure that the versions for the MDM server and the MDM Gui's Match.
    3. If only Data manager Client is giving the problem, then you can un-install and install the DM GUI again.
    Along with this, please refer to the link below :
    [[The system cannot find the file specified.Windows sockets error code:2.;]
    Hope it helps.
    Thanks and Regards
    Nitin jain

  • UDPWrite in a loop. "A Windows Sockets function call returned an unexpected error."

    Hello together,
    i use UDP Support Library in NI CVI 9.0. When i wait for receiving a packet at the pc to send then a packet from the pc, the functions UDPRead and UDPWrite work fine. If i want to test the maximum throughput, i put the UDPWrite in a loop, but then an error occurs. It is "kUDP_UnexpectedWinsockError"
    Error Popup:
    "NON-FATAL RUN-TIME ERROR:   "main.c", line 53, col 22, thread id
    0x00000C18:   Library function error (return value == -6822
    [0xffffe55a]). A Windows Sockets function call returned an unexpected
    error."
    Line 53:
    status = UDPWrite (channel, 60100, "192.168.1.10", pOutputBuffer, 1458);
    the whole loop:
    while(1)
    status = UDPWrite (channel, 60100, "192.168.1.10", pOutputBuffer, 1458);
    counter++;
    if(counter>50)
    break;
    else{;}
    The error occurs after 3-16 packets have been sent. If i step through the programm, no error occurs. So i guess its because the UDPWrite command is invoked too fast. pOutputBuffer has static data. I could use a delay in the loop, but then i dont know how to configure for maximal throughput.
    Any ideas how to avoid this error?
    Regards Florian

    Hello and thank you for your answer. Sorry that i reply a month later.
    I dont know what you mean by "let 'er rip approach". Do you mean something like:
    status = UDPWrite (channel, 60100, "192.168.1.10", pOutputBuffer, 1458);
    if(status==0)
     counter++;
    else
      Delay(0.00005);
    I did not yet try to put the packet number in the payload, but there is just a 30 cm crossover cable between the two devices, no switch, no router. So the sequence should not be interruptet. And even if they arrive in chaos, i dont mind.
    I have contacted the NI support 2 weeks ago, but no response yet.
    I did some tests with a delay between the execution of UDPWrite(). The code:
    float time = 0.0;
     for(i = 1; i < 1000; i++)
      status = UDPWrite (channel, 60100, "192.168.1.10", pOutputBuffer, 1458);
      time = 1.0 / i;
      Delay(time);
    The results:
    For i between 1 and 1000: no error, the speed of the last ten packets was about 6.5 MBit/s
    For i between 1000 and 2000: error occured at i = 1585 (variable time in Delay was 0.0006313), the speed of the last ten packets was about 8 MBit/s
    Then i put some constant values in Delay and ran 100 UDPWrite iterations:
    Delay(0.0006): 7.48 MBit/s
    Delay(0.0001): 10.7 MBit/s
    Delay(0.00001): error occured at i=31, speed of 31 packets was 12.0 MBit/s
    Delay(0.00008): 100 of 100 packets, speed 10.9 MBit/s
    Delay(0.00005): error at i=41, speed of 41 packets 11.1 MBit/s

  • Unrecognized Windows Sockets Error: 0: JVM_Bind

    I'm not entirely sure if I compacted this well enough, but after class declaration and method calling, it is essentially what my program does.
    Server server = new Server(); // Creates a ServerSocket and binds it to a port.
    Client client = new Client(server.getSocketAddress());
    public Client(SocketAddress bind)
         try
              socket = new Socket();
              socket.bind(bind); // Problem here
              recieve = new Scanner(socket.getInputStream());
              send = new Formatter(socket.getOutputStream());
         catch (IOException e)
              e.printStackTrace();
    }Running the above code produces the following exception.
    java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
         at java.net.PlainSocketImpl.socketBind(Native Method)
         at java.net.PlainSocketImpl.bind(Unknown Source)
         at java.net.Socket.bind(Unknown Source)
         at GameObjects.PlayArea$Client.<init>(PlayArea.java:318)
         at GameObjects.PlayArea.<init>(PlayArea.java:48)
         at MenuStates.GamePlayState.initializePlayArea(GamePlayState.java:90)
         at MenuStates.CreateGameState.mouseClicked(CreateGameState.java:106)
         at Manager.GameManager.mouseClicked(GameManager.java:428)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Window.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)I don't even know what this exception is, and I can't find anything that will really tell me what is going on. Can anyone tell me what is happening here?
    I know that this question isn't directly related to Game Development, but I am using it in a game program, and I posted this question in the Network forum, and they flooded my topic with useless messages, and the only person who actually answered my question was extremely vague about it, even after I asked him to clarify. I am hoping that the good people of this forum will be more helpful.

    In some cases, the server socket used to need more time to be available. If you run several test, you need time to reuse the same port (for Windows 7). I could try the following code:
    Server server = new Server(); // Creates a ServerSocket and binds it to a port.
    Thread.sleep(500); // Waiting for server to be available
    Client client = new Client(server.getSocketAddress());
    public Client(SocketAddress bind)
         try
              socket = new Socket();
              socket.bind(bind); // Problem here
              recieve = new Scanner(socket.getInputStream());
              send = new Formatter(socket.getOutputStream());
              Thread.sleep(500); // Time to execute the sme port in another test.
         catch (IOException e)
              e.printStackTrace();
    }

  • Unrecognized Windows Sockets error: 10106: create

    Am getting the following error when I use tcp-mon to sniff the HTTP traffic. Same when I use SOAP-UI.
    I'm using windows 7 and using "jdk1.6.0_13". Any help on this pls .
    java.net.SocketException: Unrecognized Windows Sockets error: 10106: create
    at java.net.Socket.createImpl(Socket.java:388)
    at java.net.Socket.<init>(Socket.java:362)
    at java.net.Socket.<init>(Socket.java:180)
    at org.apache.ws.commons.tcpmon.SocketWaiter.halt(SocketWaiter.java:98)
    at org.apache.ws.commons.tcpmon.Listener.stop(Listener.java:543)
    at org.apache.ws.commons.tcpmon.SocketWaiter.run(SocketWaiter.java:87)

    Winsock error 10106. 8 seconds in Google. Looks like something wrong with your operating system installation.

  • Unrecognized Windows Sockets error...

    Hello everybody!
    I am encountering the following problem, when I try to run a program which wants to access the internet. I pasted an extract from the source code here, which I think includes the critical lines:
    import java.net.*;
    import java.io.*;
    class FindLinks {
    public static Vector findLinks (String address) throws Exception {
    URL u = new URL(address);
    InputStream ins = u.openStream();
    InputStreamReader isr = new InputStreamReader(ins);
    BufferedReader webPage = new BufferedReader(isr);
    When I run the complete program, I get the following message:
    Exception in thread "main" java.net.SocketException: Unrecognized Windows Sockets error: 10106: create
    at java.net.Socket.createImpl(Socket.java:313)
    at java.net.Socket.connect(Socket.java:424)
    at java.net.Socket.connect(Socket.java:376)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:386)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:602)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:303)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:264)
    at sun.net.www.http.HttpClient.New(HttpClient.java:336)
    at sun.net.www.http.HttpClient.New(HttpClient.java:317)
    at sun.net.www.http.HttpClient.New(HttpClient.java:312)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect HttpURLConnection.java:481)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:472)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:574)
    at java.net.URL.openStream(URL.java:960)
    at FindLinks.findLinks(FindLinks.java:10)
    at FindLinks.main(FindLinks.java:47)
    I am using the new Java SDK 1.41 on a Windows XP machine. Does anyone has an idea what might be causing this problem?
    Kind regards
    Linus

    I know, but you triple posted

  • Printing Unix to Windows getting all the printers from the Windows machine

    Hi,
    My application prints Unix to Windows using the name of the machine and a generic virtual printer, but now I need to do some improvements, and I really don't know if it is possible to do what I've been asked to.
    A browsable page (jsp, html, applet, whatever) has to show all the available desktop printers and print a document that can be a .prn or a .pcl to the chosen printer.
    I've done a pilot project just to check what happens in Windows and what happens in Unix.
    when the server is Windows, everything works just fine, but when the server is Unix, of course, I get the " javax.print.PrintException: Printer is not accepting job.at sun.print.UnixPrintJob.print(UnixPrintJob.java:295 )" error.
    Is it possible to do something like this with only free software or I rather abandon the idea and face the users reaction? (upps!)

    Thanks for the answer.
    I think I'm not very lucky because SAMBA is not in place in my company...

  • Migrating Oracle 9i Unix to Windows 2000

    Dose anyone have any information on migrating an Oracle 9.2.0 database from Unix to Windows 2000. Any information would be greatly appreciated.

    Since the data files aren't compatible between the operating systems, you'll probably need to do an export and import to move the database. Other than that, it shouldn't be terribly difficult.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to change Syntax group and physical path in SARA from unix to windows.

    Our customer migrate current current archiving server from Unix to windows
    How to change Syntax group and physical path in SARA from unix to windows.

    http://help.sap.com/saphelp_nw70/helpdata/EN/8d/3e4ec2462a11d189000000e8323d3a/frameset.htm
    you have to change
    Logical Path Names
    Logical file  Names
    Note 35992 - File name/directory for application archiving
    hope this will help you
    cheers
    dEE

  • Testing of SAP BW system after migration from OS Unix to windows

    Hi Experts,
    I am working on a project wherein testing of BW system is required after migration from OS Unix to Windows.
    If any one has done same set of activities in past or has any idea of this, please share all major test steps required after migration.
    Thanks in advance.
    Regards,
    Neeraj

    Hi Neeraj,
    I will paste the list we used for our upgrade from 3.1 to 7.0. I removed some company specific details. Sorry for the "lay-out", it is copied from excel, this messes up the whole message.
    best regards, André.
    Preparation     PHASE 1
    Review New Functionality     Review BW section on SAPNet for latest information on new release
    Confirm Upgrade Timing (First Sat)    
    GUI Upgrade     Install GUI's for Upgrade Test persons
    "Check Prerequisites     -Operating System
    -SAP Kernel
    -DBMS
    -Disk space
    -R/3 plugin
    -BW software version and SP
    Citrix.."
    "Check Compatibility Reqs with other systems     APO
    ECC6.0"
    Check Compatibility Reqs with 3rd party software     ?
    "Test Team 2004s Delta Training     To
    have idea on new functionality
    not have confusion if looks different.."
    "End User Communication: upgraded system and changes     e.g. right vs left click
    - send out communication twice"
    End User Communication: several "look and feel" sessions  NOTE: incorporate WISBECH !!!    
    Setup Portal connected to BW QA for testing once upgraded     Setup Portal connected to BW DEV for testing once upgraded
    Check best go live date - based on assuption 2 days needed    
    Determine test set  - based on input BS / KU    
    Estimate resources Business for testing    
    BluePrint     PHASE 2
    Check/CleanUp Development Objects     Check all open and not-released developments for release prior to upgrade
    Prepare System Setup     Prepare (if needed) flat-files for test loads
    Check OSS for release notes on objects     Each functional area should check out OSS for release notes on objects (for changes etcu2026, new functionality)
    "Prepare (detail) list of objects to be tested     Complete list of objects to be tested, special attention to custom/non-standard programs, enhancements. List of:
    - extractors
    - process chains
    - reports"
    "Setup delta mechanisms (create transaction data)     BackEnd Test: Financial Extraction and load, process chains
    u2022tbd
    u2022
    u2022 "
    Verification / creation of process chains     Check existence of to-be-tested process chains; if none, create 'sample' process chains
    Realization     PHASE 3
    Prior to Upgrade: Install any necessary frontend software    
    Prior to Upgrade: Install any necessary frontend software (end-users)    
    Prior to Upgrade: Complete any extraction - suspend V3 and scheduled BW jobs    
    Create Sandbox    
    Connect Sandbox to external systems (connections/BDLS)    
    Pre-upgrade steps    
    Perform Upgrade of BW     
    Check connection with R/3/APO    
    Perform system backup    
    "BackEnd Test: Logistics extraction and load, process chains
    u2022 Z_example_CHAIN
    u2022 2lis_03_BF and 2lis_03_BX     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    "BackEnd Test: Sales Extraction and load, process chains
    u2022 Z_SALES_1
    u2022 all lis extractors:
    u2022 12_vcitm
    u2022 13_vditm
    u2022 11_vaitm
    u2022 11_vahdr
    u2022 11_v_ssl
    u2022 11_vasti
    u2022 12_vcscl
    u2022 selection of z-extractors
         Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    "BackEnd Test: Financial Extraction and load, process chains
    u2022 0FI_GL_4
    u2022 NOTE: no further extractors are chosen for testing
    u2022 tbd     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    "BackEnd Test: Master Data... Extraction and load, process chains     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    "BackEnd Test: Zxxx Extraction and load, process chains
    u2022 Z_TRANSACTION_DATA
    u2022 Zxxx
    u2022 Zyyy     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    "BackEnd Test: Plant Maintenance Extraction and load, process chains     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    BackEnd Test: PP Extraction and load, process chains     Test: load from Zxxx
    "BackEnd Test: Purchasing Extraction and load, process chains     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    "BackEnd Test: APO Extraction and load, process chains
    u2022 ZAPOxxx
    u2022 ZAPOyyy
    u2022 others can be tested, but were not included in de testset     Test:
    - Extractor within process chain preferably otherwise mimic behavior (drop index, load, rebuild, aggragate etc)
    - Delta extraction"
    BackEnd Test: Regular Schedule - Production    
    BackEnd Test: Flat file upload     Test: 2 types from server and PC
    BackEnd Test: Test Admin Workbench: creation of objects, change existing     Test the Admin Workbench: creation of infoobjects, change infoobject, create/change hierarchy, create cube,u2026
    BackEnd Test: Test Bex: creation of queries (kf etc...); change existing     Creation of new query/ change query, create condition, calculated/restricted kf, variables,..
    BackEnd Test: Issue handling    
    Development box issue fixing - on forehand     apply fixes based on issues BWQ
    FrontEnd Test: Run Logistics Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run Sales Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run Supply Chain Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run Financial Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run Controling Reports     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run Master Data and Special Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run PM Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run Purchasing Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Run APO Reports (log results in Reports tab)     Run reports, execute various navigation steps, make sure to execute each item of menu paths,validate no loss of functionality, report new functionality. Run few managed bookmarks
    FrontEnd Test: Issue handling    
    FrontEnd Test: Make before image of reports - Production     Run reports; save of before image to compare once upgraded
    FrontEnd Test: Run All Reports - Production     Run reports, execute various navigation steps, compare with 'before image' taken in prevous step
    Test Security     Test security with various end-user roles/IDS other than BW developer (usually has * ALL)
    Test Portal integration     Test portal with various end-user roles/IDS other than BW developer (usually has * ALL)
    Edited by: A. Nagelhout on Feb 12, 2010 10:50 AM
    Edited by: A. Nagelhout on Feb 12, 2010 10:50 AM
    Edited by: A. Nagelhout on Feb 12, 2010 10:52 AM
    Edited by: A. Nagelhout on Feb 12, 2010 10:52 AM

  • Database shifting from UNIX to WINDOWS

    Hi,
    We have a production server located at Suse UNIX.
    We would like to move database from UNIX to WINDOWS.
    I would like to know what are the difficulties/scenarios which occures while moving the database?
    How difficult is it to import current oracle database to oracle on windows server ?
    Please explain in details.
    Thanks,

    hi what is your version of database?
    are you chaging the database version also or simply operating system?
    if you are only changing OS, then exp/imp is the best option. but to acheive this you need to do some groundwork like collecting all the tablespaces information and schemas and their privileges etc.
    also depends on database size also you can choose come other options.
    if your database version is 10g then you can best use the option of datapump exp/imp or network_link parameter of datapump.

  • File permissions $OH Unix and Windows

    Hi,
    I am examining an Oracle audit and now looking for all the default file/directory permissions on Unix and Windows. Have searched a lot of sites now but could not find a proper list with all the permissions mentiond. Does anybody knows where to find such a list (or script) to check if my current settings are ok?
    I use OEM to check for my open security policies but this permission item is very hard to find unfortunately.
    So please some info on this unix/windows permissions issue.
    Thanks,
    Paul
    btw Have found some settings for bdump, udump, adump, $OH/rdbms/log and audit (umask 0177) but want to check those other permissions for the whoe installed Oracle software en admin directories.
    Edited by: Paul van Rixel on 12-mei-2009 13:30

    Hi,
    Picked a few alerts from EM, for example:
    Allowed Logon Version
    Default Passwords
    Default Permanent Tablespace Set to a System Tablespace
    Initialization Parameter File Permission
    The last few weeks I have already disabled some of the policies but these are the alerts which are left now and I want to get rid of them.
    When you click in EM on "Initialization Parameter File Permission" the description of it is: Ensures that access to the initialization paramater file is restricted to the owner of the Oracle software set and the DBA group.
    So, ok thats is clear to me but I want to look at the whole server/database to make it a "clean" server/db.
    Paul

  • Advantages of Unix over Windows

    Hello all,
    We r planning to move from Windows to Unix platform in OS ,can anybody give me  feature list/advantages of Unix over windows .My email id is [email protected] Requested to revert at earliest as this is urgent.
    Regards,
    Somya

    maybe you should ask the SAP on Linux forum.
    This one here is probably not the best source for arguments for Linux.
    Peter

  • Essbase system 9 -difference between the installation in UNIX and windows

    Hi,
    plz let me know the difference in installation in UNIX and windows, let me know the process. this is bit ugent...
    advanced thanks for your help and support.
    Thanks,
    sudhakar

    Hi Sudhakar,
    You have 2 documents for windows_installation and unix_installatio in the following location.
    http://download.oracle.com/docs/cd/E10530_01/doc/nav/portal_1.htm
    Sandeep Reddy Enti
    HCC
    http://analytiks.blogspot.com

  • Requesting user input from UNIX command window

    New to this forum, and relatively new to Java......question for you......
    Currently, I am able to request a .txt file from a user in my unix command window by having them type in the following command:
    java Game (nameOfTextFile).txt
    with the following code:
    public class Game {
    public static void main(String[ ] args) {
    try{
    reader = args[0];
    catch(Exception g){
    System.out.println(g);
    where 'reader' holds the .txt file.
    What I would like to do is as soon as the user types in the command:
    java Game
    it gives them the line:
    "Please type the file to be input"
    and at this point they type in:
    (nameOfTextFile).txt
    and then I can start working with the text file.
    Any ideas?
    Thanks

    public class Game {
    public static void main(String[ ] args) {
    try{
    reader = args[0];
    catch(Exception g){
    System.out.println(g);
    }This class will not compile. The variable 'reader' is not declared anywhere.
    You could create a shell program. When the user enters the name of the shell program at the command prompt, it gives them the prompt to enter the file to be input. And then from within the shell program you call the java program with the name of the file.

Maybe you are looking for

  • Record to Desktop in Premiere / OnLocation MIA?

    With the CS5 suite I was able to use OnLocation to capture video via a connected camcorder.  And that was super.  However, OnLocation seems to be missing in CS6.  Has it been retired or is there a replacement or updated feature in Premiere that takes

  • Can we implement "Service Locator" in Stateless Session Bean??

    Hi, My enterprise application is using Stateless Session Bean. To increase the performace , I think of implementing "service Locator" pattern so as to cache the EJBHome objects in order to avoid looking up Home object every time. I want to know wheth

  • Concurrent req not processing

    Hi, A user submitted the program and his prog is pending/normal for long time, it is not being processed where as the reqs submitted by other users are getting processed. Can some one pls explain how to appraoch on this scenario and what could be the

  • I hate this forum or whatever it is....

    I've now spent a half an hour farting around instead of working on the Nye Beach Merchant website in Dreamweaver CC.  I've since than been TRYing to prove I'm me instead of using trial software. 4 timesnow I've signed in. I'm irked in case you haven'

  • Edit Service tab Screen settings

    Dear experts , I want the field "Actual Quantity " to be displayed in the service tab layout . I am able to make other fields visible n all , but Actual Qty field is skipped by the system . Pls trell me what coud be the reason ? All screen settings a