Vendor HCI command

Hi,
Iam trying to send Vendor HCI command.
Iam getting error 87 (Invalid Parameter)
Is patterns required after data?
Code snippet:
PBTH_VENDOR_SPECIFIC_COMMAND pVendorSpecificCommand;
DWORD dwSize = sizeof(BTH_VENDOR_SPECIFIC_COMMAND) + 3;
BYTE outputbuffer[254];
unsigned char data[] = {0x04, 0x04, 0x24};
pVendorSpecificCommand = (PBTH_VENDOR_SPECIFIC_COMMAND)::LocalAlloc(LPTR, dwSize);
pVendorSpecificCommand->ManufacturerId = 2;//Intel
pVendorSpecificCommand->LmpVersion = 0;//To All radios
pVendorSpecificCommand->MatchAnySinglePattern = TRUE;
pVendorSpecificCommand->HciHeader.OpCode = 0xFC00;
pVendorSpecificCommand->HciHeader.TotalParameterLength = 3;
memcpy(pVendorSpecificCommand->Data, data, 3);
DWORD dwErrCode = DeviceIoControl(hRadio, IOCTL_BTH_HCI_VENDOR_COMMAND, pVendorSpecificCommand, dwSize,outputbuffer, 254, 0, NULL); if (!dwErrCode)
dwErrCode = GetLastError();
::LocalFree(pVendorSpecificCommand);

I am doing the same thing but it always seems to fail with 1314 error while calling the DeviceIoControl for this IOCTL
HANDLE procToken;
  LUID luid;
  TOKEN_PRIVILEGES tp;
  OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &procToken);
  LookupPrivilegeValue(NULL, SE_LOAD_DRIVER_NAME, &luid);
  tp.PrivilegeCount = 1;
  tp.Privileges[0].Luid = luid;
  tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
  BOOL retVal = AdjustTokenPrivileges(procToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), (PTOKEN_PRIVILEGES) NULL, (PDWORD)NULL);
HANDLE hRadio(NULL);
 BLUETOOTH_FIND_RADIO_PARAMS frp;
 ZeroMemory(&frp, sizeof(frp));
 frp.dwSize = sizeof(frp);
 BOOL bFound = TRUE;
 HBLUETOOTH_RADIO_FIND hrf = BluetoothFindFirstRadio(&frp, &hRadio);
BluetoothFindRadioClose(hrf);
b = DeviceIoControl(hRadio, IOCTL_BTH_HCI_VENDOR_COMMAND, buffer,
   bufferLen, pResponseBuf, responseBufLen,
   &bytesReturned, NULL);
This fails with error  ERROR_PRIVILEGE_NOT_HELD
How did you solve this issue.
Vasanth

