Submit and return exporting list to memory is not working in background

Hi gurus,
i am using submit statement and exporting list to memory. it works fine in foreground and i am able to get the output. but in case of background , it is not exporting the list.PLease help me on this.
Thanks and regards,
Rajeshwar

Hello Rajeshwar,
This is a duplicate thread. You have a thread with the same question.
[list_to_memory is not working in background;
Jayant Sahu

Similar Messages

  • "EXPORTING LIST TO MEMORY"  doesn't work

    Hi experts!
    In my program I need to update a vew deliveries using transaction VT04 and get from log numbers of updated deliveries. My code is:
    SUBMIT RV56TRGN USING SELECTION-SET 'VAN SALE/VT04'
    EXPORTING LIST TO MEMORY AND RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = list_tab
    EXCEPTIONS
    not_found = 1
    OTHERS = 2.
    I get error:
    "Set screen is not allowed in subscreens"
    But when I run code:
    SUBMIT RV56TRGN USING SELECTION-SET 'VAN SALE/VT04' AND RETURN.
    It runs OK.
    Where may be the problem?

    test

  • Submit program exporting list to memory and return in background

    Dear Experts,
    I am using the following code in one of my program to get opening and closing stock of a material.
    SUBMIT RM07MLBD
             WITH MATNR IN LOC_R_MATNR
             WITH WERKS IN LOC_R_WERKS
             WITH DATUM IN LOC_R_DATE
             WITH PA_SUMFL = WL_X
             AND RETURN
             EXPORTING LIST TO MEMORY.
    The program is working fine when executed in foreground. however when executed in background the job is cancelled. I tried to debug in background through SM50 and found that the program is terminated(No short dump but debug screen is closed and i dont see this program running in SM50) when the above code is executed.
    I found in the forum that when an ALV report is submitted in background it does not work. In my case the standard program is producing an ALV list (not ALV grid though).
    How would i avoid this situation because the program i am submitting is a standard program.
    What is the best solution to avoid from background jobs being cancelled when the above code is executed. Is there an alternate way that i can use to submit the program  and get data.
    Thanks in advance.
    Rajesh.

    Hi Rajesh,
    Just excute your standard program with the same input in back ground mode and check
    out put is coming or not .
    If output is not coming search by sy-batch and make the break points there and Ideantify
    the problem.
    When you execute the standard program  in back ground mode If the output is come it should in your Zreport also.
    I tried in my system in background mode also the output is coming for me.
    Thnx,
    Sam.

  • Submit  ALV report in Background & exporting list to memory and return

    Dear all,
    I created one Z program (ZPROGRAM2). 
    Here i use SUBMIT ZPRORAM1_ALV exporting list to memory and return.
    call function 'LIST_FROM_MEMORY'.
    call function 'TABLE_COMPRESS' .
    ZPRORAM1_ALV output i send mail.
    This all are working in foreground.
    If i schedule ZPROGRAM2 in background. that SUBMIT ZPRORAM1_ALV statement not working.
    Please give me the Solution.
    Thanks,
    Durai.V

    It is because of the ALV output that you are using. Check the condition sy-batch = 'X' (background processing) and then display a classical report. It will work then.
    Thanks,
    Jayant

  • Need help in Exporting list to memory and return in background

    Hello Experts,
    I have a program which reads data from mc.9 by exporting list to memory.When I run it in foreground its working fine . However if I schedule it as a  background program it is unable to get list from memory.
    Any help will be appreciable.
    Thank you

    Hi jayaram,
    I tried to do as you said. Its creating spool request and status to completed (sm37 instead of sm36 bcoz i don't hv authorization in production server). Now I didn't see any errors in job log. But data coming to ztable is as usual ( all are ZEROS).
    Hey when i tried doing it as below
      SUBMIT RMCB0300 WITH SL_WERKS-LOW = P_WERKS
                      WITH SL_LGORT = 'W001'
                      WITH SL_SPMON-LOW = P_FPERIOD
                      WITH SLV_NO = 'MC.9N'
                      WITH SL_SPMON-HIGH = P_FPERIOD EXPORTING LIST TO MEMORY AND RETURN .
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LISTOBJECT
        EXCEPTIONS
          NOT_FOUND  = 4
          OTHERS     = 8.
      IF SY-SUBRC <> 0.
        if SY-SUBRC = 4.
          message 'not_found' type 'i'.
        ELSEIF SY-SUBRC = 8.
          message 'others' type 'a'.
        endif.
      ENDIF.
    I found that my job with completed status but with in job log i found error of type I means that the error is with notfound type in exceptions.
    Hey sorry for the postings may be due to some issues Im unable to see what i have replied in postings that's why im posting repeatedly..
    Edited by: Praveen Pathuri on Apr 23, 2009 7:30 AM
    Edited by: Praveen Pathuri on Apr 23, 2009 7:55 AM

  • Problems with SUBMIT and EXPORTING LIST TO MEMORY

    Hi,
    I have a program that executes another report using a submit call, then the output of this submit is retrieved to the program using the LIST_TO_MEMORY FM. Source code it's something like this:
    SUBMIT rptime00
                 EXPORTING LIST TO MEMORY AND RETURN
                 WITH SELECTION-TABLE t_params
                 USER 'my_user'.
    CALL FUNCTION 'LIST_FROM_MEMORY'
         TABLES
             listobject = t_table
         EXCEPTIONS
             not_found  = 1
             OTHERS     = 2.
    This code works fine if I execute the program in foreground. But when I try to execute the report in background (F9 instead of F8 for example), submit works fine but LIST_FROM_MEMORY returns a NOT FOUND exception instead of the output of submitted program.
    So, is it possible to retrieve the output of a program called via submit when the report that executes the submit is executed in background?, how can I retrieve the output of submit when the report is executed in background?
    thanks in advance

    try
    SUBMIT rptime00
                 EXPORTING LIST TO MEMORY AND RETURN
                 WITH SELECTION-TABLE t_params.
    without user
    hope that helps
    Andreas

  • Will SUBMIT report EXPORTING LIST TO MEMORY work, when Run in Background?

    You can use SUBMIT <report> EXPORTING LIST TO MEMORY, and then Call the FM LIST_FROM_MEMORY to get the Data.
    This works fine, when the Program is Run in Foreground. My question is, will it work when I Run the Program in Background? i.e. When I Run the Program in Background, will the SUBMIT Statement, Export the List to Memory? Because only then the FM LIST_FROM_MEMORY will get the Data.
    Any alternate solution to meet the same requirement will be appreciated.

    It works for me... my spool output looked like:
    11.01.2008          JC: Calling program - test list to memory                  1                                                                               
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:29                        
    ZLOCAL_JC_SDN_CALLING_PROGRAM                call complete 12:54:30                     
    ZLOCAL_JC_SDN_CALLING_PROGRAM                started at 12:54:30                                                                               
    11.01.2008           JC: Called program - testing list to memory                                                                               
    ZLOCAL_JC_SDN_CALLED_PROGRAM                 was called at: 12:54:29                    
    for the following code:
    report zlocal_jc_sdn_calling_program.
    parameters:
      p_start(1)            type c.
    start-of-selection.
      perform testcase.
    *&      Form  testcase
    form testcase.
      data:
       lt_list              type table of abaplist.
      write: / sy-repid, 'started at', sy-uzeit.
      submit zlocal_jc_sdn_called_program
        exporting list to memory
        and return.
      write: / sy-repid, 'call complete', sy-uzeit.
      call function 'LIST_FROM_MEMORY'
        tables
          listobject = lt_list.
      write: / sy-repid, 'started at', sy-uzeit.
      call function 'WRITE_LIST'
        tables
          listobject = lt_list.
    endform.                    "testcase
    and
    report zlocal_jc_sdn_called_program.
    start-of-selection.
      write: / sy-repid, 'was called at:', sy-uzeit.

  • Submit and return and after that what?

    Hi all,
    Iam successfully submitting a standard program.My problem is what I want is the final internal table values,how can i get that?
    Here is my code :
    tables : mseg,ioheader,IOITEM.
    DATA : IT TYPE STANDARD TABLE OF ABAPLIST WITH HEADER LINE.
    *DATA : IT TYPE STANDARD TABLE OF  IOMAMO WITH HEADER LINE.
    select-options : s_aufnr for mseg-aufnr,
                     S_PAUFNR FOR ioheader-aufnr,
                     S_PLNUM FOR ioitem-plnum.
    PARAMETER : P_PROFID LIKE tcoad-profid.
    initialization.
    s_aufnr-low = '1000560'.
    append s_aufnr.
    S_PAUFNR-LOW = '1000'.
    APPEND S_PAUFNR.
    S_PLNUM-LOW = '40070110803312'.
    APPEND S_PLNUM.
    P_PROFID = '000001'.
    *SUBMIT PPIO_ENTRY WITH S_AUFNR = s_aufnr
    *WITH PPIO_ENTRY_SC1100-PPIO_LISTTYP = 'PPIOD000'
    *EXPORTING LIST TO MEMORY AND RETURN.
    SUBMIT PPIOD000 WITH S_AUFNR = s_aufnr
    WITH S_PLNUM = S_PLNUM
    WITH S_PAUFNR = S_PAUFNR
    WITH P_PROFID = P_PROFID
    EXPORTING LIST TO MEMORY AND RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        LISTOBJECT = IT
      EXCEPTIONS
        NOT_FOUND  = 1
        OTHERS     = 2.
    IF SY-SUBRC = 0.
      CALL FUNCTION 'WRITE_LIST'
        TABLES
          LISTOBJECT = IT.
    ENDIF.
    Hope Iam clear in my questian.
    Thanks & Regards,
    Rock.

    Thanks all of u for the reply,
    but when I use FM LIST_FROM_MEMORY it is getting short dump.
    See the code :
    tables : mseg,ioheader,IOITEM.
    DATA: INT_S000 LIKE IOMAMO   OCCURS 100 WITH HEADER LINE.
    DATA : IT TYPE STANDARD TABLE OF ABAPLIST WITH HEADER LINE.
    *DATA : IT TYPE STANDARD TABLE OF  IOMAMO WITH HEADER LINE.
    select-options : s_aufnr for mseg-aufnr,
                     S_PAUFNR FOR ioheader-aufnr,
                     S_PLNUM FOR ioitem-plnum.
    PARAMETER : P_PROFID LIKE tcoad-profid.
    initialization.
    s_aufnr-low = '1000560'.
    append s_aufnr.
    S_PAUFNR-LOW = '1000'.
    APPEND S_PAUFNR.
    S_PLNUM-LOW = '40070110803312'.
    APPEND S_PLNUM.
    P_PROFID = '000001'.
    *SUBMIT PPIO_ENTRY WITH S_AUFNR = s_aufnr
    *WITH PPIO_ENTRY_SC1100-PPIO_LISTTYP = 'PPIOD000'
    *EXPORTING LIST TO MEMORY AND RETURN.
    SUBMIT PPIOD000 WITH S_AUFNR = s_aufnr
    WITH S_PLNUM = S_PLNUM
    WITH S_PAUFNR = S_PAUFNR
    WITH P_PROFID = P_PROFID
    EXPORTING LIST TO MEMORY AND RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        LISTOBJECT = IT
      EXCEPTIONS
        NOT_FOUND  = 1
        OTHERS     = 2.
    IF SY-SUBRC = 0.
      CALL FUNCTION 'WRITE_LIST'
        TABLES
          LISTOBJECT = IT.
    ENDIF.
    CALL FUNCTION 'LIST_TO_ASCI'
    EXPORTING
       LIST_INDEX               = -1
    *   WITH_LINE_BREAK          = ' '
    * IMPORTING
    *   LIST_STRING_ASCII        =
    *   LIST_DYN_ASCII           =
    TABLES
       LISTASCI                 = it
       LISTOBJECT               = INT_S000
    EXCEPTIONS
       EMPTY_LIST               = 1
       LIST_INDEX_INVALID       = 2
       OTHERS                   = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    The internal table INT_S000 is of same type of that programs final internal table.
    What might be the problem?

  • SUBMIT RVV50R10C not working in background as well as foregrnd tcode:vl10b

    Hi,
       I have to create a code which creates delivery of STO in background as baapi creating issue and BDC can not be used for this, i am using submit.
    Code is as follows :
    report ZKIRAN.
    TABLES : mara.
    TYPES : BEGIN OF STR,
             SIGN(1),
             OPT(2),
             LOW(18),
             HIGH(18),
            END OF STR.
    TYPES : BEGIN OF STR1,
             SIGN(1),
             OPT(2),
             LOW(10),
             HIGH(10),
            END OF STR1.
    TYPES : BEGIN OF STR2,
             SIGN(1),
             OPT(2),
             LOW TYPE D,
             HIGH TYPE D,
            END OF STR2.
    DATA : MATNR TYPE STANDARD TABLE OF STR  WITH HEADER LINE,
           DATE  TYPE STANDARD TABLE OF STR2 WITH HEADER LINE,
           STO   TYPE STANDARD TABLE OF STR1 WITH HEADER LINE.
    MATNR-SIGN = 'I'.
    MATNR-OPT  = 'EQ'.
    MATNR-LOW  = '000000000001004362'.
    APPEND MATNR.
    CLEAR  MATNR-LOW.
    STO-SIGN = 'I'.
    STO-OPT  = 'EQ'.
    STO-LOW  = '6200001140'.
    APPEND STO.
    DATE-SIGN = ''.
    DATE-OPT  = ''.
    DATE-LOW  = ''.
    DATE-HIGH = ''.
    APPEND DATE.
    SUBMIT RVV50R10C  VIA SELECTION-SCREEN WITH st_matnr IN MATNR
                                           WITH st_ebeln IN STO
                                           WITH ST_LEDAT IN DATE
                                           WITH P_PROF1  eq '5001'
                                           WITH P_LERUL  EQ ''
                                           EXPORTING LIST TO MEMORY
                                             AND RETURN.
    It is not working .. plz reply what else i need to add in this code.
    This code displays 1st screen of vl10b . it also populates valeus passed in respective fields..but does not process further.
    I am suppose to schedule this job in background.
    Waiting for ur reply...A wrong code is already in productiion and i have ket my fingures crossed.
    pls help.

    Hi this was the code i used and it worked fine.
      DATA: t_ledat TYPE RANGE OF vbep-mbdat,
            e_ledat LIKE LINE  OF t_ledat.
      DATA: t_vbak  TYPE RANGE OF vbak-vbeln,
            e_vbak  LIKE LINE  OF t_vbak.
      DATA: t_vstel TYPE RANGE OF vbap-vstel,
            e_vstel LIKE LINE  OF t_vstel.
      DATA: t_ekko  TYPE RANGE OF ekko-ebeln,
            e_ekko  LIKE LINE  OF t_ekko.
          MOVE c_include              TO e_ledat-sign.
          MOVE c_between              TO e_ledat-option.
          MOVE s_mbdat-low            TO e_ledat-low.
          MOVE s_mbdat-high           TO e_ledat-high.
          APPEND e_ledat              TO t_ledat.
          MOVE c_include              TO e_vbak-sign.
          MOVE c_equal                TO e_vbak-option.
          MOVE <fs_del_sales>-vbeln   TO e_vbak-low.
          APPEND e_vbak               TO t_vbak.
          MOVE c_include              TO e_vstel-sign.
          MOVE c_equal                TO e_vstel-option.
          MOVE <fs_del_sales>-vstel   TO e_vstel-low.
          APPEND e_vstel              TO t_vstel.
          CLEAR:  w_scenario,
                  w_profilname.
          MOVE : '0001'   TO w_scenario,
                      '5001'         TO w_profilname.
          CLEAR: e_t186v,
                       e_list_profil.
    *       Get List-Profil-data if given or from default values
          PERFORM f_profil_data_complete in program saplv50r_pre
            USING    w_scenario
                     w_profilname
            CHANGING e_t186v
                     e_list_profil.
          MOVE 1 TO e_list_profil-list_type .
          MOVE e_ledat-high TO e_list_profil-ledat_high.
          CALL FUNCTION 'SHP_LIST_PROFIL_SET'
            EXPORTING
              ix_list_profil = e_list_profil.
          CLEAR : w_souro.
          MOVE p_souro TO w_souro.
          SUBMIT rvv50r10c WITH p_prnam  EQ w_souro
                           WITH p_lerul  EQ space
                           WITH st_ledat IN t_ledat
                           WITH st_vbeln IN t_vbak
                           WITH st_vstel IN t_vstel
                           EXPORTING LIST TO MEMORY AND RETURN.
          IF sy-subrc EQ 0.
            COMMIT WORK AND WAIT.
          ENDIF.
    You can also check the code in  FM OIO_RS_M_DELIVERY_2 for any more clarifications

  • SUBMIT does not work in background...

    Hi guys,
    We have a copy program of a standard transaction and once we use this copy program in the main program via SUBMIT... it does not work in background...
    Why is this so,,, Please advice...
    THanks!

    Hi,
    When executing some program using the statement like SUBMIT prog_2 WITH parameters and RETURN.
    In foreground PROG_2 is executed, and once you click on the BACK button the code written after this SUBMIT statement will be executed.
    If you are executing the same in the BACKGROUND mode, no feasibility of clicking on BACK button, hence control will remain in the PROG_2 only after executing its logic.
    Please code accordingly.

  • Automatic Selected Item of List Builder Component Does not work (anymore)

    Hi all,
    Í'm working with Xcelsius Engage 2008 (version 5.3.2.0) and the automatic selection of an item at runtime of the list builder component does not work anymore. In a previous version it worked very well.
    Here's the case: at runtime I want that the list builder component automatically puts the first item in the list to the destination section and selects it, so that a graph can show the underlying pushed data. In the previous version it worked o.k., but now at runtime the destination section remains empty at startup. If I interactively select an item from the source section to the destination section and update the list builder, the data is shown correctly, but it must done automatically, which worked o.k. in an earlier version of Xcelsius 2008...
    This are my settings of the list builder component (which was running correctly earlier..):
    -at the general tab I defined a range of labels
    -at the general tab I defined 2 data column insertion series
    -at the behaviour-common tab I defined selected items: position mode; items: the first item of the label list; insert items at runtime
    -all of the data comes from an external xml data source
    You can find an example of the visualisation at: http://onderzoek2.evinet.nl/projecten/10169/dynarap.htm. You will see that at start-up there is no item visible and selected in the destination section of the list builder....
    I've tried every combinations of settings, build up the component from scratch, but its not working (anymore).
    Greetings Erik-Jan Vriens

    Hi njnits,
    Print view button is a standard component of Xcelsius: look at it in the IDE
    Exporting to Powerpoint is also a standard functionality, so yes. For this particular dashboard/report all data resides in an external xml-file which have to be accessible for Powerpoint
    All visualisations, not only the table,  in this/report fetch their data from an external xml-file, but a QaaWS-connection will also do the trick. You will have to write this dedicated service. In our case the xml-data is also generated automatically.
    The external data is best defined as a sort of matrix, consisting of approx. 100 columns by 1000 rows. I agree it takes a lot of Xcelsius but it does the job....
    Hopes this info helps....

  • Update to 10.6.8 and HP F2100 and D2400 Printers stopped working. Restored 10.6.7 and printers from Install CD's but not working,  Same with scanner

    Help....
    Updated to 10.6.8 and HP F2100 and D2400 Printers stopped working.
    Restored 10.6.7 and printers from Install CD's but not working.
    Same with F2100 scanner
    Am I glad I kept Windows desktop as without it I would be scre**ed now
    What is going on with this latest update as its like a return to Windows with things crashing or hanging up every few minutes????
    On a MacBook Air that has not been updated everything still works so what has 10.6.8 done and why won't the restore to 10.6.7 work?
    Steve

    None of those things you mentioned were what I suggested.
    I'm guessing the "ctrl click in printer preferences" means you Reset the Printing System?
    If so, that is what I would have suggested if deleting it by selecting the ( - ) button and then adding it with the ( + ) button.
    But, if HP has a fix, it likely needs to update its drivers.

  • I reinstalled microsoft word and now have a copy that will not work that is the default

    I reinstalled microsoft word and now have a copy that will not work that is the default

    I have MS word 2008 for MAC version 12.1
    When I left click the MS word applications that is the default seems to be corrupted as indicated by the message below but when I right click i can select the second MS word application that works.  The message from the left click is
    Process:         Microsoft Word [10367]
    Path:            /Users/geralddowling/Library/Mail Downloads/Microsoft Word.app/Contents/MacOS/Microsoft Word
    Identifier:      com.microsoft.Word
    Version:         ??? (???)
    Build Info:      Unknown-80409~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    Date/Time:       2011-07-25 17:25:09.413 -0400
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          166920 sec
    Crashes Since Last Report:           5
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      1C5621D4-1D85-488D-A24C-CB298759DBC6
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: @executable_path/../Frameworks/MicrosoftComponentPlugin.framework/Versions/12/M icrosoftComponentPlugin
      Referenced from: /Users/geralddowling/Library/Mail Downloads/Microsoft Word.app/Contents/MacOS/Microsoft Word
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 8 GB, SMC 1.53f13
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528ASQ, 931.51 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x24300000
    USB Device: Cruzer Mini, 0x0781  (SanDisk Corporation), 0x5150, 0x24310000
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x24320000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: Back-UPS ES 750 FW:841.I3 .D USB FW:I3, 0x051d  (American Power Conversion), 0x0002, 0x06400000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000

  • Max Memory Settings Not Working (SQL Server 2008 R2)

    I have 12 GB ram in sql server 2008 R2 of 64 bit server (Windows 2008 R2).
    I have set the Max memory setting to 12288 MB Memory setting.
    Still the usage of sql server process is around 14  GB.
    Is Max memory setting not working?
    I have also enabled AWE after all it is 64 bit.
    Thanks

    Problem is that: my OS is halting due to this RAM. I have 16 GB of ram and assigning 12 GB to SQL SERVER and rest is using for OS. Please guide me how to get information about actual memory usage from all sql server processes. like
    all CLR etc 
    Hi,
    Are you also running SSIS/SSAS/SSRS with database engine services. What do you mean by OS is halting ?
    If you want to check whether SQL Server is facing memory crunch please have a look at perfmon counters from
    this link
    Sys.dm_OS_memory_clerks would be DMV helpful in tracking memory utilized by various processes
    I have also enabled AWE after all it is 64 bit. Thanks
    Please note AWE doe snot have any notable affect in 64 bit system.
    Below will tell you memory used by SQLCLR
    select single_pages_kb + multi_pages_kb + virtual_memory_committed_kb from sys.dm_os_memory_clerks where type = 'MEMORYCLERK_SQLCLR'
    Below query will give you memory consumed by various clerk
    SELECT type, SUM(multi_pages_kb)
    FROM sys.dm_os_memory_clerks
    WHERE multi_pages_kb <> 0
    GROUP BY type
    ORDER BY SUM(multi_pages_kb) DESC
    Can you reduce max server memory to 11 G and see if it gives some relief
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • For Macbook Pro Mid2010: Why not build a WiFi based AirDrop solution between iOS8 and Yosemite? Really sad it does not work.

    For Macbook Pro Mid2010: Why not build a WiFi based AirDrop solution between iOS8 and Yosemite? Really sad it does not work.

    Your Mac is too old
    To Airdrop between a Mac an iOS device
    System Requirements
    To see if your Mac works with AirDrop, make sure you’re in the Finder by clicking the desktop (the background area of your screen), or by clicking the Finder icon in the Dock. Then, check to see if AirDrop is listed as an option in the Go menu. If you don't see AirDrop listed, your Mac doesn't support this feature.
    In order to transfer files between a Mac and and an iPhone, iPad or iPod touch
    your iOS device needs to include a lightning connector
    your iOS device needs iOS 7 or later installed
    your Mac needs to be a 2012 or later model with OS X Yosemite installed
    Your Mac and iOS device both need bluetooth and Wi-Fi turned on. You do not have to be connected to a specific Wi-Fi network.
    To transfer files between two Mac computers, you need the Mac models listed below with Wi-Fi turned on and OS X Lion or later installed.
    From:
    Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support

Maybe you are looking for

  • Error while MIRO posting: Unique co code has not been assigned to co number

    Hi all I am getting the following error while posting MIRO- "A unique co code has not been assigned to co no". I think this might have to do something with CO no range. Is it so. Does any1 have any idea what this could be because of? Thxs in advance

  • No image appears in the workspace even though the image is opened by Photoshop

    I just installed Photoshop CC 2014.2.2. from the Creative Cloud so all settings are still default, etc. However when I try to open a .jpeg, there is no image that shows up in the workspace. It is just a blank workspace, even though the file shows up 

  • Project structure and deployment

    Hello, We are working on an LCDS project using JBoss under Linux. 1. It seems that no matter whether the project is to be compiled with Flex Builder or LCDS, the project folder is always created under the flex.war folder (choosing another location, e

  • From FCP-X trial to Fullversion

    After I worked with the trial version I bought today the Fullversion. But how can I transfer my work from trial? Please help.

  • Screen enhancement through enhancement framework

    Hi to all  experts, I have question can screen enhancements can be done using enhancement framework technology in ECC 6.0 Any link will help ALready searched in SCN couldnt find anything