SAP PAL : No ScriptServer available. See SAPNote 1650957

Hello SCN folks,
Well, the following seems to be a common error to most of the beginners with SAP PAL.
The error itself describes clearly that the scriptserver is not running. But I did refer to note 1650957. Now, my scriptserver is running. I restart HANA instance and now when I run the below query(source : SAP developer guide)
CALL _SYS_AFL.TRIPLESMOOTH_TEST_PROC(PAL_TRIPLESMOOTH_DATA_TBL, "#PAL_CONTROL_TBL", PAL_TRIPLESMOOTH_RESULT_TBL) WITH OVERVIEW;
I still get the following  error.
Could not execute 'CALL _SYS_AFL.TRIPLESMOOTH_TEST_PROC(PAL_TRIPLESMOOTH_DATA_TBL, "#PAL_CONTROL_TBL", ...' in 114 ms 771 µs .
SAP DBTech JDBC: [2048]: column store error: search table error:  [34091] No ScriptServer available. See SAPNote 1650957 for further information.
So, I recheck the configuration again and I see that scriptserver is set to 1 and is active :
Did anyone experience the same situation before?
Anyone has an idea on how to fix this?
Any suggestions would be highly appreciated.
Thanks and Regards
Sangamesh

Hello Ravindra,
Many thanks for your reply.
After your post I re-executed from scratch:
The code here is as follows:
Create Schema DM_PAL;
SET SCHEMA DM_PAL;
DROP TYPE PAL_TRIPLESMOOTH_DATA_T;
CREATE TYPE PAL_TRIPLESMOOTH_DATA_T AS TABLE("ID" INT, "RAWDATA" DOUBLE);
DROP TYPE PAL_TRIPLESMOOTH_RESULT_T;
CREATE TYPE PAL_TRIPLESMOOTH_RESULT_T AS TABLE("TIME" INT, "OUTPUT" DOUBLE);
DROP TYPE PAL_CONTROL_T;
CREATE TYPE PAL_CONTROL_T AS TABLE("NAME" VARCHAR(100), "INTARGS" INT, "DOUBLEARGS" DOUBLE, "STRINGARGS" VARCHAR(100));
DROP TABLE PAL_TRIPLESMOOTH_PDATA_TBL;
CREATE COLUMN TABLE PAL_TRIPLESMOOTH_PDATA_TBL("ID" INT,"TYPENAME" VARCHAR(100),"DIRECTION" VARCHAR(100));
INSERT INTO PAL_TRIPLESMOOTH_PDATA_TBL VALUES (1,'DM_PAL.PAL_TRIPLESMOOTH_DATA_T','in');
INSERT INTO PAL_TRIPLESMOOTH_PDATA_TBL VALUES (2,'DM_PAL.PAL_CONTROL_T','in');
INSERT INTO PAL_TRIPLESMOOTH_PDATA_TBL VALUES(3,'DM_PAL.PAL_TRIPLESMOOTH_RESULT_T','out');
GRANT SELECT ON DM_PAL.PAL_TRIPLESMOOTH_PDATA_TBL TO SYSTEM;
CALL SYSTEM.AFL_WRAPPER_ERASER('TRIPLESMOOTH_TEST_PROC');
CALL SYSTEM.AFL_WRAPPER_GENERATOR('TRIPLESMOOTH_TEST_PROC','AFLPAL','TRIPLESMOOTH',PAL_TRIPLESMOOTH_PDATA_TBL);
DROP TABLE #PAL_CONTROL_TBL;
CREATE LOCAL TEMPORARY COLUMN TABLE #PAL_CONTROL_TBL ("NAME" VARCHAR(100), "INTARGS" INT, "DOUBLEARGS" DOUBLE, "STRINGARGS" VARCHAR(100));
INSERT INTO #PAL_CONTROL_TBL VALUES ('RAW_DATA_COL',1, NULL, NULL);
INSERT INTO #PAL_CONTROL_TBL VALUES ('ALPHA', NULL,0.822, NULL);
INSERT INTO #PAL_CONTROL_TBL VALUES ('BETA', NULL,0.055, NULL);
INSERT INTO #PAL_CONTROL_TBL VALUES ('GAMMA', NULL,0.055, NULL);
INSERT INTO #PAL_CONTROL_TBL VALUES ('CYCLE',4, NULL, NULL);
INSERT INTO #PAL_CONTROL_TBL VALUES ('STARTTIME',0, NULL, NULL);
INSERT INTO #PAL_CONTROL_TBL VALUES ('FORECAST_NUM',6, NULL, NULL);
DROP TABLE PAL_TRIPLESMOOTH_DATA_TBL;
CREATE COLUMN TABLE PAL_TRIPLESMOOTH_DATA_TBL LIKE PAL_TRIPLESMOOTH_DATA_T ;
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (0,362.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (1,385.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (2,432.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (3,341.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (4,382.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (5,409.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (6,498.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (7,387.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (8,473.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (9,513.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (10,582.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (11,474.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (12,544.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (13,582.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (14,681.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (15,557.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (16,628.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (17,707.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (18,773.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (19,592.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (20,627.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (21,725.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (22,854.0);
INSERT INTO PAL_TRIPLESMOOTH_DATA_TBL VALUES (23,661.0);
DROP TABLE PAL_TRIPLESMOOTH_RESULT_TBL;
CREATE COLUMN TABLE PAL_TRIPLESMOOTH_RESULT_TBL LIKE PAL_TRIPLESMOOTH_RESULT_T;
ALTER SYSTEM ALTER CONFIGURATION ('daemon.ini', 'host', 'imdbhdb') SET ('scriptserver','instances') = '1' WITH RECONFIGURE;
CALL _SYS_AFL.TRIPLESMOOTH_TEST_PROC(PAL_TRIPLESMOOTH_DATA_TBL, "#PAL_CONTROL_TBL", PAL_TRIPLESMOOTH_RESULT_TBL) WITH OVERVIEW;
SELECT * FROM PAL_TRIPLESMOOTH_RESULT_TBL;
This code was available from SAP developer guide.
The schema name is also added to the signature table.
When I re execute the whole process, I get the same error again. I think I am missing something which I cannot figure out.
Thanks
Sangamesh

Similar Messages

  • Web-dynpro application -ERROR: ICF service node "/sap/bc/webdynpro/sap/zqm_cto_arr_general1" does not exist (see SAP Note 1109215) (termination: ERROR_MESSAGE_STATE)

    i have created my web-dynpro application in development. and sent to quality . whenever i will execute my dynpro in quality  i got one message
    ERROR: ICF service node "/sap/bc/webdynpro/sap/zqm_cto_arr_general1" does not exist (see SAP Note 1109215) (termination: ERROR_MESSAGE_STATE)
    whenever i saw  sicf  transaction my web-dynpro is not seen . my dynpro application name is more then 15 character. what i will do . please give me valuable suggestion.....

    Hi Ashok,
                   for your requirement the application is not exist in particular place. It means, the webdynpro application is saved at different package or different location.
                  Please change the webdynpro component name and save it in particular request in package, then transport it to quality ..(development server )
    then go to SICF  t.code .. sap->bc->webdynpro->sap->find  out your application and activate the service of your webdynpro application.
    Now test it ... this solution might helpful to you .
    Regards,
    Naveen M

  • No other column available (see long text!) error

    Hi,
    I designed a Custom smartform wth 2 differenet pages having diferent functionality.
    when I tried to test the form , it's showing the following Exception.
    FORMATTING_ERROR, and the following the Message.
    No other column available (see long text!).
    Could any one plz guide me.
    Thanks
    Natasha SS.

    Hi,
    Check
    - windows/Template on the smartform are aligned properly within the page size.
    - amount or quantity fields are assigned with CUKY/MEINNS
    check the [link|Formatting Error in smartform] for more help

  • SAP Note 0001613410 not available

    Hi experts,
    when I try to download SAP Note 1613410 (SolMan 7.1 SP3) I get the error SAP Note 0001613410 not available. Has anybody a similar issue? I get the same message when I try to read the note in service marketplace....
    Regards, Basti

    Hi Basti,
    The Note is available again now..
    The central corrective note was updated today.
    As a pitty, during editing is the SAP Note not available via SNOTE and Support Portal.
    Regards,
    Ruediger

  • Icm trace level if smicm and SAP MMC are not available ( CE system on Unix)

    Hi Experts,
    Could you please let me know how will I increase the icm trace level if SMICM transaction code and SAP MMC are not available.
    I have an CE 7.2 system running on HP UNIX.
    Thanks and Regards
    Syam

    http://help.sap.com/saphelp_nw70/helpdata/en/0b/6aedff404d6b4a8cac8f1359e1b47c/frameset.htm
    kill -USR2 <pid>
    Markus

  • Character Count in Message app too pale, I can't see it. Can I make it bigger & black instead of grey

    Character Count in Message app too small and pale, I can't see it. 
    (My eyes, like the rest of me, are over 50)
    I have used Settings - Accessibility  to increase font size which is wonderful so now I can read what I'm typing,  but still cant see the character count.
    Can I make the charater count use a bigger font?
    Can I have it black instead of grey?
    ANd can I change the whilte-on-green for sent messages into well constrasted colours (like the old iPhone 3G?) so I can read them too?

    Thank you Malcolm, that was a good idea ... it seems to have improved the text in the messages I;ve received and a slight improvement in the white-on-green of the snet messages. 
    Sadly did not affect the character count.
    I fear it begins to look as if the character count has been overlooked by the designers at Apple and is left "outside" the range of things affected by the accessibility options. What do you think?

  • SAP-BW Properties not available in Crystal & Missing Context Menu

    Dear experts,
    Creating a crystal report on a SAP-BW 3.5 query we have the following problem:
    In SAP-BW query we defined a restricted key figure with property 'Calculate single value as Ranked list (olympic)'.
    Within SAP-BW it works correctly; in Crystal Reports we see the key figure without the defined property.
    Example
    SAP-BW
    Customer Revenue    ||       Rank (olympic)
    4711 EUR ||        1
    4812 EUR                   ||        2
    4812 EUR                   ||        2
    4913 EUR                   ||        4
    Crystal Reprts
    Customer Revenue   ||         Rank (olympic)
    4711 EUR                  ||          4711 EUR
    4812 EUR                  ||          4812 EUR
    4812 EUR                  ||          4812 EUR
    4913 EUR                  ||          4913 EUR
    Could anyone give us an advice to solve this?
    We tried to solve this problem within Crystal reports using u2018Calculated Elementsu2019 and got another, more serious problem.
    According to Crystal Help and documentation the way to insert a calculated element such as a rank is to click onto an element in a dimension and chose u2018Calculated Elementu2019 -> Add.
    Our problem is we donu2019t see this entry within the context menu! Due to the fact that we need this functionality a quick answer to this this question would be highly appreaciated.
    Thanks in advance
    Regards
    Hagen

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Running SAP XI in High Availability

    Bonjour a vous tous !
    I am looking for best practices when running SAP Exchange Infrastructure (3.0, well it is now XI 7.0 with the new NW2004s – SP9) in High Availability mode.
    The customer that I work with does not know yet on which platform its production environment will be (Unix/Oracle vs Microsoft/SqlServer 20005). I know that some hardware vendor has built-in HA capabilities, either Software/Hardware based (MSFT MCS, IBM HACMP, etc).
    Should we go for an "SAP XI all-In One" installation or distributed one ?  Should we get one central SLD or one per environment? What is the role of the SLD and Solution Manager? Do they need to be interconnected?
    I have worked with other EAI middlewares (Biztralk Server and webMethods) and normally the Integration Engine sit on it's own server and the various adapters are on their respective servers (i.e.: one server for HTTP, one server for FTP, one server for EJB, etc), since the sizing (RAM. Java heap memory, etc) for all theses adapters are different (FTP a lot of small file, EJB not so many request, but they could eat-up a lot of CPU, etc). Is this a best practice that I can apply also with SAP XI ?
    Thank in advance for you help !
    A+

    Hi Michel,
    Well we seem to work along the same track...
    I am working on 2 customers concurrently - the one using like you using PI 7.0. In their case we implemented a Windows solution using W2K3 Enterprise Edition 64-bit. Avoid 32-bit as it will no longer be supported by SAP next year. We are using MSCS (which is part of the Enterprise Edition by default).
    The 2nd is a solaris customer (very large) for which we are using a cross-data center solution handled by Veritas Cluster Manager with automatic failover between systems and data centers if required.
    Some answers to your questions:
    1. All-in-one - yes
    2. SLD - one for DEV/QA, and separate for Prod - this is recomended by SAP too - I can mail you a guide if needed
    3. With Solution Manager 4.0, it now supports the J2EE side and hence can understand SLDs. The concept is to setup an HA Solution Manager and deploy the SLD for Prod on the same piece of kit.
    4. SAP do not recomend splitting off the Adapter Engine except for specific cases, the main reason being if you have specific systems behind firewalls that you need to communicate with.
    Under no circumstances should you have separate AE's per adapter - this would be an extermely expensive solution hardware and support-wise.
    Regards
    Brian

  • SAP BO Explorer XI4 available to test

    Hi,
    Is the BO Explorer XI4 available for testing before the general release? Our company is participating in the ramp up but I don't see an option to download BO Explorer XI 4 in service market place.
    Thanks,
    Abhi

    Hi Amr,
    Thanks for the reponse.
    Do you know if I can get a copy of ramp up version of XI4 Explorer? I have to prepapre a presentation on Explorer capabilities and was wondering if I can get access to the latest version.
    Thanks again.
    Abhi

  • SAP Kernel 7.20 Availability

    Hello
    Any idea about the release information for the SAP Kernel 7.20?
    Regards
    Siva Nathan

    General availability to customer / ready to use, my question is more related to development happening in Kernel 7.20 by SAP.

  • Is SAP Software Distribution Center available?

    Hello Guru,
    In the past, I can go to the link to download IDES Solution or IDES ECC6 SR2.
    But Today I got to there again but I can not see anything.  T_T
    What's happen about my User? My AUTH has been changed, hasn't it?
    So I just would like to know other guy can access the download link or not?
    Regards and Thank you very much.
    Path:
    Installations and Upgrades => SAP Application Components => IDES SOLUTIONS  (I don't see anything).
    Installations and Upgrades => SAP Application Components => SAP ERP (I see only SAP ERP 2004).

    Some times ago same case appeared with me also. I raised an OSS message and they have updated the link on our customer number. There was some mapping problem with SAP side
    Regards,
    Subhash

  • How to make Adobe acrobat feature to convert SAP  Pages to PDF available for multiple users connected to the same server

    We have installed Adobe Acrobat X Pro- English,Francais,Deutsch version 10.1.9 in our test environment and tried  testing it for converting SAP pages into PDF with a few pilot users. In doing so we faced a challenge, where only one user at a time can use Adobe Acrobat PRO to convert SAP pages in to PDF.As long as the first user who  is connected to Adobe Acrobat Pro via SAP isn’t logged off, other users connected to the same  server  are not being able to get the “Save As” dialog box to save the PDF in their preferred location.
    This is a business requirement and we need an urgent solution for the same. Can anyone help us in telling us if this is possible and if yes the how to go about?

    It's not something we deal with here, the LiveCycle products are a different world. Key points: Adobe LiveCycle is a range of products, some desktop, some server. LiveCycle PDF Generator is the one you should look at, it comes in 3 editions. License terms are by negotiation. Key management is via its Java API.

  • How to make Adobe acrobat feature to convert SAP  Pages to PDF available for multiple users connected to the same Citrix server

    Hi,
    In my previous endeavours to solve this business requirement where multiple users will be able to use the Adobe acrobat feature to convert SAP pages inside SAP to PDF, I was told that it is not possible to do this for multiple users at the same time. However I have found an article according to which it says it is possible. Could you check it once and let me know if this article can be used for implementing the requirement stated above as this link clearly indicates that Adobe Acrobat is supported on Citrix.
    Please find the link below where it states it is adobe acrobat is supported in Citrix for multiple users.
    http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/citrix.html.

    1. What is the Acrobat feature that you mean? There's nothing specific to SAP included with Acrobat.
    2. Yes, some Terminal Server configurations appear supported (check carefully). All users of the terminal server will need a license, so far as I know - total licenses = total individual people using.

  • Help!  My MacBook Pro screen keeps going black and I have to reboot.  I have sent the error report numerous times to Apple to no avail (See below).  I also took it into the Mac store and they reinstalled Lion to no avail.

    Interval Since Last Panic Report:  180115 sec
    Panics Since Last Report:          5
    Anonymous UUID:                    764A6CDF-38B8-42FA-86EE-E2A7E7C27370
    Thu Oct 27 11:16:27 2011
    panic(cpu 2 caller 0xffffff7f8098b04f): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xffffff809fb8e000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 2), Frame : Return Address
    0xffffff807c0d2fb0 : 0xffffff8000220702
    0xffffff807c0d3030 : 0xffffff7f8098b04f
    0xffffff807c0d30c0 : 0xffffff7f80a7b13c
    0xffffff807c0d3110 : 0xffffff7f80a7b1fc
    0xffffff807c0d3170 : 0xffffff7f80d27749
    0xffffff807c0d32b0 : 0xffffff7f80a9a259
    0xffffff807c0d32e0 : 0xffffff7f8099498a
    0xffffff807c0d3390 : 0xffffff7f8099028c
    0xffffff807c0d3580 : 0xffffff7f8099155f
    0xffffff807c0d3640 : 0xffffff7f81801220
    0xffffff807c0d36f0 : 0xffffff7f81828a75
    0xffffff807c0d3770 : 0xffffff7f81813453
    0xffffff807c0d37d0 : 0xffffff7f8181384e
    0xffffff807c0d3820 : 0xffffff7f81813bf6
    0xffffff807c0d38b0 : 0xffffff7f81814817
    0xffffff807c0d38e0 : 0xffffff7f817cc0a4
    0xffffff807c0d3aa0 : 0xffffff7f81814f70
    0xffffff807c0d3b60 : 0xffffff7f817c910d
    0xffffff807c0d3bc0 : 0xffffff80006523be
    0xffffff807c0d3be0 : 0xffffff8000652c9a
    0xffffff807c0d3c40 : 0xffffff800065343b
    0xffffff807c0d3d80 : 0xffffff80002a3898
    0xffffff807c0d3e80 : 0xffffff8000223006
    0xffffff807c0d3eb0 : 0xffffff8000214829
    0xffffff807c0d3f10 : 0xffffff800021bb58
    0xffffff807c0d3f70 : 0xffffff80002ae8a0
    0xffffff807c0d3fb0 : 0xffffff80002d8383
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.1.2)[3B24E838-5E73-362B-97FA-239F5AEE7D81]@0xffffff7f809 2a000->0xffffff7f80c03fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.7)[6D54F06A-46B7-37FC-AF22-DE68DC18A1A3]@0xffff ff7f808b5000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[6517D9A6-58F5-3CFC-B021-C882306150D5]@0xff ffff7f80918000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[55FF26D3-292D-3B4B-8AB7-1D25C8B4313B]@0 xffffff7f808e0000
             com.apple.nvidia.nv50hal(7.1.2)[2E84958C-1EEC-316B-9F7A-68C368F83476]@0xffffff7 f80c04000->0xffffff7f80f25fff
                dependency: com.apple.NVDAResman(7.1.2)[3B24E838-5E73-362B-97FA-239F5AEE7D81]@0xffffff7f809 2a000
             com.apple.GeForce(7.1.2)[61E6C721-447E-39D3-BAB8-2A661467B517]@0xffffff7f817be0 00->0xffffff7f8187dfff
                dependency: com.apple.NVDAResman(7.1.2)[3B24E838-5E73-362B-97FA-239F5AEE7D81]@0xffffff7f809 2a000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[6517D9A6-58F5-3CFC-B021-C882306150D5]@0xff ffff7f80918000
                dependency: com.apple.iokit.IOPCIFamily(2.6.7)[6D54F06A-46B7-37FC-AF22-DE68DC18A1A3]@0xffff ff7f808b5000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[55FF26D3-292D-3B4B-8AB7-1D25C8B4313B]@0 xffffff7f808e0000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 1204461918012
    last loaded kext at 65185401410: com.apple.driver.AppleHWSensor          1.9.4d0 (addr 0xffffff7f81e98000, size 28672)
    last unloaded kext at 288377302774: com.apple.driver.AppleUSBUHCI          4.4.5 (addr 0xffffff7f81109000, size 65536)
    loaded kexts:
    com.vara.driver.VaraAudio          1.0.3
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AppleMikeyDriver          2.1.3f7
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AGPM          100.12.42
    com.apple.driver.AppleIntelHDGraphics          7.1.2
    com.apple.driver.AppleIntelHDGraphicsFB          7.1.2
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.GeForce          7.1.2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleMuxControl          3.0.16
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AirPort.Brcm4331          512.20.18
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleUSBEHCI          4.5.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.0.0
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.nvidia.nv50hal          7.1.2
    com.apple.NVDAResman          7.1.2
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.kext.triggers          1.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IO80211Family          411.1
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOUSBFamily          4.5.3
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.100.98.75.18)
    Bluetooth: Version 4.0.1f4, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    Looks like an issue with the GPU or with VRAM. You do have a third-party extension loaded, so you might try working in Safe Mode to see if the panics cease. If they do then uninstall the software for VaraAudio to determine if its driver is the cause. Also disconnect any third-party peripherals.

  • SAP-Exit option not available in Query Designer

    Hi,
    I'm trying to create a variable in BEx Query Designer that is processed by a SAP-Exit . But I don't have the option "SAP-Exit" in the drop down menu for processing type (from SAP-Help: In the variables editor, choose the processing type SAP Exit from the General tab page.).
    Am I missing any rights? Any ideas where the problem might be or is this just not possible at all and I have to use a customer exit?
    Regards,
    Alexander

    Hi, I think I didn't explain my problem right:
    I'm trying to use a variable in BEx Query Designer created by SAP that will be processed by a SAP-Exit. How can I add a SAP variable in BEx? I thought I have to create an own variable and assign "SAP-Exit" as processing type . But obviously this is wrong as I don't have the option for processing type "SAP-Exit". Any ideas?
    Thanks,
    Alex

Maybe you are looking for

  • I set up my mac mail account on the computer using all the same info as the phone but I still can't get mac mail on the computer.

    Ever since icloud came out my desktop has been a traffic jam of pop ups. Apple Passwords are recognized in one app but rejected in another. I'm never able to set up my .mac mail it just won't receive. The new iphoto is a complicated mess. Once you em

  • Why can't I use my iCloud Email Address as my Apple ID?

    Why won't Apple allow us to use their own @icloud.com domain for an Apple ID. This has upset me since the inception of MobileMe; it makes perfect sense that many people would prefer to use their iCloud email address as there Apple ID. We've all had M

  • Airport no longer connects

    Airport on my PowerBook doesn't connect. It was previously connecting to my Belkin Pre-N which quit again, and is again on it's way back to Belkin for repair. In the mean time, I've been connecting it to my iMac's airport through a shared connection,

  • Computer not recognizing my Nano(1st) Gen

    Usually when I plug in my nano my computer will make a noise, then it will update my iPod if I have put on any new songs, well for some reason my compuer no longer recognizes my nano, although it will still charge, anyone know what the problem is or

  • Proxy triggering in central instance but not in application

    Hi friends, There is one report which triggers the proxy. but this is not triggering in application servers and it is working fine when i trigger it in central instance. In this case i am executing this report in background and at that  time i can't