Similar Messages

  • SAP/Crystal Issue

    I have built a Crystal report that works flawlessly in Crystal. As soon as I import it into SAP I get an error dealing with the parameter not being supported. I have looked but can't seem to still understand why, or what I am doing wrong. I need to have the ability to have 3 optional prompts for this report.  The banking manager wants to be able to search by either the vendor #, check #, or check date, or utilizing all three if need be. I used a previous query that was used in B1 and then dropped it into the command option of Crystal.
    I am using the below statement in my Crystal record select.
    (not HasValue({?Date Range}) OR {Command.Check Date} = {?Date Range}) and
    (not HasValue({?Check Number}) OR {Command.Check Number} = {?Check Number}) and
    (not HasValue({?Vendor #}) OR {Command.CardCode} = {?Vendor #})
    Any help would be appreciated.

    Hi Dayton
    You need the 4 separate tests for each parameter so in your example each of the 3 parameters will have all 4 tests rather than the 2 that they get by default.
    For the vendor it will be like the following
    ((not HasValue({?Vendor #}})
    or isNULL({?Vendor #})
    or {?Vendor #} = '')
    OR {Command.CardCode} = {?Vendor #})
    Casting the numeric field to character in your command is a good idea for the check number and then, provided the check number parameter entered is a string it should be OK.
    Not sure about the date range.  I have not tried that.  Perhaps you can cast as a string in 'yyyymmdd' format but you might end up having to manually convert the dates entered into formula fields for the range and use that.
    Rob
    Rob

  • USBBT100 ver.2 technical question

    We've installed a bunch of USBBT100 ver.2 dongles in our products time ago, and now we're having problem because some of them are failing when sending data. It will be great if you can send us the technical datasheet (not the 2 page brochure) of the chip BCM2035 in order to check if there is a physical problem or a software error.
    Thanks in advance.
    Solved!
    Go to Solution.

    We're running them on linux machines, and also we've tried to load an unload their respective kernel module/drivers. After some trial and error with differente dongles we've found that when the temperature rises over 45ºC some of them start failing giving no responsen to hci commands.

  • LabVIEW programmer wanted with imaging & sub micron motion control experience

    We have a project where we need to align a microscopic image of a prober tip to a mask of known XY coordinates.  The image will be acquired with a video microscope with a high resolution digital camera, and the prober will be mounted onto an automated XY theta stage.  The mask will have to be scaled to match different magnifications/fields of view, and the stage will automatically align the prober to the mask. Project is located in Eugene, OR. Please contact John, or Gary at 800 706 2284 for further details.

    Hi, I'm having a problem with switching of relays using ADAM module 4608. I have 4 relays with me. The vendor supplied commands to open and close relays. But while using serial communication protocol, I can only operate one relay at a time. The problem is there are four different  commands to open but only one command to close it all. I couldn't operate all the four relays simultaneously. Program I developed is attached with this message.The commands to open are, #010001,#010002,#010004,#010008 and the close command is #010000.please, can you help me find a solution. I'm really stuck here.
    Regards,
    arjun
    Attachments:
    RELAY.JPG ‏75 KB

  • UDP responses from multiple PCs

    My laptop is on a local area network that consists of the laptop, a switch, and two RF switch boxes.
    Not connected to the corporate network.
    According to the equpment vendor a command can be broadcast to the local network using UDP and all tthe boxes that receive the request will respond.
    The VI that they gave me only shows the response for one the boxes at a time. 
    How do I go about modifying the VI so that the response from both boxes are received?
    Attached is their VI which I have simplified. The IPv4 address is for my laptop.
    The boxes are at 192.168.0.141 and 192.,168.0.142
     

    nyc wrote:
    There is no input specifically called "local broadcast address".
    With "local broadcast address" I meant the "broadcast address for the local subnet".
    You are always sending from your own address. That's your own unicast IP address which is automatically added to the header of all outgoing packets. The devices at the other end will respond to the broadcast with a unicast to the source IP of the received packet, i.e. your adapter. Same for the port. "open UDP" reserves a local port, which is used as source port for the outging packets. The destination port is whatever the other devices are listening at, so you have no choice.
    All adapters receive messages to their assigned IP address, to the local subnet broadcast address, to the generic broadcast address (255.255.255.255) as well as to certain multicast addresses. On the local subnet, things are actually guided by the MAC address and each adapter maintains an ARP table to correctly form the ethernet header. Your local switches will know (from learning) all connnected MAC addresses and their assigned IPs and will send out any incoming packet to the right connecter. They recognize broadcasts and will automatically send them out on all other connectors. If the address is not local, the ethernet packet is set to the MAC address of the router (the default gateway) and it will read the destination IP to determine which interface (i.e. other subnet) the packet should go out, etc.
    nyc wrote:
    Could you explain whey the IPv4 address is being OR'd with the negate of the subnet mask?
    I am clueless as to the purpose.
     Well, that's the correct math, look it up! (the original code does exactly the same, but in a Rube Goldberg kind of way )
    For example if your IP address is:
    192.168.5.45 and the netmask is 255.255.255.0, the broadcast address is 192.168.5.255
    10.47.5.45 and the netmask is 255.0.0.0, the broadcast address is 10.255.255.255
    etc.
    Thus the local subnet broadcast addrees can be determined from the IP address and netmask.
    Note that each address is internally just a U32 integer and boolean operations will function bitwise.
     

  • LabVIEW driver

    Hi all
    I am looking for a driver this instrument. I think someone else was looking for the same driver a couple of years back. I am hoping someone has developed their own and  willing to share. As of today i didnt find it in the NI drivers library.
    Thanks

    Hi Charles,
    Unfortunately there no exists a driver for this device. However, I noticed that this device has an RS-232 interface and I wouldn’t be so difficult to communicate with this device with the proper documentation from the vendor (the commands).
    You can use one of the many examples from the community to send and receive data to/from the device. You just will need see if in the user manual of the device is some information about the configuration or commands of the device.
    Regards,
    MCOTO

  • Connect a Bluetooth device in Windows to a Bluetooth Device in Linux to obtain the RSSI

    Here's the situation. I have looked through the forums for information on this question. I do understand there are some compatibility issues between Windows and Linux, hopefully this is easy enough to not be a problem.
    I'm trying to acquire the RSSI (Received Signal Strength Indicator) for a Bluetooth card - any card for that matter. Windows Native Drivers will not allow me to access this information through the HCI commands, I've looked. However, Linux does, it's easy, and I now know how. The plan is to get the Windows Bluetooth card to communicate with the Linux Bluetooth card and have the Linux box send the RSSI information to the Windows box.
    This program, which I've been working on, needs some help. I would like to put it up to test tomorrow afternoon - when I get off from work. I would like to get some recommendations and suggestions on how to fix the empty parts. And if there's a better way of doing this.
    This program is part of another program written in Labview for image recognition.
    Attachments:
    bluetoothRSSI.vi ‏41 KB

    I haven't worked with BT, so I'll assume the basic connection works (you open a connection and you get the data). I'm also assuming the linux box isn't running LV (if I remeber correctly, BT in 7.1 is only supported on windows XP).
    So, to comment on your code:
    1. I dislike flat case structures which span across multiple screens. I prefer using stacked ones if necessary. This is obviously matter of personal taste and screen resolution, so it's just an obsrvation.
    2. Your connection will run not once for each connection, but until it encounters an error.
    3. I made a few other quick modifications. They're ugly, but they should set you on the right path. I may have missed some of your notes.
    Try to take over the world!
    Attachments:
    bluetoothRSSI[1].vi ‏58 KB

  • Bluetooth to Socket CHS 7P barcode scanner

    I'm trying to use my Socket CHS 7P on a fully up-to-date ArchLinux system. I've followed instructions on both Bluetooth Mouse and Bluetooth Keyboard but it doesn't help. hcidump seems to reveal that the device connects successfully for a brief second but then disconnects instantly.
    Here is the hcidump after running hidd --connect:
    HCI sniffer - Bluetooth packet analyzer ver 1.42
    device: hci0 snap_len: 1028 filter: 0xffffffff
    < HCI Command: Create Connection (0x01|0x0005) plen 13
    > HCI Event: Command Status (0x0f) plen 4
    > HCI Event: Connect Complete (0x03) plen 11
    < HCI Command: Read Remote Supported Features (0x01|0x001b) plen 2
    > HCI Event: Command Status (0x0f) plen 4
    > HCI Event: Read Remote Supported Features (0x0b) plen 11
    < ACL data: handle 12 flags 0x02 dlen 10
    L2CAP(s): Info req: type 2
    > HCI Event: Max Slots Change (0x1b) plen 3
    < HCI Command: Remote Name Request (0x01|0x0019) plen 10
    > HCI Event: Command Status (0x0f) plen 4
    > ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Info rsp: type 2 result 1
    Not supported
    < ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Connect req: psm 1 scid 0x0040
    > ACL data: handle 12 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x0059 scid 0x0040 result 1 status 2
    Connection pending - Authorization pending
    > ACL data: handle 12 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x0059 scid 0x0040 result 0 status 0
    Connection successful
    < ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Config req: dcid 0x0059 flags 0x00 clen 0
    > HCI Event: Remote Name Req Complete (0x07) plen 255
    > ACL data: handle 12 flags 0x02 dlen 14
    L2CAP(s): Config rsp: scid 0x0040 flags 0x00 result 0 clen 0
    Success
    > ACL data: handle 12 flags 0x02 dlen 16
    L2CAP(s): Config req: dcid 0x0040 flags 0x00 clen 4
    MTU 48
    < ACL data: handle 12 flags 0x02 dlen 18
    L2CAP(s): Config rsp: scid 0x0059 flags 0x00 result 0 clen 4
    MTU 48
    < ACL data: handle 12 flags 0x02 dlen 24
    L2CAP(d): cid 0x0059 len 20 [psm 1]
    SDP SSA Req: tid 0x0 len 0xf
    pat uuid-16 0x1200 (PNPInfo)
    max 65535
    aid(s) 0x0000 - 0xffff
    cont 00
    > HCI Event: Number of Completed Packets (0x13) plen 5
    > ACL data: handle 12 flags 0x02 dlen 14
    L2CAP(d): cid 0x0040 len 10 [psm 1]
    SDP SSA Rsp: tid 0x0 len 0x5
    count 2
    cont 00
    < ACL data: handle 12 flags 0x02 dlen 24
    L2CAP(d): cid 0x0059 len 20 [psm 1]
    SDP SSA Req: tid 0x1 len 0xf
    pat uuid-16 0x1124 (HID)
    max 65535
    aid(s) 0x0000 - 0xffff
    cont 00
    > ACL data: handle 12 flags 0x02 dlen 14
    L2CAP(d): cid 0x0040 len 10 [psm 1]
    SDP SSA Rsp: tid 0x1 len 0x5
    count 2
    cont 00
    < ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Disconn req: dcid 0x0059 scid 0x0040
    > ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Disconn rsp: dcid 0x0059 scid 0x0040
    < ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Connect req: psm 1 scid 0x0040
    > HCI Event: Number of Completed Packets (0x13) plen 5
    > ACL data: handle 12 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x005a scid 0x0040 result 1 status 2
    Connection pending - Authorization pending
    > ACL data: handle 12 flags 0x02 dlen 16
    L2CAP(s): Connect rsp: dcid 0x005a scid 0x0040 result 0 status 0
    Connection successful
    < ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Config req: dcid 0x005a flags 0x00 clen 0
    > ACL data: handle 12 flags 0x02 dlen 14
    L2CAP(s): Config rsp: scid 0x0040 flags 0x00 result 0 clen 0
    Success
    > ACL data: handle 12 flags 0x02 dlen 16
    L2CAP(s): Config req: dcid 0x0040 flags 0x00 clen 4
    MTU 48
    < ACL data: handle 12 flags 0x02 dlen 18
    L2CAP(s): Config rsp: scid 0x005a flags 0x00 result 0 clen 4
    MTU 48
    < ACL data: handle 12 flags 0x02 dlen 25
    L2CAP(d): cid 0x005a len 21 [psm 1]
    SDP SSA Req: tid 0x0 len 0x10
    pat uuid-16 0x1108 (Headset)
    max 65535
    aid(s) 0x0004 (ProtocolDescList) 0x0100 (SrvName)
    cont 00
    > ACL data: handle 12 flags 0x02 dlen 14
    L2CAP(d): cid 0x0040 len 10 [psm 1]
    SDP SSA Rsp: tid 0x0 len 0x5
    count 2
    cont 00
    < ACL data: handle 12 flags 0x02 dlen 25
    L2CAP(d): cid 0x005a len 21 [psm 1]
    SDP SSA Req: tid 0x1 len 0x10
    pat uuid-16 0x1101 (SP)
    max 65535
    aid(s) 0x0004 (ProtocolDescList) 0x0100 (SrvName)
    cont 00
    > HCI Event: Number of Completed Packets (0x13) plen 5
    > ACL data: handle 12 flags 0x02 dlen 52
    L2CAP(d): cid 0x0040 len 48 [psm 1]
    SDP SSA Rsp: tid 0x1 len 0x2b
    count 38
    cont 02 00 08
    < ACL data: handle 12 flags 0x02 dlen 27
    L2CAP(d): cid 0x005a len 23 [psm 1]
    SDP SSA Req: tid 0x2 len 0x12
    pat uuid-16 0x1101 (SP)
    max 65535
    aid(s) 0x0004 (ProtocolDescList) 0x0100 (SrvName)
    cont 02 00 08
    > ACL data: handle 12 flags 0x02 dlen 20
    L2CAP(d): cid 0x0040 len 16 [psm 1]
    SDP SSA Rsp: tid 0x2 len 0xb
    count 8
    record #0
    aid 0x0004 (ProtocolDescList)
    < < uuid-16 0x0100 (L2CAP) > <
    uuid-16 0x0003 (RFCOMM) uint 0x1 > >
    aid 0x0100 (SrvName)
    str "Socket Serial Port"
    cont 00
    < ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Disconn req: dcid 0x005a scid 0x0040
    > ACL data: handle 12 flags 0x02 dlen 12
    L2CAP(s): Disconn rsp: dcid 0x005a scid 0x0040
    > HCI Event: Number of Completed Packets (0x13) plen 5
    < HCI Command: Disconnect (0x01|0x0006) plen 3
    > HCI Event: Command Status (0x0f) plen 4
    > HCI Event: Disconn Complete (0x05) plen 4
    bluetooth daemon doesn't output anything interesting, just:
    bluetoothd[3647]: adapter_get_device(00:13:E0:48:56:8A)
    Need this working, so all help is greatly appreciated.
    uname -a:
    Linux ebornarch 2.6.31-ARCH #1 SMP PREEMPT Tue Oct 13 13:36:23 CEST 2009 i686 AMD Athlon(tm) Dual Core Processor 4050e AuthenticAMD GNU/Linux
    Thanks.

    Ingenico has a 1D Bluetooth barcode scanner certified MFi by Apple.
    http://baracoda.ingenico.com/Baracoda-i-fly.aspx
    Baracoda i-Fly is compatible with Apple iPod touch, iPhone and iPad.
    Baracoda i-Fly supports IAP Bluetooth profile and is MFi certified, which means it is 100% compatible with Apple development standards and performances.
    Its Bluetooth connection is bidirectional, which enables the i-Fly to transmit data both ways in mode « No Data Loss »).
    Furthermore, Firmware update is also possible, which is not the case for non-MFi certified devices.

  • [SOLVED] Thinkpad T430 brightness keys broken after firmware upgrade

    Hi.
    I've upgraded the firmware on my Thinkpad to version 2.51. Since that I'm unable to change the display brightness via the Fn-Keys on the keyboard. What still works is writing values to /sys/devices/pci0000:00/0000:00:02.0/backlight/acpi_video0/brightness but of course that's not how it should be.
    Here's some dmesg output:
    [    7.638814] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [    7.638816] thinkpad_acpi: http://ibm-acpi.sf.net/
    [    7.638817] thinkpad_acpi: ThinkPad BIOS G1ET91WW (2.51 ), EC unknown
    [    7.638818] thinkpad_acpi: Lenovo ThinkPad T430, model 2349D15
    [    7.639440] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [    7.639547] thinkpad_acpi: radio switch found; radios are enabled
    [    7.639558] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [    7.639559] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [    7.640708] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [    7.641012] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [    7.641156] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    Any idea why it's broken and how it can be fixed?
    Thanks,
    Julian
    Last edited by julian24 (2013-03-21 22:06:20)

    Awesome, the acpi_backlight=vendor kernel command line parameter actually fixed it.
    Does anybody know what exactly has changed and why this in necessary now?
    Update: If you do this, you'll get error messages like this in your log/dmesg every time you press a brightness key:
    kernel: thinkpad_acpi: unknown possible thermal alarm or keyboard event received
    kernel: thinkpad_acpi: unhandled HKEY event 0x6050
    kernel: thinkpad_acpi: please report the conditions when this event happened to [email protected]
    The kernel command line parameter acpi_osi="!Windows 2012" also works and seems to be the better way to fix this.
    Bugreport at kernel.org: https://bugzilla.kernel.org/show_bug.cgi?id=51231
    tl;dr: Firmware update introduced 101 brightness levels even though the hardware only supports 16 but Windows 8 requires this. Reducing or increasing the brightness by one doesn't change anything at all so the firmware will still report the old value as the new brightness thus it'll never actually change the brightness. But if you explicitly tell the firmware that you're not Windows 8, it will only report 16 brightness levels and everything works fine. Lenovo, seriously?
    Last edited by julian24 (2013-03-21 23:27:47)

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • How to issue print command from report/form server to client printer on web

    1) We have a client server application which is to be deployed on the web environment. The reports generated in our application are having a destination type as File. These reports are printed after applying some print format (escape sequences) which are passed on to the printer programmatically at runtime while printing.
    Now when this application is shifted on to the Application server (Forms server & Reports Server )in web environment ,the report outputs would be generated in the application server as against the client in client server environment as the report server is on the application server.
    Now while printing/accessing the report the output file will not be available to the client unless it is pushed on to the client side from the server . I am able to see reports in pdf/html output but in this case layout of my reports gets changed and I dont want to change my layouts or reformat my report layouts.
    How do I redirect the report output from the application server on to the client within the D2k context and then execute print commands?
    Note: In this case we want to use both DMT and Laser printing. Also note that we use escape sequences to adjust reports in desired printing papers.
    2) We have second set of reports which we call as document because these are printed after capturing data from 'Form' using text_io utility (please note that for these documents we are not using any Report 6i functionality)and we print it from file using printing mechanism as mentioned above. These are working well in client server application. We adopted this methodology for getting better performance (in terms of speed as database server and network traffic is not involved) of printing. But now we are converting our application for web, we are finding it difficult how to capture Form's data from browser to client's machine and then executing printing commands which are stored in our application liabrary.
    If you help me out by giving some suggestions, I shall be grateful to you.
    null

    Hello
    I wonder if you ever solved this problem.
    I have a very similar problem with Photoshop CS5 on Mac OSX 10.6 + HP Photosmart C7180.
    If I choose "Photoshop Manages Colors" the results are lousy.
    If I choose "Printer Manages Colors" the results are OK. not necessarily great.
    I believe I have all the correct settings after going through books and web advice (and wasted a lot of paper and ink).
    As far as I can see, "ColorSync" is the internal Mac management which is the only option available with "Photoshop Manages Colors" and "Vendor Matching" appears to mean the printer vendor (ie HP) will provide the matching. Either can be selected if "Printer Manages Colors" is used. It seems the type of paper can be set in three different places. if That's all a bit academic as the results are poor regardless.
    My wife suggests I buy a new printer - Epson's looking good.
    Any words of wisdom would be appreciated.

  • I can no longer use 3D commands in Photoshop CS6 Extended

    I have Photoshop CS6 Extended (Ver 13.0.1x64). My desktop is Windows 7 64 Home premium; and Video card is: AMD Radeon HD 5570. The drivers and operating system is updated.
    I have been using simple 3D functions like "New 3D extrusion from..." from time to time without any problems until recently. For unknown reasons now when I try to invoke any 3D command, I get the following message: " Could not complete the "New 3D extrusion from selected layer command because of a program error." This ,message gets repeated for any 3D command.
    I checked out 3D functionality in Photoshop CS6 32 bit; and Photoshop CS5.5 Extended. Same problem. However, I can access and use all 3D functions in Illustrator CS6. Clearly, therefore, the video card is not the problem. It looks like one of the recent software updates from Adobe must have caused this problem.
    Reproduced below  are details of my system:
    Please help!
    Priyaranjan Desai
    Adobe Photoshop Version: 13.0.1 (13.0.1.3 20131024.r.34 2013/10/24:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:7, Stepping:10 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1
    Physical processor count: 4
    Processor speed: 2660 MHz
    Built-in memory: 8191 MB
    Free memory: 2569 MB
    Memory available to Photoshop: 7234 MB
    Memory used by Photoshop: 69 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 5570
    Display: 2
    Display Bounds:=  top: 0, left: 2560, bottom: 1200, right: 4480
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Card Number: 1
    Video Card: AMD Radeon HD 5570
    OpenCL Version:
    Driver Version: 14.100.0.0
    Driver Date: 20140417000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 2560 x 1440 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 5570
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92278705978377249761
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Piyush\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 686.9G, 231.5G free
      L:\, 2.73T, 2.18T free
      S:\, 2.73T, 904.6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0 
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654 
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0 
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56 
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0 
       boost_signals.dll   DVA Product   6.0.0 
       boost_system.dll   DVA Product   6.0.0 
       boost_threads.dll   DVA Product   6.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0 
       dvacore.dll   DVA Product   6.0.0 
       dvamarshal.dll   DVA Product   6.0.0 
       dvamediatypes.dll   DVA Product   6.0.0 
       dvaplayer.dll   DVA Product   6.0.0 
       dvatransport.dll   DVA Product   6.0.0 
       dvaunittesting.dll   DVA Product   6.0.0 
       dynamiclink.dll   DVA Product   6.0.0 
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt42.dll   International Components for Unicode   4, 2, 0, 0 
       icuin42.dll   International Components for Unicode   4, 2, 0, 0 
       icuuc42.dll   International Components for Unicode   4, 2, 0, 0 
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0 
       LogSession.dll   LogSession   2.1.2.1640 
       mediacoreif.dll   DVA Product   6.0.0 
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       ONCore7.dll   ONCore   7.0.0.0 
       ONCore8.dll   ONCore   7.0.0.0 
       ONCoreFoundation7.dll   ONCoreFoundation7   7, 0, 0, 0 
       ONCoreFoundation8.dll   ONCoreFoundation7   7, 0, 0, 0 
       ONDocument7.dll   ONDocument   7.0.0.0 
       ONDocument8.dll   ONDocument   7.0.0.0 
       onOneToolbox2.dll   onOne Toolbox2 Dynamic Link Library   2.2.0 
       OnOneWidgets.dll    OnOneWidgets dll   2.5 
       ONProxySupport7.dll   ONProxySupport   1.0.0.0 
       ONProxySupport8.dll   ONProxySupport   1.0.0.0 
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CS6   CS6 
       Plugin.dll   Adobe Photoshop CS6   CS6 
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383 
       PSArt.dll   Adobe Photoshop CS6   CS6 
       PSViews.dll   Adobe Photoshop CS6   CS6 
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       3D Studio 13.0.1 (13.0.1.3 x001)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1.3 x001)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1.3 x001)
       Clouds 13.0.1 (13.0.1.3 x001)
       Collada 13.0.1 (13.0.1.3 x001)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1.3 x001)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0.1 (13.0.1.3 x001)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1.3 x001)
       Embed Watermark 4.0
       Entropy 13.0.1 (13.0.1.3 x001)
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1.3 x001)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0.1 (13.0.1.3 x001)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0.1 (13.0.1.3 x001)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       Histogram 2.1.3
       HistogramCurves 2.1.3
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0.1 (13.0.1.3 x001)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1.3 x001)
       Maximum 13.0.1 (13.0.1.3 x001)
       Mean 13.0.1 (13.0.1.3 x001)
       Measurement Core 13.0.1 (13.0.1.3 x001)
       Median 13.0.1 (13.0.1.3 x001)
       Mezzotint 13.0
       Minimum 13.0.1 (13.0.1.3 x001)
       MMXCore Routines 13.0.1 (13.0.1.3 x001)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1.3 x001)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1.3 x001)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1.3 x001)
       Photocopy 13.0
       PhotoKit 1, 2, 11, 0
       PhotoKit Capture Sharpener 1, 2, 11, 0
       PhotoKit Capture Sharpener Expert 1, 2, 11, 0
       PhotoKit Color 2 2.1.3
       PhotoKit Creative Sharpener 1, 2, 11, 0
       PhotoKit Output Sharpener 1, 2, 11, 0
       PhotoKit Preview Helper 2.1.3
       Photoshop 3D Engine 13.0.1 (13.0.1.3 x001)
       Picture Package Filter 13.0.1 (13.0.1.3 x001)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1.3 x001)
       PixelGenius Toolbox 2.1.3
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1.3 x001)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1.3 x001)
       Range 13.0.1 (13.0.1.3 x001)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Skewness 13.0.1 (13.0.1.3 x001)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1.3 x001)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0.1 (13.0.1.3 x001)
       Sumi-e 13.0
       Summation 13.0.1 (13.0.1.3 x001)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Topaz Star Effects 10.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0.1 (13.0.1.3 x001)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0.1 (13.0.1.3 x001)
       Variations 13.0.1 (13.0.1.3 x001)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0.1 (13.0.1.3 x001)
       WIA Support 13.0.1 (13.0.1.3 x001)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1.3 x001)
       ZigZag 13.0
    Optional and third party plug-ins:
       Alias PIX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Alien Skin Autolayer 3 3.0.0 20463 2013-05-30 12:54
       Alien Skin Blow Up 3 3.0.0
       Alien Skin Exposure 5 Autolayer 5.0.0
       Alien Skin Exposure 6 Autolayer 6.0.0
       Alien Skin Eye Candy 7 Autolayer 7.0.0
       Alien Skin Snap Art 4 Autolayer 4.0.0
       Animal Fur 6.1.1
       BackgroundFilter NO VERSION
       Backlight 6.1.1
       Bevel 6.1.1
       Blow Up 3.0.0
       Bokeh 2.0.1
       Brick Wall 6.1.1
       Brushed Metal 6.1.1
       Camera Raw 8.6
       Camera Raw Filter 8.6
       Chrome 6.1.1
       Color Efex Pro 4 4,05
       Color Efex Pro 4 4,05
       Corona 6.1.1
       Dfine 2.0 NO VERSION
       Diamond Plate 6.1.1
       Drip 6.1.1
       DxO FilmPack 3 NO VERSION
       ElectricImage 13.0
       Exposure 5 5.0.0
       Exposure 6 6.0.0
       Extrude 6.1.1
       Eye Candy 7 7.0.0
       FineStructuresFilter NO VERSION
       Fire 6.1.1
       Fisheye-Hemi 1 (Circle) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 1 (Circle) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 2 (Full Frame) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 2 (Full Frame) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 3 (Cropped) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 3 (Cropped) [x64] v1.2.5 1.2.5.0
       Glass 6.1.1
       Gradient Glow 6.1.1
       HDR Efex Pro 2 2,03
       HotPixelsFilter NO VERSION
       HSB/HSL 13.0
       Icicles 6.1.1
       Imagenomic Plug-in Console 1, 2, 0, 0
       Lighting Effects Classic 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Marble 6.1.1
       Merge to HDR Efex Pro 2 2,03
       Motion Trail 6.1.1
       Nik Selective Tool 2.1.4.20903
       Noiseware 2.3.0.9
       Perfect Batch 8 8.5.1
       Perfect BW 8 8.5.1
       Perfect BW 8 Filter 8.5.1
       Perfect BW 8 Smart Filter 8.5.1
       Perfect Effects 4 4.0
       Perfect Effects 4 Filter 4.0
       Perfect Effects 4 Smart Filter 4.0
       Perfect Effects 8 8.5.1
       Perfect Effects 8 Filter 8.5.1
       Perfect Effects 8 Smart Filter 8.5.1
       Perfect Enhance 8 8.5.1
       Perfect Enhance 8 Filter 8.5.1
       Perfect Enhance 8 Smart Filter 8.5.1
       Perfect Mask 8 8.5.1
       Perfect Mask 8 Filter 8.5.1
       Perfect Mask 8 Smart Filter 8.5.1
       Perfect Portrait 8 8.5.1
       Perfect Portrait 8 Filter 8.5.1
       Perfect Portrait 8 Smart Filter 8.5.1
       Perfect Resize 8 8.5.1
       Perfect Resize 8 Engine Automation 8.5.1
       Perfect Resize 8 Engine Filter 8.5.1
       Perfect Resize 8 Filter 8.5.1
       Perspective Shadow 6.1.1
       PhotoFrame 4.6 Free 4.6.5
       PhotoFrame 4.6 Free Batch 4.6.5
       PhotoFrame 4.6 Free Hidden 4.6.5
       Plug-in on new layer 2, 0, 4, 0
       Portrait Professional 1, 4, 1, 0
       Portrait+ 1.5.1.149
       Portraiture 2.3.0.8
       RealGrain 1.1.0.3
       Reptile Skin 6.1.1
       Ripples 6.1.1
       Rust 6.1.1
       SGI RGB 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ShadowsFilter NO VERSION
       Sharpener Pro 3.0: (1) RAW Presharpener 3.0.10.20903
       Sharpener Pro 3.0: (2) Output Sharpener 3.0.10.20903
       Silver Efex Pro 2 2,006
       Silver Efex Pro 2 2,006
       SkinFilter NO VERSION
       SkyFilter NO VERSION
       Smoke 6.1.1
       Snap Art 4 4.0.0
       Snow Drift 6.1.1
       SoftImage 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Squint 6.1.1
       Stone Wall 6.1.1
       StrongNoiseFilter NO VERSION
       Super Star 6.1.1
       Swirl 6.1.1
       Texture Noise 6.1.1
       Topaz Adjust 4 10.0
       Topaz Adjust 5 10.0
       Topaz BW Effects 10.0
       Topaz Clarity 10.0
       Topaz Clean 3 10.0
       Topaz DeJpeg 4 10.0
       Topaz DeNoise 5 10.0
       Topaz Detail 2 10.0
       Topaz Detail 3 10.0
       Topaz InFocus 10.0
       Topaz Lens Effects 10.0
       Topaz photoFXlab 10.0
       Topaz ReMask 3 10.0
       Topaz Simplify 3 10.0
       Topaz Simplify 4 10.0
       TopazRemaskAutomate NO VERSION
       Viveza 2 2.0.9.20903
       Water Drops 6.1.1
       Wavefront RLA 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Weave 6.1.1
       Wood 6.1.1
    Plug-ins that failed to load: NONE
    Flash:
       Paper Texture
       onOne
       Gallery Wrapper
       Mini Bridge
       GuideGuide
       Kuler
    Installed TWAIN devices: NONE

    To use "dictation" as it is called, there are two requirements:
    1.  Siri must be turned on (Settings > General > Siri)
    2.  You must be connected to the internet.

  • Photoshop cs6 error "Could not complete command because there is not enough memory (RAM)"

    Hi, I have a Macbook Pro and the Adobe Creative Suite 6, and all of my other adobe programs run smoothy with the exception of photoshop. For about the past year and a half now, I will very inconsistency receive the error message, "Could not complete ___ command because there is not enough memory (RAM)."  Sometimes this problem gets so bad that I am not even able to open my preferences.
    My computer seems as though it should have plenty of space to run photoshop, and I have taken my computer to a number of differed tech supports, but they have only been able to temporarily make the problem less severe for short periods until it acts up again and completely prevents me from using Photoshop. I recently updated to Yosemite and deinstalled/reinstalled photoshop, hoping that would fix things, but I still get the message almost any time I try to complete a command.
    Your help would be very much appreciated, thank you!
    Adobe Photoshop Version: 13.0.6 (13.0.6 20131025.r.54 2013/10/25:21:00:00) x64
    Operating System: Mac OS 10.10.2
    System architecture: Intel CPU Family:6, Model:42, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2500 MHz
    Built-in memory: 4096 MB
    Free memory: 1913 MB
    Memory available to Photoshop: 3031 MB
    Memory used by Photoshop: 71 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 (Dec 14 2014 22:29:47)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 1010 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6770M OpenGL Engine
    Display: 1
    Main Display
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=1050, right=1680
    Video Renderer ID: 16915206
    Video Card Memory: 1024 MB
    Serial number: 92299584759663919723
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 697.5G, 233.0G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.20743   66.507768
       AdobeAGM.framework   AdobeAGM   4.26.20.20743   66.507768
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.20743   66.507768
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.507768
       AdobeCoolType.framework   AdobeCoolType   5.10.33.20743   66.507768
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120720
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   5.0.4   79.517869
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4
       AdobePIP.framework   AdobePIP   7.0.0.1686
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1
       amtlib.framework   amtlib   6.0.0.75
       boost_date_time.framework   boost_date_time   6.0.0.0
       boost_signals.framework   boost_signals   6.0.0.0
       boost_system.framework   boost_system   6.0.0.0
       boost_threads.framework   boost_threads   6.0.0.0
       Cg.framework   NVIDIA Cg  
       CIT.framework   CIT   2.1.0.20577   146758
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0
       dvacore.framework   dvacore   6.0.0.0
       dvamarshal.framework   dvamarshal   6.0.0.0
       dvamediatypes.framework   dvamediatypes   6.0.0.0
       dvaplayer.framework   dvaplayer   6.0.0.0
       dvatransport.framework   dvatransport   6.0.0.0
       dvaunittesting.framework   dvaunittesting   6.0.0.0
       dynamiclink.framework   dynamiclink   6.0.0.0
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1681
       mediacoreif.framework   mediacoreif   6.0.0.0
       PlugPlug.framework   PlugPlug   3.0.0.383
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework     
    Required plug-ins:
       3D Studio 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 8.7.1 (311), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Camera Raw Filter 8.7.1 (311), Copyright © 2014 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0.6 x001  ©2002-2013 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0.6 x001  ©1997-2013 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0.6 x001  ©2001-2013 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0.6 x001  ©1990-2013 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0.6 x001  ©2003-2013 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2013 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0.6 x001  ©1993-2013 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0.6 x001  ©2006-2013 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0.6 x001  ©1989-2013 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash: NONE
    Installed TWAIN devices: NONE

    Benjamin Root Photography wrote:
    Trevor.Dennis wrote:
    2166Mb really isn't enough for recent versions of Photoshop.
    Hey! Don't knock my system, Trevor.Dennis: Processor speed: 3492 MHz,
    Benjamin
    3.5Mhz?  Do they even make processors that slow?
    I'm trying to think back through Photoshop versions, but IIRC it became hungry for RAM with CS5, but it might even have been CS4.  But certainly from CS5 onwards a 32 bit system was going to be severely compromised with its 3.5Gb RAM limit, of which Photoshop could access only a bit over 2Gb.  You might remember the 4Gb switch that let you use a bit more of your 4Gb of installed RAM.  That worked OK with XP but was still flakey, and third party plugins used to fall over all the time through lack of RAM — at least Photoshop has a Scratch drive.
    So nowadays you can forget trying to use Photoshop on 32bit hardware.  You need 64 bit and at least 8Gb RAM.  So like I said, the OP needs to look deeper into the 'apparent' over heating issue, and put that other 4Gb back in.  I can't even conceive of why a person would cripple their system by removing RAM. _Especially_ when it leaves just 4Gb

  • Can't run JavaFX app as a jar file from command line

    I'm trying to build a JavaFX app from scratch (that is, by including the jar file from the JavaFX SDK rather than by using the special JavaFX project type from NetBeans). It runs fine in NetBeans. However, when I try to launch it as a jar file from the command line (using "java -jar dist\TestApp") I get the following. Has anybody seen this before, and if so how can I fix it?:
    *** Fallback to Prism SW pipeline
    Exception in thread "main" java.lang.RuntimeException: java.lang.UnsatisfiedLink
    Error: Can't load library: C:\dev\TestApp\dist\bin\mat.dll
    at com.sun.javafx.tk.quantum.QuantumToolkit.startup(QuantumToolkit.java:
    289)
    at com.sun.javafx.application.PlatformImpl.startup(PlatformImpl.java:68)
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherIm
    pl.java:145)
    at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:
    27)
    at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:97)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.UnsatisfiedLinkError: Can't load library: C:\dev\RedactionT
    oolPrototype\RedactionToolPrototype.Core\dist\bin\mat.dll
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at com.sun.glass.utils.NativeLibLoader.loadLibraryFullPath(NativeLibLoad
    er.java:155)
    at com.sun.glass.utils.NativeLibLoader.loadLibraryInternal(NativeLibLoad
    er.java:85)
    at com.sun.glass.utils.NativeLibLoader.loadLibrary(NativeLibLoader.java:
    30)
    at com.sun.glass.ui.Application$1.run(Application.java:28)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.glass.ui.Application.loadNativeLibrary(Application.java:26)
    at com.sun.glass.ui.win.WinApplication.<clinit>(WinApplication.java:33)
    at com.sun.glass.ui.win.WinPlatformFactory.createApplication(WinPlatform
    Factory.java:20)
    at com.sun.glass.ui.win.WinPlatformFactory.createApplication(WinPlatform
    Factory.java:17)
    at com.sun.glass.ui.Application.Run(Application.java:51)
    at com.sun.javafx.tk.quantum.QuantumToolkit.startup(QuantumToolkit.java:
    279)
    ... 5 more

    Unsatisfied link means that Java is trying to access a native library, but it cannot be found. As to why this error is being thrown, here is my guess:
    If you open up one of the sample jars with a zip viewer, you will see that the Manifest file has the following entries:
    >
    Manifest-Version: 1.0
    JavaFX-Version: 2.0
    implementation-vendor: Oracle
    implementation-title: BrickBreaker
    implementation-version: 1.0
    JavaFX-Application-Class: brickbreaker.Main
    Created-By: JavaFX Packager
    Main-Class: com/javafx/main/Main
    >
    In other words, a JavaFX project works a bit differently than a normal Java project. com/javafx/main/Main is used as the Main class and your "Main" class is called later.
    If you are trying to build this from a normal Java project, then com/javafx/main/Main will not be created and it will call your Main class right away. Thus, whatever setup is needed to run JavaFX will not occur.

  • Tables for vendor invoice and payment

    Hi Gurus.
    I want to know from which tables i can get the information for folllowing points.
    1.       Vendor Invoices  - Complete (Header and Item)
    2.       Vendor Payments Details – Detail about payment method (check, wire, etc)
    Please tell me tje table names.

    There is no specific table for header/item data for vendor invoice. Various information regarding vendor invoice (FB60) are stored in the following tables( note: Ignore the structures in the list ).
    |Table Name               |Table Description                                           |
    |/BEV3/CHKOMPAZVV         |Append Structure CH -> CO PA                                |
    |/CWM/ACCIT               |Append Structure for Enhancement of Structure ACCIT in CWM  |
    |/CWM/KOMP                |Catch Weight Management Enhancement                         |
    |/DSD/TAXJURCD            |Ship From Tax Jurisdiction Code: for Header Prc Comm Str    |
    |/SAPNEA/J_SC_LFA1        |Subcontractor Information                                   |
    |/SAPNEA/J_SC_LFB1        |Subcontracting Management                                   |
    |/SAPPSPRO/A_FI2_LONGNUM  |IBU-PS:  Append structure for structure NONBSEG             |
    |/SAPPSPRO/A_LONGNUMBER   |additional fields for SPIIN number                          |
    |/SAPPSPRO/EADD           |Purchasing Document Header: Additional Data                 |
    |/SAPPSPRO/EADD_DATA      |Purchasing Document Header: Data Part Additional Information|
    |/VSO/R_KNA1_A            |Append to KNA1 for Vehicle Space Optimization               |
    |/VSO/R_KNA1_I            |Additional Data for Vehicle Space Optimization for KNA1     |
    |AACCHD_FMFG              |US federal fields                                           |
    |AACCHD_PSO               |IS-PS: ACCHD Append Structure for Payment Requests          |
    |AACCIT_GM                |Append for Grants Management                                |
    |AACCIT_PSO               |IS-PS: ACCIT Append Structure for Payment Requests          |
    |AACCIT_SSP               |Append for Payment Statistical Sampling Process             |
    |AACCIT_USFG              |Append structure for US federal government                  |
    |AAUSZ_CLR_USFG           |Clearing information for US Fed (Tresury Confirmation)      |
    |ABKPF_PSO                |IS-PS: BKPF Append Structure for Payment Requests           |
    |ABKPF_UMB                |IS-PS: Append Structure for Transfer Transaction FMITPO     |
    |ABSID_PSO                |IS-PS: Data appendix of open items customers                |
    |ABSIK_PSO                |IS-PS: Data appendix of open items vendors                  |
    |ABSIS_PSO                |Local Authorities                                           |
    |ABUZ                     |Help Structure for Line Items to be Generated Automatically |
    |ACCCR                    |Accounting Interface: Currency Information                  |
    |ACCCR_FKEY               |Key: Acctg Currency Data for Line Item Including Currency   |
    |ACCCR_KEY                |Key: Accounting Currency Data for Line Item                 |
    |ACCFI                    |Interface to Accounting: Financial Acctg One-Time Accts     |
    |ACCHD                    |Interface to Accounting: Header Information                 |
    |ACCHD_KEY                |Key: FI/CO Document Header                                  |
    |ACCIT                    |Accounting Interface: Item Information                      |
    |ACCIT_EXTENSION          |ACC Document: Additional Item Information                   |
    |ACCIT_JV                 |Joint Venture Accounting                                    |
    |ACCIT_KEY                |Key: FI/CO Line Item                                        |
    |ACCIT_WT                 |Withholding tax information for FI Interface                |
    |ACCRDF                   |Fields for Posting Small Differences: Preparation           |
    |ACC_DOCUMENT             |Accounting document                                         |
    |ACC_KONTEXT              |Context Info for FI Single Screen Transactions FB50 and FB60|
    |ACERRLOG                 |Return Parameter                                            |
    |ACGL_HEAD                |Fields for Document Header Entry Screen                     |
    |ACGL_ITEM                |Structure for Table Control: G/L Account Entry              |
    |ACSCR                    |Communication Structure for Field Modification SAPLFDCB     |
    |ACSPLT                   |Carrier for Split Information re: Current Account Line Items|
    |ACSPLT_WTNEW             |Proportion of New Withholding Tax                           |
    |ACSPLT_WTOLD             |Proportion of Old Withholding Tax                           |
    |ADDR1_SEL                |Address selection parameter                                 |
    |AEBPP_KNBK               |Additional Fields Bank Data Biller Direct                   |
    |AEBPP_LFBK               |Additional Fields Bank Data Biller Direct                   |
    |AFMIOI                   |Append for new fields ECC50/ERP                             |
    |AFMIOI_USFG              | SD order needs quantity                                    |
    |AFMISPS                  |Additional Fields for Table FMISPS                          |
    |AFM_ACCIT_EXTENSION      |Extension for FM Payment Update                             |
    |AFM_FAGL_GLT0_ACCIT_EXT  |Extension FM Account Assignments                            |
    |AFM_FI_BKPF_SUBST        |Append to Structure BKPF_SUBST                              |
    |AFM_FMFCTF               |Append for Fund Center substrings                           |
    |AFM_FMFINCODE            |Append for Fund substrings                                  |
    |AIFM01D                  |Append for IFM01D                                           |
    |AKNA1_FMFG               |US Federal Government Customer Master Data Additional Fields|
    |AKNA1_PSO                |Local Authority Additional Fields                           |
    |AKNB1_PSO                |IS-PS: Customer Master Record, Additional Data (Co.Code)    |
    |AKNBK_PSO                |Bank Details Dependent on Time and Account Holder           |
    |ALFA1_FMFG               |US Federal Government Vendor Master Data Additional Fields  |
    |ALFA1_PSO                |Local Authority Additional Fields (Address)                 |
    |ALFB1_FMFG               |PS fields for company code-specific master data field       |
    |ALFB1_PSO                |IS-PS: Data Appendix Vendor Master Record (Company Code)    |
    |ALFBK_PSO                |Bank Details Dependent on Time and Account Holder           |
    |ALVDYNP                  |ALV dialog screen fields                                    |
    |ALV_S_FCAT               |Field Catalog (for LVC and for KKBLO)                       |
    |ALV_S_FILT               |Filter Criteria (for LVC and for KKBLO)                     |
    |ALV_S_GRPL               |Group Levels (for LVC and for KKBLO)                        |
    |ALV_S_LAYO               |Layout (for LVC and for KKBLO)                              |
    |ALV_S_PCTL               |Structure for Checking Print in ALV                         |
    |ALV_S_PRNT               |Print settings (for LVC and KKBLO)                          |
    |ALV_S_QINF               |Structure for Quickinfos of Exceptions                      |
    |ALV_S_SGRP               |Field Groups (for LVC and for KKBLO)                        |
    |ALV_S_SORT               |Sort Criteria (for LVC and for KKBLO)                       |
    |ANBZ                     |Help structure for asset line item                          |
    |ANLZACCOUNT              |Additional Account Assignment Objects in Asset Accounting   |
    |ANLZACCOUNT_FKBER        |Account Assignment Objects: ANLZACCOUNT with Function Added |
    |ARC_PARAMS               |ImageLink structure                                         |
    |AT003_XBLNR2             |Append structure for US federal government                  |
    |AUSZ1                    |Clearing Table 1                                            |
    |AUSZ2                    |Clearing Table 2                                            |
    |AUSZ_CLR                 |Assign Clearing Item to Cleared Items                       |
    |AUSZ_CLR_ASGMT           |Assgt of Clrg Items - Cleared Items with Acct Assignment    |
    |AUSZ_INFO                |Open item data for clearing transactions                    |
    |AVBKPF_FMFG              |US federal                                                  |
    |AVBKPF_PSO               |IS-PS: Append Structure VBKPF for Payment Requests          |
    |AVBSEGDPSO               |IS-PS: Append Structure VBSEGD for Payment Requests         |
    |AVBSEGKPSO               |IS-PS: Append Structure VBSEGK for Payment Requests         |
    |AVIK                     |Payment Advice Header                                       |
    |AVIP                     |Payment Advice Line Item                                    |
    |BALHDR                   |Application log: log header                                 |
    |BALMT                    |Application Log: Structure for a formatted message          |
    |BAL_S_CLBK               |Application Log: Return routine definition                  |
    |BAL_S_CONT               |Application Log: Context                                    |
    |BAL_S_MSG                |Application Log: Message Data                               |
    |BAL_S_PAR                |Application Log: Parameter Name and Value                   |
    |BAL_S_PARM               |Application log: Parameters                                 |
    |BAPIASCONT               |Business Document Service: File Content ASCII               |
    |BAPIBDS01                |Business Document Service: Reference Structure for BAPIs    |
    |BAPICOMFIL               |BDS: Command File for Transport Entries                     |
    |BAPICOMPO2               |SBDS: Enhanced Component Information                        |
    |BAPICOMPO3               |SBDS: Enhanced Component Information                        |
    |BAPICOMPON               |Business Document Service: Component Table                  |
    |BAPICONNEC               |BDS: Structure for BDS Links                                |
    |BAPICONTEN               |Business Document Service: File Content                     |
    |BAPIDPROPT               |BDS: Structure for Properties                               |
    |BAPIFILES                |Business Document Services: Transfer Table for File Names   |
    |BAPIPROPER               |BDS: Structure for Properties                               |
    |BAPIPROPTL               |BDS: Structure for KPRO Properties                          |
    |BAPIQUERY                |BDS Structure for Query Table                               |
    |BAPIRELAT                |Business Document Service: Relations                        |
    |BAPIRET1                 |Return Parameter                                            |
    |BAPIRETURN               |Return Parameter                                            |
    |BAPISIGNAT               |Business Document Service: Signature Table                  |
    |BAPISRELAT               |Business Document Service: Relationship Table with Signature|
    |BAPIURI                  |Business Document Service: URI Table                        |
    |BDCMSGCOLL               |Collecting messages in the SAP System                       |
    |BDCRUN                   |Batch input: Runtime analysis                               |
    |BDIDOCSTAT               |ALE IDoc status (subset of all IDoc status fields)          |
    |BDI_SER                  |Serialization objects for one/several IDocs                 |
    |BDN_FKT                  |Business Document Navigator: Functions to be Excluded       |
    |BDWFAP_PAR               |Parameters for application function module - IDoc inbound   |
    |BDWFRETVAR               |Assignment of IDoc or document no. to method parameter      |
    |BDWF_PARAM               |Parameters for workflow methods for IDoc inbound processing |
    |BKDF                     |Document Header Supplement for Recurring Entry              |
    |BKDF_SUBST               |Process Interfaces: Substitutable fields during posting     |
    |BKORM                    |Accounting Correspondence Requests                          |
    |BKP1                     |Document Header Supplement for Update                       |
    |BKPF                     |Accounting Document Header                                  |
    |BKPFBU_ALV               |Document Overview: Display Document Headers in ALV Grid Ctrl|
    |BKPF_CARD                |Credit Card: Append for BKPF                                |
    |BKPF_LINE                |Item Category for XBKPF_TAB                                 |
    |BKPF_SUBST               |Process Interfaces: Substitutable Fields During Posting     |
    |BKPF_USFED               |Append structure for US federal government                  |
    |BLNTAB                   |Document Number Table for Financial Accounting              |
    |BNKA                     |Bank master record                                          |
    |BNKAAPP                  |Appendix to Table BNKA                                      |
    |BNKT                     |Conversion of temporary to internal bank keys               |
    |BOOLE                    |Boolean variable                                            |
    |BSEC                     |One-Time Account Data Document Segment                      |
    |BSEC_LINE                |Item Category for XBSEC_TAB                                 |
    |BSED                     |Bill of Exchange Fields Document Segment                    |
    |BSEE                     |Changeable Fields in the Line Item                          |
    |BSEG                     |Accounting Document Segment                                 |
    |BSEGL                    |Document Segment: Fields Derived for Line Layout Variant    |
    |BSEGS                    |G/L Item Transfer Structure for Single Screen Transactions  |
    |BSEGT                    |Transfer Table for the Tax Postings to be Generated         |
    |BSEGZ                    |Financial Acctg Doc.Segment: Extras and Temp. Storage Fields|
    |BSEG_ALV                 |Document Overview: Document Item Display in ALV Grid Control|
    |BSEG_LINE                |Item Category for XBSEG_TAB                                 |
    |BSEG_SUBST               |Process Interfaces: Substitutable Fields During Posting     |
    |BSET                     |Tax Data Document Segment                                   |
    |BSEU                     |Line Item Additional Information (Update)                   |
    |BSEZ                     |Line Item Additional Information (Online)                   |
    |BSEZ_LINE                |Line Item Category for XBSEZ_TAB                            |
    |BSID                     |Accounting: Secondary Index for Customers                   |
    |BSIK                     |Accounting: Secondary Index for Vendors                     |
    |BSIP                     |Index for Vendor Validation of Double Documents             |
    |BSIS                     |Accounting: Secondary Index for G/L Accounts                |
    |BSIX                     |Index table for customer bills of exchange used             |
    |BTXKDF                   |Fields for Exch.Rate Difference Posting for Taxes           |
    |BVOR                     |Intercompany posting procedures                             |
    |CACS_A_CRM_SALES_COND    |Additional CRM Fields (Construction) From Sales Order Area  |
    |CACS_A_CUST_COND         |Commissions: Customer Fields Condition Technique            |
    |CACS_A_FIELDSPRICING     |Append for Condition Technique Fields from Commission System|
    |CACS_S_CRM_SALES_COND    |Additional CRM Fields (Construction) From Sales Order Area  |
    |CACS_S_CUST_COND         |Condition Attributes                                        |
    |CACS_S_FIELDSPRICING     |Comm.: All Condition Technique-Relevant Commission Fields   |
    |CACS_S_FSINS             |Customer Fields for Condition Technique of Insurances       |
    |CCDATA                   |Payment cards: Database fields relevant to both SD and FI   |
    |CFW_LINK                 |CFW: Link Info of a Container                               |
    |CI_COBL                  |Extension                                                   |
    |CKI_ACCIT_ML             |Transfer from MM to ML in accit-structure                   |
    |CNTLSTRLIS               |Control stream list                                         |
    |COBK                     |CO Object: Document Header                                  |
    |COBK_ONLY                |Non-key fields only in COBK (INCLUDE structure)             |
    |COBL                     |Coding Block                                                |
    |COBLF                    |Coding block: Tax table structure                           |
    |COBL_COKZ                |Assignment types for CO account assignments                 |
    |COBL_DB_INCLUDE          |Include with Additional Account Assignments for DB Tables   |
    |COBL_EX                  |Coding Block for External Applications (Not CO/FI)          |
    |COBL_FI                  |Fields from COBL that Must not Be Overwritten in FI         |
    |COBL_FM                  |Additional Fields for FM                                    |
    |D010SINF                 |Generated Table for View D010SINF                           |
    |D020S                    |System table D020S (screen sources)                         |
    |D020T                    |Screen Short Description                                    |
    |DBSEG                    |Dialog Supplementation BSEG (Taxes)                         |
    |DD02L                    |SAP Tables                                                  |
    |DD03P                    |Structure                                                   |
    |DD03V                    |Table fields view                                           |
    |DD07V                    |Generated Table for View DD07V                              |
    |DD23L                    |Matchcode ID                                                |
    |DD32P                    |Interface structure for search help parameters              |
    |DDSHDEFLT                |Description of a default value for search help fields       |
    |DDSHDESCR                |Interface: elementary search helps of a search help         |
    |DDSHFPROP                |Characteristics of search help parameters                   |
    |DDSHIFACE                |Interface description of a F4 help method                   |
    |DDSHRETVAL               |Interface Structure Search Help <-> Help System             |
    |DDSHSELOPT               |Selection options for value selection with search help      |
    |DDSUX030L                |Nametab Header, Database Structure DDNTT                    |
    |DDSUX031L                |Nametab Structure, Database Structure DDNTF                 |
    |DDTYPES                  |Table of all Dictionary types and classes                   |
    |DFIES                    |DD Interface: Table Fields for DDIF_FIELDINFO_GET           |
    |DISVARIANT               |Layout (External Use)                                       |
    |DOKHL                    |Documentation: Headers                                      |
    |DPPROPS                  |General property structure for data provider                |
    |DTC_S_LAYO               |Structure for Design of Double Table Control                |
    |DTC_S_TC                 |Structure for table controls in the double table dialog box |
    |DTC_S_TS                 |Tab Title Structure                                         |
    |DYNPREAD                 |Fields of the current screen (with values)                  |
    |E071                     |Change & Transport System: Object Entries of Requests/Tasks |
    |E071K                    |Change & Transport System: Key Entries of Requests/Tasks    |
    |EAPS_20                  |Field Enhancements for EA-PS 2.0                            |
    |EDIDC                    |Control record (IDoc)                                       |
    |EDIDS                    |Status Record (IDoc)                                        |
    |EDIFCT                   |IDoc: Assignment of FM to log. message and IDoc type        |
    |EDIMESSAGE               |Transfer Structure with all Sy Fields for T100              |
    |EDI_DS                   |Status record for interface to EDI subsystem                |
    |EDI_HELP                 |Help Structure for Reference Fields in EDI Function Groups  |
    |EK05A                    |Communication Area Purchasing - Financial Accounting        |
    |ESKN                     |Account Assignment in Service Package                       |
    |EUDB                     |Development Environment Objects                             |
    |EUOBJ                    |Workbench: Development Objects                              |
    |EXCLTAB_LINE             |Lines of EXCLTAB with OK Code to be Deactivated             |
    |EXISTING_DOC             |Original Document                                           |
    |F05ACTRL                 |Control Fields for SAPMF05A and Subprograms                 |
    |FAGLBSEGL_S              |Additional Sender Flds from General Ledger for Doc. Overview|
    |FAGL_GLT0_ACCIT_EXT      |Line Information for Document Splitting                     |
    |FAGL_MIG_S_BUKRS_LEDGER  |Combination of Company Code and Assigned Ledgers            |
    |FAGL_SPLIT_FLD_S         |Characteristics Permitted for Split                         |
    |FAGL_S_APPLICATION       |Application and Subapplication                              |
    |FAGL_S_BALDIM            |G/L Characteristics of Document Split in New General Ledger |
    |FAGL_S_BUKRS             |Structure with Company Code                                 |
    |FAGL_S_BUKRS_EXT         |Structure: Company Codes --> Ledgers                        |
    |FAGL_S_CURTYPES          |Currency Types of a Ledger                                  |
    |FAGL_S_MIG_001           |Structure for Table FAGL_MIG_001 & FAGL_MIG_001_S           |
    |FAGL_S_MIG_MGPLN_EXT     |Structure: Extended Migration Plan Information              |
    |FAGL_S_T8G40_BS          |Split Fields with Characteristic "Balance Sheet"            |
    |FCRD_VBKPF               |Credit Card: Include for Appends for BKPF, VBKPF            |
    |FCRD_VBSEG               |Include for Appends for VBSE*                               |
    |FDM_AR_CASE_ATTR_1       |FSCM DM:                                                    |
    |FDM_AR_LINE_ITEM         |FSCM: DM                                                    |
    |FDM_AR_RFPOS             |FSCM-DM: Enhancemt of Line Item Disp. with Dispute Case Flds|
    |FELD                     |Screen Painter fields (internal)                            |
    |FICCO                    |Adjustment Values for External Document Items               |
    |FICCT                    |Totals Information for Interclient Posting                  |
    |FICTX                    |Tax Information for ICT                                     |
    |FIELDINFO                |Field attributes for a specific field                       |
    |FIN1_PARAM               |OBNG: Trans. structure for official doc. numbering (global) |
    |FIN1_PARAM_FI            |OBNG: FI parameters                                         |
    |FIN1_PARAM_MM            |OBNG: MM Parameters                                         |
    |FIPEX_STRUC              |Subfields Commitment Item                                   |
    |FIPOEXT                  |Help structure for line items to be generated automatically |
    |FIREVDOC                 |Transfer Structure for Dialog Module FI_DOCUMENT_REVERS     |
    |FISTL_STRUC              |Substructure Fund Center                                    |
    |FM01                     |Financial Management Areas                                  |
    |FMBLSTRING_COMPONENTS    |Component of the BL String                                  |
    |FMCI                     |Commitment items master data                                |
    |FMDY                     |FIFM: Screen Fields                                         |
    |FMFCTR                   |Funds Center Master Record                                  |
    |FMFG_ACCIT_EXTENSION     |Extention for all fields that have to be transfered into BL |
    |FMFINCODE                |FIFM: Financing code                                        |
    |FMFPO                    |FIFM: Commitment Item                                       |
    |FMHRBA_NEG_DOC_TYPES     |HR Integration: Doc. Types for Negative Funds Commitments   |
    |FMHRBA_SETTINGS          |Integration with HR: Settings                               |
    |FMHRBA_VAD_SETTINGS      |HR Integration: Generate Value Adjustment Docs for Changes  |
    |FMICCN                   |FM: Append Structure for FMIOI (CCN Fields)                 |
    |FMIDATA                  |Common Data for Funds Management Actual Data                |
    |FMIDATAFI                |Clean FI Data for Funds Management Actual Data              |
    |FMIDATAOI                |Clean Open Item Data for Funds Management Actual Data       |
    |FMIFIIT                  |FI Line Item Table in Funds Management                      |
    |FMIKEY                   |Common Key for Funds Management Actual Data                 |
    |FMIKEYFI                 |FI - Key for Funds Management Actual Data                   |
    |FMIKEYOI                 |Common Key for Funds Management Actual Data                 |
    |FMIOI                    |Commitment Documents Funds Management                       |
    |FMIOIKEY                 |Key for Table FMIOI                                         |
    |FMIOI_USFG               | SD order needs quantity                                    |
    |FMIREF                   |Ref. Funds Management Actual Data to Preceding Document     |
    |FMISPS                   |General Parameters for Funds Management                     |
    |FMIT                     |Totals Table for Funds Management                           |
    |FMMRESERV                |Include for the Reduction of Funds Reservations (FM)        |
    |FMRFC                    |Function Modules and their RFC Destinations                 |
    |FMSP_SPLIT_FIELDS        |PSM Fields used in multiple account splitting               |
    |FMT001                   |Additional Customizing for Funds Management                 |
    |FMUP00T                  |Update Profiles                                             |
    |FMUP01                   |Update Control with Value Type Dependency                   |
    |FMUP_INV_KEY             |Extension for FM Update: FI Key of Invoice                  |
    |FMUP_PAY_KEY             |Extension for FM Update: FI Key of Payment                  |
    |FS006                    |Fields for Optical Archiving                                |
    |FTCHECK                  |Foreign Trade: Import Simulation - Ctrl Fields for Pricing  |
    |FTEXTS                   |Communication Structure for Additional Components           |
    |FTGENERAL                |Foreign Trade: General Fields Item                          |
    |FUND_STRUC               |Substructure Fonds                                          |
    |FVD_TZB0A                |Append to TZBOA: Loans Fields                               |
    |GLACCOUNT_CCODE          |G/L Account Master Record: Company Code                     |
    |GLACCOUNT_CCODE_DATA     |G/L Account Master Record: Company Code - Data              |
    |GLACCOUNT_CCODE_INFO     |G/L Account Master Record: Company Code - Information       |
    |GLACCOUNT_CCODE_KEY      |G/L Account Master Record: Company Code - Key               |
    |GLX_ORG_INFO             |Organizational Assignment                                   |
    |GMBSEGZ                  |Grants Management Add-on                                    |
    |GXXLT_H                  |XXL interface: horizontal features                          |
    |GXXLT_O                  |XXL_interface: texts for online display                     |
    |GXXLT_S                  |XXL interface: structure of the semantics table             |
    |GXXLT_V                  |XXL interface: vertical features                            |
    |HELPVAL                  |Restrict Value Range - Transfer Table                       |
    |HELP_INFO                |Transfer Values for the Help Processor                      |
    |HELP_VALUE               |Structure or Function Module HELP_VALUE_GET_FOR_TABLE       |
    |HHM_COBL                 |Include for COBL from FM                                    |
    |IADDR_PSO                |Local Authority Additional Fields (Address)                 |
    |IBKPF_PSO                |IS-PS: Include Structure BKPF Payment Request Doc.Header    |
    |ICDIND                   |Structures for generating change document update programs   |
    |ICON                     |Icons table                                                 |
    |ICONS                    |Icons                                                       |
    |ICURR                    |Interface for Currency Translation                  

