SAP memory - how to clear?

Hi,
I need to clean the SAP memory. What is the command for to do this?
(not is clear the abap memory but sap memory)
The command bellow not wiped the memory.
FREE MEMORY ID 'ZDEMAND'
best regards,
Marcelo Bogaz

Hi.
Try this . By Using <b>Delete</b>.
DELETE FROM { {MEMORY ID id}
            | {DATABASE      dbtab(ar) [CLIENT cl] ID id}
            | {SHARED MEMORY dbtab(ar) [CLIENT cl] ID id}
            | {SHARED BUFFER dbtab(ar) [CLIENT cl] ID id} }.
Eg:.
DELETE FROM MEMORY ID id.
Regards
Bala..

Similar Messages

  • How to clear/free SAP memory

    Hi All,
    How can i make sap memory free.
    Actually i am doing a BDC program where i am generating personnel no through PA40.
    My requrirement is to clear personnel no in each loop pass of the BDC transaction so
    that a fresh personnel no gets generated automatically in each loop pass. Pls help me
    resolving this issue.
    Pls reply asap as it is very urgent.
    Thanks,
    Rupesh

    Hey,
    if you dont mind can you please explain me in detail what effect this will have.
    i am attaching a snippet of my code, where i am performing call BDC.
    FORM sub_bdc_sessions .
    *> Local Constants
      DATA: l_ctumode LIKE ctu_params-dismode VALUE 'A',
             l_cupdate LIKE ctu_params-updmode VALUE 'S',
             l_tcode(4) TYPE c VALUE 'PA40',
             l_sdate(10) TYPE c,
             l_edate(10) TYPE c.
      LOOP AT i_itab INTO wa_itab.
    **> change the start date format to mm/dd/yyyy
        CONCATENATE wa_itab-begda0(2) '/' wa_itab-begda3(2) '/'
         wa_itab-begda+6(4) INTO l_sdate.
    **> change the start date format to mm/dd/yyyy
        CONCATENATE wa_itab-endda0(2) '/' wa_itab-endda3(2) '/'
         wa_itab-endda+6(4) INTO l_edate.
    **> change the start date format to mm/dd/yyyy
        CONCATENATE wa_itab-gbdat0(2) '/' wa_itab-gbdat3(2) '/'
         wa_itab-gbdat+6(4) INTO wa_itab-gbdat.
        PERFORM bdc_dynpro      USING 'SAPMP50A' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RP50G-EINDA'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'RP50G-PERNR'
        PERFORM bdc_field       USING 'RP50G-EINDA' l_sdate.
        PERFORM bdc_dynpro      USING 'SAPMP50A' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'T529T-MNTXT(12)'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=PICK'.
        PERFORM bdc_field       USING 'RP50G-EINDA' l_sdate.
        PERFORM bdc_field       USING 'RP50G-SELEC(12)'
                                      'X'.
        PERFORM bdc_dynpro      USING 'MP000000' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'PSPAR-WERKS'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'P0000-BEGDA' l_sdate.
        PERFORM bdc_field       USING 'P0000-ENDDA' l_edate.
        PERFORM bdc_field       USING 'P0000-MASSN'
                                      'CA'.
        PERFORM bdc_field       USING 'P0000-MASSG' wa_itab-massg.
        PERFORM bdc_field       USING 'PSPAR-PLANS' wa_itab-plans.
        PERFORM bdc_field       USING 'PSPAR-WERKS' wa_itab-werks.
        PERFORM bdc_field       USING 'PSPAR-PERSG' wa_itab-persg.
        PERFORM bdc_field       USING 'PSPAR-PERSK' wa_itab-persk.
        PERFORM bdc_dynpro      USING 'MP000000' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'PSPAR-PERNR'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=UPD'.
        PERFORM bdc_field       USING 'PSPAR-PERNR'
        PERFORM bdc_field       USING 'P0000-BEGDA' l_sdate.
        PERFORM bdc_field       USING 'P0000-ENDDA' l_edate.
        PERFORM bdc_field       USING 'P0000-MASSN'
                                      'CA'.
        PERFORM bdc_field       USING 'P0000-MASSG' wa_itab-massg.
        PERFORM bdc_field       USING 'PSPAR-PLANS' wa_itab-plans.
        PERFORM bdc_field       USING 'PSPAR-WERKS' wa_itab-werks.
        PERFORM bdc_field       USING 'PSPAR-PERSG' wa_itab-persg.
        PERFORM bdc_field       USING 'PSPAR-PERSK' wa_itab-persk.
        PERFORM bdc_dynpro      USING 'MP000100' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'P0001-BTRTL'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'P0001-BEGDA' l_sdate.
        PERFORM bdc_field       USING 'P0001-ENDDA' l_edate.
        PERFORM bdc_field       USING 'P0001-BTRTL' wa_itab-btrtl.
        PERFORM bdc_field       USING 'P0001-ABKRS' wa_itab-abkrs.
        PERFORM bdc_field       USING 'P0001-PLANS' wa_itab-plans.
        PERFORM bdc_dynpro      USING 'MP000100' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'P0001-BEGDA'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=UPD'.
        PERFORM bdc_field       USING 'P0001-BEGDA' l_sdate.
        PERFORM bdc_field       USING 'P0001-ENDDA' l_edate.
        PERFORM bdc_field       USING 'P0001-BTRTL' wa_itab-btrtl.
        PERFORM bdc_field       USING 'P0001-ABKRS' wa_itab-abkrs.
        PERFORM bdc_field       USING 'P0001-PLANS' wa_itab-plans.
        PERFORM bdc_field       USING 'P0001-VDSK1'
                                      '2001'.
        PERFORM bdc_dynpro      USING 'MP000200' '2025'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'P0002-ANZKD'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'P0002-BEGDA' l_sdate.
        PERFORM bdc_field       USING 'P0002-ENDDA' l_edate.
        PERFORM bdc_field       USING 'Q0002-ANREX' wa_itab-anrex.
        PERFORM bdc_field       USING 'P0002-VORNA' wa_itab-vorna.
        PERFORM bdc_field       USING 'P0002-NACHN' wa_itab-nachn.
        PERFORM bdc_field       USING 'Q0002-GESC2' wa_itab-gesc2.
        PERFORM bdc_field       USING 'Q0002-GESC1'
                                      'X'.
        PERFORM bdc_field       USING 'P0002-GBDAT' wa_itab-gbdat.
        PERFORM bdc_field       USING 'P0002-SPRSL'
                                      'EN'.
        PERFORM bdc_field       USING 'P0002-NATIO' wa_itab-natio.
        PERFORM bdc_field       USING 'Q0002-FATXT' wa_itab-fatxt.
        PERFORM bdc_field       USING 'P0002-ANZKD' wa_itab-anzkd.
        PERFORM bdc_dynpro      USING 'MP000200' '2025'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'P0002-BEGDA'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=UPD'.
        PERFORM bdc_field       USING 'P0002-BEGDA' wa_itab-gbdat.
        PERFORM bdc_field       USING 'P0002-ENDDA' l_edate.
        PERFORM bdc_field       USING 'Q0002-ANREX' wa_itab-anrex.
        PERFORM bdc_field       USING 'P0002-VORNA' wa_itab-vorna.
        PERFORM bdc_field       USING 'P0002-NACHN' wa_itab-nachn.
        PERFORM bdc_field       USING 'Q0002-GESC1' wa_itab-gesc2.
        PERFORM bdc_field       USING 'P0002-GBDAT' wa_itab-gbdat.
        PERFORM bdc_field       USING 'P0002-SPRSL'
                                      'EN'.
        PERFORM bdc_field       USING 'P0002-NATIO' wa_itab-natio.
        PERFORM bdc_field       USING 'Q0002-FATXT' wa_itab-fatxt.
        PERFORM bdc_dynpro      USING 'MP010500' '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'P0105-USRID'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      'UPD'.
        PERFORM bdc_field       USING 'P0105-BEGDA' l_sdate.
        PERFORM bdc_field       USING 'P0105-ENDDA' l_edate.
        PERFORM bdc_field       USING 'P0105-USRID' wa_itab-usrid.
        PERFORM bdc_dynpro      USING 'SAPMP50A' '2000'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/EBCK'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RP50G-PERNR'.
      REFRESH i_bdcmsgcoll.
        CALL TRANSACTION l_tcode USING i_bdcitab
                         MODE   l_ctumode
                         UPDATE l_cupdate
                         MESSAGES INTO i_bdcmsgcoll.
    *>  refresh the bdc data tab
        REFRESH i_bdcitab.

  • How to remove a grobal parameter in SAP memory

    As known to all, we can use SET/GET PARAMETER to pass parameters among multiple programs.
    Now I'm just curious about how to remove a grobal parameter in SAP memory, and how can I get the list of all grobal parameter in SAP memory.
    Any idea?

    Hi william,
    1. how to remove a grobal parameter in SAP memory
      Well, i dont think we can REMOVE.
       At most, we can RESET it to blank(initial)
    2. set parameter  id 'BUKRS' FIELD ''.
    regards,
    amit m.

  • IPAD 16 GB HOW TO CLEAR MEMORY

    IPAD 16 GB HOW TO CLEAR MEMORY ios7

    What do you mean by 'clear memory' ?
    You can close apps via the iPad's taskbar (a lot of the apps that show on the taskbar will just be 'recently used', they won't be using resources) : from the home screen (if you have an app 'open' on-screen then it won't show on the taskbar for closing) double-click the home button to bring up the taskbar at the bottom of the iPad's screen, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the iTunes app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If you want to delete content from your iPad to free up storage then you can see how much space each app is taking up via Settings > General > Usage. To delete an app (and therefore its content) press and hold any of the apps on your iPad’s homescreen and after a couple of seconds or so they should start to shake. Then press the 'x' in the left corner to delete the ones that you don't want, and when you've finished deleting press the home button so as to stop the shaking. If you don't get the 'x' on any of the apps that you've downloaded (you can't delete built-in apps) then check that Settings > General > Restrictions > Deleting Apps isn't set 'off'.
    To do a soft-reset (i.e. a reboot) : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear.

  • Need to clear SAP memory

    Hi Experts,
    I need to Clear SAP memory set using the 'Parameter ID' keyword in reports. Please advise.
    Thanks in advance,
    Vivenchandar R

    Sure, you can simply set the parameter id to a blank field.  For example.
    data: vbeln type vbak-vbeln.
    vbeln = space.
    set parameter id 'AUN' field vbeln.
    Regards,
    Rich Heilman

  • How to clear a buffer memory in a report program?

    Hi Gurus,
    How to clear a buffer memory in a report program?
    Regards,
    Amit Kumar Singh

    Yes i am using USER__COMMAND like this
          FORM USER_COMMAND                                             *
    FORM user_command USING u_ucomm     TYPE sy-ucomm
                            us_selfield TYPE slis_selfield.     "#EC CALLED
    data : l_memory_id(20) type c value 'BSVA_BUFFER'.
    free memory ID l_memory_id.
      CASE u_ucomm.
        WHEN gc_refresh.
          PERFORM clear_data.
         CONCATENATE '-' p_months INTO p_months.
          PERFORM populate_z01.    "List of Plants and Materials
          PERFORM populate_z02.    "List of Periods and dates
          PERFORM populate_z03.    "Report Contents
          PERFORM add_data.
          us_selfield-refresh    = c_x.
          us_selfield-col_stable = c_x.
          us_selfield-row_stable = c_x.
      ENDCASE.
    ENDFORM.                    "user_command
          FORM PF_STATUS_SET                                            *
    FORM pf_status_set USING ut_extab TYPE slis_t_extab.        "#EC CALLED
      DELETE ut_extab WHERE fcode = gc_refresh.
      SET PF-STATUS 'STANDARD_FULLSCREEN' OF PROGRAM 'SAPLKKBL'
          EXCLUDING ut_extab.
    ENDFORM.                    "pf_status_set
    Where   gc_refresh is defined as
    constants : gc_refresh TYPE syucomm VALUE '&REFRESH'.

  • My start up disk Macintosh HD is full on my McAir OSX 10.9.4 memory 4GB. I need to clear the disk so that I can update it with the new software IOS 10.9.5 requiring 2.05GB. Need guidance on how to clear space.

    My start up disk Macintosh HD is full on my McAir OSX 10.9.4 memory 4GB. I need to clear the disk so that I can update it with the new software IOS 10.9.5 requiring 2.05GB. Need guidance on how to clear space.

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Ignore any other messages that appear in the Terminal window.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • Hello,  I want to know how to clear the memory or buffer cash from my mac book?

    Hello,  I want to know how to clear the memory or buffer cash from my mac book? When I look at the series, it puts more and more time to load. Thank you.
    Sorry for my english, i talk french.

    Ok ce n'est pas le problème alors.
    Boot à partir de votre disque d'installation et de lancerl'utilitaire de disque. Le disque de démarrage peut être nécessaire de réparation.
    Using Disk Utility to verify or repair disks
    Ok that's not the problem then.
    Boot from your install disc and run Disk Utility. The startup disk may need repairing.

  • How to clear Cache in SAP BW

    Hi All,
    i changed 1 .js file in mime repository, but the changes are not getting reflected when i run 1 of the WAD templates. it still picks the old .js file. i guess there is some problem related to clearing of cache memory.
    Any ideas about how to clear cache in BW?
    Thnx in advance
    Godhuli

    Hi Godhuli,
    You can call transaction <b>RSRCACHE</b> and you can delete all; In OSS Note 456068, you can find all the issues related to this kind of problem
    You can also refer oss notes 679609,779015 for OLAP cache invalidation.
    Awarding points is the way of saying thanks in SDN!!!
    Regards,
    Balaji

  • How to clear cache memory used by APP in iphone

    How to clear memory consumed by apps in iphone? For example,google app size is 85mb!but now it takes 427mb! Now i want to clear them.Most of the APP are unneccessary consuming more memory.There should be someway to clear the cache memory of app.Please help!

    Well, the app programmer does not consider the saved data "unnecessary" - it's there to perform some function of the app. The Google app, for example, saves your searches so it doesn't have to use data every time.
    However, in the Google App itself tap the Settings icon, Privacy, Browsing. You can enable or disable "on-device history" and also clear the on-device history. That's what I meant when I said that some apps have settings to manage their cache.

  • How to use SAP Memory analyser in CE7.1 EHP1

    Hi All,
    Please Can you provide proper link to know how to use SAP Memory analyser in CE7.1 EHP1.
    It is urgent .
    Regards
    Mahesh

    Problem solved.

  • How to Clear plant level Stock in SAP-EHS_Waste management

    Hi Experts,
    I implemented business practices 855 and 938 in a sandbox environment and a part of the waste processing is not clear for me.
    How do clear the waste from my plant in MM? The best practice asks to create a purchase order, to validate it and to invoice it. The waste is still in my plant!
    Thanks in advance.
    Regards
    Manglesh

    Hi Manglesh
    In waste management there are several options:
    - You can control inventory management or not; if you do it, you need to post and clear the stock of your waste.
    - You can control batch management or not; if you do it, you need to post and clear the stock of your waste using batches.
    - You can control warehause management or not; if you do it, you need to post and clear the stock, and to put in and to take out the waste in a location in the warehouse.
    In waste management there isn't a direct link between the purchase orden and the inventory management, the stock moves aren't visible in the PO history. If you are usisng inventory management, first you post the waste, second you create a purchase order (someone will manage your waste, and you must pay for it); when a transporter take your waste, then you clear your waste (there is a function that you need to customizing to do it).
    Regards
    JCD

  • How to clear documents in SAP-CM/CD

    Hi all,
    We need to add a new payment item to a claim that can be reassigned to another claim number.
    We followed the outlined steps.
    1.  Create new claim - ICLCDC01
    2.  Add claim item(s)
    3.  Pay out on claimed item(s)
    4.  Save claim and exit
    5.  Do payment run in CD - -FPY1.
    But the document is still open. Can anyone throw some light on as to how to clear the document.
    Thanks in advance,
    Cherian

    Hi Godhuli,
    You can call transaction <b>RSRCACHE</b> and you can delete all; In OSS Note 456068, you can find all the issues related to this kind of problem
    You can also refer oss notes 679609,779015 for OLAP cache invalidation.
    Awarding points is the way of saying thanks in SDN!!!
    Regards,
    Balaji

  • How to read From SAP Memory

    hello friends,
    can u help me to read the document no. generated at runtime in BDC from
    SAp Memory.
    Thanks

    HI,
    See this both the eq u will be get ur requirement.
    report  ykrish_set_prg1.
    data : g_ebeln type ekko-ebeln.
    select-options : s_ebeln for g_ebeln obligatory.
    data: begin of it_ekko occurs 0,
            ebeln type ekko-ebeln,
            bukrs type ekko-bukrs,
            bstyp type ekko-bstyp,
            bsart type ekko-bsart,
          end of it_ekko.
    start-of-selection.
      select ebeln  bukrs
             bstyp  bsart
        into table it_ekko
        from ekko
        where ebeln in s_ebeln.
      if sy-subrc = 0.
        sort it_ekko by ebeln.
      endif.
    end-of-selection.
      if not it_ekko[] is initial.
        loop at it_ekko.
          write :/ it_ekko-ebeln hotspot on,
                   it_ekko-bukrs,
                   it_ekko-bstyp,
                   it_ekko-bsart.
          hide it_ekko-ebeln.
        endloop.
      endif.
    at line-selection.
      set parameter id 'BES' field it_ekko-ebeln.
      write :/ 'Parameter ID is set for Document Number :', it_ekko-ebeln.
    report  ykrish_get_prg1.
    data : g_ebeln type ekko-ebeln.
    get parameter id 'BES' field g_ebeln.
    call transaction 'ME23N'.
    Regards,
    Naresh

  • How to clear the OTHER memory cache

    Hi there fire fox help,
    I have read the page on 'How to clear the cache' but this does not seam to clear everything.
    When I am editing a website on my computer and viewing the changes through fire fox everything works great, I just hit refresh.
    But when testing the websites changes online (after unloading it) I can not see any changes, using the refresh button is of no help and clear the cache is not helping either.
    I get quite frustrated with this as I then have to change the name of the web page just to get fire fox to refresh it properly and then change it back again.
    Thanks for your time, Max

    I've tried all these and Firefox still won't load the current image. I know it's there because Internet Explorer does load it. Is there anything else I can try or look at?

Maybe you are looking for

  • Mapping  problem due to FCC in sender file adapter

    Hi All I am doing File( Flat File ) to RFC Scenario.it is working fine.. the problem comes in mapping with multiple records. FCC at sender file adapter is used my Data Type are : Source DT                      Target RFC import parameter(table). E2ED

  • Fusion drive and backup/restore issues

    Hi, since I installed a fusion drive on my early 2008 iMac, consisting of an internal 256GB SSD and an (external FW800) 320GB hard disk, I occassionally run into trouble when system updates are pending. In the past, at worst the time machine backup c

  • How to get HTML form values in JSP

    retrieve<BR><BR> retrieveServicer<BR><BR> There are 2 links on a HTML page,code is in HTML page is above. I want to differentiate those two links at run time? Like which link the user has clicked, Is it possible I can do it request.getParameter() met

  • Upgraded to iPhoto 6 and lost link to images/photos in iPhoto Library

    I just installed a 160 GB hard drive (70GB free) and iLife06 upgrade on iMc G5 with 768 MB. When I ran iPhoto it shows all original folders and rolls but thumbnails are blank and exclamation mark in edit mode and no images found. My iPhoto Library fo

  • UPDATE statement not working as expected

    In our table we have a field with length of nvarchar(70) which is used to store multiple values that can be queried using SUBSTRING. There are already 54 characters in the field including the final quote. The Start and end characters of the field are