Maybe you are looking for

  • Unable to find Web Service Data Control in Menu

    Hi I am trying to call a web service from ADF. For that, I want to create a web service data control As I understand, if I right click on the Model project, I should see the Web Service Data control under Business Tier > Web Services. (as shown in Se

  • Modifications in Transaction  S_ALR_87013611( Report Writer )

    Hi Gurus, I have a Standard transaction S_ALR_87013611 which in turn calls the transaction KSB1.This former transaction is developed using report writer. The Issue is that when I give Cost Center Values twice in the selection screen with multiple val

  • Stock of variant material in variant configuration

    hi gurus, im doing variant congiguration in that i have some doubts, for example if i'm doing varian config for a car here variants are engine,gearbox,colour etc. now my doubt how can we maintain stock for these variants,and also when i make a sale o

  • Advantages of SSRS over SAP HANA

    We are looking into options for developing reports. The data sources are SAP HANA ad Oracle/SQL Server. The two reporting options we are looking at are SSRS and SAP HANA. I would like to know if SSRS is advantageous over SAP HANA. If yes, please spec

  • Problem when Entering Decimal Values at Input Ready Query

    Hi Everyone, I have created Input ready query but when I am going to enter decimal values in input cell it takes as a round of value. Example:- If I enter 1.234 value at input cell it takes as a 1 or if I enter 1.789 value then it takes as a 2 at cel